/* HI TECH Style */
        :root {
            --primary-color: #00D4FF;
            --secondary-color: #0A2463;
            --accent-color: #F5F5F5;
            --text-color: #333333;
            --light-gray: #E0E0E0;
            --dark-gray: #555555;
            --highlight-color: #FF006E;
            --border-color: #00D4FF;
            --glow-color: rgba(0, 212, 255, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Rajdhani', 'Arial', sans-serif;
        }

        body {
            background-color: var(--secondary-color);
            color: var(--accent-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                linear-gradient(rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.9)),
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300D4FF' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: rgba(10, 36, 99, 0.8);
            backdrop-filter: blur(10px);
            color: var(--accent-color);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 212, 255, 0.2);
            border-bottom: 1px solid var(--border-color);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-color);
            text-shadow: 0 0 10px var(--glow-color);
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.3s;
            position: relative;
        }

        nav ul li a:after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--accent-color);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7)), url('../img/04.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--accent-color);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, rgba(0, 212, 255, 0.1) 100%);
            animation: pulse 4s infinite alternate;
        }

        @keyframes pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 2px;
            color: var(--primary-color);
            text-shadow: 0 0 15px var(--glow-color);
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 12px 30px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 1px;
            font-size: 16px;
            border: 1px solid var(--primary-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--highlight-color);
            transition: left 0.3s;
            z-index: -1;
        }

        .btn:hover {
            color: var(--accent-color);
            box-shadow: 0 0 15px var(--glow-color);
        }

        .btn:hover:before {
            left: 0;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }

        .about::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .section-title h2:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
            background-color: rgba(0, 212, 255, 0.1);
            padding: 30px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
        }

        .about-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }

        .about-image {
            flex: 1;
            border: 2px solid var(--border-color);
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
            position: relative;
        }

        .about-image::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), transparent);
            z-index: 1;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: rgba(10, 36, 99, 0.5);
            position: relative;
        }

        .products::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .product-card {
            background-color: rgba(10, 36, 99, 0.7);
            border: 1px solid var(--border-color);
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
            border-radius: 5px;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
            border-radius: 3px;
        }

        .product-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .product-card p {
            margin-bottom: 20px;
        }

        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }

        .prices::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .price-card {
            background-color: rgba(10, 36, 99, 0.7);
            border: 1px solid var(--border-color);
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s;
            border-radius: 5px;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
        }

        .price-card.featured {
            transform: scale(1.05);
            border-color: var(--highlight-color);
            box-shadow: 0 0 25px rgba(255, 0, 110, 0.3);
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        }

        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
            text-transform: uppercase;
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--highlight-color);
            margin: 20px 0;
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        }

        .price-card .btn {
            width: 100%;
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: rgba(10, 36, 99, 0.5);
            position: relative;
        }

        .gallery::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
            transition: all 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }

        .feedback::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .feedback-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }

        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-item {
            min-width: 100%;
            padding: 0 20px;
            text-align: center;
        }

        .feedback-item img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 2px solid var(--border-color);
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
        }

        .feedback-item p {
            font-style: italic;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            background-color: rgba(10, 36, 99, 0.5);
            padding: 20px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            position: relative;
        }

        .feedback-item p::before {
            content: "";
            font-size: 60px;
            position: absolute;
            top: -20px;
            left: 10px;
            color: var(--primary-color);
            opacity: 0.5;
        }

        .feedback-item p::after {
            content: "";
            font-size: 60px;
            position: absolute;
            bottom: -50px;
            right: 10px;
            color: var(--primary-color);
            opacity: 0.5;
        }

        .feedback-item h4 {
            font-size: 18px;
            color: var(--primary-color);
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .feedback-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--dark-gray);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .feedback-dot.active {
            background-color: var(--primary-color);
            box-shadow: 0 0 10px var(--glow-color);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: rgba(10, 36, 99, 0.5);
            position: relative;
        }

        .faq::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
        }

        .faq-question {
            background-color: rgba(10, 36, 99, 0.8);
            color: var(--accent-color);
            padding: 15px 20px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .faq-question:after {
            content: "+";
            font-size: 24px;
            transition: transform 0.3s;
        }

        .faq-question.active:after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: rgba(10, 36, 99, 0.5);
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }

        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: var(--secondary-color);
            position: relative;
        }

        .contact::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(10, 36, 99, 0.7);
            padding: 30px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--primary-color);
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            font-size: 16px;
            background-color: rgba(10, 36, 99, 0.5);
            color: var(--accent-color);
            border-radius: 3px;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px var(--glow-color);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: rgba(10, 36, 99, 0.9);
            color: var(--accent-color);
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
            border-top: 1px solid var(--border-color);
        }

        /* Footer */
        footer {
            background-color: rgba(10, 36, 99, 0.9);
            color: var(--accent-color);
            padding: 50px 0 20px;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--accent-color);
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
        }

        .footer-column ul li a:after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }

        .footer-column ul li a:hover:after {
            width: 100%;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 212, 255, 0.2);
            font-size: 14px;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 36, 99, 0.9);
            color: var(--accent-color);
            padding: 20px;
            box-shadow: 0 -2px 20px rgba(0, 212, 255, 0.3);
            z-index: 1001;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            border-top: 1px solid var(--border-color);
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            max-width: 80%;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 16px;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: 1px solid var(--primary-color);
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            font-family: 'Orbitron', 'Arial', sans-serif;
            text-transform: uppercase;
            border-radius: 3px;
        }

        .cookie-btn:hover {
            background-color: var(--highlight-color);
            box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
        }

        .cookie-btn.decline {
            background-color: transparent;
            border: 1px solid var(--accent-color);
            color: var(--accent-color);
        }

        .cookie-btn.decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
        }

        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 36, 99, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: rgba(10, 36, 99, 0.9);
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 1px solid var(--border-color);
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
            transform: scale(0.7);
            transition: transform 0.3s;
        }

        .popup.active .popup-content {
            transform: scale(1);
        }

        .popup h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-family: 'Orbitron', 'Arial', sans-serif;
        }

        .popup p {
            margin-bottom: 20px;
        }

        .popup-close {
            margin-top: 20px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 36, 99, 0.95);
                flex-direction: column;
                padding: 20px;
                border-top: 1px solid var(--border-color);
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
            }

            .burger-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .about-content {
                flex-direction: column;
            }

            .price-card.featured {
                transform: scale(1);
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                max-width: 100%;
                margin-bottom: 15px;
            }
        }

