
        /* Base styles */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }
        
        /* Custom glassmorphism effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        .glass-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.05);
        }
        
        /* Scrolled navbar */
        .header-inner.scrolled {
            background: #000;
            backdrop-filter: blur(0);
            -webkit-backdrop-filter: blur(0);
            border-color: rgba(255, 255, 255, 0.05);
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        /* CTA button */
        .cta-link {
            display: inline-block;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 9999px;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }
        
        .cta-link:hover {
            background-color: #fff;
            color: #000;
        }
        
        /* Form inputs */
        .form-input {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding: 0.75rem 0.25rem;
            width: 100%;
            color: #fff;
            transition: border-color 0.3s ease;
        }
        
        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        .form-input:focus {
            outline: none;
            border-bottom-color: #fff;
        }

        /* Mobile Menu Custom Transition */
        #mobile-menu {
            opacity: 0;
            pointer-events: none;
            transform: translateY(-100%);
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        #mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        /* Enhanced mobile menu styling */
        #mobile-menu {
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(25px);
        }

        #mobile-menu a {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            font-size: 1.5rem;
            padding: 0.75rem 1.5rem;
            width: 100%;
            text-align: center;
            max-width: 280px;
        }

        #mobile-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            transition: left 0.5s ease;
        }

        #mobile-menu a:hover::after {
            left: 100%;
        }

        #mobile-menu a:hover {
            transform: translateX(10px);
            color: #fff;
        }

        /* Mobile menu layout improvements */
        #mobile-menu .menu-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            width: 100%;
            max-width: 300px;
        }

        #mobile-menu .cta-container {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
        }

        /* Floating animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Gradient text */
        .gradient-text {
            background: linear-gradient(135deg, #fff 0%, #aaa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Enhanced cards */
        .enhanced-card {
            position: relative;
            overflow: hidden;
        }
        
        .enhanced-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
            transition: left 0.7s ease;
        }
        
        .enhanced-card:hover::before {
            left: 100%;
        }
        
        /* Pulse animation */
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 5px rgba(255,255,255,0.2); }
            50% { box-shadow: 0 0 20px rgba(255,255,255,0.4); }
        }
        
        .pulse-glow {
            animation: pulse-glow 2s infinite;
        }
        
        /* Scroll progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #fff, #aaa);
            z-index: 100;
            transition: width 0.1s ease;
        }
        
        /* Dark overlay sections */
        .dark-overlay {
            background: rgba(0, 0, 0, 0.7);
        }
        
        /* Feature list styling */
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon {
            width: 24px;
            height: 24px;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Section spacing */
        .section-padding {
            padding-top: 6rem;
            padding-bottom: 6rem;
        }
        
        @media (min-width: 768px) {
            .section-padding {
                padding-top: 8rem;
                padding-bottom: 8rem;
            }
        }

        /* About page specific styles */
        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 215, 0, 0.14);
            color: #ffd86a;
            font-weight: 700;
            margin: 0 auto 18px;
            font-size: 14px;
            letter-spacing: 0.06em;
            background: linear-gradient(180deg, rgba(255,215,0,0.03), transparent);
        }
        
        /* Services Grid Styles - CLEAN FIXED VERSION */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: stretch;
        }

        .services-left, .services-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .svc {
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            flex: 1;
            min-height: 200px;
            opacity: 1 !important; /* Force visibility */
        }

        .svc:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.05);
        }

        .svc .ico {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            background: rgba(255,255,255,0.02);
            color: #00c2ff;
            margin-bottom: 1rem;
        }

        .svc .shine {
            position: absolute;
            left: -40%;
            top: -30%;
            width: 120%;
            height: 80%;
            background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.18), rgba(255,255,255,0.06));
            transform: skewX(-20deg) translateX(-120%);
            transition: transform .7s cubic-bezier(.2,.9,.2,1);
            z-index: 1;
        }

        .svc:hover .shine {
            transform: skewX(-20deg) translateX(10%);
        }

        .svc::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
            opacity: 0;
            transition: opacity .45s;
            z-index: 1;
        }

        .svc:hover::after {
            opacity: 1;
        }

        .svc > *:not(.shine):not(::after) {
            position: relative;
            z-index: 2;
        }

        .timeline {
            display: flex;
            gap: 36px;
            align-items: flex-start;
        }
        
        .timeline-left {
            flex: 1;
            position: relative;
        }
        
        .timeline-line {
            width: 6px;
            background: rgba(255,255,255,0.04);
            border-radius: 6px;
            position: relative;
            height: 100%;
        }
        
        .timeline-line .prog {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(180deg, #ffd86a, rgba(255,215,0,0.5));
            border-radius: 6px;
        }
        
        .timeline-steps {
            flex: 1;
        }
        
        .step {
            margin-bottom: 48px;
            padding-left: 26px;
            position: relative;
        }
        
        .step::before {
            content: '';
            position: absolute;
            left: -18px;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 999px;
            background: #ffd86a;
            box-shadow: 0 0 18px rgba(255,215,0,0.08);
        }
        
        .portrait {
            height: 420px;
            border-radius: 12px;
            background: linear-gradient(180deg,#171717,#2a2a2a);
            display: grid;
            place-items: center;
            border: 3px solid rgba(255,215,0,0.04);
        }
        
        .portrait .initials {
            width: 160px;
            height: 160px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            font-size: 56px;
            color: #ffd86a;
            background: linear-gradient(180deg, rgba(255,215,0,0.03), transparent);
        }
        
        .cta-wrap {
            text-align: center;
            padding: 48px 20px;
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(255,215,0,0.02), transparent);
            border: 1px solid rgba(255,255,255,0.02);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .case {
            height: 220px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.03);
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }
        
        .case img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: grayscale(8%) brightness(.9);
        }
        
        /* Responsive adjustments */
        @media (max-width: 980px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .services-left, .services-right {
                gap: 18px;
            }
            
            .timeline {
                display: block;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem !important;
                line-height: 1.2 !important;
            }
            
            .hero-subtitle {
                font-size: 1.125rem !important;
                margin-top: 1.5rem !important;
            }
            
            .hero-cta {
                margin-top: 2rem !important;
            }
        }

        @media (max-width: 640px) {
            .hero-title {
                font-size: 2rem !important;
            }
            
            .hero-subtitle {
                font-size: 1rem !important;
            }
            
            .cta-link {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
            }
        }

        /* Force services to always be visible */
        #services,
        .services-grid,
        .services-left,
        .services-right,
        .svc {
            opacity: 1 !important;
            visibility: visible !important;
        }
