            :root {
            --orange: #ff7849;
            --black: #0d1117;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --text-gray: #4b5563;
            --bg-deep: #020617;
            --glow: rgba(255, 120, 73, 0.6);
            --glass: rgba(255, 255, 255, 0.08);
            --navy: #1e1b4b;
            --green: #10b981;
            --border: #edf2f7;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
        body { background: var(--white); color: var(--black); overflow-x: hidden; scroll-behavior: smooth; }

        /* ========================================
           NAVBAR
        ======================================== */
        .navbar {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            align-items: center;
            padding: 15px 4%;
            background: var(--white);
            z-index: 2000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .logo {
            font-weight: 900;
            font-size: 1.4rem;
            color: var(--navy);
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .logo span { color: var(--orange); }

        .nav-links {
            display: flex;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--navy);
            font-weight: 700;
            transition: 0.3s;
            font-size: 0.95rem;
            position: relative;
        }

        .nav-links a:hover { color: var(--orange); }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--orange);
            transition: width 0.3s;
        }

        .nav-links a:hover::after { width: 100%; }

        .nav-actions {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .btn-top {
            background: var(--orange);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 900;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.9rem;
        }

        .btn-top:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 120, 73, 0.4);
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--navy);
            cursor: pointer;
            z-index: 3000;
        }

        .menu-close {
            display: none;
            position: fixed;
            top: 20px;
            right: 5%;
            font-size: 2.5rem;
            color: white;
            cursor: pointer;
            z-index: 3001;
            background: var(--orange);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(255, 120, 73, 0.5);
        }

        /* ========================================
           SECTION 1: HERO ABOUT
        ======================================== */
        .hero-about {
            min-height: 100vh;
            background: radial-gradient(circle at center, #111827 0%, var(--bg-deep) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 8%;
            position: relative;
            overflow: hidden;
        }

        .hero-about::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
            opacity: 0.1;
            top: -200px;
            right: -200px;
            border-radius: 50%;
        }

        .hero-content {
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            z-index: 10;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .hero-text h1 span {
            color: var(--orange);
            text-shadow: 0 0 30px var(--glow);
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #94a3b8;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .stat-box {
            border-left: 3px solid var(--orange);
            padding-left: 20px;
        }

        .stat-box h3 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--orange);
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-box p {
            font-size: 0.85rem;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .hero-visual {
            position: relative;
        }

        .hero-img-main {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            filter: grayscale(50%);
            transition: 0.5s;
        }

        .hero-img-main:hover {
            filter: grayscale(0%);
            transform: scale(1.02);
        }

        .floating-badge {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: var(--orange);
            padding: 30px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(255, 120, 73, 0.4);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .floating-badge h4 {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            line-height: 1;
            margin-bottom: 10px;
        }

        .floating-badge p {
            color: white;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* ========================================
           SECTION 2: OUR STORY (NEW HEAVY)
        ======================================== */
        .story-section {
            padding: 120px 8%;
            background: white;
        }

        .story-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .story-images {
            position: relative;
        }

        .story-img-1 {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .story-img-2 {
            position: absolute;
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 20px;
            bottom: -40px;
            right: -40px;
            border: 5px solid white;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .story-content h2 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .story-content h2 span {
            color: var(--orange);
        }

        .story-content p {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .story-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .highlight-item h4 {
            font-size: 1rem;
            font-weight: 800;
            color: var(--navy);
        }

        /* ========================================
           SECTION 3: MISSION VISION VALUES
        ======================================== */
        .mvv-section {
            padding: 120px 8%;
            background: var(--navy);
        }

        .mvv-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .mvv-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 60px 40px;
            border-radius: 30px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: 0.4s;
            text-align: center;
        }

        .mvv-card:hover {
            background: rgba(255, 120, 73, 0.1);
            border-color: var(--orange);
            transform: translateY(-10px);
        }

        .mvv-icon {
            width: 100px;
            height: 100px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 3rem;
            color: white;
        }

        .mvv-card h3 {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .mvv-card p {
            color: #cbd5e1;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* ========================================
           SECTION 4: WHY CHOOSE US ADVANCED
        ======================================== */
        .why-section {
            padding: 120px 8%;
            background: var(--light-gray);
        }

        .why-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .why-card {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border-left: 6px solid var(--orange);
            transition: 0.4s;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .why-number {
            font-size: 5rem;
            font-weight: 900;
            color: var(--orange);
            opacity: 0.15;
            line-height: 1;
            margin-bottom: 20px;
        }

        .why-card h3 {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 20px;
        }

        .why-card p {
            color: var(--text-gray);
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 25px;
        }

        .why-features {
            list-style: none;
            padding: 0;
        }

        .why-features li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--text-gray);
        }

        .why-features li i {
            color: var(--green);
            font-size: 1.2rem;
        }



        /* ========================================
           SECTION 5: JOURNEY TIMELINE (VERTICAL)
        ======================================== */
        .timeline-section {
            padding: 120px 8%;
            background: white;
            position: relative;
        }

        .timeline-wrapper {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-center-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--orange);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 80px;
            display: flex;
            align-items: center;
        }

        .timeline-item:nth-child(odd) {
            justify-content: flex-end;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: calc(50% + 80px);
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: calc(50% + 80px);
        }

        .timeline-content {
            background: var(--light-gray);
            padding: 35px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            max-width: 400px;
            position: relative;
        }

        .timeline-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            background: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: white;
            box-shadow: 0 5px 20px rgba(255, 120, 73, 0.4);
            z-index: 10;
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .timeline-content p {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* ========================================
           SECTION 6: MEGA STATS COUNTER
        ======================================== */
        .stats-mega {
            padding: 100px 8%;
            background: linear-gradient(135deg, var(--orange) 0%, #ff6b35 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-mega::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -400px;
            right: -400px;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            position: relative;
            z-index: 10;
        }

        .stat-item {
            text-align: center;
        }

        .stat-icon {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2.5rem;
            color: var(--orange);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 4.5rem;
            font-weight: 900;
            color: white;
            line-height: 1;
            margin-bottom: 15px;
        }

        .stat-label {
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.95;
        }



        /* ========================================
           SECTION 7: AWARDS & RECOGNITION WALL
        ======================================== */
        .awards-section {
            padding: 120px 8%;
            background: var(--navy);
        }

        .awards-showcase {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .award-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 50px 30px;
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: 0.4s;
            cursor: pointer;
        }

        .award-card:hover {
            background: rgba(255, 120, 73, 0.15);
            border-color: var(--orange);
            transform: scale(1.05);
        }

        .award-icon {
            font-size: 4rem;
            color: var(--orange);
            margin-bottom: 25px;
        }

        .award-card h3 {
            color: white;
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .award-card p {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        /* ========================================
           SECTION 13: FAQ
        ======================================== */
        .faq-container-main {
            padding: 100px 8%;
            background: #ffffff;
        }

        .faq-header-center {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header-center .section-tag {
            color: #ff7849;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .faq-header-center h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            color: #1e1b4b;
            line-height: 1.1;
        }

        .faq-header-center h2 span {
            color: #ff7849;
        }

        .faq-split-body {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 60px;
        }

        .faq-visual, .faq-list-side {
            flex: 1;
            min-width: 320px;
        }

        .faq-visual img {
            width: 100%;
            border-radius: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
        }

        .faq-item {
            background: #f8fafc;
            border-radius: 20px;
            margin-bottom: 15px;
            border: 1px solid #edf2f7;
            transition: 0.3s;
        }

        .faq-question {
            padding: 22px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 800;
            font-size: 1.1rem;
            color: #1e1b4b;
        }

        .faq-question i {
            color: #ff7849;
            transition: 0.3s;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: 0.3s ease-in-out;
            color: #4b5563;
            line-height: 1.6;
        }

        .faq-item.active {
            border-color: #ff7849;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 250px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* ========================================
           SECTION 14: CTA
        ======================================== */
        .cta-elite-section {
            padding: 100px 8%;
            background: #ffffff;
            font-family: 'Outfit', sans-serif;
        }

        .cta-container {
            background: var(--navy);
            border-radius: 40px;
            padding: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(30, 27, 75, 0.2);
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 120, 73, 0.15);
            filter: blur(100px);
            border-radius: 50%;
        }

        .cta-text {
            flex: 1;
            z-index: 2;
        }

        .cta-text h2 {
            font-size: clamp(30px, 4vw, 45px);
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-text p {
            color: #cbd5e1;
            font-size: 18px;
            line-height: 1.6;
            max-width: 500px;
        }

        .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 2;
            min-width: 280px;
        }

        .cta-btn {
            padding: 18px 35px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.4s ease;
        }

        .btn-orange {
            background: var(--orange);
            color: white;
            box-shadow: 0 10px 20px rgba(255, 120, 73, 0.3);
        }

        .btn-orange:hover {
            transform: translateY(-5px);
            background: #ff8b66;
            box-shadow: 0 15px 30px rgba(255, 120, 73, 0.5);
        }

        .btn-outline {
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            background: transparent;
        }

        .btn-outline:hover {
            background: white;
            color: var(--navy);
            border-color: white;
        }

        .live-status {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #10b981;
            font-weight: 700;
            font-size: 14px;
            margin-top: 15px;
            justify-content: center;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        /* ========================================
           FOOTER
        ======================================== */
        .main-footer {
            background: var(--navy);
            color: white;
            padding: 80px 4% 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-brand h2 {
            font-size: 32px;
            font-weight: 900;
            margin: 0 0 20px 0;
            letter-spacing: -1px;
        }

        .footer-brand h2 span {
            color: var(--orange);
        }

        .footer-brand p {
            color: #94a3b8;
            line-height: 1.6;
            font-size: 15px;
            max-width: 380px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-links a:hover {
            background: var(--orange);
            transform: translateY(-5px);
        }

        .footer-column h4 {
            font-size: 19px;
            font-weight: 800;
            margin-bottom: 25px;
            color: white;
            position: relative;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 35px;
            height: 2px;
            background: var(--orange);
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 15px;
            transition: 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--orange);
        }

        .newsletter-container {
            background: rgba(255, 255, 255, 0.03);
            padding: 5px;
            border-radius: 50px;
            display: flex;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 20px;
        }

        .newsletter-container input {
            background: transparent;
            border: none;
            padding: 10px 20px;
            color: white;
            flex: 1;
            outline: none;
        }

        .newsletter-container input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-container button {
            background: var(--orange);
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            color: white;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

        .newsletter-container button:hover {
            background: #ff8b66;
            box-shadow: 0 0 15px rgba(255, 120, 73, 0.4);
        }

        .footer-bottom {
            margin-top: 60px;
            padding: 25px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #64748b;
        }

        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.15);
            background-color: #128C7E;
        }

        /* ========================================
           COMMON SECTION TITLES
        ======================================== */
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 20px;
            text-transform: uppercase;
            line-height: 1.2;
        }

        .section-title.white h2 {
            color: white;
        }

        .section-title h2 span {
            color: var(--orange);
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .section-title.white p {
            color: #cbd5e1;
        }

        /* ========================================
           RESPONSIVE DESIGN
        ======================================== */
        @media (max-width: 1024px) {
            .navbar {
                grid-template-columns: 1fr auto;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: var(--navy);
                flex-direction: column;
                padding-top: 100px;
                transition: 0.4s;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
                z-index: 2500;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                color: white;
                font-size: 1.2rem;
                padding: 15px 0;
            }

            .nav-links a::after {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .menu-close {
                display: flex;
            }

            .nav-actions {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: left;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .story-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .mvv-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                margin-bottom: 60px;
                justify-content: center;
                flex-direction: column;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin: 0;
                max-width: 100%;
                text-align: left;
            }

            .timeline-center-line {
                display: none;
            }

            .timeline-number {
                position: relative;
                left: 0;
                transform: none;
                margin-bottom: 20px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .awards-showcase {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            /* Additional improvements for tablets */
            .hero-about,
            .story-section,
            .mvv-section,
            .why-section,
            .timeline-section,
            .stats-mega,
            .awards-section,
            .mega-cta {
                padding: 100px 6%;
            }
        }
        @media (max-width: 992px) {
                        /* CTA Mobile */
            .cta-container { 
                flex-direction: column; 
                text-align: left; 
                padding: 40px 30px; 
            }
            .cta-text p { 
                margin: 0 0 30px; 
            }
            .cta-actions { 
                width: 100%; 
            }

            /* FAQ Mobile */
            .faq-container-main { 
                padding: 60px 6%; 
            }
            .faq-split-body { 
                flex-direction: column; 
            }

        }
        @media (max-width: 768px) {
            .hero-about,
            .story-section,
            .mvv-section,
            .why-section,
            .timeline-section,
            .stats-mega,
            .awards-section,
            .mega-cta {
                padding: 80px 5%;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-text {
                text-align: left;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .section-title {
                text-align: left;
            }

            .story-img-2 {
                width: 200px;
                height: 200px;
                bottom: -30px;
                right: -30px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 3.5rem;
            }

            .awards-showcase {
                grid-template-columns: 1fr;
            }

            .cta-container h2 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-features {
                flex-direction: column;
                gap: 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: left;
                gap: 15px;
            }
            
            /* Better mobile text alignment */
            .mvv-card,
            .why-card,
            .timeline-content {
                text-align: left;
            }
            
            .mvv-icon {
                margin: 0 0 30px;
            }
        }

        @media (max-width: 600px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .floating-badge {
                display: none;
            }

            .story-highlights {
                grid-template-columns: 1fr;
            }

            .cta-btn-primary,
            .cta-btn-secondary {
                width: 100%;
            }
            
            /* Additional mobile improvements */
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .mvv-card {
                padding: 40px 25px;
            }
            
            .mvv-icon {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }
            
            .why-card {
                padding: 35px 25px;
            }
            
            .why-number {
                font-size: 4rem;
            }
            
            .timeline-content {
                padding: 25px 20px;
            }
            
            .stat-number {
                font-size: 3rem;
            }
        }
        
        /* Extra Small Devices - Small Phones */
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.75rem;
                line-height: 1.2;
            }
            
            .hero-text p {
                font-size: 0.95rem;
            }
            
            .btn-primary {
                padding: 14px 28px;
                font-size: 0.9rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .section-title p {
                font-size: 0.95rem;
            }
            
            .mvv-card h3 {
                font-size: 1.5rem;
            }
            
            .why-card h3 {
                font-size: 1.4rem;
            }
            
            .timeline-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stat-label {
                font-size: 0.9rem;
            }
            
            .cta-container h2 {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            .navbar {
                padding: 12px 4%;
            }
            
            .logo {
                font-size: 1.2rem;
            }
        }
        
        /* Medium Tablets - Better Optimization */
        @media (min-width: 769px) and (max-width: 1024px) {
            .mvv-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .why-card {
                padding: 40px 35px;
            }
            
            .timeline-content {
                max-width: 350px;
            }
        }
