/* Style block 1 */

        :root {
            --primary-blue: #0ea5e9;
            --dark-blue: #0f172a;
            --electric-blue: #3b82f6;
            --silver: #e2e8f0;
            --dark-silver: #64748b;
            --premium-black: #0f0f23;
            --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
            --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--premium-black);
            color: #ffffff;
        }
        
        .orbitron {
            font-family: 'Orbitron', monospace;
        }
        
        .hero-section {
            background: linear-gradient(rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.7)), url('https://page.gensparksite.com/v1/base64_upload/e61c2b964e5fb7230698badbfa6549d8');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            position: relative;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .service-card {
            background: var(--gradient-dark);
            border: 1px solid rgba(14, 165, 233, 0.2);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
            box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
        }
        
        .cta-button {
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .testimonial-card {
            background: rgba(30, 41, 59, 0.8);
            border-left: 4px solid var(--primary-blue);
        }
        
        .stats-counter {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-blue);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
            margin: 4rem 0;
        }
        
        .city-badge {
            background: rgba(14, 165, 233, 0.1);
            border: 1px solid rgba(14, 165, 233, 0.3);
            transition: all 0.3s ease;
        }
        
        .city-badge:hover {
            background: rgba(14, 165, 233, 0.2);
            border-color: var(--primary-blue);
        }
        
        .chatbot-space {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(14, 165, 233, 0); }
            100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
        }
        
        .before-after-slider {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }
        
        .premium-badge {
            background: var(--gradient-primary);
            border-radius: 50px;
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                background-attachment: scroll;
            }
        }
    

