
        :root {
            --primary: #0a192f;
            --secondary: #172a45;
            --accent: #64ffda;
            --text: #ccd6f6;
            --text-secondary: #8892b0;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--primary);
            color: var(--text);
            overflow-x: hidden;
        }
        
        .tech-font {
            font-family: 'Orbitron', sans-serif;
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-accent {
            background-color: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            transition: all 0.3s ease;
        }
        
        .btn-accent:hover {
            background-color: rgba(100, 255, 218, 0.1);
            color: var(--accent);
        }
        
        .section-title {
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: -10px;
            left: 0;
            background-color: var(--accent);
        }
        
        .service-card {
            background: linear-gradient(145deg, var(--primary), var(--secondary));
            border: 1px solid rgba(100, 255, 218, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(100, 255, 218, 0.1);
        }
        
        .hexagon {
            position: relative;
            width: 80px;
            height: 46.19px;
            background-color: var(--accent);
            margin: 23.09px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hexagon:before,
        .hexagon:after {
            content: "";
            position: absolute;
            width: 0;
            border-left: 40px solid transparent;
            border-right: 40px solid transparent;
        }
        
        .hexagon:before {
            bottom: 100%;
            border-bottom: 23.09px solid var(--accent);
        }
        
        .hexagon:after {
            top: 100%;
            border-top: 23.09px solid var(--accent);
        }
        
        .tool-icon {
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .glow {
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.7);
        }
        
        .gradient-text {
            background: linear-gradient(90deg, var(--accent), #4facfe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero-bg {
            background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        
        .testimonial-card {
            background-color: var(--secondary);
            border-left: 3px solid var(--accent);
        }
        
        .contact-input {
            background-color: var(--secondary);
            border: 1px solid var(--text-secondary);
            color: var(--text);
        }
        
        .contact-input:focus {
            background-color: var(--secondary);
            color: var(--text);
            border-color: var(--accent);
            box-shadow: 0 0 0 0.25rem rgba(100, 255, 218, 0.25);
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(100, 255, 218, 0); }
            100% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0); }
        }
        
        .typewriter {
            overflow: hidden;
            border-right: 2px solid var(--accent);
            white-space: nowrap;
            margin: 0 auto;
            letter-spacing: 2px;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--accent) }
        }
   