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

        body, html {
            width: 100%;
            font-family: 'Inter', sans-serif;
            background-color: #031224; 
            color: #e2e8f0;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Background Canvas */
        #bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(to bottom, #020c1b, #05253f);
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Outfit', sans-serif;
            color: #ffffff;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 500;
            letter-spacing: -0.5px;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2fcde0;
            font-weight: 500;
        }

        p {
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            color: #cbd5e1;
            font-weight: 300;
        }

        a {
            color: #2fcde0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #64dcff;
        }

        /* Layout Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        section {
            padding-top: 140px;
            padding-bottom: 140px;
            position: relative;
        }

        /* Navigation */
        .glass-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(3, 18, 36, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 15px 0;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-brand {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .desktop-nav {
            display: flex;
            gap: 30px;
        }

        .desktop-nav a {
            color: #cbd5e1;
            font-size: 1.05rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .desktop-nav a:hover {
            color: #2fcde0;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger .bar {
            width: 30px;
            height: 2px;
            background-color: #cbd5e1;
            transition: all 0.3s ease;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 250px;
            height: 100vh;
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            display: flex;
            flex-direction: column;
            padding-top: 80px;
            padding-left: 30px;
            gap: 20px;
            z-index: 999;
            transition: right 0.3s ease;
            border-left: 1px solid rgba(47, 205, 224, 0.15);
        }

        .mobile-menu.open {
            right: 0;
            box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        }

        .mobile-menu a {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            color: #cbd5e1;
            text-decoration: none;
        }

        .mobile-menu a:hover {
            color: #2fcde0;
        }

        /* Glassmorphism utilities */
        .glass-panel {
            background: rgba(10, 25, 47, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(47, 205, 224, 0.15);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .glass-panel:hover {
            transform: translateY(-5px);
            border-color: rgba(47, 205, 224, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 60px;
        }

        .logo-link {
            display: block;
            margin-bottom: 2rem;
            transition: filter 0.3s ease, transform 0.3s ease;
        }

        .logo-link:hover {
            transform: scale(1.02);
            filter: drop-shadow(0 0 30px rgba(47, 205, 224, 0.5));
        }

        .logo-img {
            max-width: 100%; 
            width: 600px; 
            height: auto;
            display: block;
        }

        .hero-tagline {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 3rem auto;
            color: #94a3b8;
            font-family: 'Outfit', sans-serif;
            font-weight: 300;
        }

        /* Grid Layouts */
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            container-type: inline-size;
        }

        @container (max-width: 959px) {
            .media-panel {
                grid-column: 1 / -1;
            }
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        /* Services Specific */

        /* Projects Specific */
        .project-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .project-card p {
            flex-grow: 1;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            background: transparent;
            color: #2fcde0;
            border: 1px solid #2fcde0;
            border-radius: 8px;
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-top: auto;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background: rgba(47, 205, 224, 0.1);
            box-shadow: 0 0 20px rgba(47, 205, 224, 0.3);
            color: #fff;
        }
        
        .btn-primary {
            background: rgba(47, 205, 224, 0.1);
            font-size: 1.2rem;
            padding: 16px 40px;
        }

        .btn-primary:hover {
            background: rgba(47, 205, 224, 0.25);
        }

        /* Engagement Models */
        .engagement-list {
            list-style: none;
            margin-top: 2rem;
        }

        .engagement-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: #cbd5e1;
        }

        .engagement-list li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: #2fcde0;
            font-size: 1.5rem;
            line-height: 1;
        }

        /* Footer */
        footer {
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 50px;
        }

        footer p {
            margin: 0;
            font-size: 0.9rem;
            color: #64748b;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .logo-img {
                width: 90%;
            }
            .hero-tagline {
                font-size: 1.2rem;
                padding: 0 20px;
            }
            h2 {
                font-size: 2rem;
            }
            section {
                padding-top: 90px;
                padding-bottom: 90px;
            }
        }
        
        /* Entrance Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Light Mode Support */
        @media (prefers-color-scheme: light) {
            body, html {
                background-color: #f8fafc;
                color: #1e293b;
            }
            #bg-canvas {
                background: linear-gradient(to bottom, #f1f5f9, #e2e8f0);
            }
            h1, h2, h3, h4 {
                color: #0f172a;
            }
            h3 {
                color: #0ea5e9;
            }
            p {
                color: #334155;
            }
            a {
                color: #0ea5e9;
            }
            a:hover {
                color: #0284c7;
            }
            .glass-panel {
                background: rgba(255, 255, 255, 0.6);
                border: 1px solid rgba(14, 165, 233, 0.2);
                box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
            }
            .glass-panel:hover {
                border-color: rgba(14, 165, 233, 0.5);
            }
            .hero-tagline {
                color: #475569;
            }
            .btn {
                color: #0ea5e9;
                border-color: #0ea5e9;
            }
            .btn:hover {
                background: rgba(14, 165, 233, 0.1);
                color: #0284c7;
                box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
            }
            .btn-primary {
                background: rgba(14, 165, 233, 0.1);
            }
            .btn-primary:hover {
                background: rgba(14, 165, 233, 0.2);
            }
            .engagement-list li {
                color: #334155;
            }
            .engagement-list li::before {
                color: #0ea5e9;
            }
            footer p {
                color: #64748b;
            }
            .glass-header {
                background: rgba(255, 255, 255, 0.8);
                border-bottom: 1px solid rgba(14, 165, 233, 0.1);
            }
            .header-brand {
                color: #0f172a;
            }
            .desktop-nav a {
                color: #475569;
            }
            .desktop-nav a:hover {
                color: #0ea5e9;
            }
            .hamburger .bar {
                background-color: #0f172a;
            }
            .mobile-menu {
                background: rgba(255, 255, 255, 0.95);
                border-left: 1px solid rgba(14, 165, 233, 0.2);
            }
            .mobile-menu a {
                color: #334155;
            }
            .mobile-menu a:hover {
                color: #0ea5e9;
            }
            .logo-img {
                filter: invert(1) hue-rotate(180deg) brightness(0.8);
            }
        }

