.elementor-315 .elementor-element.elementor-element-e9db77d{padding:0px 0px 0px 0px;}.elementor-315 .elementor-element.elementor-element-e9db77d .elementor-heading-title{font-family:"Cormorant Garamond", Sans-serif;font-size:59px;color:#C18A16;}.elementor-315 .elementor-element.elementor-element-c45c714{margin:-16px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-315 .elementor-element.elementor-element-c45c714 .elementor-heading-title{font-size:20px;font-weight:400;color:#FFFFFF;}.elementor-315 .elementor-element.elementor-element-0eb7001{--spacer-size:200px;}/* Start custom CSS for html, class: .elementor-element-f0721db *//* ==========================================
   LOGISTICS SERVICE SECTION
========================================== */

.logistics-service-section {
    width: 100%;
    background: #f7f6f3;
    position: relative;
    overflow: hidden;
    padding: 45px 0 35px;
}


/* ==========================================
   MAIN CONTAINER
========================================== */

.logistics-container {
    max-width: 1500px;
    width: 100%;
    margin: auto;

    padding: 0 70px;

    display: grid;
    grid-template-columns: 38% 62%;
    align-items: center;

    gap: 55px;

    box-sizing: border-box;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.logistics-content {
    position: relative;
    z-index: 2;
}


/* Small Heading */

.section-label {
    display: flex;
    align-items: center;
    gap: 13px;

    color: #d99a28;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


.section-label span {
    width: 42px;
    height: 2px;

    background: #d99a28;

    display: inline-block;
}


/* Main Heading */

.logistics-content h2 {
    margin: 0 0 22px;

    color: #263b35;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 54px;
    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -1px;
}


/* Paragraph */

.logistics-content p {
    margin: 0 0 30px;

    max-width: 570px;

    color: #62676a;

    font-family: Arial, sans-serif;

    font-size: 18px;

    line-height: 1.65;

    letter-spacing: 0.2px;
}


/* ==========================================
   BUTTON
========================================== */

.plan-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    min-width: 280px;

    padding: 20px 28px;

    background: #063529;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.4px;

    border-radius: 3px;

    transition: all 0.3s ease;

    box-shadow: 0 8px 20px rgba(0, 40, 30, 0.12);
}


.plan-btn b {
    color: #dca129;

    font-size: 21px;

    font-weight: 400;
}


.plan-btn:hover {
    background: #0b4938;

    transform: translateY(-3px);
}


/* ==========================================
   RIGHT GRID
========================================== */

.logistics-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* ==========================================
   SERVICE CARD
========================================== */

.logistics-card {
    background: #ffffff;

    border: 1px solid #ece9e4;

    border-radius: 5px;

    overflow: hidden;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.025);

    transition: all 0.3s ease;
}


.logistics-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.08);
}


/* ==========================================
   CARD IMAGE
========================================== */

.card-image {
    width: 100%;

    height: 175px;

    overflow: hidden;

    background: #ddd;
}


.card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.logistics-card:hover .card-image img {
    transform: scale(1.05);
}


/* ==========================================
   CARD CONTENT
========================================== */

.card-info {
    min-height: 105px;

    padding: 18px 22px;

    display: flex;

    align-items: center;

    gap: 22px;

    box-sizing: border-box;
}


/* ==========================================
   ICON
========================================== */

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #e5a028;

    font-size: 37px;

    font-family: Arial, sans-serif;

    flex-shrink: 0;
}


/* ==========================================
   SERVICE TITLE
========================================== */

.card-info h3 {
    margin: 0;

    color: #333b3c;

    font-family: Arial, sans-serif;

    font-size: 19px;

    font-weight: 600;

    line-height: 1.35;
}


/* ==========================================
   LEFT DECORATIVE LEAVES
========================================== */

.leaf-decoration {
    position: absolute;

    left: -45px;
    bottom: 20px;

    width: 160px;
    height: 300px;

    opacity: 0.3;

    pointer-events: none;
}


.leaf-decoration::before,
.leaf-decoration::after,
.leaf-decoration span {
    content: "";

    position: absolute;

    width: 75px;
    height: 150px;

    border: 2px solid #d6a545;

    border-radius: 100% 0 100% 0;

    transform: rotate(25deg);
}


.leaf-decoration::before {
    left: 5px;
    top: 20px;
}


.leaf-decoration::after {
    left: 45px;
    top: 100px;

    transform: rotate(-15deg);
}


.leaf-decoration span:nth-child(1) {
    left: 20px;
    top: 180px;

    transform: rotate(45deg);
}


.leaf-decoration span:nth-child(2),
.leaf-decoration span:nth-child(3) {
    display: none;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1600px) {

    .logistics-container {
        max-width: 1650px;
    }


    .logistics-content h2 {
        font-size: 58px;
    }


    .card-image {
        height: 190px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    .logistics-container {
        padding: 0 40px;

        grid-template-columns: 40% 60%;

        gap: 35px;
    }


    .logistics-content h2 {
        font-size: 43px;
    }


    .logistics-content p {
        font-size: 16px;
    }


    .card-image {
        height: 145px;
    }


    .card-info {
        min-height: 95px;

        padding: 15px;
    }


    .service-icon {
        width: 45px;
        height: 45px;

        font-size: 30px;
    }


    .card-info h3 {
        font-size: 16px;
    }

}


/* ==========================================
   MOBILE TABLET
========================================== */

@media (max-width: 850px) {

    .logistics-service-section {
        padding: 55px 0;
    }


    .logistics-container {
        display: flex;

        flex-direction: column;

        padding: 0 30px;

        gap: 45px;
    }


    .logistics-content {
        width: 100%;
    }


    .logistics-content h2 {
        font-size: 48px;
    }


    .logistics-content p {
        max-width: 650px;
    }


    .logistics-grid {
        width: 100%;
    }


    .card-image {
        height: 190px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .logistics-service-section {
        padding: 45px 0;
    }


    .logistics-container {
        padding: 0 20px;
    }


    .section-label {
        font-size: 11px;

        letter-spacing: 1.5px;
    }


    .section-label span {
        width: 30px;
    }


    .logistics-content h2 {
        font-size: 38px;

        letter-spacing: -0.5px;
    }


    .logistics-content p {
        font-size: 15px;

        line-height: 1.65;
    }


    .plan-btn {
        min-width: auto;

        width: 100%;

        padding: 18px 20px;
    }


    .logistics-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .card-image {
        height: 190px;
    }


    .card-info {
        min-height: 90px;

        padding: 15px 18px;
    }


    .card-info h3 {
        font-size: 16px;
    }


    .leaf-decoration {
        opacity: 0.15;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-85b1232 *//* ================================
   GOOGLE FONT
================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap');


/* ================================
   PROCESS SECTION
================================ */

.logistics-process {
    position: relative;
    width: 100%;
    padding: 32px 50px 28px;
    background: #f7f7f4;
    overflow: hidden;
}


/* ================================
   CONTAINER
================================ */

.process-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* ================================
   HEADING
================================ */

.process-heading {
    text-align: center;
    margin-bottom: 28px;
}

.process-heading span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #c9902f;
    margin-bottom: 6px;
}

.process-heading h2 {
    margin: 0;
    color: #263633;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
}

.heading-line {
    width: 42px;
    height: 2px;
    background: #d39b38;
    margin: 9px auto 0;
}


/* ================================
   STEPS
================================ */

.process-steps {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}


/* ================================
   EACH ITEM
================================ */

.process-item {
    width: 150px;
    min-width: 150px;
    text-align: center;
}


/* ================================
   ICON CIRCLE
================================ */

.process-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0d3028;

    box-shadow:
        inset 0 0 18px rgba(255,255,255,0.03),
        0 6px 15px rgba(0,0,0,0.06);
}


/* ================================
   ICON
================================ */

.process-icon i {
    color: #d89b27;
    font-size: 24px;
    line-height: 1;
}


/* ================================
   CONNECTOR LINE
================================ */

.connector {
    flex: 1;
    max-width: 95px;
    min-width: 45px;

    margin-top: 33px;

    border-top: 1px dashed #9aa8a4;
    opacity: 0.9;
}


/* ================================
   STEP NUMBER
================================ */

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;

    color: #263633;

    margin-bottom: 5px;
}


/* ================================
   STEP TEXT
================================ */

.step-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;

    color: #263633;
}


/* ================================
   DECORATIVE LEAVES
================================ */

.leaf {
    position: absolute;
    color: #d6bd85;
    opacity: 0.22;
    font-size: 110px;
    line-height: 1;
    z-index: 1;
}

.leaf-left {
    left: -35px;
    top: 15px;
    transform: rotate(-25deg);
}

.leaf-right {
    right: -35px;
    top: 15px;
    transform: rotate(25deg);
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .logistics-process {
        padding: 30px 25px;
    }

    .process-item {
        width: 125px;
        min-width: 125px;
    }

    .connector {
        max-width: 55px;
        min-width: 25px;
    }

    .process-heading h2 {
        font-size: 28px;
    }

    .process-icon {
        width: 62px;
        height: 62px;
    }

    .connector {
        margin-top: 30px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .logistics-process {
        padding: 35px 20px;
    }

    .process-heading {
        margin-bottom: 30px;
    }

    .process-heading h2 {
        font-size: 27px;
        padding: 0 10px;
    }

    .process-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .process-item {
        width: 100%;
        min-width: 0;
    }

    .connector {
        display: none;
    }

    .process-icon {
        width: 64px;
        height: 64px;
    }

    .step-text {
        font-size: 11px;
    }

    /* Last item centered */
    .process-item:last-child {
        grid-column: 1 / 3;
        width: 50%;
        justify-self: center;
    }

    .leaf {
        display: none;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 400px) {

    .process-heading h2 {
        font-size: 24px;
    }

    .process-heading span {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .process-steps {
        gap: 24px 12px;
    }

    .process-icon {
        width: 58px;
        height: 58px;
    }

    .process-icon i {
        font-size: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1d974ff *//* ========================================
   WHAT WE MANAGE SECTION
======================================== */

.manage-section {
    width: 100%;
    padding: 28px 30px 24px;
    background: #f7f7f5;
    font-family: 'Poppins', sans-serif;
}

.manage-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ========================================
   HEADING
======================================== */

.manage-heading {
    text-align: center;
    margin-bottom: 18px;
}

.manage-heading span {
    display: block;
    color: #c78b2d;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.manage-heading h2 {
    margin: 0;
    color: #263632;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
}

.heading-line {
    width: 42px;
    height: 2px;
    background: #d59a35;
    margin: 8px auto 0;
}


/* ========================================
   CARDS GRID
======================================== */

.manage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}


/* ========================================
   CARD
======================================== */

.manage-card {
    background: #ffffff;
    border: 1px solid #eceae5;
    overflow: hidden;
    text-align: center;
    min-height: 225px;
}


/* ========================================
   IMAGE
======================================== */

.manage-image {
    width: 100%;
    height: 130px;
    overflow: hidden;
    background: #ddd;
}

.manage-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* ========================================
   CARD CONTENT
======================================== */

.manage-content {
    padding: 8px 10px 12px;
}

.manage-content h3 {
    margin: 0 0 5px;
    color: #2c3432;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.manage-content p {
    margin: 0;
    color: #646866;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .manage-section {
        padding: 28px 20px;
    }

    .manage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .manage-image {
        height: 180px;
    }

    .manage-card {
        min-height: auto;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .manage-section {
        padding: 25px 15px;
    }

    .manage-heading h2 {
        font-size: 27px;
    }

    .manage-heading {
        margin-bottom: 20px;
    }

    .manage-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .manage-image {
        height: 190px;
    }

    .manage-content {
        padding: 12px 15px 16px;
    }

    .manage-content h3 {
        font-size: 20px;
    }

    .manage-content p {
        font-size: 13px;
    }

}/* End custom CSS */