
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #050817;
            color: white;
            overflow-x: hidden;
        }
        
        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(to bottom, #050817, #0f172a);
        }
        
        .bg-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(ellipse at center, transparent 0%, black 70%);
        }
        
        .aurora {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
            filter: blur(60px);
        }
        
        .aurora::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, #3b82f6 0%, transparent 40%),
                        radial-gradient(circle at 80% 20%, #06b6d4 0%, transparent 50%),
                        radial-gradient(circle at 20% 80%, #6366f1 0%, transparent 50%);
            animation: rotate 30s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            background: rgba(5, 8, 23, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header.scrolled {
            padding: 15px 5%;
            background: rgba(5, 8, 23, 0.95);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -1px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transform-style: preserve-3d;
            animation: logoFloat 4s ease-in-out infinite;
        }
        
        @keyframes logoFloat {
            0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
            50% { transform: translateY(-5px) rotateX(10deg) rotateY(10deg); }
        }
        
        .logo-mark::before {
            content: '</>';
            color: white;
            font-size: 12px;
            font-weight: 600;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: #3b82f6;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #06b6d4);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .theme-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .theme-toggle:hover {
            background: rgba(59, 130, 246, 0.2);
            transform: rotate(180deg);
        }
        
        .cta-button {
            padding: 12px 30px;
            background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
            border-radius: 10px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }
        
        .cta-button:hover::before {
            opacity: 1;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding: 120px 5% 80px;
            position: relative;
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        /* Hero Top Section */
        .hero-top {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }
        
        .hero-subtitle {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: #3b82f6;
            margin-bottom: 30px;
            animation: slideDown 0.6s ease;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-title {
            font-size: clamp(48px, 6vw, 72px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            animation: slideUp 0.8s ease;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
            animation: gradientFlow 3s linear infinite;
        }
        
        @keyframes gradientFlow {
            to { background-position: 200% center; }
        }
        
        .hero-description {
            font-size: 20px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto 40px;
            animation: fadeIn 1s ease 0.2s both;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeIn 1s ease 0.4s both;
        }
        
        .btn-primary {
            padding: 16px 40px;
            background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
        }
        
        .btn-secondary {
            padding: 16px 40px;
            background: transparent;
            color: white;
            border: 2px solid rgba(59, 130, 246, 0.5);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-secondary:hover {
            background: rgba(59, 130, 246, 0.1);
            border-color: #3b82f6;
            transform: translateY(-3px);
        }
        
        /* Services Section */
        .services-showcase {
            margin-top: 100px;
            position: relative;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .services-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .services-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .service-box {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            transform-style: preserve-3d;
            transform: perspective(1000px);
        }
        
        .service-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-box:hover {
            transform: perspective(1000px) rotateX(-5deg) translateY(-10px);
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 
                0 20px 40px rgba(59, 130, 246, 0.2),
                0 0 0 1px rgba(59, 130, 246, 0.1);
        }
        
        .service-box:hover::before {
            opacity: 1;
        }
        
        .service-box:nth-child(1) { animation: fadeInService 0.6s ease 0.1s both; }
        .service-box:nth-child(2) { animation: fadeInService 0.6s ease 0.2s both; }
        .service-box:nth-child(3) { animation: fadeInService 0.6s ease 0.3s both; }
        .service-box:nth-child(4) { animation: fadeInService 0.6s ease 0.4s both; }
        
        @keyframes fadeInService {
            from {
                opacity: 0;
                transform: perspective(1000px) rotateX(-90deg);
            }
            to {
                opacity: 1;
                transform: perspective(1000px) rotateX(0);
            }
        }
        
        .service-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
        }
        
        .service-icon {
            font-size: 32px;
            position: relative;
            z-index: 1;
        }
        
        .service-icon-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            border-radius: 50%;
            opacity: 0.2;
            filter: blur(20px);
        }
        
        .service-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }
        
        .service-desc {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
        }
        
        .service-features {
            list-style: none;
        }
        
        .service-feature {
            padding: 8px 0;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .service-feature::before {
            content: '✓';
            color: #3b82f6;
            font-weight: 600;
        }
        
        /* Process Timeline */
        .process-timeline {
            margin-top: 80px;
            padding: 60px 0;
            position: relative;
        }
        
        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .timeline-line {
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                #3b82f6 20%, 
                #06b6d4 50%, 
                #3b82f6 80%, 
                transparent);
            opacity: 0.3;
        }
        
        .timeline-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .timeline-step {
            text-align: center;
            flex: 1;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .timeline-step:nth-child(1) { animation-delay: 0.1s; }
        .timeline-step:nth-child(2) { animation-delay: 0.2s; }
        .timeline-step:nth-child(3) { animation-delay: 0.3s; }
        .timeline-step:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            font-weight: 700;
            position: relative;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }
        
        .step-number::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            border-radius: 50%;
            opacity: 0.2;
            filter: blur(10px);
        }
        
        .step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .step-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 200px;
            margin: 0 auto;
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }
        
        .menu-line {
            width: 25px;
            height: 2px;
            background: #3b82f6;
            transition: all 0.3s ease;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu, .theme-toggle {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .hero-title {
                font-size: clamp(36px, 8vw, 48px);
            }
            
            .services-container {
                grid-template-columns: 1fr;
            }
            
            .timeline-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .timeline-line {
                display: none;
            }
        }
