/* Base Styles */
:root {
    --neon-red: #ff073a;
    --neon-red-glow: 0 0 5px #ff073a, 0 0 10px #ff073a, 0 0 20px #ff073a;
    --neon-red-dim: #b30529;
    --dark-bg: #0f0f0f;
    --darker-bg: #080808;
    --light-text: #f5f5f5;
}

body {
 font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 60, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    pointer-events: none;
    z-index: -1;
}
.dropdown{
    display: none;
}
.dropdown li{
    padding: 10px;
}
.drop:hover .dropdown{

    margin: auto;
    width: fit-content;
    padding: 30px;
    top: 20%;
    background: #000000da;
    margin-top: 30vh;
    border-radius: 10px;
    display: grid;
       box-shadow: 0 0 40px rgba(255, 0, 60, 0.3);

}
/* Noise overlay for texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c4S8BAAAAAXklEQVRIiR3Myw3AIAwDQRDsAoSE9M/5l80ryMPoDXaWZ0d2uBvqKMG7v+f30WjYJ1ph9oL1vPQyomnoLdG54A+U9xvj+kETCG4tpRXwd1XeK8nYQmMJzAXD7rnnB6fCBz9LxgAKAAAAAElFTkSuQmCC');
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color:  #ffffff;
    transition: all 0.3s ease-in-out;
}

ul {
    list-style: none;
}

/* Neon Text Effects */
.neon-text {
    color:  #00f3ff;
    text-shadow: 0 0 5px #00f3ff, 0 0 10px #00f3ff, 0 0 15px #00f3ff, 0 0 20px #00f3ff;
    position: relative;
    display: inline-block;
}

.red-neon-text {
    color:#ff003c;
    text-shadow:  0 0 5px #ff003c, 0 0 10px #ff003c, 0 0 15px #ff003c, 0 0 20px #ff003c;
    position: relative;
    display: inline-block;
}

.glowing-text {
    color: #ffffff;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px  #ff003c, 0 0 40px  #ff003c;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px  #ff003c, 0 0 40px  #ff003c;
    }
    50% {
        text-shadow: 0 0 15px #fff, 0 0 25px #fff, 0 0 35px  #ff003c, 0 0 50px  #ff003c, 0 0 65px  #ff003c;
    }
    100% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px  #ff003c, 0 0 40px  #ff003c;
    }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 0, 60, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu li a {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff003c;
    transition: all 0.3s ease-in-out;
    /* box-shadow:  0 0 5px #00f3ff, 0 0 10px #00f3ff, 0 0 15px #00f3ff, 0 0 20px #00f3ff; */
}

.menu li a:hover::after {
    width: 100%;
}

.menu li a.active {
    color:  #ff003c;
}

/* Neon Hover Effect */
.neon-hover:hover {
    color: #ff003c;
    text-shadow:  0 0 5px #00f3ff, 0 0 10px #00f3ff, 0 0 15px #00f3ff, 0 0 20px #00f3ff;
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 150;
}

.bar1, .bar2, .bar3 {
    width: 100%;
    height: 3px;
    background-color:  #ffffff;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    text-align: center;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu li a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}












.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Typography */
h1, h2, h3 {
    margin-top: 0;
}
.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 1px;
}
.neon-text {
    color: #00f3ff;
    text-shadow: 0 0 5px #00f3ff, 0 0 10px #00f3ff, 0 0 15px #00f3ff, 0 0 20px #00f3ff;
    position: relative;
    display: inline-block;
}

.red-neon-text {
    color: #ff003c;
    text-shadow:0 0 5px #ff003c, 0 0 10px #ff003c, 0 0 15px #ff003c, 0 0 20px #ff003c;
    position: relative;
    display: inline-block;
}


.neon-link a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color:  #ff003c;
    transition: width 0.3s ease;
}

.neon-link a:hover::after, .neon-link a.active::after {
    width: 100%;
    box-shadow: 0 0 8px  #ff003c, 0 0 16px  #ff003c80;
}


.neon-text-small {
    color: var(--neon-red);
    text-shadow: 0 0 3px #ff073a, 0 0 6px #ff073a;
    font-weight: bold;
}

/* Header and Navigation */
/* header {
    background-color: var(--darker-bg);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(255, 7, 58, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
} */

/* .logo {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.neon-link:hover, .neon-link.active {
    color: var(--neon-red);
    text-shadow: var(--neon-red-glow);
} */

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--neon-red);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: var(--neon-red-glow);
}

/* FAQ Sections */
.intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.faq-section {
    margin-bottom: 40px;
    background-color: rgba(15, 15, 15, 0.7);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--neon-red-dim);
    box-shadow: 0 0 15px rgba(255, 7, 58, 0.2);
}

.faq-section h2 {
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 7, 58, 0.2);
    padding-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.toggle-icon {
    color: var(--neon-red);
    text-shadow: 0 0 3px #ff073a;
}

.faq-answer {
    display: none;
    padding: 15px 0 0;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .toggle-icon i {
    transform: rotate(45deg);
}

footer {
    background-color: var(--darker-bg);
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.neon-border-top {
    border-top: 2px solid var(--neon-red);
    box-shadow: 0 -5px 15px rgba(255, 7, 58, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #FF3131;
    text-shadow: 0 0 3px #ff073a;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin-right: 15px;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 7, 58, 0.2);
    font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 980px) {
    .hamburger {
        display: block;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background-color: rgba(8, 8, 8, 0.95);
        transition: all 0.5s ease;
        box-shadow: -2px 0 10px rgba(255, 7, 58, 0.3);
    }

    nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        height: 100%;
        padding: 30px;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .faq-question h3 {
        font-size: 1rem;
        width: 85%;
    }

    .footer-section {
        min-width: 100%;
        text-align: center;
    }
}


@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .header-container {
        height: 70px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

