 <style>
        @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
        
        * {
            font-family: 'Outfit', sans-serif;
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #F0F5FF;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #0066FF, #00C2FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-gradient {
            background: #1794f9;
        }
        
        .hero-pattern {
            background-image: 
                radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            background-position: 0 0, 10px 10px;
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .service-card {
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 102, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
            border-color: rgba(0, 102, 255, 0.3);
        }
        
        .news-card {
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 102, 255, 0.1);
        }
        
        .news-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 15px 30px rgba(0, 102, 255, 0.15);
            border-color: rgba(0, 102, 255, 0.3);
        }
        
        .testimonial-card {
            transition: all 0.4s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
        }
        
        .blob {
            border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
            animation: blob-animation 8s linear infinite;
        }
        
        @keyframes blob-animation {
            0%, 100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
            25% { border-radius: 45% 55% 65% 35% / 40% 50% 50% 60%; }
            50% { border-radius: 50% 50% 60% 40% / 35% 55% 45% 65%; }
            75% { border-radius: 55% 45% 55% 45% / 50% 40% 60% 50%; }
        }
        
        .feature-icon {
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.2) rotate(10deg);
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: linear-gradient(90deg, #0066FF, #00C2FF);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .news-badge {
            background: linear-gradient(90deg, #0066FF, #00C2FF);
        }
        
        .btn-gradient {
            background: linear-gradient(90deg, #0066FF, #00C2FF);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
        }
        
        .btn-gradient:hover {
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.5);
            transform: translateY(-3px);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid #0066FF;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background: rgba(0, 102, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
        }
        
        .scroll-indicator {
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-15px); }
            60% { transform: translateY(-8px); }
        }
        
        .stats-card {
            border: 1px solid rgba(0, 102, 255, 0.1);
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.05);
        }
        
        .stats-card:hover {
            border-color: rgba(0, 102, 255, 0.3);
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 102, 255, 0.15);
        }
        
        .floating-element {
            animation: float 3s ease-in-out infinite;
        }
        
        .floating-element-slow {
            animation: float 5s ease-in-out infinite;
        }
        
        .floating-element-reverse {
            animation: float-reverse 4s ease-in-out infinite;
        }
        
        .rotating-element {
            animation: spin 15s linear infinite;
        }
        
        .section-divider {
            height: 100px;
            background: linear-gradient(to bottom right, #F0F5FF 49.5%, #FFFFFF 50%);
        }
        
        .section-divider-reverse {
            height: 100px;
            background: linear-gradient(to bottom left, #FFFFFF 49.5%, #F0F5FF 50%);
        }
        
        .text-shadow {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .text-shadow-light {
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        
        .text-shadow-strong {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .highlight-container {
            position: relative;
            display: inline-block;
        }
        
        .highlight {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 30%;
            width: 100%;
            background-color: rgba(0, 194, 255, 0.2);
            z-index: -1;
            transform: rotate(-1deg);
        }
    </style>