        :root {
            /* Dark Theme Colors */
            --bg-primary: #0A0A0F;
            --bg-secondary: #1A1A24;
            --bg-card: #252530;

            /* Enhanced Gradient Colors */
            --accent-primary: #4F46E5;
            --accent-secondary: #7C3AED;
            --accent-tertiary: #EC4899;
            --accent-quaternary: #06B6D4;
            --accent-gold: #F59E0B;
            --accent-emerald: #10B981;

            /* Premium Gradients */
            --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
            --gradient-secondary: linear-gradient(135deg, #06B6D4 0%, #4F46E5 50%, #7C3AED 100%);
            /* Nebula Theme Colors - Deepest Cosmic Void */
            --bg-color: #020005;
            /* Deepest black-purple */
            --purple-1: #8C00FF;
            /* Bright Electric Purple (from fog) */
            --purple-2: #4c1d95;
            /* Deep Nebula Purple */
            /* True Void Black/Purple */
            /* Glowing Violet */
            --pink-1: #be185d;
            /* Cosmic Pink */
            --blue-1: #1e3a8a;
            /* Deep Space Blue */

            /* Legacy Variables mapped to new theme */
            --primary-color: #8b5cf6;
            --secondary-color: #d946ef;
            --dark-bg: var(--bg-color);
            /* Global Text Colors for Dark Theme */
            --light-text: #E0C3FC;
            /* Pale purple text matching gradient */
            --gray-text: #A5B4FC;
            --glass-bg: rgba(255, 255, 255, 0.02);
            /* Ultra-clear glass */
            --glass-border: rgba(255, 255, 255, 0.08);

            /* Gradients */
            --gradient-accent: linear-gradient(135deg, #3b82f6, #8b5cf6);
            --gradient-stats: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);

            --text-primary: #F3E8FF;
            --text-secondary: #E9D5FF;
            --text-muted: #C084FC;
            --border-glass: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--light-text);
            margin: 0;
            padding: 0;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            width: 100%;
            max-width: 100vw;
            /* Prevent shrinking */
        }

        /* --- LAYER 1: The Purple Smoke (CSS) --- */
        .fog-container {
            position: fixed;
            /* Fixed to stay with scroll */
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -2;
            /* Behind canvas */
            filter: blur(60px);
            opacity: 0.8;
            /* Trap the fog so it doesn't cause scroll */
            pointer-events: none;
            overflow: hidden !important;
            /* Trap the fog so it doesn't cause scroll */
        }

        .fog-left {
            position: absolute;
            top: 50%;
            left: -10%;
            width: 50vw;
            height: 80vh;
            background: radial-gradient(circle, rgba(140, 0, 255, 0.4) 0%, rgba(76, 29, 149, 0.1) 60%, transparent 100%);
            transform: translateY(-50%);
            animation: breathe 8s infinite alternate ease-in-out;
        }

        .fog-right {
            position: absolute;
            top: 50%;
            right: -10%;
            width: 50vw;
            height: 80vh;
            background: radial-gradient(circle, rgba(180, 0, 255, 0.35) 0%, rgba(88, 28, 135, 0.1) 60%, transparent 100%);
            transform: translateY(-50%);
            animation: breathe 10s infinite alternate ease-in-out;
            animation-delay: -5s;
        }

        /* --- LAYER 2: The Stardust (Canvas) --- */
        #particleCanvas {
            position: fixed;
            /* Fixed to stay with scroll */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            /* Behind content, above fog */
            mix-blend-mode: screen;
            pointer-events: none;
            /* Let clicks pass through */
        }

        @keyframes breathe {
            0% {
                transform: translateY(-50%) scale(1);
                opacity: 0.8;
            }

            100% {
                transform: translateY(-50%) scale(1.1);
                opacity: 1;
            }
        }

        /* --- 2. The Noise Overlay (Texture) --- */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            /* Above blobs, below content */
            opacity: 0.07;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* --- 3. The Interactive Cursor Spotlight --- */
        .cursor-light {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            /* Same layer as noise or slightly above */
            background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%),
                    rgba(255, 255, 255, 0.06),
                    transparent 40%);
            transition: background 0.15s ease-out;
        }

        /* Keyframes for ambient motion */
        @keyframes float-blob {
            0% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -50px) scale(1.1);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }

            100% {
                transform: translate(0, 0) scale(1);
            }
        }

        /* Enhanced Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0A0A0F 0%, #1A1A24 50%, #252530 100%);
            overflow: hidden;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 120%;
            height: 120%;
            background:
                radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 60% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
            animation: float 25s ease-in-out infinite;
        }

        .animated-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(2px 2px at 20px 30px, rgba(79, 70, 229, 0.4), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(124, 58, 237, 0.3), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(236, 72, 153, 0.35), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(6, 182, 212, 0.25), transparent);
            background-repeat: repeat;
            background-size: 200px 200px;
            animation: sparkle 20s linear infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg) scale(1);
            }

            33% {
                transform: translateY(-30px) rotate(120deg) scale(1.1);
            }

            66% {
                transform: translateY(20px) rotate(240deg) scale(0.9);
            }
        }

        @keyframes sparkle {

            0%,
            100% {
                opacity: 0.3;
                transform: translateY(0px);
            }

            50% {
                opacity: 0.8;
                transform: translateY(-10px);
            }
        }

        /* Glassmorphism Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-glass);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            transition: all 0.3s ease-in-out;
            background-color: var(--text-primary);
        }



        @media (max-width: 1100px) {

            /* --- CRITICAL FIX: Breaking the Stacking Context Trap --- */
            .navbar {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                /* Remove the filter so fixed children are relative to viewport, not navbar */
                transform: none !important;
                z-index: 10000;
                /* High base */
            }

            /* --- GLOBAL MOBILE FIXES --- */
            .mobile-menu-toggle {
                display: block;
                z-index: 100000;
                /* Ensure it floats above menu overlay */
                position: relative;
            }

            .mobile-menu-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-toggle.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .mobile-menu-toggle.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 0;
                flex-direction: column;
                background: rgba(10, 10, 15, 0.98);
                /* Almost solid for readability */
                backdrop-filter: blur(20px);
                width: 100%;
                height: 100vh;
                text-align: center;
                transition: 0.3s;
                justify-content: center;
                padding-top: 60px;
                z-index: 99999;
                /* Force above EVERYTHING */
                opacity: 0;
                pointer-events: none;
            }

            .nav-menu.active {
                left: 0;
                opacity: 1 !important;
                pointer-events: auto;
                visibility: visible !important;
                display: flex !important;
            }

            /* FORCE ITEMS VISIBLE */
            .nav-menu.active li,
            .nav-menu.active a {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translate(0) !important;
            }

            .nav-menu li {
                margin: 20px 0;
            }

            /* --- TYPOGRAPHY SCALING --- */
            h1 {
                font-size: clamp(2rem, 8vw, 2.75rem) !important;
                line-height: 1.2;
            }

            h2 {
                font-size: clamp(1.75rem, 6vw, 2.25rem) !important;
                text-align: center;
                /* Center headers on mobile usually looks better */
            }

            p {
                font-size: 1rem !important;
                /* Ensure readable body text */
            }

            .hero-subtitle {
                font-size: 1rem !important;
            }

            /* --- SECTION LAYOUTS: STACK & EXPAND --- */

            /* Hero */
            .hero-container {
                display: flex;
                flex-direction: column;
                gap: 3rem;
                gap: 3rem;
                padding-top: 2rem;
                text-align: center;
                width: 100%;
                /* Force full width */
                overflow: hidden;
                /* Prevent internal spills */
            }

            .hero {
                padding: 6rem 1rem 3rem;
                overflow: hidden;
                /* Safety Check */
            }

            /* Stats Bar */
            .stats-bar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
                justify-items: center;
                width: 100%;
            }

            /* About Section */
            .about-content {
                display: grid;
                grid-template-columns: 1fr;
                /* Stack vertically */
                gap: 3rem;
            }

            .about-story {
                order: 1;
                /* Text first */
                text-align: center;
            }

            .about-stats-container {
                order: 2;
                /* Stats second */
                padding: 2rem;
            }

            /* Services & Features */
            .services-grid,
            .testimonials-grid,
            .features-grid {
                grid-template-columns: 1fr !important;
                /* Force single column */
            }

            /* Contact Section */
            .contact-content {
                display: grid;
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-form-container {
                padding: 1.5rem;
            }

            /* Footer */
            .footer-content {
                display: flex;
                flex-direction: column;
                gap: 2.5rem;
                text-align: center;
            }

            .footer-column {
                width: 100%;
                padding: 0;
                align-items: center;
                /* Center flex items if applicable */
            }

            /* Fix social icons centering in footer */
            .social-icons {
                justify-content: center;
            }

            /* --- SPACING OPTIMIZATION --- */
            .cascade-section,
            .macbook-showcase-section,
            .featured-projects-section,
            .faq-section,
            .about-section,
            .contact-section,
            .footer-section {
                padding-left: 1.5rem !important;
                padding-right: 1.5rem !important;
                padding-top: 4rem !important;
                padding-bottom: 4rem !important;
                margin-bottom: 0 !important;
                /* Reset any lingering spacers */
            }
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            /* Geometric font with square aesthetic */
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient-primary);
            /* Horizontal gradient matching image */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
            filter: brightness(1.2);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu li {
            position: relative;
        }

        /* Reset all navigation links first */
        .nav-menu a {
            all: unset;
            cursor: pointer;
        }

        /* Style ONLY elements with nav-link class */
        .nav-menu .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            background: transparent !important;
            /* Force transparent */
            border: none;
            box-shadow: none;
            display: inline-block;
        }

        .nav-menu .nav-link:hover,
        .nav-menu .nav-link:focus,
        .nav-menu .nav-link:visited,
        .nav-menu li.active .nav-link {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            /* Reset conflicting properties that forced use of !important */
            background-image: none;
            box-shadow: none;
        }

        /* Active state needs slightly more specificity to beat default hover if needed, 
           or just rely on order. Adding a class-specific rule. */
        .nav-menu .nav-link.active {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-menu .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-menu .nav-link:hover::after {
            width: 80%;
        }

        /* CTA Button with highest specificity */
        /* CTA Button with highest specificity */
        .nav-menu .cta-button {
            all: unset;
            background: var(--gradient-primary);
            color: white !important;
            padding: 0.7rem 1.8rem !important;
            border-radius: 9999px !important;
            text-decoration: none !important;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: none !important;
            cursor: pointer;
            position: relative;
            box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4) !important;
            display: inline-block;
            overflow: hidden !important;
            /* Fix for sliding background bleeding onto Contact link */
        }

        /* Remove any pseudo-elements from CTA button */
        .nav-menu .cta-button::after {
            display: none !important;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
            transition: left 0.3s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
            /* Removed conflicting gradient animation for now */
            background-size: 100%;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 500px;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .stats-bar {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--gradient-stats);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.25rem;
            animation: gradientPulse 4s ease-in-out infinite;
            background-size: 200% 200%;
        }

        @keyframes gradientPulse {

            0%,
            100% {
                background-position: 0% 50%;
                transform: scale(1);
            }

            50% {
                background-position: 100% 50%;
                transform: scale(1.05);
            }
        }

        .stat-label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-secondary);
            display: block;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 1;
            overflow: hidden;
            background-size: 200% 200%;
            animation: gradientFlow 6s ease-in-out infinite;
            box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-accent);
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
            border-radius: 50px;
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        @keyframes gradientFlow {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .btn-secondary {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-glass);
            color: var(--text-primary);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-button-large {
            padding: 1rem 3rem !important;
            font-size: 1.1rem;
            margin-top: 2rem;
            display: inline-block;
            background: var(--gradient-primary);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
        }

        .cta-button-large:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
        }

        .btn-primary:hover,
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
        }

        .trust-indicators {
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .trust-text {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
        }

        .client-logos {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }



        .client-logo-chip {
            padding: 0.5rem 1rem;
            background: var(--glass-bg);
            border-radius: 8px;
            font-size: 0.875rem;
        }

        /* Consistent Section Spacing */
        .cascade-section,
        .macbook-showcase-section,
        .featured-projects-section,
        .faq-section {
            margin-bottom: 100px;
        }

        /* Hero Visual - Clean placeholder for mockups */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 1s ease-out 0.4s both;
            min-height: 400px;
        }

        /* Hero Slideshow Layout */
        .hero-slideshow {
            width: 100%;
            height: 500px;
            position: relative;
            animation: fadeInScale 1s ease-out 0.6s both;
            background: transparent;
            overflow: hidden;
            border-radius: 0;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
            background: transparent;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(100%);
            background: transparent;
        }

        .slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .slide.prev {
            transform: translateX(-100%);
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: all 0.4s ease;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }

        .slide:hover .slide-image {
            transform: scale(1.02);
        }

        /* Slide Title Overlay */
        /* Slide Title Overlay - HIDDEN to match clean reference style */
        .slide-title {
            display: none !important;
        }

        .slide .slide-title {
            display: none !important;
        }

        /* Hide navigation dots for video-like experience */
        .slideshow-dots {
            display: none;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive Design for Hero Slideshow */
        @media (max-width: 768px) {
            .hero-slideshow {
                height: 300px;
                border-radius: 0;
            }

            .slide-image {
                border-radius: 0;
                object-fit: contain;
            }

            .slide-title {
                font-size: 0.875rem;
                padding: 10px 20px;
                bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-slideshow {
                height: 250px;
                border-radius: 0;
            }

            .slide-image {
                border-radius: 0;
                object-fit: contain;
            }

            .slide-title {
                font-size: 0.75rem;
                padding: 8px 16px;
                bottom: 12px;
            }
        }

        /* Slide Image Wrapper for centering content */
        .slide-image-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* MacBook Cascade Styles */
        .hero-cascade-container {
            position: relative;
            width: 100%;
            height: 100%;
            max-width: 650px;
            /* Constrain for better layout */
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-macbook {
            position: absolute;
            transition: all 0.5s ease;
        }

        .hero-macbook img {
            width: 100%;
            height: auto;
            display: block;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
        }

        /* Back MacBook (Larger/Background) */
        .hero-macbook-1 {
            width: 85%;
            top: 5%;
            left: 0;
            z-index: 1;
            transform: scale(0.95);
        }

        /* Front MacBook (Smaller/Foreground) */
        .hero-macbook-2 {
            width: 60%;
            bottom: 5%;
            right: -5%;
            z-index: 2;
        }

        /* Cascading Phones Section */
        .cascade-section {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .cascade-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 50%);
            pointer-events: none;
        }

        .cascade-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .cascade-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #F8FAFC 0%, #4F46E5 30%, #7C3AED 60%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 8s ease-in-out infinite;
        }

        .cascade-content p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cascade-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .cascade-stat {
            text-align: center;
        }

        .cascade-stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--gradient-stats);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.25rem;
        }

        .cascade-stat-label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-secondary);
            display: block;
        }



        /* Cascading Phones Display */
        .cascade-phones {
            position: relative;
            height: 600px;
            width: 100%;
        }

        .cascade-phone {
            position: absolute;
            width: 280px;
            height: auto;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
            animation: floatPhone 6s ease-in-out infinite;
        }

        .cascade-phone img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 25px;
        }

        /* Individual phone positioning and rotation */
        .cascade-phone:nth-child(1) {
            top: 50px;
            left: 50px;
            transform: rotate(-8deg);
            z-index: 4;
            animation-delay: 0s;
        }

        .cascade-phone:nth-child(2) {
            top: 120px;
            left: 200px;
            transform: rotate(12deg);
            z-index: 3;
            animation-delay: -1.5s;
        }

        .cascade-phone:nth-child(3) {
            top: 80px;
            left: 380px;
            transform: rotate(-5deg);
            z-index: 2;
            animation-delay: -3s;
        }

        .cascade-phone:nth-child(4) {
            top: 200px;
            left: 520px;
            transform: rotate(15deg);
            z-index: 1;
            animation-delay: -4.5s;
        }

        .cascade-phone:hover {
            transform: scale(1.05) rotate(0deg);
            z-index: 10;
            filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
        }

        @keyframes floatPhone {

            0%,
            100% {
                transform: translateY(0px) rotate(var(--rotation));
            }

            50% {
                transform: translateY(-15px) rotate(var(--rotation));
            }
        }

        .cascade-phone:nth-child(1) {
            --rotation: -8deg;
        }

        .cascade-phone:nth-child(2) {
            --rotation: 12deg;
        }

        .cascade-phone:nth-child(3) {
            --rotation: -5deg;
        }

        .cascade-phone:nth-child(4) {
            --rotation: 15deg;
        }

        /* Responsive Design for Cascade Section */
        @media (max-width: 1200px) {
            .cascade-phones {
                height: 500px;
            }

            .cascade-phone {
                width: 240px;
            }

            .cascade-phone:nth-child(1) {
                left: 20px;
            }

            .cascade-phone:nth-child(2) {
                left: 150px;
            }

            .cascade-phone:nth-child(3) {
                left: 280px;
            }

            .cascade-phone:nth-child(4) {
                left: 400px;
            }
        }

        @media (max-width: 900px) {
            .cascade-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .cascade-phones {
                height: 400px;
                margin: 0 auto;
                max-width: 600px;
            }

            .cascade-phone {
                width: 180px;
            }

            .cascade-phone:nth-child(1) {
                top: 20px;
                left: 20px;
            }

            .cascade-phone:nth-child(2) {
                top: 80px;
                left: 120px;
            }

            .cascade-phone:nth-child(3) {
                top: 40px;
                left: 220px;
            }

            .cascade-phone:nth-child(4) {
                top: 120px;
                left: 320px;
            }
        }

        @media (max-width: 600px) {
            .cascade-section {
                padding: 4rem 1rem;
            }

            .cascade-phones {
                height: 300px;
                max-width: 400px;
            }

            .cascade-phone {
                width: 120px;
            }

            .cascade-phone:nth-child(1) {
                top: 10px;
                left: 10px;
            }

            .cascade-phone:nth-child(2) {
                top: 60px;
                left: 80px;
            }

            .cascade-phone:nth-child(3) {
                top: 30px;
                left: 150px;
            }

            .cascade-phone:nth-child(4) {
                top: 100px;
                left: 220px;
            }

            .cascade-stats {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Client Logos Section */
        .client-logos-section {
            padding: 4rem 2rem;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .client-logos-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .client-logos-header {
            margin-bottom: 3rem;
        }

        .client-logos-title {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #a78bfa;
            margin-bottom: 0.75rem;
            display: inline-block;
        }

        .client-logos-subtitle {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Logo Slider */
        .logo-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 140px;
            padding: 20px 0;
            mask: linear-gradient(to right,
                    transparent 0%,
                    black 10%,
                    black 90%,
                    transparent 100%);
            -webkit-mask: linear-gradient(to right,
                    transparent 0%,
                    black 10%,
                    black 90%,
                    transparent 100%);
        }

        .logo-track {
            display: flex;
            align-items: center;
            animation: scroll-logos 30s linear infinite;
            width: calc(300px * 12);
            /* Updated track width calculation */
        }

        .logo-slide {
            flex: 0 0 300px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 1rem;
        }

        .logo-slide img {
            max-height: 90px;
            max-width: 240px;
            object-fit: contain;
            mix-blend-mode: screen;
            opacity: 0.9;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .logo-slide:hover img {
            opacity: 1;
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
            transform: scale(1.15);
        }

        /* Logo text styles for brands without images */
        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--text-secondary);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .client-logos-section {
                padding: 3rem 0;
            }

            .logo-slider {
                height: 100px;
            }

            .logo-slide {
                flex: 0 0 160px;
                height: 80px;
                margin: 0 1rem;
            }

            .logo-slide img {
                max-height: 50px;
                max-width: 140px;
            }

            .client-logos-title {
                font-size: 0.75rem;
            }

            .client-logos-subtitle {
                font-size: 1.25rem;
            }
        }

        .logo-text.anz {
            color: #0066cc;
        }

        .logo-text.rmit {
            color: #e61e2b;
        }

        .logo-text.samsung {
            color: #1428a0;
        }

        .logo-text.europcar {
            color: #00a651;
        }

        .logo-text.lego {
            color: #ffcf00;
        }

        .logo-text.scotch {
            color: #ff6b35;
        }

        .logo-item:hover .logo-text {
            opacity: 1;
            transform: scale(1.05);
        }

        @keyframes scroll-logos {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-200px * 6 - 4rem * 6));
                /* Move by width of 6 logos + margins */
            }
        }

        /* Pause animation on hover */
        .logo-slider:hover .logo-track {
            animation-play-state: paused;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .client-logos-section {
                padding: 3rem 1.5rem;
            }

            .logo-item {
                flex: 0 0 160px;
                margin: 0 1.5rem;
            }

            .logo-track {
                width: calc(160px * 12);
            }

            @keyframes scroll-logos {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(calc(-160px * 6 - 3rem * 6));
                }
            }
        }

        @media (max-width: 600px) {
            .client-logos-section {
                padding: 2rem 1rem;
            }

            .logo-item {
                flex: 0 0 120px;
                margin: 0 1rem;
            }

            .logo-track {
                width: calc(120px * 12);
            }

            .logo-text {
                font-size: 1.2rem;
            }

            @keyframes scroll-logos {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(calc(-120px * 6 - 2rem * 6));
                }
            }
        }

        /* Services Section */
        .services-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .services-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .badge-icon {
            font-size: 1rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .gradient-text {
            display: inline-block;
            background: linear-gradient(135deg, #F8FAFC 0%, #4F46E5 30%, #7C3AED 60%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 8s ease-in-out infinite;
        }

        .section-description {
            font-size: 1.25rem;
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .service-meta h3 {
                font-size: 0.9rem !important;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .service-card {
                height: auto;
                /* Let content dictate height on mobile */
                min-height: 280px;
            }
        }

        /* Service Cards */
        .service-card {
            position: relative;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            overflow: hidden;
            animation: fadeInUp 1s ease-out both;
            height: 320px;
            display: flex;
            flex-direction: column;
        }

        .service-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .service-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .service-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .service-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .service-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .service-card.featured {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 32px 64px rgba(0, 0, 0, 0.2),
                0 16px 32px rgba(79, 70, 229, 0.15);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Card Background Effects */
        .card-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
            border-radius: 24px;
        }

        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.6;
            animation: orbFloat 8s ease-in-out infinite;
        }

        .orb-1 {
            width: 200px;
            height: 200px;
            background: var(--gradient-primary);
            top: -50px;
            right: -50px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 150px;
            height: 150px;
            background: var(--gradient-secondary);
            bottom: -30px;
            left: -30px;
            animation-delay: -4s;
        }

        .orb-3 {
            width: 180px;
            height: 180px;
            background: var(--gradient-accent);
            top: -40px;
            left: -40px;
            animation-delay: -2s;
        }

        .orb-4 {
            width: 160px;
            height: 160px;
            background: var(--gradient-success);
            bottom: -20px;
            right: -20px;
            animation-delay: -6s;
        }

        .orb-5 {
            width: 140px;
            height: 140px;
            background: var(--gradient-primary);
            top: -30px;
            right: -30px;
            animation-delay: -1s;
        }

        .orb-6 {
            width: 170px;
            height: 170px;
            background: var(--gradient-secondary);
            bottom: -40px;
            left: -40px;
            animation-delay: -3s;
        }

        .orb-7 {
            width: 190px;
            height: 190px;
            background: var(--gradient-accent);
            top: -50px;
            left: -50px;
            animation-delay: -5s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(10px, -15px) scale(1.1);
            }

            50% {
                transform: translate(-5px, 10px) scale(0.9);
            }

            75% {
                transform: translate(-10px, -5px) scale(1.05);
            }
        }

        /* Card Content */
        .card-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-header {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .service-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
        }

        .service-icon svg {
            width: 18px;
            height: 18px;
        }

        .service-meta h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 0.25rem 0;
            line-height: 1.2;
        }

        .service-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .service-description {
            font-size: 0.8rem;
            line-height: 1.3;
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
            height: 2.6rem;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 0.75rem 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .service-features li {
            position: relative;
            padding: 0.2rem 0 0.2rem 1.1rem;
            color: var(--text-secondary);
            font-size: 0.75rem;
            line-height: 1.2;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0.5rem;
            color: var(--accent-primary);
            font-weight: bold;
        }

        /* Service Stats */
        .service-stats {
            display: flex;
            gap: 1.5rem;
            margin-top: auto;
            padding-top: 1rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 1.25rem;
            font-weight: 800;
            background: var(--gradient-stats);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.65rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Services CTA */
        .services-cta {
            text-align: center;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .services-cta h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .services-cta p {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .cta-button-large {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(79, 70, 229, 0.4);
            background-size: 200% 200%;
            animation: gradientFlow 6s ease-in-out infinite;
        }

        .cta-button-large:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(79, 70, 229, 0.5);
        }

        .cta-arrow {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .cta-button-large:hover .cta-arrow {
            transform: translateX(4px);
        }

        /* Responsive Design */
        @media (max-width: 1400px) {
            .services-grid {
                gap: 1.75rem;
            }

            .service-card {
                padding: 1.75rem;
                height: 300px;
            }
        }

        @media (max-width: 1200px) {
            .services-section {
                padding: 5rem 1.5rem;
            }

            .services-grid {
                gap: 1.5rem;
                max-width: 900px;
            }

            .service-card {
                padding: 1.5rem;
                height: 280px;
            }
        }

        @media (max-width: 900px) {
            .services-section {
                padding: 4rem 1.25rem;
            }

            .services-grid {
                gap: 1.25rem;
            }

            .service-card {
                height: 260px;
                padding: 1.25rem;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 3rem 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                max-width: 500px;
            }

            .service-card {
                padding: 1.5rem;
                height: 240px;
                border-radius: 16px;
            }

            .service-meta h3 {
                font-size: 1.1rem;
                line-height: 1.2;
            }

            .service-description {
                font-size: 0.85rem;
                height: 2.2rem;
                line-height: 1.3;
            }

            .service-features {
                margin-bottom: 0.75rem;
            }

            .service-features li {
                font-size: 0.8rem;
                padding: 0.2rem 0 0.2rem 1.2rem;
            }

            .service-stats {
                gap: 1rem;
                padding-top: 1rem;
            }

            .stat-number {
                font-size: 1.1rem;
            }

            .stat-label {
                font-size: 0.65rem;
            }

            .services-cta {
                padding: 2rem;
                margin-top: 2.5rem;
            }

            .services-cta h3 {
                font-size: 1.5rem;
            }

            .services-cta p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .services-section {
                padding: 2.5rem 1rem;
            }

            .services-grid {
                max-width: 400px;
            }

            .service-card {
                padding: 1.25rem;
                height: 220px;
                border-radius: 14px;
            }

            .service-header {
                gap: 0.75rem;
                margin-bottom: 0.75rem;
            }

            .service-icon {
                width: 32px;
                height: 32px;
            }

            .service-icon svg {
                width: 16px;
                height: 16px;
            }

            .service-meta h3 {
                font-size: 1rem;
            }

            .service-tag {
                font-size: 0.7rem;
                padding: 0.25rem 0.75rem;
            }

            .service-description {
                font-size: 0.8rem;
                height: 2rem;
                margin-bottom: 0.75rem;
            }

            .service-features li {
                font-size: 0.75rem;
                padding: 0.15rem 0 0.15rem 1rem;
            }

            .service-stats {
                gap: 0.75rem;
                padding-top: 0.75rem;
            }

            .stat-number {
                font-size: 1rem;
            }

            .stat-label {
                font-size: 0.6rem;
            }

            .services-cta {
                padding: 1.5rem;
            }

            .services-cta h3 {
                font-size: 1.25rem;
            }

            .services-cta p {
                font-size: 1rem;
            }

            .cta-button-large {
                padding: 1rem 1.75rem;
                font-size: 1rem;
            }
        }

        /* Landscape Orientation Support */
        @media (max-width: 1024px) and (orientation: landscape) {
            .services-section {
                padding: 3rem 2rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                max-width: 900px;
            }

            .service-card {
                height: 240px;
                padding: 1.25rem;
            }
        }

        @media (max-width: 768px) and (orientation: landscape) {
            .services-section {
                padding: 2.5rem 1.5rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
                max-width: 700px;
            }

            .service-card {
                height: 220px;
                padding: 1rem;
            }

            .service-meta h3 {
                font-size: 0.95rem;
            }

            .service-description {
                font-size: 0.75rem;
                height: 1.8rem;
            }

            .service-features li {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) and (orientation: landscape) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 600px;
            }

            .service-card {
                height: 200px;
                padding: 0.875rem;
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Featured Projects Section */
        .featured-projects-section {
            padding: 8rem 2rem;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .featured-projects-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .featured-projects-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .featured-projects-title {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out;
        }




        /* Scroll-Driven Cascade Section */
        .scroll-cascade-section {
            padding: 6rem 2rem 8rem;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
            overflow: visible;
            min-height: 80vh;
        }

        .scroll-cascade-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .scroll-cascade-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            height: 100%;
        }

        .scroll-cascade-content {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 2;
            margin-top: 0;
            min-height: 60vh;
        }

        .cascade-text {
            position: relative;
            z-index: 3;
            padding-top: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cascade-text h2 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .cascade-text .highlight {
            background: linear-gradient(135deg, #F8FAFC 0%, #4F46E5 30%, #7C3AED 60%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 8s ease-in-out infinite;
        }

        .cascade-text p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .cascade-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .cascade-stat {
            text-align: left;
        }

        .cascade-stat-number {
            font-size: 1.75rem;
            font-weight: 800;
            background: var(--gradient-stats);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }

        .cascade-stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Device Composition Wrapper */
        .devices-wrapper {
            position: relative;
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
        }

        /* Laptop (Background, Right) */
        /* Laptop and Tablet Images - Reset to fill wrapper */
        .device-laptop,
        .device-tablet {
            width: 100%;
            height: auto;
            position: relative;
            transform: none;
            opacity: 1;
            /* Handle opacity in wrapper if needed, or rely on animate-in */
        }


        .device-tablet.animate-in {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .devices-wrapper {
                height: 400px;
            }

            .device-laptop {
                width: 85%;
                right: -20px;
            }

            .device-tablet {
                width: 50%;
                left: -10px;
                top: 70%;
            }
        }

        /* Responsive Design for Scroll Cascade */
        @media (max-width: 1200px) {
            .devices-wrapper {
                height: 500px;
            }
        }

        @media (max-width: 900px) {
            .scroll-cascade-section {
                padding: 4rem 1.5rem 8rem;
                min-height: auto;
            }

            .scroll-cascade-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
                min-height: auto;
                margin-top: 0;
            }

            .cascade-text {
                padding-top: 2rem;
            }

            .cascade-stats {
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .scroll-cascade-section {
                padding: 3rem 1rem 6rem;
                min-height: 100vh;
            }

            .cascade-text {
                padding-top: 1rem;
            }


            .scroll-phone:nth-child(4) {
                top: 80px;
                left: 220px;
            }

            .cascade-stats {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        /* About Section */
        .about-section {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* About Header */
        .about-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out;
        }

        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .about-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .about-title .gradient-text {
            background: linear-gradient(135deg, #F8FAFC 0%, #4F46E5 30%, #7C3AED 60%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 8s ease-in-out infinite;
        }

        .about-description {
            font-size: 1.25rem;
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        /* About Content Grid */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: center;
        }

        .about-story {
            position: relative;
        }

        .about-story h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .about-story p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .about-highlights {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .about-highlights li {
            position: relative;
            padding: 0.75rem 0 0.75rem 2rem;
            color: var(--text-secondary);
            font-size: 1.125rem;
            line-height: 1.6;
        }

        .about-highlights li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0.75rem;
            color: var(--accent-primary);
            font-weight: bold;
            font-size: 1.25rem;
        }

        /* About Stats */
        .about-stats-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .about-stats-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(236, 72, 153, 0.03) 100%);
            pointer-events: none;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .about-stat {
            text-align: center;
        }

        .about-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-stats);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
            background-size: 200% 200%;
            animation: gradientPulse 4s ease-in-out infinite;
        }

        .about-stat-label {
            font-size: 1rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 500;
        }

        /* Team Preview */
        .team-preview {
            margin-top: 4rem;
        }

        .team-preview h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 2rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(236, 72, 153, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .team-member:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .team-member:hover::before {
            opacity: 1;
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient-primary);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            font-weight: 700;
        }

        .team-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .team-role {
            font-size: 0.875rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .team-bio {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* About CTA */
        .about-cta {
            text-align: center;
            margin-top: 3rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-content {
                gap: 3rem;
            }

            .about-stats-container {
                padding: 2.5rem;
            }
        }

        @media (max-width: 900px) {
            .about-section {
                padding: 6rem 1.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 600px) {
            .about-section {
                padding: 4rem 1rem;
            }

            .about-stats-container {
                padding: 2rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-stat-number {
                font-size: 2rem;
            }
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Testimonials Header */
        .testimonials-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out;
        }

        .testimonials-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .testimonials-title .gradient-text {
            background: linear-gradient(135deg, #F8FAFC 0%, #4F46E5 30%, #7C3AED 60%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 8s ease-in-out infinite;
        }

        .testimonials-description {
            font-size: 1.25rem;
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Testimonials Grid */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 1s ease-out both;
        }

        .testimonial-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .testimonial-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .testimonial-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .testimonial-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(236, 72, 153, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        /* Company Logo */
        .testimonial-company {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .company-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-primary);
            text-transform: lowercase;
        }

        .company-logo.amber {
            color: #f59e0b;
        }

        .company-logo.blue {
            color: #3b82f6;
        }

        .company-logo.green {
            color: #10b981;
        }

        .company-logo.purple {
            color: #8b5cf6;
        }

        /* Testimonial Quote */
        .testimonial-quote {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 3rem;
            color: var(--accent-primary);
            position: absolute;
            top: -1rem;
            left: -0.5rem;
            opacity: 0.3;
        }

        /* Client Info */
        .testimonial-client {
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }

        .client-info {
            flex: 1;
        }

        .client-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .client-role {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* Star Rating */
        .testimonial-rating {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .star {
            color: #fbbf24;
            font-size: 1.25rem;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .testimonials-section {
                padding: 6rem 1.5rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonial-card {
                padding: 2.5rem;
            }
        }

        @media (max-width: 600px) {
            .testimonials-section {
                padding: 4rem 1rem;
            }

            .testimonial-card {
                padding: 2rem;
            }

            .testimonial-quote {
                font-size: 1rem;
            }
        }

        /* FAQ Section */
        .faq-section {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* FAQ Header */
        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out;
        }

        .faq-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .faq-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .faq-title .gradient-text {
            background: linear-gradient(135deg, #F8FAFC 0%, #4F46E5 30%, #7C3AED 60%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 8s ease-in-out infinite;
        }

        .faq-description {
            font-size: 1.25rem;
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        /* FAQ Items */
        .faq-list {
            margin-top: 3rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 1s ease-out both;
        }

        .faq-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .faq-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .faq-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .faq-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .faq-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .faq-item:nth-child(6) {
            animation-delay: 0.6s;
        }

        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-primary);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
            color: var(--accent-primary);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 2rem 1.5rem;
        }

        .faq-answer p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin: 0;
        }

        .faq-answer strong {
            color: var(--text-primary);
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .faq-section {
                padding: 6rem 1.5rem;
            }

            .faq-question {
                padding: 1.25rem 1.5rem;
                font-size: 1rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 1.5rem 1.25rem;
            }
        }

        @media (max-width: 600px) {
            .faq-section {
                padding: 4rem 1rem;
            }

            .faq-question {
                padding: 1rem;
                font-size: 0.95rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 1rem 1rem;
            }
        }

        /* Contact Section */
        .contact-section {
            padding: 8rem 2rem 10rem;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Contact Header */
        .contact-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out;
        }

        .contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .contact-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .contact-title .gradient-text {
            background: linear-gradient(135deg, #F8FAFC 0%, #4F46E5 30%, #7C3AED 60%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 8s ease-in-out infinite;
        }

        .contact-description {
            font-size: 1.25rem;
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Contact Content */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Contact Info */
        .contact-info {
            animation: fadeInLeft 1s ease-out 0.2s both;
        }

        .contact-info h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            color: var(--accent-primary);
            flex-shrink: 0;
        }

        .contact-item-content {
            flex: 1;
        }

        .contact-item-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 0.25rem;
        }

        .contact-item-value {
            font-size: 1rem;
            color: var(--text-primary);
            font-weight: 500;
        }

        .contact-item-value a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item-value a:hover {
            color: var(--accent-primary);
        }

        /* Contact Form */
        .contact-form-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            animation: fadeInRight 1s ease-out 0.4s both;
        }

        .contact-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(236, 72, 153, 0.03) 100%);
            pointer-events: none;
        }

        .contact-form {
            position: relative;
            z-index: 2;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--text-muted);
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-select {
            cursor: pointer;
        }

        .form-submit {
            width: 100%;
            padding: 1.25rem 2rem;
            background: var(--gradient-primary);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Form Status Messages */
        .form-status {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            display: none;
        }

        .form-status.success {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #10b981;
        }

        .form-status.error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .contact-content {
                gap: 3rem;
            }

            .contact-form-container {
                padding: 2.5rem;
            }
        }

        @media (max-width: 900px) {
            .contact-section {
                padding: 6rem 1.5rem 10rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .contact-section {
                padding: 4rem 1rem 8rem;
            }

            .contact-form-container {
                padding: 2rem;
            }

            .form-input,
            .form-textarea,
            .form-select {
                padding: 0.875rem 1rem;
            }
        }

        @keyframes floatUpDown {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero {
                padding: 6rem 1rem 2rem;
            }

            .stats-bar {
                justify-content: center;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .floating-card {
                display: none;
            }
        }

        /* Footer Section */
        .footer-section {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            color: var(--text-primary);
            padding: 10rem 2rem 0;
            /* Increased from 4rem to 10rem as requested */
            margin-top: 4rem;
            /* Additional breathing room */
            position: relative;
            overflow: hidden;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #F8FAFC 0%, #4F46E5 30%, #7C3AED 60%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .footer-column h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-column p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        .contact-item strong {
            color: var(--text-primary);
            font-weight: 600;
            display: block;
            margin-bottom: 0.25rem;
        }

        .contact-item p {
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.4;
        }

        .contact-item a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--accent-primary);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a:hover {
            color: var(--accent-primary);
            padding-left: 0.5rem;
        }

        .social-links {
            margin-top: 2rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--accent-primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: var(--text-secondary);
            margin: 0;
        }

        .footer-legal {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-secondary);
        }

        .footer-legal a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--accent-primary);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }

        @media (max-width: 900px) {
            .footer-section {
                padding: 3rem 1.5rem 0;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 600px) {
            .footer-section {
                padding: 2rem 1rem 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* Utility Classes - Scrubbed from Inline Styles */
        .hidden {
            display: none !important;
        }

        .glass-badge {
            padding: 0.5rem 1rem;
            background: var(--glass-bg);
            border-radius: 8px;
            font-size: 0.875rem;
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-glass);
            color: var(--text-primary);
            display: inline-block;
        }

        /* MacBook Showcase Section - Ported from Web Dev Page */
        .scroll-cascade-section {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            position: relative;
            overflow: visible !important;
            /* Allow 3D elements to pop out */
        }

        .macbook-showcase-section {
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .macbook-showcase-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 50%);
            pointer-events: none;
        }

        .macbook-showcase-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .macbook-showcase-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #F8FAFC 0%, #4F46E5 30%, #7C3AED 60%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 8s ease-in-out infinite;
        }

        .macbook-showcase-content p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .showcase-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .showcase-stat {
            text-align: center;
        }

        .showcase-stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--gradient-stats);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.25rem;
        }

        .showcase-stat-label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-secondary);
            display: block;
        }

        /* MacBook Display */
        .macbook-display {
            position: relative;
            height: 500px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .macbook-item {
            width: 100%;
            max-width: 600px;
            height: auto;
        }

        .macbook-item img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .macbook-item:hover img {
            transform: scale(1.02);
        }

        /* Web Showcase Slider */
        .web-showcase-slider {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .web-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 10px;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            max-width: 600px;
            /* Enforce max width constraint */
            left: 50%;
            transform: translateX(-50%);
            /* Centering */
        }

        .web-slide.active {
            opacity: 1;
            z-index: 2;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .macbook-display {
                height: 350px;
                margin: 0 auto;
                max-width: 600px;
            }

            .macbook-showcase-content {
                text-align: center;
            }

            .macbook-showcase-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 600px) {
            .macbook-showcase-section {
                padding: 4rem 1rem;
            }

            .macbook-display {
                height: 250px;
                max-width: 400px;
            }

            .showcase-stats {
                flex-direction: column;
                gap: 1rem;
            }
        }

        .gradient-text {
            background: linear-gradient(to right, #e0c3fc, #8ec5fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cascade-content h2,
        .macbook-showcase-content h2 {
            color: var(--light-text);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cascade-content h2,
        .macbook-showcase-content h2 {
            -webkit-text-fill-color: initial;
            color: var(--light-text);
        }

        /* --- Featured Projects Revamp --- */
        .featured-card {
            background: #1e1b29;
            /* Dark card background */
            border-radius: 20px;
            padding: 3rem;
            display: flex;
            gap: 3rem;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .card-info {
            flex: 1;
            z-index: 2;
        }

        .card-header-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .app-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        .card-title {
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            color: white;
        }

        .card-description {
            color: #a0a0b0;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 400px;
        }

        .card-stats-grid {
            display: grid;
            grid-template-columns: auto auto;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .card-stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-value-large {
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
        }

        .stat-label-small {
            font-size: 0.9rem;
            color: #888;
            margin-top: 0.25rem;
        }

        .view-portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #8b5cf6;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .view-portfolio-link:hover {
            gap: 0.8rem;
            color: #a78bfa;
        }

        .arrow-icon {
            width: 20px;
            height: 20px;
        }

        .card-image-col {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .card-image-col img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
        }

        /* Responsive */
        @media (max-width: 900px) {
            .featured-card {
                flex-direction: column-reverse;
                padding: 2rem;
                gap: 2rem;
            }

            .card-info {
                text-align: center;
            }

            .card-header-row {
                justify-content: center;
            }

            .card-description {
                margin: 0 auto 2rem;
            }

            .card-stats-grid {
                justify-content: center;
            }
        }

        /* Featured Slideshow Container */
        .featured-slideshow {
            position: relative;
            width: 100%;
            /* Fixed height based on largest card content */
            height: 550px;
            overflow: hidden;
        }

        /* Featured Slide Transition Logic */
        .featured-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateX(50px) scale(0.95);
            transition:
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.6s;
            z-index: 1;
        }

        .featured-slide.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0) scale(1);
            z-index: 2;
        }

        /* Indicators */
        .featured-indicators {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 2rem;
            position: relative;
            z-index: 10;
        }

        .featured-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .featured-indicator.active {
            background: #8b5cf6;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        }

        /* Nav Buttons */
        .featured-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(30, 27, 41, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s ease;
            opacity: 0;
            /* Show on hover container */
        }

        .featured-slideshow:hover .featured-nav {
            opacity: 1;
        }

        .featured-nav:hover {
            background: #8b5cf6;
            border-color: #8b5cf6;
            transform: translateY(-50%) scale(1.1);
        }

        .featured-nav.prev {
            left: 10px;
        }

        .featured-nav.next {
            right: 10px;
        }

        @media (max-width: 900px) {
            .featured-slideshow {
                height: auto;
                min-height: 600px;
            }

            .featured-slide {
                position: relative;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
            }

            .featured-slide.active {
                display: block;
                animation: fadeIn 0.5s ease;
            }

            .featured-nav {
                display: none;
            }
        }

        /* Innovation Section Styles (User Requested Structure) */
        .innovation-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .innovation-text {
            color: var(--text-color);
            z-index: 10;
        }

        .innovation-text h2 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .innovation-text .highlight {
            color: var(--text-color);
        }

        .innovation-text p {
            font-size: 1.125rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 500px;
        }

        /* Innovation Stats */
        .innovation-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .innovation-stat {
            display: flex;
            flex-direction: column;
        }

        .innovation-stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--gradient-stats);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.25rem;
        }

        .innovation-stat-label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-secondary);
        }

        /* Innovation MacBooks (Device Composition) */
        .innovation-macbooks {
            width: 100%;
            height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
            transform-style: preserve-3d;
            z-index: 1;
            /* Ensure base z-index */
        }

        .macbook-grid {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
        }

        .macbook-item {
            position: absolute;
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .macbook-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Laptop (First Item) - Background */
        .macbook-item:nth-child(1) {
            top: 50%;
            right: 0;
            transform: translateY(-50%) translateX(100px);
            opacity: 0;
            width: 75%;
            max-width: 650px;
            z-index: 1;
            filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
        }

        /* Tablet (Second Item) - Foreground */
        .macbook-item:nth-child(2) {
            top: 50%;
            /* Aligned with Laptop (was 55%) */
            left: 5%;
            transform: translateY(-50%) translateX(-50px);
            opacity: 0;
            width: 45%;
            max-width: 380px;
            z-index: 2;
            transition-delay: 0.15s;
            filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
        }

        .macbook-item:nth-child(1).animate-in {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        .macbook-item:nth-child(2).animate-in {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        /* Responsive */
        @media (max-width: 900px) {
            .innovation-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .innovation-macbooks {
                height: 400px;
            }

            .innovation-stats {
                justify-content: center;
            }

            .macbook-item:nth-child(1) {
                width: 85%;
                right: -10px;
            }

            .macbook-item:nth-child(2) {
                width: 50%;
                left: 0;
                top: 60%;
            }

            .innovation-text h2 {
                font-size: 2.5rem;
            }
        }

        /* Hover Effects Removed as per user request */

        /* --- Cursor Sparkle Effect --- */
        .sparkle {
            position: fixed;
            top: 0;
            left: 0;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: screen;
            animation: sparkle-fade 0.8s linear forwards;
            will-change: transform, opacity;
            background: white;
            /* Fallback */
            box-shadow: 0 0 4px 1px var(--color);
        }

        @keyframes sparkle-fade {
            0% {
                transform: translate(0, 0) scale(1) rotate(0deg);
                opacity: 1;
            }

            100% {
                transform: translate(var(--tx), var(--ty)) scale(0) rotate(180deg);
                opacity: 0;
            }
        }

        /* 
PHONE SCREEN CUSTOMIZATION GUIDE
================================

This file contains different phone screen templates you can use across your website.
Simply copy the CSS for the template you want and replace the .app-interface styles.

USAGE:
1. Copy the template CSS you want
2. Replace the .app-interface section in your main CSS
3. Update the HTML content in the .screen-content div
*/

        /* ===== TEMPLATE 1: DEFAULT APP INTERFACE (Current) ===== */
        .app-interface-default {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
        }

        /* ===== TEMPLATE 2: HEALTHCARE APP ===== */
        .app-interface-healthcare {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #10B981, #06B6D4);
        }

        .healthcare-header {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 20px;
        }

        .patient-name {
            color: white;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 4px;
        }

        .patient-id {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }

        .health-stats {
            position: absolute;
            top: 120px;
            left: 20px;
            right: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .health-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            padding: 16px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .health-value {
            color: white;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .health-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
        }

        /* ===== TEMPLATE 3: FINTECH APP ===== */
        .app-interface-fintech {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1F2937, #374151);
        }

        .wallet-balance {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 100px;
            background: linear-gradient(135deg, #F59E0B, #EF4444);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
        }

        .balance-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            margin-bottom: 8px;
        }

        .balance-amount {
            color: white;
            font-size: 32px;
            font-weight: 800;
        }

        .transaction-list {
            position: absolute;
            top: 140px;
            left: 20px;
            right: 20px;
            bottom: 20px;
        }

        .transaction-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .transaction-info {
            color: white;
            font-size: 14px;
        }

        .transaction-amount {
            color: #10B981;
            font-weight: 600;
            font-size: 16px;
        }

        /* ===== TEMPLATE 4: E-COMMERCE APP ===== */
        .app-interface-ecommerce {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #EC4899, #8B5CF6);
        }

        .product-showcase {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 200px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .product-image {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 16px;
        }

        .product-grid {
            position: absolute;
            top: 240px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .product-thumb {
            width: 100%;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .product-price {
            color: white;
            font-weight: 600;
            font-size: 14px;
            text-align: center;
        }

        /* ===== TEMPLATE 5: SOCIAL MEDIA APP ===== */
        .app-interface-social {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #6366F1, #8B5CF6);
        }

        .social-header {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            display: flex;
            align-items: center;
            padding: 0 20px;
            gap: 12px;
        }

        .profile-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
        }

        .profile-info {
            flex: 1;
        }

        .profile-name {
            color: white;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 2px;
        }

        .profile-status {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
        }

        .social-feed {
            position: absolute;
            top: 100px;
            left: 20px;
            right: 20px;
            bottom: 20px;
        }

        .social-post {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .post-content {
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .post-actions {
            display: flex;
            gap: 16px;
        }

        .post-action {
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 6px;
        }

        /* ============================================
           COMPREHENSIVE RESPONSIVE ENHANCEMENTS
           Added: 2026-01-16 - Full Homepage Responsive Fixes
           ============================================ */

        /* Hero Section Additional Responsive Fixes */
        @media (max-width: 900px) {
            .hero-visual {
                width: 100%;
                max-width: 100%;
            }

            .hero-slideshow {
                width: 100%;
            }

            .slideshow-container {
                max-width: 100%;
            }

            .slide-image {
                width: 100%;
                height: auto;
            }

            .hero-cascade-container {
                width: 100%;
                height: auto;
            }
        }

        @media (max-width: 768px) {

            /* Hero Buttons - Stack vertically on mobile */
            .hero-buttons {
                flex-direction: column !important;
                width: 100%;
                gap: 1rem;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                width: 100%;
                text-align: center;
                justify-content: center;
                padding: 1rem 1.5rem;
                display: block;
            }

            /* Trust Indicators */
            .trust-indicators {
                width: 100%;
                text-align: center;
            }

            .trust-text {
                font-size: 0.875rem !important;
                margin-bottom: 1rem;
            }

            .client-logos {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
                width: 100%;
            }

            .client-logo-chip {
                font-size: 0.75rem !important;
                padding: 0.5rem 1rem !important;
                white-space: nowrap;
            }

            /* Hero Content Alignment */
            .hero-content {
                text-align: center;
                align-items: center;
                display: flex;
                flex-direction: column;
            }

            .hero-content h1,
            .hero-subtitle {
                text-align: center;
            }
        }

        @media (max-width: 480px) {

            /* Extra small mobile optimizations */
            .stats-bar {
                grid-template-columns: 1fr 1fr !important;
                gap: 1rem !important;
                width: 100%;
            }

            .stat-item {
                padding: 0.5rem;
            }

            .stat-value {
                font-size: 1.5rem !important;
            }

            .stat-label {
                font-size: 0.7rem !important;
            }

            .client-logo-chip {
                font-size: 0.7rem !important;
                padding: 0.4rem 0.8rem !important;
            }
        }

        /* Contact Section Responsive Enhancements */
        @media (max-width: 768px) {
            .contact-container {
                padding: 4rem 1.5rem;
            }

            .contact-content {
                grid-template-columns: 1fr !important;
                gap: 2.5rem;
            }

            .contact-info {
                order: 2;
            }

            .contact-form-container {
                order: 1;
                padding: 0;
            }

            .contact-details {
                display: grid;
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-item {
                flex-direction: row;
                align-items: flex-start;
                gap: 1rem;
            }

            .contact-icon {
                width: 24px;
                height: 24px;
                flex-shrink: 0;
            }

            .form-row {
                grid-template-columns: 1fr !important;
                gap: 1.25rem;
            }

            .form-input,
            .form-select,
            .form-textarea {
                font-size: 16px !important;
                /* Prevents zoom on iOS */
            }

            .form-submit {
                width: 100%;
                padding: 1rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .contact-container {
                padding: 3rem 1rem;
            }

            .contact-header {
                margin-bottom: 2rem;
            }

            .contact-title {
                font-size: 1.75rem !important;
            }

            .contact-description {
                font-size: 0.95rem !important;
            }
        }

        /* Footer Responsive Enhancements */
        @media (max-width: 900px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 3rem;
            }

            .footer-column:first-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 4rem 1.5rem 2rem !important;
            }

            .footer-content {
                grid-template-columns: 1fr !important;
                gap: 2.5rem;
                text-align: center;
            }

            .footer-column {
                width: 100%;
            }

            .footer-column:first-child {
                grid-column: auto;
            }

            .footer-logo h3 {
                font-size: 1.5rem;
            }

            .footer-logo p {
                font-size: 0.95rem;
            }

            .footer-contact {
                gap: 1.5rem;
            }

            .footer-contact .contact-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 0.5rem;
            }

            .footer-links {
                align-items: center;
            }

            .social-links {
                align-items: center;
            }

            .social-icons {
                justify-content: center !important;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-legal {
                flex-direction: column;
                gap: 0.5rem;
            }

            .footer-legal span {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .footer-section {
                padding: 3rem 1rem 1.5rem !important;
            }

            .footer-column h4 {
                font-size: 1rem;
            }

            .footer-links li a {
                font-size: 0.9rem;
            }

            .social-icons a {
                width: 36px !important;
                height: 36px !important;
            }

            .social-icons svg {
                width: 18px !important;
                height: 18px !important;
            }
        }

        /* MacBook Showcase Section Responsive */
        @media (max-width: 900px) {
            .macbook-showcase-container {
                grid-template-columns: 1fr !important;
                gap: 3rem;
                text-align: center;
            }

            .macbook-showcase-content {
                order: 1;
            }

            .macbook-display {
                order: 2;
                width: 100%;
                max-width: 600px;
                margin: 0 auto;
            }

            .showcase-stats {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 600px) {
            .macbook-showcase-section {
                padding: 4rem 1rem !important;
            }

            .macbook-display {
                max-width: 100%;
            }

            .web-showcase-slider img {
                width: 100%;
                height: auto;
            }

            .showcase-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .showcase-stat {
                width: 100%;
            }
        }

        /* Featured Projects Additional Responsive */
        @media (max-width: 900px) {
            .featured-projects-section {
                padding: 5rem 1.5rem !important;
            }

            .featured-card {
                flex-direction: column !important;
                gap: 2rem;
            }

            .card-info,
            .card-image-col {
                width: 100% !important;
            }

            .card-image-col img {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
                display: block;
            }

            .featured-nav {
                width: 40px !important;
                height: 40px !important;
            }

            .featured-nav svg {
                width: 20px !important;
                height: 20px !important;
            }

            .featured-indicators {
                bottom: 1rem;
            }

            .featured-indicator {
                width: 8px !important;
                height: 8px !important;
            }
        }

        @media (max-width: 600px) {
            .featured-projects-section {
                padding: 4rem 1rem !important;
            }

            .featured-projects-title {
                font-size: 2rem !important;
            }

            .card-title {
                font-size: 1.5rem !important;
            }

            .card-description {
                font-size: 0.95rem !important;
            }

            .card-stats-grid {
                grid-template-columns: 1fr !important;
                gap: 1rem;
            }

            .featured-nav.prev {
                left: 0.5rem !important;
            }

            .featured-nav.next {
                right: 0.5rem !important;
            }

            .featured-indicators {
                position: relative;
                bottom: auto;
                margin-top: 1.5rem;
            }
        }

        /* Scroll Cascade / Innovation Section Responsive */
        @media (max-width: 900px) {
            .scroll-cascade-section .innovation-content {
                grid-template-columns: 1fr !important;
                gap: 3rem;
            }

            .innovation-text {
                order: 1;
                text-align: center;
            }

            .innovation-macbooks {
                order: 2;
                width: 100%;
            }

            .macbook-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem;
                max-width: 500px;
                margin: 0 auto;
            }

            .innovation-stats {
                justify-content: center;
                flex-wrap: wrap;
                gap: 2rem;
            }
        }

        @media (max-width: 600px) {
            .scroll-cascade-section {
                padding: 4rem 1rem !important;
            }

            .innovation-stat {
                flex: 0 0 calc(50% - 1rem);
                text-align: center;
            }

            .innovation-stat-number {
                font-size: 2rem !important;
            }

            .innovation-stat-label {
                font-size: 0.85rem !important;
            }

            .macbook-grid {
                max-width: 100%;
            }

            .device-laptop,
            .device-tablet {
                width: 100%;
                height: auto;
            }
        }

        /* About Section Responsive */
        @media (max-width: 900px) {
            .about-section {
                padding: 5rem 1.5rem !important;
            }

            .about-content {
                grid-template-columns: 1fr !important;
                gap: 3rem;
            }

            .team-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem;
                max-width: 400px;
                margin: 0 auto;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1.5rem;
            }
        }

        @media (max-width: 600px) {
            .about-section {
                padding: 4rem 1rem !important;
            }

            .about-title {
                font-size: 1.75rem !important;
            }

            .about-description {
                font-size: 0.95rem !important;
            }

            .about-stats {
                grid-template-columns: 1fr !important;
                gap: 1.5rem;
            }

            .about-stat {
                padding: 1.5rem;
            }

            .team-member {
                padding: 1.5rem;
            }
        }

        /* Testimonials Section Responsive */
        @media (max-width: 900px) {
            .testimonials-section {
                padding: 5rem 1.5rem !important;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr !important;
                gap: 1.5rem;
                max-width: 500px;
                margin: 0 auto;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonial-quote {
                font-size: 0.95rem;
            }

            .client-name {
                font-size: 1rem;
            }

            .client-role {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .testimonials-section {
                padding: 4rem 1rem !important;
            }

            .testimonials-title {
                font-size: 1.75rem !important;
            }

            .testimonial-card {
                padding: 1.25rem;
            }
        }

        /* FAQ Section Responsive */
        @media (max-width: 768px) {
            .faq-section {
                padding: 4rem 1.5rem !important;
            }

            .faq-container {
                max-width: 100%;
            }

            .faq-title {
                font-size: 1.75rem !important;
            }

            .faq-description {
                font-size: 0.95rem !important;
            }

            .faq-question {
                font-size: 1rem !important;
                padding: 1.25rem 3rem 1.25rem 1.25rem;
            }

            .faq-icon {
                width: 20px !important;
                height: 20px !important;
                right: 1.25rem;
            }

            .faq-answer {
                padding: 0 1.25rem 1.25rem;
            }

            .faq-answer p {
                font-size: 0.9rem !important;
                line-height: 1.6;
            }
        }

        @media (max-width: 480px) {
            .faq-section {
                padding: 3rem 1rem !important;
            }

            .faq-question {
                font-size: 0.95rem !important;
                padding: 1rem 2.5rem 1rem 1rem;
            }

            .faq-icon {
                width: 18px !important;
                height: 18px !important;
                right: 1rem;
            }

            .faq-answer {
                padding: 0 1rem 1rem;
            }

            .faq-answer p {
                font-size: 0.85rem !important;
            }
        }

        /* Additional utility fixes for overflow issues */
        @media (max-width: 768px) {
            body {
                overflow-x: hidden !important;
            }

            main {
                overflow-x: hidden;
                width: 100%;
            }

            section {
                overflow-x: hidden;
                max-width: 100vw;
            }

            img {
                max-width: 100%;
                height: auto;
            }

            /* Ensure all containers respect viewport width */
            .container,
            .hero-container,
            .cascade-container,
            .macbook-showcase-container,
            .featured-projects-container,
            .about-container,
            .testimonials-container,
            .faq-container,
            .contact-container,
            .footer-container {
                max-width: 100%;
                overflow-x: hidden;
            }

            /* Fix any potential text overflow */
            h1,
            h2,
            h3,
            h4,
            h5,
            h6 {
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
            }

            p {
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {

            /* Increase touch targets */
            button,
            .nav-link,
            .cta-button,
            .btn-primary,
            .btn-secondary,
            .faq-question {
                min-height: 44px;
                min-width: 44px;
            }

            /* Remove hover effects on touch devices */
            .service-card:hover,
            .testimonial-card:hover,
            .team-member:hover {
                transform: none !important;
            }

            /* Optimize animations for touch */
            * {
                -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
            }
        }

        /* Landscape mode optimizations for tablets */
        @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding: 6rem 2rem 3rem;
            }

            .hero-container {
                grid-template-columns: 1fr 1fr !important;
                gap: 2rem;
            }

            section {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        }

        /* Print styles (bonus) */
        @media print {

            .navbar,
            .mobile-menu-toggle,
            .hero-buttons,
            .cta-button,
            .cta-button-large,
            .featured-nav,
            .featured-indicators {
                display: none !important;
            }

            body {
                background: white;
                color: black;
            }

            section {
                page-break-inside: avoid;
            }
        }

        /* ============================================
           TABLET RANGE FIXES (787px - 1300px)
           Added: 2026-01-16 - Fix cramped navigation and overlapping content
           ============================================ */

        /* Hero Section - Prevent text/image overlap in tablet range */
        @media (min-width: 769px) and (max-width: 1100px) {
            .hero-container {
                grid-template-columns: 1fr !important;
                text-align: center;
                gap: 3rem !important;
                padding-top: 2rem;
            }

            .hero-content {
                max-width: 100% !important;
                display: flex;
                flex-direction: column;
                align-items: center;
                margin: 0 auto;
            }

            .hero-content h1 {
                font-size: clamp(2rem, 4vw, 2.75rem) !important;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 1rem !important;
                max-width: 600px;
                margin: 1rem auto !important;
            }

            .stats-bar {
                justify-content: center !important;
                flex-wrap: wrap;
                gap: 1.5rem;
                margin: 2rem auto;
            }

            .hero-visual {
                max-width: 600px !important;
                margin: 0 auto;
                position: relative;
                left: 0;
                transform: none;
            }
        }

        /* Service Cards - Better spacing in tablet range */
        @media (min-width: 769px) and (max-width: 1100px) {
            .services-grid {
                gap: 1.5rem;
                max-width: 100%;
            }

            .service-card {
                padding: 1.5rem;
                height: auto;
                min-height: 260px;
            }

            .service-description {
                font-size: 0.9rem;
            }
        }

        /* Footer - Better column layout for tablets */
        @media (min-width: 769px) and (max-width: 1100px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 2rem;
            }

            .footer-column:first-child {
                grid-column: 1 / -1;
            }
        }

        /* Featured Projects - Better layout for tablets */
        @media (min-width: 769px) and (max-width: 1100px) {
            .featured-card {
                flex-direction: column !important;
                gap: 2rem;
            }

            .card-info,
            .card-image-col {
                width: 100% !important;
            }

            .card-image-col img {
                max-width: 500px;
                margin: 0 auto;
                display: block;
            }
        }

        /* MacBook Showcase - Stack on tablets */
        @media (min-width: 769px) and (max-width: 1100px) {
            .macbook-showcase-container {
                grid-template-columns: 1fr !important;
                gap: 2.5rem;
                text-align: center;
            }

            .macbook-display {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        /* Cascade Section - Optimize for tablets */
        @media (min-width: 769px) and (max-width: 1100px) {
            .cascade-container {
                grid-template-columns: 1fr !important;
                gap: 2.5rem;
                text-align: center;
            }

            .cascade-phones {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        /* About Section - Tablet optimization */
        @media (min-width: 769px) and (max-width: 1100px) {
            .about-content {
                grid-template-columns: 1fr !important;
                gap: 2.5rem;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 2rem;
            }
        }

        /* Testimonials - 2 columns for tablets */
        @media (min-width: 769px) and (max-width: 1100px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1.5rem;
            }
        }