/* header */
        :root {
            --primary: #28A737;
            --primary-dark: #28A737;
            --white: #ffffff;
            --border-soft: rgba(255, 255, 255, 0.25);
            --shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
            --transition: 0.28s ease;
            --container: 1760px;
            
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Barlow', sans-serif;
            line-height: 1.4;
        }

        a { text-decoration: none; color: inherit; }
        button { font: inherit; border: none; background: none; cursor: pointer; }
          
        
      
    /* end */

    /* nav */
/* ---- Reset & Variables ---- */

.index-nav-01 {
    --primary-light: #28A737;
    --dark:          #0d1f35;
    --sub-bg:        #28A737;
    --nav-bg:        #ffffff;
    --text-dark:     #1a2e4a;
    --text-mid:      #4a6070;
    --shadow:        0 8px 32px rgba(28,127,188,0.13);
    --transition:    0.26s ease;
    position: relative;
    z-index: 1000;
}

/* ==============================
   SUBHEADER
============================== */
.nav-subheader {
    background: var(--sub-bg);
    width: 100%;
}

.nav-sub-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-sub-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.88);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: color var(--transition);
}
.nav-sub-item:hover { color: #fff; }

.nav-sub-item svg {
    width: 14px; height: 14px;
    flex-shrink: 0;
    opacity: 0.85;
}

.nav-sub-divider {
    width: 1px; height: 14px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* ==============================
   MAIN NAVBAR
============================== */
.nav-main {
    background: var(--nav-bg);
    box-shadow: var(--shadow);
    width: 100%;
    position: relative;
}

.nav-main-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ---- Logo ---- */
.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 42px; height: 42px;
    background: var(--primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 24px; height: 24px; }

.nav-logo-text {
    display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-name {
    font-size: 20px; font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}
.nav-logo-name span { color: var(--primary); }
.nav-logo-tag {
    font-size: 10px; font-weight: 600;
    color: var(--text-mid); letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ---- Desktop Menu ---- */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
    display: flex; align-items: center; gap: 4px;
    padding: 10px 16px;
    font-size: 15px; font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: left var(--transition), right var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--primary);
    background: rgba(39,144,210,0.07);
}

.nav-menu > li > a:hover::after { left: 16px; right: 16px; }

/* Chevron icon for services */
.nav-chevron {
    width: 14px; height: 14px;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.nav-menu > li:hover .nav-chevron,
.nav-menu > li.mega-open .nav-chevron {
    transform: rotate(180deg);
}

/* ---- MEGA DROPDOWN ---- */
.mega-drop {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 560px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.14);
    border: 1px solid rgba(39,144,210,0.1);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 14px; */
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 200;
}

/* Arrow tip */
.mega-drop::before {
    content: '';
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px; height: 16px;
    background: #fff;
    border-left: 1px solid rgba(39,144,210,0.1);
    border-top: 1px solid rgba(39,144,210,0.1);
}

.nav-menu > li:hover .mega-drop,
.nav-menu > li.mega-open .mega-drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mega item card */
.mega-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 8px;
    border-radius: 12px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    border: 1px solid transparent;
}
.mega-item:hover {
    background: rgba(39,144,210,0.06);
    border-color: rgba(39,144,210,0.12);
    transform: translateY(-2px);
}

.mega-item-icon {
    width: 46px; height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(39,144,210,0.12), rgba(28,127,188,0.06));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mega-item-icon svg { width: 22px; height: 22px; color: var(--primary); }

.mega-item-body {}
.mega-item-title {
    font-size: 14px; font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    margin-top: 10px;
}
.mega-item-desc {
    font-size: 12px; font-weight: 400;
    color: var(--text-mid);
    line-height: 1.5;
}

/* ---- GET QUOTE BUTTON ---- */
.nav-cta {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 26px;
    background: var(--primary);
    color: #fff;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.4px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(39,144,210,0.35);
}

/* Shimmer sweep */
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
    animation: ctaShimmer 2.4s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0%   { left: -100%; }
    60%  { left: 140%; }
    100% { left: 140%; }
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 28px rgba(39,144,210,0.45);
    background: var(--primary-dark);
}

.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Pulse ring */
.nav-cta-wrap {
    position: relative;
    flex-shrink: 0;
}
.nav-cta-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid rgba(39,144,210,0.3);
    animation: ctaPulse 2s ease-out infinite;
    pointer-events: none;
}
@keyframes ctaPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 0; }
}

/* ---- HAMBURGER ---- */
.nav-hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border: 1.5px solid rgba(39,144,210,0.25);
    border-radius: 9px;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
}
.nav-hamburger:hover { background: rgba(39,144,210,0.07); }
.nav-hamburger span {
    display: block; width: 20px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================
   MOBILE DRAWER
============================== */
.nav-mobile-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px; right: 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
    border: 1px solid rgba(39,144,210,0.1);
    padding: 12px;
    z-index: 300;
    max-height: 80vh;
    overflow-y: auto;
}
.nav-mobile-drawer.open { display: block; }

.mob-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 14px;
    border-radius: 10px;
    font-size: 15px; font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.mob-link:hover { background: rgba(39,144,210,0.07); color: var(--primary); }
.mob-link svg { width: 16px; height: 16px; transition: transform var(--transition); }

/* Mobile submenu */
.mob-sub-toggle { cursor: pointer; }
.mob-sub-toggle.open svg { transform: rotate(180deg); }
.mob-sub-toggle.open { color: var(--primary); background: rgba(39,144,210,0.07); }

.mob-submenu {
    display: none;
    padding: 6px 0 8px 12px;
}
.mob-submenu.open { display: block; }

.mob-sub-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    border-radius: 9px;
    text-decoration: none;
    transition: background var(--transition);
}
.mob-sub-item:hover { background: rgba(39,144,210,0.07); }

.mob-sub-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(39,144,210,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mob-sub-icon svg { width: 18px; height: 18px; color: var(--primary); }

.mob-sub-text {}
.mob-sub-title { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.mob-sub-desc  { font-size: 11px; color: var(--text-mid); margin-top: 2px; }

.mob-divider { height: 1px; background: #f0f4f8; margin: 6px 0; }

.mob-cta-wrap { padding: 10px 0 4px; }
.mob-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%;
    padding: 13px;
    background: var(--primary);
    color: #fff;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.4px;
    border-radius: 10px;
    text-decoration: none;
    transition: background var(--transition);
}
.mob-cta:hover { background: var(--primary-dark); }
.mob-cta svg { width: 16px; height: 16px; }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 960px) {
    .nav-menu, .nav-cta-wrap { display: none; }
    .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
    .nav-subheader { display: none; }
    .nav-logo-icon { width: 36px; height: 36px; }
    .nav-main-inner { padding: 0 16px; height: 64px; }
    .nav-logo-name { font-size: 18px; }
    .nav-logo-tag  { display: none; }
}


/* end */

    /* <section class="index-second-02"> */

        /* ===== SECTION ===== */
        .index-second-02 {
            background: #fff5f5a0;
            padding: 30px 0 56px;
            width: 105%;
        }
 
        .index-second-02 .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
 
        /* 4-column grid */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }
 
        /* Each step card */
        .step-item {
            padding: 0 28px 0 0;
            position: relative;
        }
 
        /* Dashed arrow connector between items */
        .step-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 44px;
            right: 50px;
            width: 60px;
            height: 18px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='18' viewBox='0 0 60 18'%3E%3Cpath d='M2 9 Q15 3 30 9 Q45 15 58 9' stroke='%23aaaaaa' stroke-width='1.5' fill='none' stroke-dasharray='4 3'/%3E%3Cpolyline points='54,5 59,9 54,13' stroke='%23aaaaaa' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: contain;
            z-index: 2;
            pointer-events: none;
        }
 
        /* Icon area */
        .step-icon {
            width: 88px;
            height: 88px;
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 
        .step-icon img {
            width: 76px;
            height: 76px;
            object-fit: contain;
            filter: grayscale(100%) brightness(0.15);
        }
 
        /* Number + Title row */
        .step-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
 
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
            height: 28px;
            padding: 0 6px;
            background: #28A737;
            color: #111111;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            border-radius: 2px;
            flex-shrink: 0;
        }
 
        .step-title {
            font-size: 18px;
            font-weight: 700;
            color: #111111;
            line-height: 1.2;
            text-transform: capitalize;
        }
 
        /* Description */
        .step-desc {
            font-size: 16px;
            color: #777777;
            line-height: 1.65;
            padding-right: 12px;
        }
 
        /* ===== RESPONSIVE ===== */
 
        /* Tablet: 2x2 */
        @media (max-width: 900px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 20px;
            }
 
            .step-item {
                padding: 0;
            }
 
            /* hide connectors on tablet/mobile */
            .step-item:not(:last-child)::after {
                display: none;
            }
        }
 
        /* Mobile: 1 column */
        @media (max-width: 520px) {
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }
 
            .index-second-02 {
                padding: 44px 0 40px;
            }
 
            .step-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 16px;
            }
 
            .step-icon img {
                width: 60px;
                height: 60px;
            }
 
            .step-title {
                font-size: 16px;
            }
        }
    /* end */

    /* <section class="index-service-03"> */

        /* ===== SECTION ===== */
        .index-service-03 {
            background: #eef1f5;
            padding: 70px 0 80px;
            width: 100%;
        }
 
        .index-service-03 .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }
 
        /* ---- Heading ---- */
        .service-heading {
            text-align: center;
            margin-bottom: 14px;
        }
 
        .service-heading h2 {
            font-size: clamp(32px, 5vw, 46px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }
 
        .service-heading h2 .our {
            color: #1a2e5a;
        }
 
        .service-heading h2 .services {
            color: #28A737;
        }
 
        .service-subtext {
            text-align: center;
            font-size: 15px;
            font-weight: 400;
            color: #555;
            line-height: 1.7;
            margin-bottom: 56px;
        }
 
        /* ---- Icons Grid ---- */
        .service-grid {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 42px;
            flex-wrap: wrap;
        }
 
        /* Each service item */
        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 41px;
            width: 140px;
            cursor: pointer;
        }
 
        /* Diamond shape */
        .diamond-wrap {
            width: 110px;
            height: 110px;
            background: #28A737;
            transform: rotate(45deg);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 6px 20px rgba(40, 167, 55, 0.22);
        }
 
        .service-item:hover .diamond-wrap {
            background: #c49e00;
            transform: rotate(45deg) scale(1.07);
            box-shadow: 0 10px 28px rgba(40, 167, 55, 0.35);
        }
 
        /* Icon inside diamond (un-rotate) */
        .diamond-wrap img {
            transform: rotate(-45deg);
            width: 48px;
            height: 48px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }
 
        /* Label */
        .service-label {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #1a2e5a;
            text-align: center;
            transition: color 0.2s;
        }
 
        .service-item:hover .service-label {
            color: #c49e00;
        }
 
        /* ===== RESPONSIVE ===== */
        @media (max-width: 860px) {
            .service-grid {
                gap: 28px 16px;
            }
            .service-item {
                width: 120px;
            }
            .diamond-wrap {
                width: 90px;
                height: 90px;
            }
            .diamond-wrap img {
                width: 38px;
                height: 38px;
            }
        }
 
        @media (max-width: 560px) {
            .index-service-03 {
                padding: 50px 0 56px;
            }
            .service-grid {
                gap: 32px 12px;
            }
            .service-item {
                width: calc(33.33% - 12px);
                min-width: 90px;
            }
            .diamond-wrap {
                width: 76px;
                height: 76px;
            }
            .diamond-wrap img {
                width: 32px;
                height: 32px;
            }
            .service-label {
                font-size: 11px;
                letter-spacing: 0.8px;
            }
            .service-subtext {
                font-size: 14px;
                margin-bottom: 40px;
            }
        }
 
        @media (max-width: 360px) {
            .service-item {
                width: calc(50% - 10px);
            }
        }

    /* end */

/* <section class="index-timeline-04"> */
    .index-timeline-04 * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .index-timeline-04 {
        background: #edf1f6;
        padding: 60px 0 70px;
        width: 100%;
    }

    .index-timeline-04 .tl-container {
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* ============================================
       DESKTOP LAYOUT
    ============================================ */
    .tl-desktop { display: block; }

    /* TOP ROW: [icon][text][icon][text] */
    .tl-top-row {
        display: grid;
        grid-template-columns: 130px 1fr 130px 1fr;
        align-items: flex-end;
        gap: 0;
    }

    .tl-top-icon {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 6px;
    }

    .tl-top-text {
        padding: 0 20px 14px 136px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    /* MIDDLE LINE */
    .tl-mid {
        position: relative;
        height: 46px;
        display: flex;
        align-items: center;
    }

    .tl-mid-line {
        position: absolute;
        left: 0; right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 2px;
        background: #1c2e50;
        z-index: 0;
    }

    /* 4 dots positioned over the 4 grid columns */
    .tl-dots-row {
        position: absolute;
        left: 0; right: 0; top: 0;
        height: 100%;
        display: grid;
        grid-template-columns: 130px 1fr 130px 1fr;
        z-index: 2;
    }

    .tl-dot-col {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .tl-dot-circle {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #fff;
        border: 2.5px solid #1c2e50;
        position: relative;
        z-index: 3;
        flex-shrink: 0;
    }

    /* tick UP */
    .tl-dot-circle.tick-up::before {
        content: '';
        position: absolute;
        bottom: calc(100% + 1px);
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 18px;
        background: #1c2e50;
    }

    /* tick DOWN */
    .tl-dot-circle.tick-down::after {
        content: '';
        position: absolute;
        top: calc(100% + 1px);
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 18px;
        background: #1c2e50;
    }

    /* BOTTOM ROW: [text][icon][text][icon] */
    .tl-bottom-row {
        display: grid;
        grid-template-columns: 200px 1fr 200px 1fr;
        align-items: flex-start;
        gap: 0;
    }

    .tl-bottom-icon {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 6px;
    }

    .tl-bottom-text {
        padding: 14px 20px 0 16px;
        display: flex;
        flex-direction: column;
    }

    /* ---- Shared Circle ---- */
    .tl-circle {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #dde3ee;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 18px rgba(0,0,0,0.07);
        flex-shrink: 0;
    }

    .tl-circle img {
        width: 66px;
        height: 66px;
        object-fit: contain;
    }

    .tl-title {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        color: #1a2e5a;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .tl-desc {
        font-size: 13.5px;
        color: #666;
        line-height: 1.7;
        max-width: 230px;
    }

    /* ============================================
       MOBILE
    ============================================ */
    .tl-mobile { display: none; }

    @media (max-width: 820px) {
        .tl-desktop { display: none; }
        .tl-mobile  { display: block; }

        .index-timeline-04 { padding: 44px 0 50px; }
        .index-timeline-04 .tl-container { padding: 0 20px; }

        .tl-mobile-inner {
            position: relative;
            padding-left: 36px;
        }

        .tl-mobile-inner::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 16px;
            bottom: 16px;
            width: 2px;
            background: #1c2e50;
        }

        .tl-m-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 36px;
            position: relative;
        }

        .tl-m-item:last-child { margin-bottom: 0; }

        .tl-m-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 28px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #fff;
            border: 2.5px solid #1c2e50;
            z-index: 2;
        }

        .tl-m-circle {
            width: 80px; height: 80px; min-width: 80px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #dde3ee;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(0,0,0,0.07);
        }

        .tl-m-circle img { width: 46px; height: 46px; object-fit: contain; }

        .tl-m-text { flex: 1; padding-top: 6px; }

        .tl-m-title {
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.3px;
            text-transform: uppercase;
            color: #1a2e5a;
            margin-bottom: 8px;
        }

        .tl-m-desc { font-size: 13px; color: #666; line-height: 1.65; }
    }

/* end */

/* <section class="index-achievement-05"> */


    .index-achievement-05 * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .index-achievement-05 {
        background: #fff;
        padding: 65px 0 70px;
    }

    .index-achievement-05 .ach-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ---- Heading ---- */
    .ach-heading {
        text-align: center;
        margin-bottom: 54px;
    }

    .ach-heading h2 {
        font-size: clamp(30px, 4.5vw, 42px);
        font-weight: 800;
        color: #1a2e5a;
        letter-spacing: -0.5px;
    }

    .ach-heading h2 span {
        color: #28A737;
    }

    /* ---- Grid ---- */
    .ach-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* ---- Each stat card ---- */
    .ach-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* Speedometer arc canvas wrapper */
    .ach-gauge-wrap {
        position: relative;
        width: 140px;
        height: 90px;   /* only top half visible */
        overflow: hidden;
        margin-bottom: 10px;
    }

    .ach-gauge-wrap canvas {
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Icon in center of arc */
    .ach-icon {
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @media screen 
    and (max-width: 480px) {
        .ach-icon {
            bottom: -1px;
            left: 55%;
        }
    
        
    }

    .ach-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    /* Number */
    .ach-number {
        font-size: clamp(28px, 3.5vw, 38px);
        font-weight: 800;
        color: #1a2e5a;
        line-height: 1;
        margin-bottom: 8px;
    }

    /* Label */
    .ach-label {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #28A737;
        text-align: center;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 860px) {
        .ach-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 20px;
        }
    }

    @media (max-width: 480px) {
        .index-achievement-05 { padding: 44px 0 50px; }
        .ach-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 32px 10px;
        }
        .ach-gauge-wrap { width: 120px; height: 68px; }
        .ach-number { font-size: 26px; }
        .ach-label { font-size: 10px; letter-spacing: 1.2px; }
    }
/* end */

/* <section class="index-cta-06"> */
    .index-cta-06 * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .index-cta-06 {
        --primary: #2790d2;
        --primary-dark: #1c7fbc;
        --white: #ffffff;
        --border-soft: rgba(255, 255, 255, 0.25);
        --shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
        --transition: 0.28s ease;
        --container: 1760px;

        background: #28A737;   /* light olive/sage — matches screenshot bg */
        width: 100%;
    }

    .index-cta-06 .cta-inner {
        max-width: var(--container);
        margin: 0 auto;
        display: flex;
        align-items: stretch;
        min-height: 200px;         /* full CTA height */
        position: relative;
        overflow: hidden;
    }

    /* ---- LEFT CONTENT ---- */
    .cta-left {
        flex: 1 1 55%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 44px 48px 36px 60px;
        position: relative;
        z-index: 2;
    }

    .cta-left h2 {
        font-size: clamp(22px, 2.8vw, 36px);
        font-weight: 700;
        color: var(--white);           /* dark green tone matching screenshot */
        line-height: 1.25;
        margin-bottom: 18px;
    }

    /* Outlined badge button */
    .cta-icon{
    width: 25px;
    height: 25px;
    object-fit: contain;
    display: block;
}
    .cta-badge {
            display: inline-flex;              /* IMPORTANT */
    align-items: center;               /* vertical center */
    justify-content: center;           /* horizontal alignment */
    gap: 8px;                          /* space between text & icon */

        border: 1.5px solid var(--white);
        color: var(--white);
        font-size: 13px;
        font-weight: 600;
        padding: 5px 16px;
        border-radius: 3px;
        margin-bottom: 28px;
        letter-spacing: 0.3px;
        transition: background var(--transition), color var(--transition);
        cursor: pointer;
        width: fit-content;
    }
    .cta-badge:hover {
        background: var(--primary);
        color: var(--white);
    }

    /* Bottom links */
    .cta-links {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
    }

    .cta-links a {
        font-size: 14px;
        font-weight: 500;
        color: #3a5a4a;
        text-decoration: none;
        transition: color var(--transition);
    }
    .cta-links a:hover { color: var(--primary); }

    /* Divider line between left and right on desktop */
    .cta-divider {
        width: 1px;
        background: rgba(100,130,100,0.2);
        align-self: stretch;
        flex-shrink: 0;
    }

    /* ---- RIGHT: TRUCK IMAGE ---- */
    .cta-right {
        flex: 0 0 45%;
        position: relative;
        display: flex;
        align-items: flex-end;   /* truck sits at bottom of section */
        justify-content: flex-end;
        overflow: visible;
        z-index: 2;
    }

    .cta-truck {
        /* Truck overflows 50% of section height upward */
        width: 100%;
        max-width: 596px;        /* 1192/2 = 596 — 50% of original width */
        height: auto;
        object-fit: contain;
        object-position: bottom right;
        display: block;
        /* Sit bottom, overflow top by ~50% of its own height */
        margin-bottom: 0;
        transform: translateY(0);
        filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
        .index-cta-06 .cta-inner {
            flex-direction: column;
            min-height: unset;
        }
        .cta-left {
            padding: 36px 28px 28px;
        }
        .cta-divider { display: none; }
        .cta-right {
            flex: 0 0 auto;
            justify-content: center;
        }
        .cta-truck {
            max-width: 420px;
            width: 90%;
        }
    }

    @media (max-width: 520px) {
        .cta-left { padding: 28px 20px 1px; }
        .cta-left h2 { font-size: 20px; }
        .cta-truck { max-width: 300px; width: 85%; }
        .cta-links { gap: 18px; }
    }

/* end */

/* <section class="index-about-company"> */
.index-about-company *, .index-about-company *::before, .index-about-company *::after {
    box-sizing: border-box; margin: 0; padding: 0;
}

.index-about-company {
    --primary:      #28A737;
    --primary-dark: #28A737;
    --blue:         #1a4fa8;
    --blue-mid:     #2060c8;
    --blue-light:   #e8f0fc;
    --white:        #ffffff;
    --txt:          #1a2a3a;
    --muted:        #5a6a7a;
    --bg:           #f0f5fb;
    background: var(--bg);
    padding: 70px 0 80px;
}

.ab-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 72px;
}

/* ==============================
   LEFT — Circular Image Block
============================== */
.ab-left {
    flex: 0 0 360px;
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer dashed blue ring */
.ab-ring-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px dashed rgba(26,79,168,0.22);
    animation: rotateSlow 22s linear infinite;
}

/* Rotating dots on outer ring */
.ab-ring-outer::before,
.ab-ring-outer::after {
    content: '';
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--primary);
}
.ab-ring-outer::before { top: -6px; left: 50%; transform: translateX(-50%); }
.ab-ring-outer::after  { bottom: -6px; left: 50%; transform: translateX(-50%); }

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Middle solid blue ring */
.ab-ring-mid {
    position: absolute;
    width: 310px; height: 310px;
    border-radius: 50%;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    z-index: 1;
    box-shadow: 0 12px 40px rgba(40,167,55,0.30);
}

/* Inner white circle for photo */
.ab-ring-inner {
    width: 260px; height: 260px;
    border-radius: 50%;
    background: var(--white);
    overflow: hidden;
    border: 5px solid var(--white);
    position: relative;
    z-index: 2;
}

.ab-ring-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Decorative arc swipe on the ring */
.ab-arc {
    position: absolute;
    width: 310px; height: 310px;
    border-radius: 50%;
    border: 14px solid transparent;
    border-top: 14px solid rgba(255,255,255,0.18);
    border-right: 14px solid rgba(255,255,255,0.08);
    z-index: 3;
    pointer-events: none;
}

/* GSS Logo badge top-left */
.ab-logo-badge {
    position: absolute;
    top: 10px; left: 8px;
    width: 66px; height: 66px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--blue-mid);
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    overflow: hidden;
}

.ab-logo-badge img {
    width: 46px; height: 46px;
    object-fit: contain;
}

/* Fallback text logo */
.ab-logo-text {
    font-size: 15px;
    font-weight: 900;
    color: var(--blue-mid);
    letter-spacing: 0.5px;
}

/* Years badge bottom-right */
.ab-years-badge {
    position: absolute;
    bottom: 18px; right: 14px;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--primary);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(40,167,55,0.40);
    border: 3px solid white;
}

.ab-years-num {
    font-size: 20px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.ab-years-label {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Star decorations */
.ab-star {
    position: absolute;
    color: var(--primary);
    opacity: 0.55;
    font-size: 20px;
    pointer-events: none;
    user-select: none;
}
.ab-star-1 { bottom: 60px; left: 2px; font-size: 16px; }
.ab-star-2 { top: 70px; right: 0px; font-size: 12px; opacity: 0.35; }
.ab-star-3 { bottom: 120px; right: 4px; font-size: 10px; opacity: 0.3; }

/* ==============================
   RIGHT — Text Content
============================== */
.ab-right {
    flex: 1;
}

.ab-right h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.1;
}

/* ISO quote block */
.ab-iso-block {
    border-left: 4px solid var(--primary);
    background: rgba(40,167,55,0.05);
    padding: 12px 18px;
    margin-bottom: 22px;
    border-radius: 0 6px 6px 0;
}

.ab-iso-block p {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.65;
}

/* Underline divider */
.ab-divider {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.ab-divider-thick {
    width: 36px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}


/* Sub heading */
.ab-sub-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

/* Paragraphs */
.ab-para {
    font-size: 16.5px;
    color: var(--muted);
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 16px;
}

.ab-para:last-child { margin-bottom: 0; }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 880px) {
    .ab-wrap {
        flex-direction: column;
        gap: 48px;
        align-items: center;
    }
    .ab-left { flex: 0 0 auto; }
    .ab-right { width: 100%; }
}

@media (max-width: 500px) {
    .index-about-company { padding: 48px 0 56px; }
    .ab-wrap { padding: 0 18px; gap: 36px; }
    .ab-left { height: 300px; }
    .ab-ring-mid { width: 250px; height: 250px; }
    .ab-ring-inner { width: 210px; height: 210px; }
    .ab-arc { width: 250px; height: 250px; }
}
/* end */

/* footer  */

.site-footer {
    --primary:  #c7b169;
    --primary-l:#ecb493;
    --navy:     #28A737;
    --navy-mid: #ffffff;
    --border:   #ffffff;
    --muted:    #fff;
    --white:    #ffffff;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

/* ==============================
   DECORATIVE BG SHAPES
============================== */
.site-footer::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39,144,210,0.08), transparent 70%);
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 80px; left: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39,144,210,0.05), transparent 70%);
    pointer-events: none;
}

/* ==============================
   NEWSLETTER STRIP
============================== */
.footer-newsletter-strip {
    background: rgba(255,255,255,0.12);
    padding: 0 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.footer-newsletter-strip::before {
    content: '';
    position: absolute;
    top: -40px; right: 10%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.footer-nl-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-nl-text {}

.footer-nl-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 4px;
}

.footer-nl-heading {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.footer-nl-form {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: 6px;
    overflow: hidden;
    min-width: 360px;
    flex-shrink: 0;
}

.footer-nl-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 14px;
    color: white;
    width: 100%;
}

.footer-nl-form input::placeholder { color: rgba(255,255,255,0.5); }

.footer-nl-btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.22s, color 0.22s;
}

.footer-nl-btn:hover {
    background: var(--navy);
    color: var(--white);
}

/* ==============================
   MAIN FOOTER BODY
============================== */
.footer-body {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 32px 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    position: relative;
    z-index: 2;
}

/* ---- Column 1: Brand ---- */
.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.footer-logo-icon svg { width: 24px; height: 24px; }

.footer-logo-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.3px;
    line-height: 1;
}
.footer-logo-name span { color: var(--primary); }

.footer-logo-tag {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 280px;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--navy-lt);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.footer-social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-social-btn svg {
    width: 16px; height: 16px;
    fill: var(--muted);
    transition: fill 0.22s;
}
.footer-social-btn:hover svg { fill: white; }

/* ---- Column 2, 3: Links ---- */
.footer-col {}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links li {}

.footer-links a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.22s, gap 0.22s;
}

.footer-links a::before {
    content: '';
    display: block;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--navy-lt);
    border: 1px solid rgb(1, 255, 64);
    flex-shrink: 0;
    transition: background 0.22s, border-color 0.22s;
}

.footer-links a:hover {
    color: var(--primary-l);
    gap: 12px;
}
.footer-links a:hover::before {
    background: var(--primary);
    border-color: var(--primary);
}

/* ---- Column 4: Contact ---- */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-icon {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--navy-lt);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.footer-contact-icon svg {
    width: 16px; height: 16px;
    stroke: #ffffff;
}

.footer-contact-text {}

.footer-contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
}

.footer-contact-val {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}

.footer-contact-val a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.22s;
}
.footer-contact-val a:hover { color: var(--primary-l); }

/* ==============================
   DIVIDER
============================== */
.footer-divider {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.footer-divider-line {
    height: 1px;
    background: var(--border);
}

/* ==============================
   BOTTOM BAR
============================== */
.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.footer-copy {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.footer-copy a {
    color: var(--primary-l);
    text-decoration: none;
}
.footer-copy a:hover { text-decoration: underline; }

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 12.5px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.22s;
}
.footer-bottom-links a:hover { color: var(--primary-l); }

/* Scroll to top btn */
.footer-top-btn {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: var(--primary);
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.22s, transform 0.22s;
}
.footer-top-btn:hover {
    background: var(--primary-l);
    transform: translateY(-3px);
}
.footer-top-btn svg {
    width: 18px; height: 18px;
    stroke: white;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1020px) {
    .footer-body {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 660px) {
    .footer-nl-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 28px 20px;
    }
    .footer-nl-form { min-width: unset; width: 100%; }
    .footer-body {
        grid-template-columns: 1fr;
        padding: 48px 20px 36px;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 14px;
    }
    .footer-divider { padding: 0 20px; }
}
/* end  */


/* <section class="index-clients-07" aria-label="Our Trusted Clients">*/

.index-clients-07 {
    --border-soft:  rgba(255,255,255,0.25);
    --bg:           #f7faf7;
    --border:       #e0ede1;
    --txt:          #1a2e1c;
    background:var(--bg);
    padding: 60px 0 68px;
}

.clients-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---- Heading ---- */
.clients-heading {
    text-align: center;
    margin-bottom: 48px;
}

.clients-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.clients-eyebrow span {
    display: block;
    width: 24px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.clients-heading h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--txt);
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.clients-heading h2 em {
    font-style: normal;
    color: var(--primary);
}

.clients-heading p {
    font-size: 15px;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.6;
}

/* ---- Logo Grid ---- */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
}

/* Each logo card */
.client-logo-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    background: var(--white);
    border-right: 1.5px solid var(--border);
    transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
    cursor: pointer;
    min-height: 110px;
}

/* Remove right border from last item */
.client-logo-item:last-child { border-right: none; }

/* Green fill on hover */
.client-logo-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
    z-index: 0;
}

.client-logo-item:hover::before { transform: scaleY(1); }

.client-logo-item:hover {
    box-shadow: 0 8px 28px rgba(40,167,55,0.22);
    z-index: 2;
}

/* Logo image */
.client-logo-item img {
    width: 170px;
    height: 102px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    transition: filter 0.28s ease, transform 0.28s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%) opacity(1) brightness(0) invert(1);
    transform: scale(1.06);
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .client-logo-item:nth-child(3) { border-right: none; }
    .client-logo-item:nth-child(4),
    .client-logo-item:nth-child(5),
    .client-logo-item:nth-child(6) {
        border-top: 1.5px solid var(--border);
    }
    .client-logo-item:nth-child(6) { border-right: none; }
}

@media (max-width: 600px) {
    .index-clients-07 { padding: 44px 0 52px; }
    .clients-container { padding: 0 18px; }
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }
    .client-logo-item { padding: 22px 14px; min-height: 90px; }
    .client-logo-item img { width: 120px; height: 72px; }
    .client-logo-item:nth-child(2) { border-right: none; }
    .client-logo-item:nth-child(3) { border-right: 1.5px solid var(--border); border-top: 1.5px solid var(--border); }
    .client-logo-item:nth-child(4) { border-right: none; border-top: 1.5px solid var(--border); }
    .client-logo-item:nth-child(5) { border-right: 1.5px solid var(--border); border-top: 1.5px solid var(--border); }
    .client-logo-item:nth-child(6) { border-right: none; border-top: 1.5px solid var(--border); }
}

/* end */

/* <section class="index-hero-banner"> */

.index-hero-banner {
    --primary: #2790d2;
    --primary-dark: #1c7fbc;
    --white: #ffffff;
    position: relative;
    width: 100%;
    height: 470px;
    overflow: hidden;
}

/* ==============================
   BACKGROUND — pan left→right
============================== */
.hero-bg-track {
    position: absolute;
    inset: 0;
    /* wider than viewport so the pan has room */
    width: 200%;
    height: 100%;
    animation: bgPan 30s linear infinite;
    will-change: transform;
    z-index: 0;
}

.hero-bg-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    /* zoom 100% fill, image is 3840px wide — doubled track handles the pan */
}

/* Pan from left edge to right edge then loop */
@keyframes bgPan {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); } /* move left half of the doubled track = one image width */
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(5, 18, 40, 0.72) 0%,
        rgba(10, 28, 60, 0.55) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
}

/* ==============================
   CONTENT LAYER
============================== */
.hero-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ---- LEFT TEXT ---- */
.hero-left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    /* Text slides in from left on load */
    animation: textSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes textSlideIn {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #28A737;
    margin-bottom: 18px;
}
.hero-tag::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #28A737;
    border-radius: 2px;
}

.hero-title {
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-title .line-highlight {
    display: block;
    color: #28A737;
    -webkit-text-stroke: 0px;
}

.hero-title .line-outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.55);
}

.hero-desc {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: rgba(255,255,255,0.70);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 36px;
}

/* View More Button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #28A737;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(39,144,210,0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* Shimmer */
.hero-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(2, 255, 6, 0.3), transparent);
    animation: btnShimmer 2.6s ease-in-out infinite;
}
@keyframes btnShimmer {
    0%   { left: -80%; }
    60%  { left: 130%; }
    100% { left: 130%; }
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(38, 248, 73, 0.5);
    background: var(--primary-dark);
}

.hero-btn svg {
    width: 16px; height: 16px;
    transition: transform 0.22s;
}
.hero-btn:hover svg { transform: translateX(4px); }

/* ---- RIGHT: TRUCK ---- */
.hero-right {
    flex: 0 0 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    overflow: visible;
}

.hero-truck {
    width: 596px;          /* 1192 / 2 = 596 (50% of original) */
    max-width: 90%;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
    display: block;
    /* Slide in from right on load */
    animation: truckSlideIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.35));
    /* Subtle floating animation after entry */
}

@keyframes truckSlideIn {
    0%   { opacity: 0; transform: translateX(420px); }
    30%  { opacity: 1; }
    100% { opacity: 1; transform: translateX(0); }
}

/* Gentle float loop after slide-in */
.hero-truck {
    animation:
        truckSlideIn 30s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both,
        truckFloat 4s ease-in-out 5.5s infinite;
}

@keyframes truckFloat {
    0%, 100% { transform: translateY(0px);  }
    50%       { transform: translateY(-8px); }
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
    .index-hero-banner { height: auto; min-height: 480px; }

    .hero-content-wrap {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 60px 28px 0;
        gap: 24px;
    }

    .hero-left { flex: 0 0 auto; }
    .hero-right {
        flex: 0 0 auto;
        width: 100%;
        justify-content: center;
        align-items: flex-end;
    }
    .hero-truck { width: 360px; }
}

@media (max-width: 560px) {
    .index-hero-banner { min-height: 420px; }
    .hero-content-wrap { padding: 44px 20px 0; }
    .hero-title { letter-spacing: -0.5px; }
    .hero-truck { width: 260px; }
    .hero-desc { font-size: 13px; }
}
/* end */

/* <section class="index-why-choose-us"> */


.index-why-choose-us {
    --g1: #28A737;
    --g2: #28A737;
    --g3: #2e9e52;
    --g4: #52c97a;
    --g5: #e4f7ea;
    --white: #ffffff;
    --txt: #0c2312;
    --sub: #3d6649;
    background: var(--white);
    padding: 0;
}

/* ==============================
   TOP BANNER STRIP
============================== */
.wcu-banner {
    background: var(--g1);
    padding: 56px 0 130px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Large decorative arc bottom */
.wcu-banner::after {
    content: '';
    position: absolute;
    bottom: -2px; left: -5%; right: -5%;
    height: 90px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 80px 80px 0 0;
}

/* Animated ring decorations */
.wcu-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.06);
    pointer-events: none;
}
.wcu-ring-1 { width: 320px; height: 320px; top: -100px; left: -80px; }
.wcu-ring-2 { width: 200px; height: 200px; top: -60px; left: -20px; }
.wcu-ring-3 { width: 280px; height: 280px; top: -60px; right: -60px; }
.wcu-ring-4 { width: 160px; height: 160px; bottom: 20px; right: 10%; }

.wcu-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.wcu-banner-eyebrow span {
    display: block;
    width: 24px; height: 2px;
    background: var(--g4);
    border-radius: 2px;
}

.wcu-banner-title {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

.wcu-banner-title em {
    font-style: normal;
    color: #ffffff;
    display: block;
}

.wcu-banner-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ==============================
   CARDS GRID (overlaps banner)
============================== */
.wcu-body {
    padding: 0 32px 80px;
    max-width: 1180px;
    margin: -60px auto 0;
    position: relative;
    z-index: 2;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Feature Card ---- */
.wcu-card {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid #e0ede4;
    padding: 36px 28px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    cursor: default;
}

.wcu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15,61,31,0.13);
    border-color: var(--g3);
}

/* Corner ribbon */
.wcu-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--g5) transparent transparent;
    transition: border-color 0.28s;
}
.wcu-card:hover::after { border-color: transparent var(--g3) transparent transparent; }

/* BIG number behind card */
.wcu-card-bg-num {
    position: absolute;
    bottom: -16px; right: 12px;
    font-size: 96px;
    font-weight: 900;
    color: rgba(46,158,82,0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.28s;
}
.wcu-card:hover .wcu-card-bg-num { color: rgba(46,158,82,0.10); }

/* Hexagon icon */
.wcu-hex-wrap {
    width: 70px; height: 70px;
    position: relative;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.wcu-hex {
    width: 70px; height: 70px;
    background: var(--g5);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.28s;
}
.wcu-card:hover .wcu-hex { background: var(--g2); }

.wcu-hex svg {
    width: 28px; height: 28px;
    stroke: var(--g2);
    transition: stroke 0.28s;
}
.wcu-card:hover .wcu-hex svg { stroke: white; }

.wcu-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--txt);
    margin-bottom: 10px;
    line-height: 1.25;
}

.wcu-card-desc {
    font-size: 13.5px;
    color: var(--sub);
    line-height: 1.75;
}

/* Divider dot row */
.wcu-card-foot {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 22px;
}

.wcu-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--g5);
    transition: background 0.28s, transform 0.28s;
}
.wcu-dot:first-child {
    background: var(--g3);
    width: 18px;
    border-radius: 3px;
}
.wcu-card:hover .wcu-dot { background: var(--g4); }
.wcu-card:hover .wcu-dot:first-child { background: var(--g2); }

/* ==============================
   BOTTOM STATS BAR
============================== */
.wcu-stats-bar {
    background: var(--g1);
    border-radius: 20px;
    margin: 16px 32px 0;
    max-width: calc(1180px - 64px);
    margin-left: auto; margin-right: auto;
    padding: 36px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    overflow: hidden;
}

.wcu-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(46,158,82,0.15), transparent 60%);
    pointer-events: none;
}

.wcu-stat {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* vertical dividers */
.wcu-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.wcu-stat-num {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.wcu-stat-num sup {
    font-size: 0.5em;
    color: var(--g4);
    font-weight: 800;
    vertical-align: super;
}

.wcu-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 960px) {
    .wcu-grid { grid-template-columns: repeat(2, 1fr); }
    .wcu-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
    .wcu-stat:nth-child(2)::after { display: none; }
}

@media (max-width: 600px) {
    .wcu-banner { padding: 48px 20px 120px; }
    .wcu-body { padding: 0 16px 60px; margin-top: -50px; }
    .wcu-grid { grid-template-columns: 1fr; gap: 16px; }
    .wcu-stats-bar { grid-template-columns: 1fr 1fr; margin: 12px 16px 0; padding: 28px 24px; gap: 20px 0; }
    .wcu-stat:nth-child(odd)::after { display: block; }
    .wcu-stat:nth-child(even)::after { display: none; }
}
/* end */

/* <div class="page-hero-banner" role="banner" aria-label="About Us page header"> */

.page-hero-banner {

    position: relative;
    width: 100%;
    height: 30vh;
    min-height: 180px;
    max-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background image */
.phb-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
    z-index: 0;
}

/* Dark overlay — same dark navy as screenshot */
.phb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(5, 10, 25, 0.88) 0%,
        rgba(8, 18, 45, 0.78) 45%,
        rgba(5, 10, 30, 0.60) 100%
    );
    z-index: 1;
}

/* Optional: right-side fade to let image show through on right */
.phb-overlay-right {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 255, 17, 0.768) 0%,
        transparent 100%
    );
    z-index: 2;
}

/* Top accent line — green */
.phb-accent-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    z-index: 5;
}

/* Bottom accent line */
.phb-bottom-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,0.08);
    z-index: 5;
}

/* ---- Decorative shape (left diagonal) ---- */
.phb-shape {
    position: absolute;
    left: 38%;
    top: 0; bottom: 0;
    width: 180px;
    background: rgba(40,167,55,0.06);
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
    z-index: 2;
}

/* ---- Content ---- */
.phb-content {
    position: relative;
    z-index: 6;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.phb-title {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin-bottom: 12px;
    /* Slide in from left */
    animation: phbSlideIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes phbSlideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Breadcrumb */
.phb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: phbSlideIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}

.phb-breadcrumb a {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.phb-breadcrumb a:hover { color: #5cd96a; }

.phb-breadcrumb-arrow {
    display: flex;
    align-items: center;
    color: var(--white);
}
.phb-breadcrumb-arrow svg {
    width: 14px; height: 14px;
}

.phb-breadcrumb-current {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 640px) {
    .page-hero-banner {
        height: 30vh;
        min-height: 150px;
    }
    .phb-content { padding: 0 20px; }
    .phb-title { letter-spacing: 0.5px; }
}
/* end */

/* <article class="about-content-section" itemscope itemtype="https://schema.org/Organization"> */

.about-content-section {
    --primary:      #28A737;
    --primary-dark: #1e8229;
    --white:        #ffffff;
    --border-soft:  rgba(255,255,255,0.25);
    --navy:         #0d1f35;
    --navy-mid:     #132840;
    --txt:          #1a2a1c;
    --muted:        #4a6a50;
    --bg:           #f8faf8;
}

/* ==============================
   PART 1 — TOP: Text + Image Collage
============================== */
.acs-top {
    background: var(--bg);
    padding: 72px 0 76px;
}

.acs-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

.acs-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ---- LEFT TEXT ---- */
.acs-text {}

.acs-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.acs-eyebrow::before {
    content: '';
    display: block;
    width: 20px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.acs-main-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    color: var(--txt);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.acs-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 18px;
}

/* Feature list */
.acs-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.acs-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--txt);
}

.acs-features li::before {
    content: '';
    display: block;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Stats row */
.acs-stats-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid #ddeedd;
}

.acs-stat {}

.acs-stat-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 3px;
}

.acs-stat-num sup {
    font-size: 0.5em;
    vertical-align: super;
}

.acs-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}

/* Progress bar */
.acs-progress-wrap {
    margin-top: 18px;
    width: 100%;
}

.acs-prog-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.acs-prog-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--txt);
}

.acs-prog-pct {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.acs-prog-track {
    height: 6px;
    background: #ddeedd;
    border-radius: 3px;
    overflow: hidden;
}

.acs-prog-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: progFill 1.4s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}

@keyframes progFill { to { transform: scaleX(1); } }

/* ---- RIGHT IMAGE COLLAGE ---- */
.acs-collage {
    position: relative;
}

/* Dot grid decoration */
.acs-dot-deco {
    position: absolute;
    top: -18px; right: -18px;
    width: 100px; height: 100px;
    background-image: radial-gradient(circle, rgba(40,167,55,0.25) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    z-index: 0;
    pointer-events: none;
}

/* Main large image */
.acs-img-main {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

/* Two small images side by side */
.acs-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    z-index: 1;
}

/* Years badge over collage */
.acs-years-badge {
    position: absolute;
    bottom: -65px;
    left: 14px;
    background: var(--white);
    border-radius: 8px;
    padding: 14px 20px;
    z-index: 4;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    min-width: 140px;
}

.acs-years-num {
    font-size: 44px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 3px;
}

.acs-years-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.acs-img-row img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* ==============================
   PART 2 — BOTTOM: Dark Vision/Mission/Company Panel
============================== */
.acs-bottom {
    background: var(--navy);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Subtle dot texture */
.acs-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

/* Top green line */
.acs-bottom::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    z-index: 2;
}

.acs-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    position: relative;
    z-index: 1;
}

/* Vertical dividers */
.acs-vdivider {
    background: rgba(255,255,255,0.08);
    align-self: stretch;
}

.acs-panel {
    padding: 52px 44px;
}

.acs-panel-title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.1;
}

.acs-panel-text {
    font-size: 14px;
    color: rgba(255,255,255,0.60);
    line-height: 1.85;
}

.acs-panel-text + .acs-panel-text {
    margin-top: 14px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
    .acs-top-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .acs-bottom-grid {
        grid-template-columns: 1fr;
    }
    .acs-vdivider {
        display: none;
    }
    .acs-panel {
        padding: 40px 28px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .acs-panel:last-child { border-bottom: none; }
}

@media (max-width: 560px) {
    .acs-top { padding: 48px 0 52px; }
    .acs-container { padding: 0 18px; }
    .acs-img-main { height: 200px; }
    .acs-img-row img { height: 110px; }
    .acs-panel { padding: 32px 20px; }
    .acs-stats-row { gap: 20px; }
}
/* end */

/* <section class="index-vision-mission" aria-label="Our Mission and Our Company"> */
.index-vision-mission {
    position: relative;
    padding: 90px 20px;
    background: radial-gradient(circle at top left, #52d869, #28A737 40%, #12651e);
    overflow: hidden;
}

.vm-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.22;
    background: #ffffff;
}

.shape-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    left: -70px;
}

.shape-2 {
    width: 340px;
    height: 340px;
    right: -120px;
    bottom: -130px;
}

.vm-heading {
    text-align: center;
    color: #ffffff;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.vm-heading span {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.vm-heading h2 {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    margin: 0;
}

.vm-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    position: relative;
    z-index: 2;
}

.vm-card {
    height: 380px;
    perspective: 1400px;
}

.vm-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.9s cubic-bezier(.2,.8,.2,1);
    transform-style: preserve-3d;
}

.vm-card:hover .vm-card-inner {
    transform: rotateY(180deg);
}

.vm-card-face {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 42px;
    backface-visibility: hidden;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: 0 30px 70px rgba(0,0,0,0.28);
}

.vm-card-face::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-100%);
    transition: 0.8s;
}

.vm-card:hover .vm-card-face::before {
    transform: translateX(100%);
}

.vm-front {
    background: rgba(255,255,255,0.92);
    color: #123a18;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vm-back {
    background: linear-gradient(145deg, #ffffff, #eefdf1);
    color: #123a18;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vm-icon {
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient(135deg, #28A737, #6be77c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 28px;
    box-shadow: 0 15px 35px rgba(40,167,55,0.35);
}

.vm-card-face h3 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    margin: 0 0 16px;
}

.vm-card-face p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
    max-width: 460px;
}

.vm-card-bottom {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(40,167,55,0.22);
    font-size: 14px;
    font-weight: 800;
    color: #28A737;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vm-mini-icons {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.vm-mini-icons span {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #28A737;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 22px rgba(40,167,55,0.32);
}

/* Mobile */
@media (max-width: 768px) {
    .vm-inner {
        grid-template-columns: 1fr;
    }

    .vm-card {
        height: 370px;
    }
}

@media (max-width: 480px) {
    .index-vision-mission {
        padding: 65px 15px;
    }

    .vm-card-face {
        padding: 30px;
    }

    .vm-card-bottom {
        left: 30px;
        right: 30px;
    }
}
/* end */



/* <section class="index-experience-08" aria-label="Why choose us — Experience"> */
.index-experience-08 {
    position: relative;
    padding: 64px 0 72px;
    overflow: hidden;
}

/* Background image with light overlay */
.index-experience-08 .exp-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.index-experience-08 .exp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.88);
    z-index: 1;
}

.exp-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* ---- Heading ---- */
.exp-heading {
    margin-bottom: 44px;
}

.exp-heading h2 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800;
    color: #1a2a1c;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.exp-heading h2 em {
    font-style: normal;
    color: #28A737;
}

/* ---- Cards Grid ---- */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.exp-card {
    background: #ffffff;
    border-radius: 18px 18px 18px 60px;
    padding: 28px 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(40,167,55,0.15);
}

.exp-card-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a2a1c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.exp-icon-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #28A737;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.exp-icon-circle img {
    width: 38px; height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.exp-icon-circle svg {
    width: 36px; height: 36px;
    stroke: #ffffff;
    fill: none;
}

.exp-card-desc {
    font-size: 16px;
    color: #5a7a5e;
    line-height: 1.75;
    text-align: center;
    width: 100%;
}

/* Center title and desc */
.exp-card {
    align-items: center;
    text-align: center;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .index-experience-08 { padding: 48px 0 56px; }
    .exp-inner { padding: 0 18px; }
    .exp-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .exp-card { padding: 22px 16px; border-radius: 14px 14px 14px 44px; }
    .exp-icon-circle { width: 58px; height: 58px; }
    .exp-icon-circle svg { width: 28px; height: 28px; }
    .exp-card-title { font-size: 16px; }
    .exp-card-desc { font-size: 16px; }
    .exp-heading h2 { font-size: 26px; }
}

@media (max-width: 360px) {
    .exp-grid { grid-template-columns: 1fr; }
}
/* end */


/* ================================================================================ */

/*<section class="index-cta-06">  */

.service-page-loca02-mover02-02 {


  position: relative;
  overflow: hidden;
  padding: 90px 20px;
  background: var(--white);
}


.service-page-loca02-mover02-02 .spm302-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.service-page-loca02-mover02-02 .spm302-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 42px;
}

.service-page-loca02-mover02-02 .spm302-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 2px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
  background: var(--white);
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.service-page-loca02-mover02-02 .spm302-heading h2 {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 38px;
  line-height: 1.15;
}

.service-page-loca02-mover02-02 .spm302-heading p {
  margin: 0;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.85;
}

.service-page-loca02-mover02-02 .spm302-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-page-loca02-mover02-02 .spm302-card {
  position: relative;
  padding: 24px;
  border: 2px solid var(--primary);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.service-page-loca02-mover02-02 .spm302-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.service-page-loca02-mover02-02 .spm302-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.14;
  transition: all 0.4s ease;
  z-index: 0;
}

.service-page-loca02-mover02-02 .spm302-card > * {
  position: relative;
  z-index: 1;
}

.service-page-loca02-mover02-02 .spm302-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.service-page-loca02-mover02-02 .spm302-card:hover::before {
  transform: translateY(0);
}

.service-page-loca02-mover02-02 .spm302-card:hover::after {
  top: -20px;
  right: -20px;
  border-color: var(--white);
  opacity: 0.22;
}

.service-page-loca02-mover02-02 .spm302-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.service-page-loca02-mover02-02 .spm302-number {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: all 0.35s ease;
}

.service-page-loca02-mover02-02 .spm302-card h3 {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  line-height: 1.35;
  transition: color 0.35s ease;
}

.service-page-loca02-mover02-02 .spm302-card p {
  margin: 0;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.85;
  transition: color 0.35s ease;
}

.service-page-loca02-mover02-02 .spm302-card:hover .spm302-number {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.service-page-loca02-mover02-02 .spm302-card:hover h3,
.service-page-loca02-mover02-02 .spm302-card:hover p {
  color: var(--white);
}

/* moving background lines */
.service-page-loca02-mover02-02 .spm302-bg-track {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 2px;
  background: var(--primary);
  opacity: 0.14;
  z-index: 0;
}

.service-page-loca02-mover02-02 .spm302-bg-track-one {
  top: 24%;
  animation: spm302MoveOne 7s linear infinite;
}

.service-page-loca02-mover02-02 .spm302-bg-track-two {
  bottom: 18%;
  animation: spm302MoveTwo 9s linear infinite;
}

@keyframes spm302MoveOne {
  0% {
    transform: translateX(-8%) scaleX(0.92);
  }
  50% {
    transform: translateX(8%) scaleX(1);
  }
  100% {
    transform: translateX(-8%) scaleX(0.92);
  }
}

@keyframes spm302MoveTwo {
  0% {
    transform: translateX(10%) scaleX(1);
  }
  50% {
    transform: translateX(-10%) scaleX(0.9);
  }
  100% {
    transform: translateX(10%) scaleX(1);
  }
}

@media (max-width: 991px) {
  .service-page-loca02-mover02-02 .spm302-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page-loca02-mover02-02 .spm302-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .service-page-loca02-mover02-02 {
    padding: 70px 16px;
  }

  .service-page-loca02-mover02-02 .spm302-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-page-loca02-mover02-02 .spm302-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .service-page-loca02-mover02-02 .spm302-top {
    align-items: flex-start;
  }

  .service-page-loca02-mover02-02 .spm302-heading h2 {
    font-size: 24px;
  }

  .service-page-loca02-mover02-02 .spm302-card h3,
  .service-page-loca02-mover02-02 .spm302-card p,
  .service-page-loca02-mover02-02 .spm302-heading p,
  .service-page-loca02-mover02-02 .spm302-heading span {
    font-size: 16px;
  }
}
/* end */


/*  */ 
.serivce-why-choose-01 {
  --primary: #28A737;
  --primary-dark: #28A737;
  --white: #ffffff;
  --border-soft: rgba(255, 255, 255, 0.25);
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.18);

  padding: 90px 20px;
  background: var(--white);
  overflow: hidden;
}

.serivce-why-choose-01 * {
  box-sizing: border-box;
  font-weight: 800;
}

.serivce-why-choose-01 .swc03-container {
  max-width: 1200px;
  margin: 0 auto;
}

.serivce-why-choose-01 .swc03-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.serivce-why-choose-01 .swc03-heading h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.15;
}

.serivce-why-choose-01 .swc03-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.serivce-why-choose-01 .swc03-flow {
  position: relative;
  padding: 10px 0;
}

.serivce-why-choose-01 .swc03-row {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 26px;
}

.serivce-why-choose-01 .swc03-row:last-child {
  margin-bottom: 0;
}

.serivce-why-choose-01 .swc03-left {
  justify-content: flex-start;
}

.serivce-why-choose-01 .swc03-right {
  justify-content: flex-end;
}

.serivce-why-choose-01 .swc03-card {
  position: relative;
  width: calc(50% - 70px);
  min-height: 220px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.serivce-why-choose-01 .swc03-left .swc03-card {
  transform: rotate(-4deg);
}

.serivce-why-choose-01 .swc03-right .swc03-card {
  transform: rotate(4deg);
}

.serivce-why-choose-01 .swc03-card:hover {
  box-shadow: var(--shadow);
}

.serivce-why-choose-01 .swc03-left .swc03-card:hover {
  transform: rotate(-2deg) translateY(-8px);
}

.serivce-why-choose-01 .swc03-right .swc03-card:hover {
  transform: rotate(2deg) translateY(-8px);
}

.serivce-why-choose-01 .swc03-pin {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  z-index: 3;
}

.serivce-why-choose-01 .swc03-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--white);
}

.serivce-why-choose-01 .swc03-inner {
  position: relative;
  margin-top: 46px;
  padding: 22px 20px;
  border: 2px solid var(--primary);
  border-radius: 22px;
  background: var(--white);
  transition: background 0.35s ease;
}

.serivce-why-choose-01 .swc03-card::before {
  content: "";
  position: absolute;
  top: 32px;
  width: 74px;
  border-top: 2px dashed var(--primary);
  opacity: 0.7;
}

.serivce-why-choose-01 .swc03-left .swc03-card::before {
  right: -74px;
}

.serivce-why-choose-01 .swc03-right .swc03-card::before {
  left: -74px;
}

.serivce-why-choose-01 .swc03-card::after {
  content: "";
  position: absolute;
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
}

.serivce-why-choose-01 .swc03-left .swc03-card::after {
  right: -81px;
}

.serivce-why-choose-01 .swc03-right .swc03-card::after {
  left: -81px;
}

.serivce-why-choose-01 .swc03-inner h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 22px;
  line-height: 1.35;
}

.serivce-why-choose-01 .swc03-inner p {
  margin: 0;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.8;
}

.serivce-why-choose-01 .swc03-card:hover .swc03-inner {
  background: var(--primary);
}

.serivce-why-choose-01 .swc03-card:hover .swc03-inner h3,
.serivce-why-choose-01 .swc03-card:hover .swc03-inner p {
  color: var(--white);
}

/* center vertical guide */
.serivce-why-choose-01 .swc03-flow::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 2px;
  background:
    repeating-linear-gradient(
      to bottom,
      var(--primary) 0 12px,
      transparent 12px 24px
    );
  transform: translateX(-50%);
  opacity: 0.9;
}

/* background decorative lines */
.serivce-why-choose-01 .swc03-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0%, transparent 100%);
  pointer-events: none;
}

@media (max-width: 991px) {
  .serivce-why-choose-01 .swc03-card {
    width: calc(50% - 40px);
  }

  .serivce-why-choose-01 .swc03-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .serivce-why-choose-01 {
    padding: 70px 16px;
  }

  .serivce-why-choose-01 .swc03-heading h2 {
    font-size: 24px;
  }

  .serivce-why-choose-01 .swc03-flow::before {
    left: 18px;
    transform: none;
  }

  .serivce-why-choose-01 .swc03-row,
  .serivce-why-choose-01 .swc03-left,
  .serivce-why-choose-01 .swc03-right {
    justify-content: flex-start;
  }

  .serivce-why-choose-01 .swc03-card {
    width: 100%;
    margin-left: 42px;
    min-height: auto;
    border-radius: 22px;
    transform: none !important;
    padding: 18px;
  }

  .serivce-why-choose-01 .swc03-card:hover {
    transform: translateY(-6px) !important;
  }

  .serivce-why-choose-01 .swc03-pin {
    left: -29px;
    top: 22px;
    transform: none;
    width: 22px;
    height: 22px;
  }

  .serivce-why-choose-01 .swc03-pin::after {
    inset: 4px;
  }

  .serivce-why-choose-01 .swc03-card::before {
    left: -24px !important;
    right: auto !important;
    width: 24px;
    top: 31px;
  }

  .serivce-why-choose-01 .swc03-card::after {
    display: none;
  }

  .serivce-why-choose-01 .swc03-inner {
    margin-top: 22px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .serivce-why-choose-01 .swc03-inner h3,
  .serivce-why-choose-01 .swc03-inner p {
    font-size: 16px;
  }
}
/* end */



/* <section class="mv-section"> */

/* ============ SECTION ============ */
.mv-section{
    background:#f5f0e8;
    position:relative;
    overflow:hidden;
    padding:15px;
}

/* ---- BG DECORATIVE ELEMENTS ---- */

/* Large circle outline top-right */
.mv-section::before{
    content:'';
    position:absolute;
    top:-160px; right:-160px;
    width:520px; height:320px;
    border:2px solid rgba(40,167,55,0.15);
    border-radius:50%;
    pointer-events:none;
}

/* Inner circle */
.mv-section::after{
    content:'';
    position:absolute;
    top:-80px; right:-80px;
    width:340px; height:340px;
    border:1.5px solid rgba(40,167,55,0.1);
    border-radius:50%;
    pointer-events:none;
}

/* Dot grid pattern */
.mv-dot-grid{
    position:absolute;
    inset:0;
    background-image:radial-gradient(circle, rgba(40,167,55,0.18) 1px, transparent 1px);
    background-size:28px 28px;
    opacity:0.45;
    pointer-events:none;
}

/* Large bold number watermark */
.mv-watermark{
    position:absolute;
    bottom:20px; left:-20px;
    font-size:320px;
    font-weight:800;
    color:rgba(40,167,55,0.04);
    line-height:1;
    pointer-events:none;
    user-select:none;
    letter-spacing:-20px;
}

/* Diagonal stripe top-left corner */
.mv-stripe{
    position:absolute;
    top:0; left:0;
    width:280px; height:280px;
    overflow:hidden;
    pointer-events:none;
}
.mv-stripe::before{
    content:'';
    position:absolute;
    top:-120px; left:-120px;
    width:300px; height:300px;
    background:repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(40,167,55,0.06) 10px,
        rgba(40,167,55,0.06) 11px
    );
}

/* Floating accent shapes */
.mv-shape1{
    position:absolute;
    top:60px; right:580px;
    width:14px; height:14px;
    background:#28A737;
    border-radius:50%;
    opacity:0.5;
}
.mv-shape2{
    position:absolute;
    top:120px; right:540px;
    width:6px; height:6px;
    background:#28A737;
    border-radius:50%;
    opacity:0.3;
}
.mv-shape3{
    position:absolute;
    bottom:100px; left:48%;
    width:60px; height:2px;
    background:linear-gradient(90deg,#28A737,transparent);
    opacity:0.4;
}
.mv-shape4{
    position:absolute;
    top:200px; right:560px;
    width:44px; height:44px;
    border:2px solid rgba(40,167,55,0.25);
    border-radius:10px;
    transform:rotate(20deg);
}

/* ============ LAYOUT ============ */
.mv-inner{
    max-width:1180px;
    margin:0 auto;
    padding:0 48px;
    display:grid;
    grid-template-columns:1fr 340px;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:2;
}

/* ============ LEFT TEXT ============ */
.mv-left{}

/* Eyebrow */
.mv-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
}
.mv-eyebrow-pill{
    background:#28A737;
    color:#fff;
    font-size:10px;
    font-weight:700;
    letter-spacing:2.5px;
    text-transform:uppercase;
    padding:5px 14px;
    border-radius:50px;
}
.mv-eyebrow-line{
    width:40px;height:1.5px;
    background:#28A737;
    opacity:0.5;
}

/* Heading with text effect */
.mv-heading{
    font-size:clamp(42px,5vw,72px);
    font-weight:800;
    line-height:1.0;
    letter-spacing:-2px;
    margin-bottom:28px;
    position:relative;
}

/* Line 1: outlined/stroke text */
.mv-h-line1{
    display:block;
    color:transparent;
    -webkit-text-stroke:2px #1a1a1a;
    text-stroke:2px #1a1a1a;
}

/* Line 2: filled dark */
.mv-h-line2{
    display:block;
    color:#0d1f10;
    position:relative;
}

/* Line 3: green highlight with bg bar */
.mv-h-line3{
    display:inline-block;
    color:#fff;
    background:#28A737;
    padding:2px 16px 6px 4px;
    position:relative;
    margin-top:2px;
    clip-path:polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

/* Underline on line2 */
.mv-h-underline{
    display:block;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#28A737 60%,transparent);
    margin-top:2px;
    border-radius:2px;
}

/* Description */
.mv-desc{
    font-size:15px;
    color:#4a5568;
    line-height:1.85;
    max-width:480px;
    margin-bottom:36px;
    text-align: justify;
}

/* Feature grid */
.mv-feats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 32px;
    margin-bottom:40px;
}
.mv-feat{
    display:flex;
    align-items:center;
    gap:9px;
    font-size:13.5px;
    font-weight:600;
    color:#1a1a1a;
}
.mv-feat-dot{
    width:20px;height:20px;
    border-radius:6px;
    background:rgba(40,167,55,0.1);
    border:1.5px solid #28A737;
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
}
.mv-feat-dot svg{
    width:10px;height:10px;
    stroke:#28A737;stroke-width:3;
}

/* Stats row */
.mv-stats{
    display:flex;
    gap:0;
    border:1.5px solid rgba(0,0,0,0.08);
    border-radius:14px;
    overflow:hidden;
    width:fit-content;
    background:#fff;
}
.mv-stat{
    padding:14px 24px;
    text-align:center;
    border-right:1.5px solid rgba(0,0,0,0.06);
}
.mv-stat:last-child{border-right:none;}
.mv-stat-num{
    font-size:22px;
    font-weight:800;
    color:#0d1f10;
    line-height:1;
}
.mv-stat-num span{color:#28A737;}
.mv-stat-lbl{
    font-size:10px;
    font-weight:600;
    color:#999;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-top:3px;
}

/* ============ RIGHT FORM ============ */
.mv-form-wrap{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(40,167,55,0.08);
    position:relative;
}

/* Top bar */
.mv-form-top{
    background:#0d1f10;
    padding:16px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.mv-form-top-title{
    font-size:13px;
    font-weight:700;
    color:#fff;
    letter-spacing:0.3px;
}
.mv-form-top-price{
    background:#28A737;
    color:#fff;
    font-size:11px;
    font-weight:700;
    padding:4px 10px;
    border-radius:50px;
    letter-spacing:0.5px;
}

/* Body */
.mv-form-body{
    padding:18px 16px 16px;
}

/* Inputs */
.mv-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-bottom:8px;
}
.mv-row-full{margin-bottom:8px;}

.mv-inp,
.mv-sel,
.mv-ta{
    width:100%;
    font-size:11.5px;
    font-weight:500;
    color:#1a1a1a;
    background:#f9fafb;
    border:1.5px solid #e8ede9;
    border-radius:8px;
    padding:9px 12px;
    outline:none;
    appearance:none;
    -webkit-appearance:none;
    transition:border-color 0.18s,box-shadow 0.18s;
}
.mv-inp::placeholder{
    color:#aab0aa;
    font-size:10.5px;
    text-transform:uppercase;
    letter-spacing:0.5px;
}
.mv-inp:focus,.mv-sel:focus,.mv-ta:focus{
    border-color:#28A737;
    box-shadow:0 0 0 2px rgba(40,167,55,0.1);
    background:#fff;
}
.mv-sel-wrap{position:relative;}
.mv-sel-wrap .mv-sel{padding-right:28px;cursor:pointer;color:#aab0aa;}
.mv-sel-wrap::after{
    content:'';
    position:absolute;
    right:10px;top:50%;
    transform:translateY(-50%);
    border-left:3px solid transparent;
    border-right:3px solid transparent;
    border-top:4px solid #aab0aa;
    pointer-events:none;
}
.mv-date-wrap{position:relative;}
.mv-date-wrap .mv-inp{padding-right:32px;}
.mv-date-wrap svg{
    position:absolute;right:10px;top:50%;
    transform:translateY(-50%);
    width:13px;height:13px;
    stroke:#aab0aa;pointer-events:none;
}
.mv-ta{
    border-radius:8px;
    resize:vertical;
    min-height:68px;
    padding:9px 12px;
}

/* Submit */
.mv-btn{
    width:100%;
    background:#28A737;
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    padding:12px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    margin-top:4px;
    position:relative;
    overflow:hidden;
    transition:background 0.2s,transform 0.18s,box-shadow 0.2s;
    box-shadow:0 4px 14px rgba(40,167,55,0.3);
}
.mv-btn::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent);
    transform:translateX(-100%);
    animation:mv-sh 2.5s ease infinite;
}
@keyframes mv-sh{
    0%{transform:translateX(-100%)}
    60%{transform:translateX(200%)}
    100%{transform:translateX(200%)}
}
.mv-btn:hover{background:#1e8229;transform:translateY(-1px);box-shadow:0 8px 20px rgba(40,167,55,0.35);}

/* Bottom note */
.mv-note{
    text-align:center;
    font-size:10px;
    color:#bbb;
    margin-top:10px;
    letter-spacing:0.2px;
}

/* ============ RESPONSIVE ============ */
@media(max-width:960px){
    .mv-inner{grid-template-columns:1fr;gap:44px;}
    .mv-form-wrap{max-width:420px;}
}
@media(max-width:600px){
    .mv-inner{padding:0 20px;}
    .mv-row{grid-template-columns:1fr;}
    .mv-feats{grid-template-columns:1fr;}
    .mv-heading{font-size:42px;}
}

/* end */
/* ======= CONTACT SECTION CSS ======= */

.mv-section{
    background:#f5f0e8;
    position:relative;
    overflow:hidden;
    /* padding:90px 15px; */
}
.mv-section::before{
    content:'';
    position:absolute;
    top:-160px; right:-160px;
    width:520px; height:320px;
    border:2px solid rgba(40,167,55,0.15);
    border-radius:50%;
    pointer-events:none;
}
.mv-section::after{
    content:'';
    position:absolute;
    top:-80px; right:-80px;
    width:340px; height:340px;
    border:1.5px solid rgba(40,167,55,0.1);
    border-radius:50%;
    pointer-events:none;
}
.mv-dot-grid{
    position:absolute;
    inset:0;
    background-image:radial-gradient(circle, rgba(40,167,55,0.18) 1px, transparent 1px);
    background-size:28px 28px;
    opacity:0.45;
    pointer-events:none;
}
.mv-watermark{
    position:absolute;
    bottom:20px; left:-20px;
    font-size:320px;
    font-weight:800;
    color:rgba(40,167,55,0.04);
    line-height:1;
    pointer-events:none;
    user-select:none;
    letter-spacing:-20px;
}
.mv-stripe{
    position:absolute;
    top:0; left:0;
    width:280px; height:280px;
    overflow:hidden;
    pointer-events:none;
}
.mv-stripe::before{
    content:'';
    position:absolute;
    top:-120px; left:-120px;
    width:300px; height:300px;
    background:repeating-linear-gradient(
        45deg, transparent, transparent 10px,
        rgba(40,167,55,0.06) 10px, rgba(40,167,55,0.06) 11px
    );
}
.mv-shape1{ position:absolute; top:60px; right:580px; width:14px; height:14px; background:#28A737; border-radius:50%; opacity:0.5; }
.mv-shape2{ position:absolute; top:120px; right:540px; width:6px; height:6px; background:#28A737; border-radius:50%; opacity:0.3; }
.mv-shape3{ position:absolute; bottom:100px; left:48%; width:60px; height:2px; background:linear-gradient(90deg,#28A737,transparent); opacity:0.4; }
.mv-shape4{ position:absolute; top:200px; right:560px; width:44px; height:44px; border:2px solid rgba(40,167,55,0.25); border-radius:10px; transform:rotate(20deg); }

.mv-inner{
    max-width:1180px;
    margin:0 auto;
    padding:0 48px;
    display:grid;
    grid-template-columns:1fr 360px;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:2;
}
.mv-eyebrow{ display:inline-flex; align-items:center; gap:10px; margin-bottom:22px; }
.mv-eyebrow-pill{ background:#28A737; color:#fff; font-size:10px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; padding:5px 14px; border-radius:50px; }
.mv-eyebrow-line{ width:40px; height:1.5px; background:#28A737; opacity:0.5; }

.mv-heading{  font-size:clamp(38px,5vw,64px); font-weight:800; line-height:1.0; letter-spacing:-2px; margin-bottom:28px; }
.mv-h-line1{ display:block; color:transparent; -webkit-text-stroke:2px #1a1a1a; }
.mv-h-line2{ display:block; color:#0d1f10; position:relative; }
.mv-h-underline{ display:block; width:100%; height:3px; background:linear-gradient(90deg,#28A737 60%,transparent); margin-top:2px; border-radius:2px; }
.mv-h-line3{ display:inline-block; color:#fff; background:#28A737; padding:2px 16px 6px 4px; margin-top:2px; clip-path:polygon(0 0, 100% 0, 96% 100%, 0 100%); }

.mv-desc{ font-size:15px; color:#4a5568; line-height:1.85; max-width:480px; margin-bottom:36px; text-align:justify; }

.mv-info-cards{ display:flex; flex-direction:column; gap:12px; margin-bottom:36px; }
.mv-info-card{ display:flex; align-items:center; gap:14px; background:#fff; border-radius:12px; padding:13px 16px; box-shadow:0 2px 12px rgba(0,0,0,0.06); border-left:3px solid #28A737; }
.mv-info-icon{ width:38px; height:38px; border-radius:10px; background:rgba(40,167,55,0.1); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.mv-info-icon svg{ width:18px; height:18px; stroke:#28A737; stroke-width:2; fill:none; }
.mv-info-label{ font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#aaa; margin-bottom:2px; }
.mv-info-val{ font-size:13.5px; font-weight:600; color:#1a1a1a; }

.mv-feats{ display:grid; grid-template-columns:1fr 1fr; gap:10px 32px; margin-bottom:40px; }
.mv-feat{ display:flex; align-items:center; gap:9px; font-size:13.5px; font-weight:600; color:#1a1a1a; }
.mv-feat-dot{ width:20px; height:20px; border-radius:6px; background:rgba(40,167,55,0.1); border:1.5px solid #28A737; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.mv-feat-dot svg{ width:10px; height:10px; stroke:#28A737; stroke-width:3; fill:none; }

.mv-stats{ display:flex; border:1.5px solid rgba(0,0,0,0.08); border-radius:14px; overflow:hidden; width:fit-content; background:#fff; }
.mv-stat{ padding:14px 24px; text-align:center; border-right:1.5px solid rgba(0,0,0,0.06); }
.mv-stat:last-child{ border-right:none; }
.mv-stat-num{ font-size:22px; font-weight:800; color:#0d1f10; line-height:1; }
.mv-stat-num span{ color:#28A737; }
.mv-stat-lbl{ font-size:10px; font-weight:600; color:#999; text-transform:uppercase; letter-spacing:1px; margin-top:3px; }

.mv-form-wrap{ background:#fff; border-radius:20px; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(40,167,55,0.08); }
.mv-form-top{ background:#0d1f10; padding:16px 20px; display:flex; align-items:center; justify-content:space-between; }
.mv-form-top-title{ font-size:13px; font-weight:700; color:#fff; }
.mv-form-top-price{ background:#28A737; color:#fff; font-size:11px; font-weight:700; padding:4px 10px; border-radius:50px; }
.mv-form-body{ padding:18px 16px 16px; }

.mv-row{ display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:8px; }
.mv-row-full{ margin-bottom:8px; }

.mv-inp, .mv-sel, .mv-ta{
    width:100%; font-size:11.5px; font-weight:500; color:#1a1a1a;
    background:#f9fafb; border:1.5px solid #e8ede9; border-radius:8px; padding:9px 12px;
    outline:none; appearance:none; -webkit-appearance:none;
    transition:border-color 0.18s, box-shadow 0.18s;
}
.mv-inp::placeholder{ color:#aab0aa; font-size:10.5px; text-transform:uppercase; letter-spacing:0.5px; }
.mv-inp:focus, .mv-sel:focus, .mv-ta:focus{ border-color:#28A737; box-shadow:0 0 0 2px rgba(40,167,55,0.1); background:#fff; }
.mv-sel-wrap{ position:relative; }
.mv-sel-wrap .mv-sel{ padding-right:28px; cursor:pointer; color:#aab0aa; }
.mv-sel-wrap::after{ content:''; position:absolute; right:10px; top:50%; transform:translateY(-50%); border-left:3px solid transparent; border-right:3px solid transparent; border-top:4px solid #aab0aa; pointer-events:none; }
.mv-ta{ resize:vertical; min-height:72px; }

.mv-btn{
    width:100%; background:#28A737; color:#fff;
    font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
    padding:13px; border:none; border-radius:8px; cursor:pointer; margin-top:4px;
    position:relative; overflow:hidden;
    transition:background 0.2s, transform 0.18s, box-shadow 0.2s;
    box-shadow:0 4px 14px rgba(40,167,55,0.3);
}
.mv-btn::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent);
    transform:translateX(-100%);
    animation:mv-sh 2.5s ease infinite;
}
@keyframes mv-sh{ 0%{transform:translateX(-100%)} 60%{transform:translateX(200%)} 100%{transform:translateX(200%)} }
.mv-btn:hover{ background:#1e8229; transform:translateY(-1px); box-shadow:0 8px 20px rgba(40,167,55,0.35); }

.mv-note{ text-align:center; font-size:10px; color:#bbb; margin-top:10px; }

@media(max-width:960px){
    .mv-inner{ grid-template-columns:1fr; gap:44px; padding:0 28px; }
    .mv-form-wrap{ max-width:460px; }
    .mv-shape1,.mv-shape2,.mv-shape3,.mv-shape4{ display:none; }
}
@media(max-width:600px){
    .mv-section{ padding:60px 0; }
    .mv-inner{ padding:0 16px; gap:36px; }
    .mv-row{ grid-template-columns:1fr; }
    .mv-feats{ grid-template-columns:1fr; }
    .mv-stats{ flex-wrap:wrap; }
    .mv-stat{ flex:1 1 auto; }
    .mv-watermark{ font-size:180px; }
}

/* whatis app ======================= <div class="floating-contact">*/

    
        .floating-contact {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

/* Call */
.call-btn {
    background: #28A737;
}

/* WhatsApp */
.whatsapp-btn {
    background: #25D366;
}

/* Hover effect */
.float-btn:hover {
    transform: translateY(-5px) scale(1.08);
}

/* Pulse animation (attention grab) */
.float-btn::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}
/* end */