
        :root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --dark-purple: #2e2157;
            --cyber-yellow: #f9f002;
            --matrix-green: #0f0;
            --black: #010101;
            --white: #f1f1f1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(2, 2, 46, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 2px solid var(--neon-pink);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--electric-blue);
            text-shadow: 0 0 10px var(--electric-blue);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--neon-pink);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-pink);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        nav ul li a:hover::after {
            transform: scaleX(1);
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            margin: 5px;
            transition: all 0.3s ease;
        }

        section {
            padding: 4rem 2rem;
            position: relative;
        }

        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1593335663758-4da70281a917?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeIn 1.5s ease-out;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--electric-blue);
            text-shadow: 0 0 10px var(--electric-blue);
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--cyber-yellow);
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--neon-pink);
            color: var(--black);
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            margin-top: 1rem;
            box-shadow: 0 0 15px var(--neon-pink);
            position: relative;
            z-index: 1;
        }

        .btn:hover {
            background-color: var(--electric-blue);
            box-shadow: 0 0 20px var(--electric-blue);
            transform: translateY(-3px);
        }

        .about {
            background-color: var(--dark-purple);
            color: var(--white);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: url('https://plus.unsplash.com/premium_photo-1730833398433-688b27186830?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.5);
            animation: float 6s ease-in-out infinite;
        }

        .product {
            background-color: var(--black);
            text-align: center;
        }

        .product-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            padding: 2rem;
            background-color: rgba(46, 33, 87, 0.7);
            border-radius: 10px;
            border: 1px solid var(--neon-pink);
            transition: transform 0.3s;
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 42, 109, 0.3);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--electric-blue);
        }

        .pricing {
            background-color: var(--dark-purple);
            text-align: center;
        }

        .pricing-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            padding: 2rem;
            background-color: rgba(5, 217, 232, 0.1);
            border-radius: 10px;
            border: 1px solid var(--electric-blue);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                transparent,
                rgba(5, 217, 232, 0.1),
                transparent
            );
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--cyber-yellow);
            margin: 1rem 0;
        }

        .discount {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--neon-pink);
            color: var(--black);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .gallery {
            background-color: var(--black);
            text-align: center;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            transition: transform 0.3s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .testimonials {
            background-color: var(--dark-purple);
            text-align: center;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 3rem auto;
            position: relative;
            overflow: hidden;
        }

        .testimonial-slide {
            padding: 2rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin: 0 1rem;
            display: none;
        }

        .testimonial-slide.active {
            display: block;
            animation: fadeIn 1s ease-in-out;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--neon-pink);
        }

        .slider-controls {
            margin-top: 1rem;
        }

        .slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: var(--white);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .slider-dot.active {
            opacity: 1;
            background-color: var(--neon-pink);
        }

        .faq {
            background-color: var(--black);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            padding: 1rem;
            background-color: rgba(5, 217, 232, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }

        .faq-answer {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .faq-answer.show {
            padding: 1rem;
            max-height: 500px;
        }

        .contact {
            background-color: var(--dark-purple);
            text-align: center;
        }

        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            padding: 2rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--electric-blue);
        }

        input, textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: var(--white);
            font-size: 1rem;
        }

        textarea {
            height: 150px;
            resize: none;
        }

        .disclaimer {
            background-color: var(--black);
            padding: 2rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
        }

        footer {
            background-color: var(--dark-purple);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
        }

        .policy-page{
            max-width:1000px;
            margin: 0px auto;
            
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }

        .footer-section h3 {
            color: var(--neon-pink);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--electric-blue);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            color: var(--white);
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--neon-pink);
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--dark-purple);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            animation: modalFadeIn 0.5s;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--neon-pink);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-purple);
            padding: 1rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 2px solid var(--electric-blue);
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-bottom: 1rem;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        .cookie-accept {
            background-color: var(--neon-pink);
            color: var(--black);
        }

        .cookie-decline {
            background-color: transparent;
            color: var(--white);
            border: 1px solid var(--white);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        @keyframes shine {
            0% { transform: rotate(45deg) translate(-30%, -30%); }
            100% { transform: rotate(45deg) translate(30%, 30%); }
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-purple);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }

            nav ul.open {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }

            nav ul li {
                margin: 1rem 0;
            }

            .burger {
                display: block;
            }

            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active .line2 {
                opacity: 0;
            }

            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero {
                height: auto;
                padding: 6rem 1rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .btn {
                padding: 0.6rem 1.5rem;
            }

            section {
                padding: 3rem 1rem;
            }
        }
