:root {
            --neon-blue: #0ff0fc;
            --neon-pink: #ff00ff;
            --neon-green: #00ff00;
            --neon-purple: #9d00ff;
            --dark-bg: #0a0a0a;
            --darker-bg: #050505;
            --text-light: #f0f0f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background-color: rgba(10, 10, 10, 0.9);
            z-index: 1000;
            border-bottom: 1px solid var(--neon-blue);
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 5px rgba(15, 240, 252, 0.3);
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--neon-blue);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-blue);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 0 50px;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(15, 240, 252, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 64px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .cta-button {
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: var(--dark-bg);
            border: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(15, 240, 252, 0.5);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(15, 240, 252, 0.8);
        }
        
        /* About Section */
        .about {
            padding: 100px 50px;
            background-color: var(--darker-bg);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink), var(--neon-purple));
        }
        
        .section-title {
            font-size: 42px;
            margin-bottom: 50px;
            text-align: center;
            background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .about-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }
        
        .about-text p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(15, 240, 252, 0.3);
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.03);
        }
        
        .about-image::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid var(--neon-blue);
            border-radius: 15px;
            z-index: -1;
            opacity: 0.5;
        }
        
        /* Services Section */
        .services {
            padding: 100px 50px;
            position: relative;
            overflow: hidden;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink), var(--neon-blue));
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background-color: var(--darker-bg);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(15, 240, 252, 0.2);
            border-color: var(--neon-blue);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
        }
        
        .service-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }
        
        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--neon-blue);
        }
        
        .service-card p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .learn-more {
            color: var(--neon-pink);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .learn-more:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 10px rgba(15, 240, 252, 0.5);
        }
        
        .learn-more::after {
            content: '→';
            margin-left: 5px;
            transition: all 0.3s ease;
        }
        
        .learn-more:hover::after {
            transform: translateX(5px);
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 50px;
            background-color: var(--darker-bg);
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-green), var(--neon-pink));
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
            margin-top: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }
        
        .contact-info p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-icon {
            font-size: 24px;
            color: var(--neon-pink);
        }
        
        .contact-form {
            flex: 1;
            background-color: rgba(15, 15, 15, 0.8);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(15, 240, 252, 0.3);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--neon-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(15, 240, 252, 0.3);
        }
        
        .submit-btn {
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
            color: var(--text-light);
            border: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
        }
        
        /* Footer */
        footer {
            padding: 30px 50px;
            text-align: center;
            background-color: #000;
            border-top: 1px solid rgba(15, 240, 252, 0.2);
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--neon-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 48px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }
            
            .nav-links {
                gap: 15px;
            }
            
            .hero {
                padding: 0 20px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }