    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --orange: #FD4E02;
        --yellow: #ECB719;
        --dark: #111111;
        --text: #797E88;
        --muted: #797E88;
        --white: #ffffff;
        --bg: #F8F8F8;
        --font: 'Plus Jakarta Sans', sans-serif;
    }

    body {
        font-family: var(--font);
        background: var(--bg);
    }

    /* ─── SECTION ─── */
    .wwa-section {
        background: var(--bg);
        padding: 90px 0 100px;
        overflow: hidden;
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* ─── TWO COLUMN WRAPPER ─── */
    .wwa-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    /* ════════════════════════════
     LEFT COLUMN
  ════════════════════════════ */

    /* badge */
    .badge-label {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
    }

    .badge-label span.txt {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--orange);
    }

    .badge-label .lines {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .badge-label .line {
        display: block;
        height: 2px;
        background: var(--orange);
        border-radius: 2px;
    }

    .badge-label .line:first-child {
        width: 30px;
    }

    .badge-label .line:last-child {
        width: 18px;
    }

    /* heading */
    .wwa-heading {
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 600;
        line-height: 1.12;
        color: var(--dark);
        margin-bottom: 36px;
        max-width: 560px;
    }

    /* image + features row */
    .left-media-row {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 28px;
        align-items: start;
        margin-bottom: 36px;
    }

    .main-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 16px;
        display: block;
    }

    /* feature items */
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding-top: 4px;
    }

    .feature-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .feature-icon-row {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .icon-box {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        border: 1.5px solid var(--orange);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: rgba(253, 78, 2, 0.04);
    }

    .icon-box svg {
        width: 22px;
        height: 22px;
        stroke: var(--orange);
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .feature-title {
        font-size: 15px;
        font-weight: 700;
        color: var(--dark);
        letter-spacing: 0.1px;
    }

    .feature-desc {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.65;
        padding-left: 56px;
    }

    /* bottom cta row */
    .cta-row {
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .caller-block {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .caller-avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--orange);
        flex-shrink: 0;
    }

    .caller-info p {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 2px;
    }

    .caller-info a {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--orange);
        text-decoration: none;
        letter-spacing: 0.3px;
    }

    .btn-learn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--orange);
        color: #fff;
        font-family: var(--font);
        font-size: 14px;
        font-weight: 700;
        padding: 14px 30px;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.25s, transform 0.2s;
        letter-spacing: 0.2px;
    }

    .btn-learn:hover {
        background: #d93e00;
        transform: translateY(-2px);
        color:#fff;
    }

    .btn-learn svg {
        width: 16px;
        height: 16px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.2s;
    }

    .btn-learn:hover svg {
        transform: translateX(3px);
    }

    /* ════════════════════════════
     RIGHT COLUMN
  ════════════════════════════ */

    .right-col {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-top: 6px;
    }

    .right-text-block {
        margin-bottom: 32px;
    }

    .right-text-block p {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .right-text-block p:last-child {
        margin-bottom: 0;
    }

    .secondary-img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }

    /* ─── DIVIDER LINE ─── */
    .right-divider {
        width: 60px;
        height: 3px;
        background: var(--yellow);
        border-radius: 2px;
        margin-bottom: 24px;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
        .wwa-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .left-media-row {
            grid-template-columns: 1fr;
        }

        .main-img {
            height: 220px;
        }

        .secondary-img {
            height: 260px;
        }

        .wwa-heading {
            font-size: 30px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 20px;
        }

        .wwa-section {
            padding: 60px 0;
        }

        .cta-row {
            flex-direction: column;
            align-items: flex-start;
        }

        .left-media-row {
            gap: 20px;
        }
    }

    .left-media-row {
        gap: 20px;
    }


    /* ─── BANNER ─── */
    .about-banner {
        position: relative;
        width: 100%;
        height: 590px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Background image */
    .about-banner__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        z-index: 0;
    }

    /* Dark overlay — same bluish-dark tone as reference */
    .about-banner__overlay {
        position: absolute;
        inset: 0;
        background: rgba(20, 28, 45, 0.68);
        z-index: 1;
    }

    /* Content centered */
    .about-banner__content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 20px;
    }

    .about-banner__title {
        font-size: clamp(36px, 6vw, 72px);
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -0.5px;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .about-banner__breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
    }

    .about-banner__breadcrumb a {
        color: var(--orange);
        text-decoration: none;
        font-weight: 600;
        transition: opacity 0.2s;
    }

    .about-banner__breadcrumb a:hover {
        opacity: 0.8;
    }

    .about-banner__breadcrumb .sep {
        color: #ffffff;
        font-size: 13px;
        opacity: 0.85;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
        .about-banner {
            height: 300px;
        }

        .about-banner__title {
            font-size: 38px;
        }

        .about-banner__breadcrumb {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .about-banner {
            height: 260px;
        }

        .about-banner__title {
            font-size: 30px;
        }
    }

    .services-section {
        padding: 100px 0;
        background: #fff;
    }

    .services-wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    .svc-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .svc-row.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .svc-img-col {
        overflow: hidden;
        border-radius: 20px;
    }

    .svc-img-col img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
        transition: transform 0.5s ease;
    }

    .svc-row:hover .svc-img-col img {
        transform: scale(1.03);
    }

    /* TEXT COL — 3 cheezein side by side: label | line | content */
    .svc-text-col {
        display: flex;
        align-items: flex-start;
        gap: 0;
    }

    /* 1. Label — bilkul left pe vertical */
    /* Label — font weight badha */
    .svc-label {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: 17px;
        font-weight: 700;
        /* ← 500 se 700 kiya */
        color: #FC5003;
        white-space: nowrap;
        letter-spacing: 0.4px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        flex-shrink: 0;
        margin-right: 10px;
    }


    /* 2. Orange line — label ke right, full height */
    .svc-orange-line {
        width: 2px;
        background: #FC5003;
        border-radius: 0;
        flex-shrink: 0;
        align-self: stretch;
        margin-right: 20px;
    }

    /* 3. Content — line ke right: number, heading, desc */
    .svc-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }


    /* Number — font weight kam kiya */
    .svc-number {
        font-size: 96px;
        font-weight: 600;
        /* ← 800 se 600 kiya */
        line-height: 0.85;
        color: #FC5003;
        letter-spacing: -5px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        margin-bottom: 20px;
    }

    .svc-heading {
        font-size: 26px;
        font-weight: 700;
        color: #111;
        line-height: 1.2;
        margin-bottom: 14px;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .svc-desc {
        font-size: 14.5px;
        color: #797E88;
        line-height: 1.8;
        margin: 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    @media (max-width: 900px) {
        .svc-row {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .svc-img-col img {
            height: 260px;
        }

        .svc-number {
            font-size: 64px;
        }
    }

    @media (max-width: 480px) {
        .services-wrap {
            padding: 0 20px;
            gap: 60px;
        }

        .services-section {
            padding: 60px 0;
        }
    }

    /* ===== TEAM SECTION ===== */
    .team1-section-area .row.justify-content-center {
        justify-content: center !important;
    }

    .team-boxarea {
        text-align: center;
        overflow: hidden;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 30px;
    }

    .team-boxarea:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(252, 80, 29, 0.15);
    }

    .team-boxarea .img1 {
        width: 100%;
        height: 320px;
        overflow: hidden;
    }

    .team-boxarea .img1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: transform 0.5s ease;
    }

    .team-boxarea:hover .img1 img {
        transform: scale(1.05);
    }
    /* ── SECTION SPACING FIX ── */
.wwa-section          { padding: 60px 0; }
.services-section     { padding: 60px 0; }
.about2-section       { padding: 60px 0; }
.about2-sectio-area   { padding: 60px 0; }
.stats-section        { padding: 70px 0; }
.team1-section-area   { padding: 60px 0; }
.testimonial2-section-area { padding: 60px 0; }

@media (max-width: 768px) {
    .wwa-section          { padding: 40px 0; }
    .services-section     { padding: 40px 0; }
    .about2-section       { padding: 40px 0; }
    .about2-sectio-area   { padding: 40px 0; }
    .stats-section        { padding: 50px 0; }
    .team1-section-area   { padding: 40px 0; }
    .testimonial2-section-area { padding: 40px 0; }
}
 .about2-section {
            position: relative;
            background: #F5F0E8;
            background-image: url('assets/img/all-images/home/bg1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 100px 0;
            overflow: hidden;
        }

        .about2-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about2-img-col img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            display: block;
        }

        .about2-content-col {
            display: flex;
            flex-direction: column;
        }

        .about2-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .about2-badge-lines {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .about2-badge-lines span {
            display: block;
            height: 2px;
            background: #FC501D;
            border-radius: 2px;
        }

        .about2-badge-lines span:first-child {
            width: 30px;
        }

        .about2-badge-lines span:last-child {
            width: 16px;
        }

        .about2-badge p {
            font-size: 16px;
            font-weight: 800;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            color: #FC501D;
            margin: 0;
        }

        .about2-heading {
            font-size: clamp(30px, 3.2vw, 48px);
            font-weight: 700;
            color: #111111;
            line-height: 1.15;
            margin-bottom: 18px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .about2-desc {
            font-size: 15.5px;
            color: #555;
            line-height: 1.85;
            margin-bottom: 22px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .about2-bottom-row {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .about2-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 13px;
            flex: 1;
        }

        .about2-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15.5px;
            font-weight: 500;
            color: #111;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .about2-list li::before {
            content: '';
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #E63232;
            flex-shrink: 0;
        }

        .about2-stats {
            display: flex;
            flex-direction: row;
            gap: 14px;
            flex-shrink: 0;
        }

        .about2-stat-box {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            border: 1.5px solid #ddd;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(4px);
        }

        .about2-stat-box .stat-num {
            font-size: 22px;
            font-weight: 800;
            color: #111;
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1;
        }

        .about2-stat-box .stat-label {
            font-size: 12px;
            color: #777;
            font-family: 'Plus Jakarta Sans', sans-serif;
            text-align: center;
            margin-top: 4px;
            line-height: 1.3;
        }

        @media (max-width: 900px) {
            .about2-wrap {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about2-img-col img {
                height: 320px;
            }

            .about2-bottom-row {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
            .about2-wrap {
                padding: 0 20px;
            }

            .about2-section {
                padding: 60px 0;
            }
        }

        /* ===== TESTIMONIAL SECTION OVERRIDE ===== */

        .testimonial2-section-area {
            background: #fff;
            padding: 80px 0;
        }

        /* Header - subheading orange */
        .testimonial-header h5 {
            color: #FC501D !important;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* Card border orange tint */
        .testimonial-boxarea {
            background: #fff;
            border: 0.5px solid rgba(252, 80, 29, 0.2) !important;
            border-radius: 12px;
            padding: 28px 24px;
            transition: border-color 0.2s;
        }

        .testimonial-boxarea:hover {
            border-color: #FC501D !important;
        }

        /* Quote icon orange */
        .testimonial-boxarea .quoto {
            filter: hue-rotate(0deg) saturate(5) brightness(0.9);
        }

        /* Author name orange */
        .testimonial-boxarea .name a {
            color: #FC501D !important;
            font-weight: 500;
        }

        /* Stars orange */
        .testimonial-boxarea .name ul li i.fa-star {
            color: #FC501D !important;
        }

        /* Google badge styling */
        .testimonial-boxarea .google {
            background: rgba(252, 80, 29, 0.06);
            border: 0.5px solid rgba(252, 80, 29, 0.2);
            border-radius: 20px;
            padding: 4px 8px;
        }

        /* ===== QUOTE ICON ORANGE OVERRIDE ===== */

        .testimonial-boxarea .quoto {
            filter: invert(35%) sepia(90%) saturate(1500%) hue-rotate(5deg) brightness(105%) !important;
        }

        /* ===== OUR TEAM HEADING OVERRIDE ===== */
        .team1-section-area .team-header h5 {
            color: #FC501D !important;
            font-size: 20px !important;
            font-weight: 700 !important;
            letter-spacing: 1.5px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 10px !important;
            font-family: 'Plus Jakarta Sans', sans-serif !important;
        }

        .team1-section-area .team-header h5 img {
            width: 28px !important;
            height: 28px !important;
        }

        .team1-section-area .col-lg-3 {
            flex: 0 0 40% !important;
            max-width: 40% !important;
        }

        .team-boxarea .img1 {
            width: 100%;
            height: 420px !important;
            overflow: hidden;
        }

        .team-boxarea .img1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.5s ease;
        }

        .team-boxarea {
            border-radius: 20px !important;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10) !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }

        .team-boxarea:hover {
            transform: translateY(-8px) !important;
            box-shadow: 0 16px 48px rgba(252, 80, 29, 0.18) !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .team1-section-area .col-lg-3 {
                flex: 0 0 80% !important;
                max-width: 80% !important;
            }
        }

        .team-boxarea .content {
            padding: 20px 16px 28px !important;
        }

        /* ===== STATS COUNTER SECTION ===== */
        .stats-section {
            position: relative;
            width: 100%;
            padding: 90px 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* BG Image */
        .stats-bg-img {
            position: absolute;
            inset: 0;
           
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 0;
        }

        /* Dark overlay — same as your screenshot */
        .stats-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 12, 20, 0.82);
            z-index: 1;
        }

        /* Content row */
        .stats-wrap {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0;
        }

        /* Each stat block */
        .stat-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px 30px;
        }

        /* Number row */
        .stat-number {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 2px;
            margin-bottom: 18px;
        }

        .stat-number .counter {
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1;
            letter-spacing: -2px;
        }

        .stat-plus {
            font-size: 48px;
            font-weight: 800;
            color: #FC501D;
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.1;
        }

        /* Label */
        .stat-label {
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.75);
            font-family: 'Plus Jakarta Sans', sans-serif;
            letter-spacing: 0.5px;
            margin: 0;
            text-transform: uppercase;
        }

        /* Vertical separator between items */
        .stat-sep {
            width: 1px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            flex-shrink: 0;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .stats-wrap {
                flex-wrap: wrap;
                gap: 40px;
                justify-content: center;
            }

            .stat-sep {
                display: none;
            }

            .stat-item {
                flex: 0 0 45%;
            }

            .stat-number .counter {
                font-size: 48px;
            }

            .stat-plus {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .stats-wrap {
                padding: 0 20px;
            }

            .stat-item {
                flex: 0 0 100%;
            }

            .stats-section {
                padding: 60px 0;
            }
        }