/* Custom styles */
        body {
            background-color: #000000;
            color: #e0e0e0;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        #navbar {
            transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
        }

        #navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .nav-link-glow {
            position: relative;
            transition: color 0.3s ease;
            color: #A0A0A0;
        }

        .nav-link-glow:hover {
            color: #ffffff;
        }

        .nav-link-glow::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #00A2FF, #39ff14);
            transition: width 0.3s ease;
        }
        .nav-link-glow:hover::after {
            width: 100%;
        }

        .gradient-text {
            background: linear-gradient(90deg, #00A2FF, #39ff14);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }

        .glow-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #00A2FF;
            color: #00A2FF;
            text-align: center;
        }
        .glow-btn:hover {
            color: #000;
            background-color: #00A2FF;
            box-shadow: 0 0 15px #00A2FF, 0 0 30px #00A2FF;
            transform: translateY(-2px);
        }
        .glow-btn.secondary {
            border-color: #39ff14;
            color: #39ff14;
        }
        .glow-btn.secondary:hover {
             background-color: #39ff14;
             box-shadow: 0 0 15px #39ff14, 0 0 30px #39ff14;
        }
        
        #mobile-menu .glow-btn {
            width: 280px;
        }
        
        .reveal-section {
            opacity: 0;
            transform: translateY(50px);
        }

        .product-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
        }
        .product-card:hover {
            transform: scale(1.05) translateY(-10px);
            border-color: #00A2FF;
            box-shadow: 0 10px 30px rgba(0, 162, 255, 0.2);
        }
        
        .product-icon-container {
            width: 100%;
            height: 250px; /* Same height as original canvas */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            will-change: transform;
        }

        .glow-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .glow-input:focus {
            outline: none;
            border-color: #00A2FF;
            box-shadow: 0 0 15px rgba(0, 162, 255, 0.5);
        }

        #hero-h1{
            letter-spacing: -1px;
        }
        
        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 162, 255, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(0, 162, 255, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 162, 255, 0); }
        }
        .pulse-marker {
            animation: pulse 2s infinite;
        }

        .fade-in-section {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        #mobile-menu {
            transition: opacity 0.3s ease-in-out;
        }
        
        #background-animation-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
        }

        #logo {
            width: 280px;
        }
        /* ADDED: Makes the image inside the logo container responsive */
        #logo img {
            width: 100%;
            height: auto;
        }

        @media (max-width: 768px) {
            #logo {
                width: 180px; /* Adjust logo size for mobile */
            }
        }