        :root {
            --white: #ffffff;
            --orange: #ff7849;
            --navy: #1e1b4b;
            --black: #020617;
            --dark-bg: #0f172a;
            --gray-text: #4b5563;
            --light-bg: #f8fafc;
            --border: #edf2f7;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
        body { background: var(--white); color: var(--navy); overflow-x: hidden; scroll-behavior: smooth; }

        /* ========================================
           NAVBAR WITH VISIBLE CLOSE BUTTON
        ======================================== */
        .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;
            position: relative;
        }

        /* Mobile Menu Close Button Fix */
        .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);
        }

        /* ========================================
           HERO SECTION (DARK/COLORLESS)
        ======================================== */
        .hero {
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 5%;
            position: relative;
            background: radial-gradient(circle at 20% 50%, #0f172a 0%, #020617 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background-image: 
                linear-gradient(90deg, rgba(255,120,73,0.03) 1px, transparent 1px),
                linear-gradient(0deg, rgba(255,120,73,0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: grid-move 20s linear infinite;
            pointer-events: none;
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            max-width: 900px;
        }

        .hero-content h2 {
            color: var(--orange);
            font-size: 0.9rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 6vw, 6rem);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 30px;
            color: var(--white);
        }

        .hero-content h1 span {
            color: var(--orange);
            display: block;
        }

        .hero-content p {
            color: #94a3b8;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat h3 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--orange);
            margin-bottom: 10px;
        }

        .hero-stat p {
            color: #94a3b8;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* ========================================
           WHITE SECTIONS STYLES
        ======================================== */
        .white-section {
            background: var(--white);
            padding: 100px 8%;
        }

        .section-tag {
            color: var(--orange);
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .section-title span {
            color: var(--orange);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-text);
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========================================
           SECTION 1: FEATURED PROJECTS (WHITE)
        ======================================== */
        .featured-projects {
            text-align: center;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .featured-card {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: 0.4s;
            background: var(--light-bg);
        }

        .featured-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .featured-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: 0.4s;
        }

        .featured-card:hover .featured-img {
            transform: scale(1.1);
        }

        .featured-info {
            padding: 35px;
            text-align: left;
        }

        .featured-category {
            background: var(--orange);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
        }

        .featured-info h3 {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .featured-info p {
            color: var(--gray-text);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .featured-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .tag {
            background: var(--light-bg);
            border: 1px solid var(--border);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--navy);
        }

        .view-project-btn {
            background: var(--navy);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .view-project-btn:hover {
            background: var(--orange);
            transform: translateX(5px);
        }

        /* ========================================
           SECTION 2: INDUSTRY CATEGORIES (WHITE)
        ======================================== */
        .industry-categories {
            text-align: center;
            background: var(--light-bg);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .category-card {
            background: var(--white);
            padding: 40px 25px;
            border-radius: 25px;
            border: 2px solid var(--border);
            transition: 0.4s;
            cursor: pointer;
        }

        .category-card:hover {
            border-color: var(--orange);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .category-icon {
            font-size: 3rem;
            color: var(--orange);
            margin-bottom: 20px;
        }

        .category-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .category-card p {
            color: var(--gray-text);
            font-size: 0.9rem;
        }

        .project-count {
            display: inline-block;
            background: var(--light-bg);
            color: var(--orange);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 800;
            margin-top: 15px;
            font-size: 0.85rem;
        }

        /* ========================================
           SECTION 3: PROJECT FILTERS & GRID (WHITE)
        ======================================== */
        .projects-showcase {
            text-align: center;
        }

        .filter-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 14px 35px;
            border: 2px solid var(--border);
            border-radius: 50px;
            background: white;
            font-weight: 800;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.95rem;
            color: var(--navy);
        }

        .filter-btn.active {
            border-color: var(--orange);
            background: var(--orange);
            color: white;
        }

        .filter-btn:hover {
            border-color: var(--orange);
            transform: translateY(-3px);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .project-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            border: 2px solid var(--border);
            transition: 0.4s;
            cursor: pointer;
        }

        .project-card.hide {
            display: none;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
            border-color: var(--orange);
        }

        .project-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: 0.4s;
        }

        .project-card:hover .project-img {
            transform: scale(1.1);
        }

        .project-info {
            padding: 25px;
            text-align: left;
        }

        .project-info span {
            color: var(--orange);
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .project-info h3 {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--navy);
            margin-top: 10px;
        }

        /* ========================================
           SECTION 8: TESTIMONIALS
        ======================================== */
        .reviews-section {
            padding: 100px 0;
            background: #ffffff;
            text-align: center;
        }

        .header-box { margin-bottom: 60px; padding: 0 5%; }
        .header-box h2 { font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 900; letter-spacing: -2px; color: var(--navy); }
        .header-box span { color: var(--orange); }

        .marquee-container {
            display: flex;
            width: 100%;
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        }

        .marquee-track {
            display: flex;
            gap: 30px;
            padding: 20px 0;
            animation: infiniteScroll 35s linear infinite;
            width: max-content;
        }

        .review-card {
            width: 400px;
            flex-shrink: 0;
            background: #ffffff;
            border: 1.5px solid #f1f5f9;
            padding: 40px;
            border-radius: 35px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.02);
            text-align: left;
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .review-card:hover {
            transform: translateY(-12px);
            border-color: var(--orange);
            box-shadow: 0 25px 50px rgba(255, 120, 73, 0.12);
        }

        .u-profile { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
        
        .u-img-box {
            width: 60px; height: 60px; 
            border-radius: 50%; 
            overflow: hidden;
            border: 3px solid var(--orange);
            background: #f1f5f9;
        }
        .u-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .u-name h5 { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
        .u-name .stars { color: #fbbf24; font-size: 0.85rem; margin-top: 4px; }

        .u-comment { font-size: 1.05rem; line-height: 1.7; color: #475569; font-weight: 500; position: relative; }
        .u-comment i { color: #e2e8f0; font-size: 2rem; position: absolute; top: -10px; left: -15px; z-index: -1; }

        @keyframes infiniteScroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .marquee-container:hover .marquee-track { animation-play-state: paused; }

        /* ========================================
           SECTION 5: BEFORE/AFTER TRANSFORMATIONS (WHITE)
        ======================================== */
        .transformations {
            text-align: center;
        }

        .transformation-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            margin-top: 40px;
        }

        .transformation-item {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 30px;
            border: 2px solid var(--border);
        }

        .transformation-item h3 {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 30px;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .before-after {
            text-align: center;
        }

        .before-after span {
            display: block;
            font-weight: 800;
            font-size: 0.9rem;
            color: var(--orange);
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .ba-image {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            object-fit: cover;
            border: 3px solid var(--border);
        }

        .improvement-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 2px solid var(--border);
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h4 {
            font-size: 2rem;
            font-weight: 900;
            color: var(--orange);
        }

        .stat-item p {
            font-size: 0.85rem;
            color: var(--gray-text);
            text-transform: uppercase;
        }

        /* ========================================
           SECTION 6: CASE STUDIES (WHITE)
        ======================================== */
        .case-studies {
            background: var(--light-bg);
            text-align: center;
        }

        .case-study-card {
            background: var(--white);
            border-radius: 30px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .case-study-header {
            background: linear-gradient(135deg, var(--navy), var(--orange));
            padding: 50px;
            color: white;
        }

        .case-study-header h3 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 15px;
        }

        .case-study-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .case-study-body {
            padding: 50px;
            text-align: left;
        }

        .challenge-solution {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .cs-box h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .cs-box p {
            color: var(--gray-text);
            line-height: 1.8;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .result-box {
            background: var(--light-bg);
            padding: 25px;
            border-radius: 20px;
            text-align: center;
        }

        .result-box h5 {
            font-size: 2rem;
            font-weight: 900;
            color: var(--orange);
            margin-bottom: 10px;
        }

        .result-box p {
            font-size: 0.85rem;
            color: var(--gray-text);
        }

        /* ========================================
           SECTION 7: TECH STACK SHOWCASE (WHITE)
        ======================================== */
        .tech-stack {
            text-align: center;
        }

        .tech-categories {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .tech-category {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 25px;
            border: 2px solid var(--border);
        }

        .tech-category h3 {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 25px;
        }

        .tech-items {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .tech-badge {
            background: var(--white);
            border: 2px solid var(--border);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.9rem;
            color: var(--navy);
            transition: 0.3s;
            cursor: pointer;
        }

        .tech-badge:hover {
            border-color: var(--orange);
            background: var(--orange);
            color: white;
            transform: translateY(-5px);
        }

        /* ========================================
           SECTION 8: AWARDS & RECOGNITION (WHITE)
        ======================================== */
        .awards-section {
            background: var(--light-bg);
            text-align: center;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .award-card {
            background: var(--white);
            padding: 40px 25px;
            border-radius: 25px;
            border: 2px solid var(--border);
            transition: 0.4s;
        }

        .award-card:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .award-icon {
            font-size: 3.5rem;
            color: var(--orange);
            margin-bottom: 20px;
        }

        .award-card h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .award-card p {
            color: var(--gray-text);
            font-size: 0.85rem;
        }

        .award-year {
            display: inline-block;
            background: var(--light-bg);
            color: var(--orange);
            padding: 6px 18px;
            border-radius: 50px;
            font-weight: 800;
            margin-top: 15px;
            font-size: 0.8rem;
        }

        /* ========================================
           SECTION 9: PROJECT TIMELINE (WHITE)
        ======================================== */
        .project-timeline {
            text-align: center;
        }

        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--orange), var(--navy));
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 0 0 45%;
            background: var(--light-bg);
            padding: 35px;
            border-radius: 25px;
            border: 2px solid var(--border);
            transition: 0.4s;
        }

        .timeline-content:hover {
            border-color: var(--orange);
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .timeline-year {
            width: 100px;
            height: 100px;
            background: var(--orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 0 10px var(--white), 0 0 0 15px var(--border);
            z-index: 10;
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .timeline-content p {
            color: var(--gray-text);
            line-height: 1.7;
        }

        /* ========================================
           SECTION 10: PROJECT METRICS (WHITE)
        ======================================== */
        .project-metrics {
            background: var(--light-bg);
            text-align: center;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .metric-card {
            background: var(--white);
            padding: 50px 30px;
            border-radius: 25px;
            border: 2px solid var(--border);
            transition: 0.4s;
        }

        .metric-card:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .metric-icon {
            font-size: 3rem;
            color: var(--orange);
            margin-bottom: 20px;
        }

        .metric-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .metric-label {
            color: var(--gray-text);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ========================================
           SECTION 11: COLLABORATION PROCESS (WHITE)
        ======================================== */
        .collaboration-process {
            text-align: center;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .process-step {
            background: var(--light-bg);
            padding: 40px 25px;
            border-radius: 25px;
            border: 2px solid var(--border);
            transition: 0.4s;
            position: relative;
        }

        .process-step::after {
            content: '→';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--orange);
            font-weight: 900;
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-step:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            background: var(--white);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            margin: 0 auto 20px;
        }

        .process-step h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .process-step p {
            font-size: 0.85rem;
            color: var(--gray-text);
            line-height: 1.6;
        }

        /* ========================================
           SECTION 12: VIDEO SHOWCASE (WHITE)
        ======================================== */
        .video-showcase {
            background: var(--light-bg);
            text-align: center;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .video-card {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            border: 2px solid var(--border);
            transition: 0.4s;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
            border-color: var(--orange);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, var(--navy), var(--orange));
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--orange);
            transition: 0.3s;
        }

        .video-thumbnail:hover .play-button {
            transform: scale(1.2);
            background: white;
        }

        .video-info {
            padding: 30px;
            text-align: left;
        }

        .video-info h3 {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .video-info p {
            color: var(--gray-text);
            line-height: 1.7;
        }

        .video-duration {
            display: inline-block;
            background: var(--light-bg);
            color: var(--orange);
            padding: 6px 15px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.8rem;
            margin-top: 15px;
        }

        /* ========================================
           SECTION 13: CLIENT LOGOS (WHITE)
        ======================================== */
        .client-logos {
            text-align: center;
        }

        .logos-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 40px;
            align-items: center;
        }

        .logo-item {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 20px;
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            transition: 0.3s;
            cursor: pointer;
        }

        .logo-item:hover {
            transform: translateY(-10px);
            border-color: var(--orange);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .logo-item i {
            font-size: 3rem;
            color: var(--navy);
        }
        /* ========================================
           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);
        }

        /* ========================================
           CTA SECTION
        ======================================== */
        .cta-elite-section {
            padding: 100px 8%;
            background: var(--white);
        }

        .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: white;
            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-alt {
            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-alt {
            background: var(--orange);
            color: white;
            box-shadow: 0 10px 20px rgba(255, 120, 73, 0.3);
        }

        .btn-orange-alt: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;
        }

        .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 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;
        }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 1100px) {
            .featured-grid, .transformation-container, .video-grid {
                grid-template-columns: 1fr;
            }
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .category-grid, .awards-grid, .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonials-grid, .tech-categories {
                grid-template-columns: 1fr;
            }
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-step::after {
                display: none;
            }
            .logos-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .navbar {
                grid-template-columns: 1fr auto;
                padding: 15px 5%;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                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);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links a {
                color: white;
                font-size: 1.2rem;
                padding: 15px 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .menu-close {
                display: flex;
            }
            
            .nav-links.active ~ .menu-close {
                display: flex;
            }
            
            .nav-actions {
                display: none;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline-line {
                display: none;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                flex-direction: column !important;
            }

            .timeline-content {
                flex: 1;
                width: 100%;
            }

            .timeline-year {
                position: relative;
                left: 0;
                transform: none;
                margin-bottom: 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 992px) {
                        /* CTA Mobile */
            .cta-container { 
                flex-direction: column; 
                text-align: center; 
                padding: 40px 30px; 
            }
            .cta-text p { 
                margin: 0 auto 30px; 
            }
            .cta-actions { 
                width: 100%; 
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 80px 5% 60px;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .projects-grid,
            .category-grid,
            .testimonials-grid,
            .awards-grid,
            .metrics-grid,
            .process-steps,
            .logos-grid {
                grid-template-columns: 1fr;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .challenge-solution,
            .results-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .white-section {
                padding: 60px 5%;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }
