/* ==============================================
           1. ROOT & RESET
        ============================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --clr-dark: #0f172a;
            --clr-darker: #020617;
            --clr-primary: #0F766E;
            --clr-secondary: #10B981;
            --clr-accent: #EF4444;
            --clr-light: #F8FAFC;
            --clr-white: #ffffff;
            --clr-text-main: #334155;
            --clr-text-muted: #475569;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', 'Hind', sans-serif;
            background: var(--clr-light);
            color: var(--clr-text-main);
            line-height: 1.7;
            overflow-x: hidden;
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ==============================================
           ANIMATIONS
        ============================================== */
        @keyframes floatSoft {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            will-change: opacity, transform;
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ==============================================
           BADGES & TITLES
        ============================================== */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        .badge-hero {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .badge-light {
            background: rgba(15, 118, 110, 0.1);
            color: var(--clr-primary);
            border: 1px solid rgba(15, 118, 110, 0.15);
        }
        .badge-dark {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .sec-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--clr-dark);
            line-height: 1.2;
            margin-bottom: 14px;
        }
        

.sec-titlea {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
}



        .sec-title.text-white {
            color: #fff;
        }
        .sec-title span {
            color: var(--clr-secondary);
        }

        .desc-text {
            font-size: 0.95rem;
            color: var(--clr-text-muted);
            max-width: 700px;
            line-height: 1.7;
        }
        .desc-text.text-white {
            color: #cbd5e1;
        }

        /* ==============================================
           BUTTONS
        ============================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn-call {
            background: var(--clr-secondary);
            color: #fff;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }
        .btn-call:hover {
            background: #059669;
            transform: translateY(-3px);
            color: #fff;
        }

        .btn-whatsapp {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
        }
        .btn-whatsapp:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
            color: #fff;
        }

        .btn-question {
            background: var(--clr-primary);
            color: #fff;
            box-shadow: 0 8px 20px rgba(15, 118, 110, 0.2);
        }
        .btn-question:hover {
            background: #0b5852;
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-cta {
            background: var(--clr-accent);
            color: #fff;
            box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
            font-size: 1.05rem;
            padding: 14px 36px;
        }
        .btn-cta:hover {
            background: #dc2626;
            transform: translateY(-3px);
            color: #fff;
        }

        /* ==============================================
           2. HERO SECTION
        ============================================== */
        .hero-wrap {
            position: relative;
            background: linear-gradient(135deg, var(--clr-darker) 0%, #1e293b 100%);
            height: 714px;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 80px 0;
        }
        .hero-bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            pointer-events: none;
        }
        .shape-1 {
            width: 500px;
            height: 500px;
            background: var(--clr-primary);
            top: -100px;
            left: -100px;
        }
        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--clr-secondary);
            bottom: -50px;
            right: -50px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-left h1 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 18px;
        }
        .hero-left p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 24px;
            padding: 25px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: floatSoft 6s ease-in-out infinite;
        }
        .hero-img-wrap {
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: #1e293b;
        }
        .hero-img-wrap img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .hero-stat {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }
        .hero-stat:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .hero-stat .stat-num {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--clr-secondary);
        }
        .hero-stat .stat-lbl {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.75rem;
            font-weight: 500;
            margin-top: 2px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            background: rgba(16, 185, 129, 0.15);
            border-radius: 12px;
            padding: 10px;
            color: #fff;
            font-size: 0.85rem;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }
        .hero-feature i {
            color: var(--clr-secondary);
        }

        /* ==============================================
           3. ABOUT SECTION
        ============================================== */
        .about-wrap {
            padding: 90px 0;
            background: var(--clr-white);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }
        .about-img {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(15, 118, 110, 0.15);
            background: #e2e8f0;
        }
        .about-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .about-float {
            position: absolute;
            bottom: -30px;
            right: -20px;
            background: var(--clr-dark);
            padding: 20px 30px;
            border-radius: 20px;
            color: #fff;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            border: 4px solid var(--clr-white);
        }
        .about-float .float-num {
            font-size: 2.5rem;
            color: var(--clr-secondary);
            font-weight: 900;
            line-height: 1;
        }
        .about-float .float-text {
            font-size: 0.85rem;
            color: #cbd5e1;
            margin-top: 5px;
        }

        /* ==============================================
           4. STATS SECTION
        ============================================== */
        .stats-wrap {
            background: var(--clr-primary);
            padding: 50px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            text-align: center;
            color: #fff;
        }
        .stats-grid .stat-item h3 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #fff;
        }
        .stats-grid .stat-item p {
            color: #ccfbf1;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ==============================================
           5. TREATMENTS SECTION
        ============================================== */
        .treat-wrap {
            padding: 90px 0;
            background: var(--clr-light);
        }
        .treat-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .treat-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }
        .treat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--clr-primary);
        }
        .treat-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: #e2e8f0;
        }
        .treat-content {
            padding: 25px;
            display: flex;
            gap: 15px;
        }
        .treat-icon {
            font-size: 1.8rem;
            color: var(--clr-primary);
            background: rgba(15, 118, 110, 0.1);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            flex-shrink: 0;
            transition: var(--transition);
        }
        .treat-card:hover .treat-icon {
            background: var(--clr-primary);
            color: #fff;
        }
        .treat-info h4 {
            font-size: 1.15rem;
            margin-bottom: 8px;
            color: var(--clr-dark);
        }
        .treat-info p {
            color: var(--clr-text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ==============================================
           6. WHY CHOOSE SECTION
        ============================================== */
        .why-wrap {
            padding: 90px 0;
            background: var(--clr-white);
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .why-item {
            background: var(--clr-light);
            padding: 30px 25px;
            border-radius: 20px;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .why-item:hover {
            background: #fff;
            border-color: #e2e8f0;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
            transform: translateY(-5px);
        }
        .why-item.span-2 {
            grid-column: span 2;
            background: linear-gradient(135deg, var(--clr-primary), #0b5852);
            color: #fff;
        }
        .why-item.span-2 h4,
        .why-item.span-2 p {
            color: #fff;
        }
        .why-icon {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #d1fae5;
            color: var(--clr-secondary);
            border-radius: 12px;
            font-size: 1.3rem;
            margin-bottom: 16px;
        }
        .why-item.span-2 .why-icon {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        .why-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .why-item p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--clr-text-muted);
        }
        .why-item.span-2 p {
            color: rgba(255, 255, 255, 0.85);
        }

        /* ==============================================
           7. JOURNEY SECTION
        ============================================== */
        /* .journey-wrap {
            padding: 90px 0;
            background: var(--clr-light);
        } */
         .journey-wrap {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(rgba(4, 28, 45, 0.82), rgba(4, 28, 45, 0.82)),
                url("./bgimage1.png") center center / cover no-repeat fixed;
    overflow: hidden;
}
        .journey-timeline {
            max-width: 800px;
            margin: 40px auto 0;
            position: relative;
        }
        .journey-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            bottom: 0;
            width: 3px;
            background: rgba(15, 118, 110, 0.2);
            border-radius: 5px;
        }
        .journey-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            position: relative;
        }
        .journey-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        .journey-item:last-child {
            margin-bottom: 0;
        }
        .journey-step {
            width: 55px;
            height: 55px;
            background: var(--clr-primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 800;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid var(--clr-light);
            z-index: 2;
            box-shadow: 0 5px 15px rgba(15, 118, 110, 0.2);
        }
        .journey-content {
            width: 45%;
            background: #fff;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #f1f5f9;
            text-align: justify;
        }
        .journey-item:nth-child(odd) .journey-content {
            text-align: justify;
        }
        .journey-content h4 {
            font-size: 1.1rem;
            color: var(--clr-dark);
            margin-bottom: 8px;
        }
        .journey-content p {
            font-size: 0.9rem;
            color: var(--clr-text-muted);
            line-height: 1.7;
        }

        /* ==============================================
           8. TESTIMONIALS SECTION
        ============================================== */
        .testi-wrap {
            padding: 90px 0;
            background: var(--clr-darker);
            color: #fff;
            overflow: hidden;
        }
        .testi-container {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            overflow-x: auto;
            padding-bottom: 20px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        .testi-container::-webkit-scrollbar {
            display: none;
        }
        .testi-card {
            min-width: 340px;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 20px;
            scroll-snap-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
        }
        .testi-card .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.05);
        }
        .testi-card p {
            font-size: 0.95rem;
            font-style: italic;
            color: #cbd5e1;
            margin-bottom: 20px;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }
        .testi-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .testi-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--clr-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .testi-author-name {
            font-size: 1rem;
            color: var(--clr-secondary);
            font-weight: 600;
        }
        .testi-author-place {
            font-size: 0.8rem;
            color: #94a3b8;
        }

        /* ==============================================
           9. COVERAGE SECTION (MARQUEE)
        ============================================== */
        .coverage-wrap {
            padding: 30px 0;
            background: var(--clr-primary);
            color: #fff;
            overflow: hidden;
            position: relative;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }
        .coverage-marquee {
            display: flex;
            white-space: nowrap;
            animation: scrollText 20s linear infinite;
        }
        .coverage-marquee h3 {
            font-size: 1.4rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-right: 35px;
            color: rgba(255, 255, 255, 0.9);
        }
        .coverage-marquee h3 span {
            color: #ccfbf1;
            font-weight: 800;
        }
        @keyframes scrollText {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ==============================================
           10. BLOG SECTION
        ============================================== */
        .blog-wrap {
    padding: 90px 0;
    background: #fff;
}
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 40px;
        }
        .blog-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #f1f5f9;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
        }
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--clr-primary);
        }
        .blog-img {
            height: 200px;
            overflow: hidden;
            background: #e2e8f0;
        }
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .blog-card:hover .blog-img img {
            transform: scale(1.05);
        }
        .blog-content {
            padding: 25px;
        }
        .blog-content h4 {
            font-size: 1.1rem;
            color: var(--clr-dark);
            margin-bottom: 10px;
        }
        .blog-content p {
            color: var(--clr-text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ==============================================
           11. FAQ SECTION
        ============================================== */
       .faq-wrap {
    padding: 90px 0;
    background: #ffffff;
}
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            align-items: start;
        }
        .faq-left {
            position: sticky;
            top: 40px;
        }
        .faq-item {
            background: #fff;
            margin-bottom: 15px;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: var(--transition);
        }
        .faq-item.active {
            border-color: var(--clr-primary);
            box-shadow: 0 10px 25px rgba(15, 118, 110, 0.08);
        }
        .faq-head {
            padding: 18px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            color: var(--clr-dark);
        }
        .faq-head:hover {
            background: rgba(15, 118, 110, 0.02);
        }
        .faq-head i {
            color: var(--clr-primary);
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-head i {
            transform: rotate(180deg);
        }
        .faq-body {
            padding: 0 24px;
            color: var(--clr-text-muted);
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .faq-item.active .faq-body {
            padding-bottom: 18px;
            max-height: 300px;
        }

        /* ==============================================
           12. CTA SECTION
        ============================================== */
        .cta-wrap {
            background: linear-gradient(135deg, var(--clr-darker) 0%, #1e293b 100%);
            padding: 80px 24px;
            text-align: center;
            color: #fff;
            border-top: 4px solid var(--clr-accent);
        }
        .cta-wrap p {
            font-size: 1.05rem;
            color: #cbd5e1;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ==============================================
           13. FOOTER
        ============================================== */
        .footer-wrap {
            background: #0b1120;
            color: #94a3b8;
            padding: 60px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand h4 {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-brand p {
            max-width: 300px;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-social a:hover {
            background: var(--clr-primary);
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-links h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 18px;
            position: relative;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        .footer-links ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links ul li a:hover {
            color: var(--clr-secondary);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
        }

        /* ==============================================
           RESPONSIVE DESIGN
        ============================================== */
        @media (max-width: 1024px) {
            .hero-grid,
            .about-grid,
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .why-grid,
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            .hero-left h1 {
                font-size: 3rem;
            }
            .faq-left {
                position: relative;
                top: 0;
                margin-bottom: 20px;
                text-align: center;
            }
            .faq-left .desc-text {
                margin: 0 auto;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .journey-timeline::before {
                left: 30px;
            }
            .journey-step {
                left: 30px;
            }
            .journey-item {
                flex-direction: column !important;
                align-items: flex-end;
            }
            .journey-content {
                width: calc(100% - 80px);
                text-align: left !important;
            }
        }

        @media (max-width: 768px) {
            .hero-left h1 {
                font-size: 2.4rem;
            }
            .sec-title {
                font-size: 1.8rem;
            }
            .treat-grid,
            .why-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }
            .why-item.span-2 {
                grid-column: span 1;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .testi-card {
                min-width: 280px;
                padding: 25px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .about-float {
                position: relative;
                bottom: 0;
                right: 0;
                margin-top: -20px;
                margin-left: 10%;
                width: 80%;
                text-align: center;
            }
            .hero-stats {
                grid-template-columns: 1fr 1fr;
            }
            .treat-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .hero-wrap {
    position: relative;
    background: linear-gradient(135deg, var(--clr-darker) 0%, #1e293b 100%);
    height: auto;
    display: flex
;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}
        }
        /* Mobile me background-attachment: fixed support kam hota hai */
@media (max-width: 768px) {
    .journey-wrap {
        background-attachment: scroll;
    }
}

        @media (max-width: 480px) {
            .hero-left h1 {
                font-size: 2rem;
            }
            .hero-btns {
                flex-direction: column;
                width: 100%;
            }
            .hero-btns .btn {
                width: 100%;
            }
            .stats-grid .stat-item h3 {
                font-size: 2rem;
            }
            .about-img img {
                height: 250px;
            }
            .hero-wrap {
    position: relative;
    background: linear-gradient(135deg, var(--clr-darker) 0%, #1e293b 100%);
    height: auto;
    display: flex
;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}
        }