    /* Hero Section */
            .hero {
                background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
                color: white;
                padding: 120px 0 80px;
                text-align: center;
                position: relative;
                overflow: hidden;
            }
    
            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon points="0,0 1000,300 1000,1000 0,700" fill="rgba(37,99,235,0.1)"/></svg>');
                background-size: cover;
            }
    
            .hero-content {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 2rem;
                position: relative;
                z-index: 2;
            }
    
            .hero-badge {
                display: inline-block;
                background: rgba(37, 99, 235, 0.2);
                color: #60a5fa;
                padding: 0.5rem 1.5rem;
                border-radius: 50px;
                font-size: 0.9rem;
                margin-bottom: 2rem;
                border: 1px solid rgba(37, 99, 235, 0.3);
            }
    
            .hero-title {
                font-size: clamp(2.5rem, 5vw, 4rem);
                font-weight: 800;
                margin-bottom: 1.5rem;
                background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                line-height: 1.2;
            }
    
            .hero-subtitle {
                font-size: 1.25rem;
                color: #cbd5e1;
                max-width: 800px;
                margin: 0 auto 3rem;
                line-height: 1.6;
            }
    
            .hero-cta {
                display: flex;
                justify-content: center;
                gap: 1rem;
                flex-wrap: wrap;
            }
    
            .btn {
                padding: 1rem 2rem;
                border-radius: 8px;
                text-decoration: none;
                font-weight: 600;
                transition: all 0.3s ease;
                border: none;
                cursor: pointer;
                font-size: 1rem;
            }
    
            .btn-primary {
                background: #2563eb;
                color: white;
                box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
            }
    
            .btn-primary:hover {
                background: #1d4ed8;
                transform: translateY(-2px);
                box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
            }
    
            .btn-secondary {
                background: transparent;
                color: white;
                border: 2px solid rgba(255, 255, 255, 0.3);
            }
    
            .btn-secondary:hover {
                background: rgba(255, 255, 255, 0.1);
                border-color: rgba(255, 255, 255, 0.5);
            }
    
            /* Services Section */
            .services {
                padding: 100px 0;
                background: white;
            }
    
            .container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 2rem;
            }
    
            .section-header {
                text-align: center;
                margin-bottom: 80px;
            }
    
            .section-badge {
                display: inline-block;
                background: #eff6ff;
                color: #2563eb;
                padding: 0.5rem 1rem;
                border-radius: 50px;
                font-size: 0.9rem;
                font-weight: 600;
                margin-bottom: 1rem;
            }
    
            .section-title {
                font-size: clamp(2rem, 4vw, 3rem);
                font-weight: 800;
                color: #1a1a1a;
                margin-bottom: 1rem;
            }
    
            .section-description {
                font-size: 1.1rem;
                color: #6b7280;
                max-width: 600px;
                margin: 0 auto;
            }
    
            .services-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
                gap: 2rem;
                margin-top: 4rem;
            }
    
            .service-card {
                background: white;
                padding: 3rem 2rem;
                border-radius: 16px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                border: 1px solid #f1f5f9;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }
    
            .service-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #2563eb, #3b82f6);
                transform: scaleX(0);
                transition: transform 0.3s ease;
            }
    
            .service-card:hover::before {
                transform: scaleX(1);
            }
    
            .service-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            }
    
            .service-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, #2563eb, #3b82f6);
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
    
            .service-title {
                font-size: 1.5rem;
                font-weight: 700;
                color: #1a1a1a;
                margin-bottom: 1rem;
            }
    
            .service-description {
                color: #6b7280;
                margin-bottom: 1.5rem;
                line-height: 1.7;
            }
    
            .service-features {
                list-style: none;
            }
    
            .service-features li {
                display: flex;
                align-items: center;
                color: #374151;
                margin-bottom: 0.5rem;
            }
    
            .service-features li::before {
                content: '✓';
                color: #10b981;
                font-weight: bold;
                margin-right: 0.5rem;
                font-size: 1.1rem;
            }
    
            /* Technologies Section */
            .technologies {
                padding: 100px 0;
                background: #f8fafc;
            }
    
            .tech-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 2rem;
                margin-top: 4rem;
            }
    
            .tech-card {
                background: white;
                padding: 2rem;
                border-radius: 12px;
                text-align: center;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
            }
    
            .tech-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            }
    
            .tech-icon {
                font-size: 3rem;
                margin-bottom: 1rem;
            }
    
            .tech-name {
                font-weight: 600;
                color: #1a1a1a;
                margin-bottom: 0.5rem;
            }
    
            .tech-description {
                font-size: 0.9rem;
                color: #6b7280;
            }
    
            /* Process Section */
            .process {
                padding: 100px 0;
                background: white;
            }
    
            .process-timeline {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 3rem;
                margin-top: 4rem;
            }
    
            .process-step {
                text-align: center;
                position: relative;
            }
    
            .process-number {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, #2563eb, #3b82f6);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                font-weight: bold;
                margin: 0 auto 1.5rem;
            }
    
            .process-title {
                font-size: 1.25rem;
                font-weight: 700;
                color: #1a1a1a;
                margin-bottom: 1rem;
            }
    
            .process-description {
                color: #6b7280;
                line-height: 1.6;
            }
    
            /* Stats Section */
            .stats {
                padding: 80px 0;
                background: linear-gradient(135deg, #1e293b, #334155);
                color: white;
            }
    
            .stats-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 3rem;
                text-align: center;
            }
    
            .stat-number {
                font-size: 3rem;
                font-weight: 800;
                margin-bottom: 0.5rem;
                background: linear-gradient(135deg, #ffffff, #cbd5e1);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
    
            .stat-label {
                font-size: 1.1rem;
                color: #cbd5e1;
            }
    
            /* CTA Section */
            .cta {
                padding: 100px 0;
                background: #f8fafc;
                text-align: center;
            }
    
            .cta-content {
                max-width: 800px;
                margin: 0 auto;
            }
    
            .cta-title {
                font-size: clamp(2rem, 4vw, 3rem);
                font-weight: 800;
                color: #1a1a1a;
                margin-bottom: 1rem;
            }
    
            .cta-description {
                font-size: 1.1rem;
                color: #6b7280;
                margin-bottom: 2rem;
            }
    
            /* Footer */
            .footer {
                background: #0f172a;
                color: white;
                padding: 60px 0 20px;
            }
    
            .footer-content {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 3rem;
                margin-bottom: 3rem;
            }
    
            .footer-section h3 {
                font-size: 1.25rem;
                font-weight: 700;
                margin-bottom: 1rem;
                color: #ffffff;
            }
    
            .footer-section p,
            .footer-section a {
                color: #cbd5e1;
                text-decoration: none;
                margin-bottom: 0.5rem;
                display: block;
            }
    
            .footer-section a:hover {
                color: #2563eb;
            }
    
            .footer-bottom {
                border-top: 1px solid #334155;
                padding-top: 2rem;
                text-align: center;
                color: #94a3b8;
            }
    
            /* Responsive Design */
            @media (max-width: 768px) {
                .nav-links {
                    display: none;
                }
    
                .hero {
                    padding: 100px 0 60px;
                }
    
                .hero-cta {
                    flex-direction: column;
                    align-items: center;
                }
    
                .services-grid {
                    grid-template-columns: 1fr;
                }
    
                .tech-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
    
                .process-timeline {
                    grid-template-columns: 1fr;
                }
    
                .stats-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
    
            /* Animations */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            .animate-on-scroll {
                opacity: 0;
                animation: fadeInUp 0.6s ease forwards;
            }
    
            .animate-on-scroll.visible {
                animation-delay: 0.2s;
            }
