       body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Rajdhani', sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
            width: 100%;
        }

        .main-wrapper {
            width: 100%;
            min-height: 100%;
        }

        h1, h2, h3, .brand-font {
            font-family: 'Orbitron', sans-serif;
        }

        /* Neon Glow Effects */
        .neon-cyan {
            text-shadow: 0 0 10px #00E5FF, 0 0 20px #00E5FF, 0 0 30px #00E5FF;
        }

        .neon-purple {
            text-shadow: 0 0 10px #A45BFF, 0 0 20px #A45BFF, 0 0 30px #A45BFF;
        }

        .glow-border-cyan {
            border: 2px solid #00E5FF;
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.5), inset 0 0 20px rgba(0, 229, 255, 0.1);
        }

        .glow-border-purple {
            border: 2px solid #A45BFF;
            box-shadow: 0 0 20px rgba(164, 91, 255, 0.5), inset 0 0 20px rgba(164, 91, 255, 0.1);
        }

        /* Glassmorphism */
        .glass {
            background: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #00E5FF, #00B8D4);
            color: #000;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
        }

        .btn-primary:hover {
            box-shadow: 0 0 40px rgba(0, 229, 255, 0.8);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: #00E5FF;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid #00E5FF;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: rgba(0, 229, 255, 0.1);
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 229, 255, 0.3);
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: #00E5FF;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* Hero Background */
        .hero-bg {
            background: linear-gradient(135deg, #000428 0%, #004e92 50%, #1a0033 100%);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(164, 91, 255, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* Product Cards */
        .product-card {
            background: rgba(26, 26, 26, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: #00E5FF;
            box-shadow: 0 10px 40px rgba(0, 229, 255, 0.3);
        }

        /* Holographic gradient */
        .holographic {
            background: linear-gradient(135deg, 
                rgba(0, 229, 255, 0.2) 0%, 
                rgba(164, 91, 255, 0.2) 50%, 
                rgba(0, 229, 255, 0.2) 100%);
            background-size: 200% 200%;
            animation: holographic 3s ease infinite;
        }

        @keyframes holographic {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: rgba(26, 26, 26, 0.95);
            border: 2px solid #00E5FF;
            border-radius: 20px;
            max-width: 900px;
            width: 90%;
            max-height: 90%;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 229, 255, 0.5);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: #00E5FF;
            font-size: 32px;
            cursor: pointer;
            z-index: 10;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .close-modal:hover {
            transform: rotate(90deg);
            color: #fff;
        }

        /* Cart Badge */
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #A45BFF;
            color: #fff;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        /* Search Results */
        .search-results {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(26, 26, 26, 0.98);
            border: 1px solid #00E5FF;
            border-radius: 8px;
            margin-top: 8px;
            max-height: 400px;
            overflow-y: auto;
            display: none;
            z-index: 1000;
        }

        .search-results.active {
            display: block;
        }

        .search-result-item {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-result-item:hover {
            background: rgba(0, 229, 255, 0.1);
        }

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #00E5FF;
            color: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.8);
        }

        /* Testimonial Slider */
        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 40px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100% - 70px);
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                padding: 40px 20px;
                transition: left 0.3s;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu a {
                font-size: 24px;
                padding: 15px 0;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(0, 229, 255, 0.2);
            }

            .nav-actions {
                flex-wrap: wrap;
                justify-content: center;
            }

            .modal-content {
                width: 95%;
                margin: 20px;
            }
            
            .product-grid {
                grid-template-columns: 1fr !important;
            }

            h1 {
                font-size: 36px !important;
            }

            h2 {
                font-size: 32px !important;
            }
        }

            #hero-slideshow {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                overflow: hidden;
            }

            #hero-slideshow img.slide {
                position: absolute;
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0;
                transition: opacity 1.5s ease-in-out;
            }

            #hero-slideshow img.active {
                opacity: 1;
            }

            