:root {
    --cosmic-black: #010112;
    --deep-space: #0a0a2a;
    --nebula-purple: #2a0f5c;
    --starlight-blue: #4a7dff;
    --planet-cyan: #00d4ff;
    --accent-gold: #ffd166;
    --moon-yellow: #f5f3ce;
    --text-light: #f0f8ff;
    --text-dim: #a0a8d0;
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--cosmic-black);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.logo-svg {
    height: 55px;
    filter: drop-shadow(3px 2px 10px rgba(118, 130, 179, 0.347));
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background-color: rgba(1, 1, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 125, 255, 0.2);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    background-color: rgba(1, 1, 18, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--planet-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 125, 255, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 125, 255, 0.5);
}

/* Mobile Menu Button - Fixed */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text-light), var(--planet-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.motto {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 209, 102, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-dim);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--starlight-blue);
}

.secondary-button:hover {
    background: rgba(74, 125, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 125, 255, 0.3);
}

/* Moon in Hero */
.moon {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--moon-yellow), #c9c7a3);
    box-shadow: 0 0 80px rgba(245, 243, 206, 0.7);
    top: 19.5%;
    right: 11%;
    z-index: 1;
    overflow: hidden;
}

.moon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 20%, rgba(0,0,0,0.2), transparent 70%);
}

.moon-crater {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.moon-crater:nth-child(1) {
    width: 30px;
    height: 30px;
    top: 40px;
    left: 60px;
}

.moon-crater:nth-child(2) {
    width: 45px;
    height: 45px;
    top: 100px;
    left: 30px;
}

.moon-crater:nth-child(3) {
    width: 25px;
    height: 25px;
    top: 120px;
    right: 50px;
}

.moon-crater:nth-child(4) {
    width: 35px;
    height: 35px;
    bottom: 60px;
    left: 80px;
}

/* Floating Stars */
.floating-star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    z-index: 1;
    animation: float 2s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.star-1 { width: 3px; height: 3px; top: 20%; left: 10%; animation-delay: 0s; }
.star-2 { width: 2px; height: 2px; top: 40%; left: 15%; animation-delay: 0.5s; }
.star-3 { width: 4px; height: 4px; top: 60%; left: 5%; animation-delay: 1s; }
.star-4 { width: 2px; height: 2px; top: 80%; left: 20%; animation-delay: 1.5s; }
.star-5 { width: 3px; height: 3px; top: 30%; right: 15%; animation-delay: 0.2s; }
.star-6 { width: 2px; height: 2px; top: 50%; right: 10%; animation-delay: 0.8s; }
.star-7 { width: 4px; height: 4px; top: 70%; right: 5%; animation-delay: 1.2s; }

/* Twinkling Stars */
.twinkling-star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    z-index: 1;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.t-star-1 { width: 2px; height: 2px; top: 15%; left: 25%; animation-delay: 0.1s; }
.t-star-2 { width: 1px; height: 1px; top: 35%; left: 30%; animation-delay: 0.4s; }
.t-star-3 { width: 3px; height: 3px; top: 55%; left: 40%; animation-delay: 0.7s; }
.t-star-4 { width: 2px; height: 2px; top: 75%; left: 35%; animation-delay: 1s; }
.t-star-5 { width: 1px; height: 1px; top: 25%; right: 25%; animation-delay: 0.3s; }
.t-star-6 { width: 2px; height: 2px; top: 45%; right: 30%; animation-delay: 0.6s; }
.t-star-7 { width: 1px; height: 1px; top: 65%; right: 20%; animation-delay: 0.9s; }

/* Section Common Styles */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--starlight-blue), var(--planet-cyan));
    border-radius: 2px;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Objectives Section */
.objectives-section {
    background: linear-gradient(to bottom, var(--cosmic-black), var(--deep-space));
}

.objectives-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.objective-card {
    background: rgba(10, 10, 42, 0.4);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 125, 255, 0.1), transparent);
    transition: left 0.7s ease;
}

.objective-card:hover::before {
    left: 100%;
}

.objective-card:hover {
    transform: translateY(-10px);
    border-color: var(--planet-cyan);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.objective-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--planet-cyan);
}

.objective-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.mission-vision {
    margin-top: 40px;
}

.mission, .vision {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(10, 10, 42, 0.4);
    border-radius: 15px;
    border-left: 4px solid var(--planet-cyan);
}

.mission h4, .vision h4 {
    color: var(--planet-cyan);
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Team Section */
.team-section{
    padding: 60px;
}
.team-slider-container {
    position: relative;
    margin-top: 15px;
    overflow: hidden;
}

.team-slider {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    transition: transform 0.5s ease;
    cursor: grab;
}

.team-slider:active {
    cursor: grabbing;
}

.team-member {
    min-width: 320px;
    background: rgba(10, 10, 42, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--planet-cyan);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.member-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(10, 10, 42, 0.9));
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
}

.member-name {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.member-position {
    color: var(--planet-cyan);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.slider-btn {
    background: rgba(74, 125, 255, 0.2);
    border: 1px solid var(--starlight-blue);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(74, 125, 255, 0.4);
    transform: scale(1.1);
}

/* Projects Section */
.projects-section {
    background: linear-gradient(to bottom, var(--deep-space), var(--cosmic-black));
}

.projects-container {
    margin-top: 60px;
}

.project-card {
    background: rgba(10, 10, 42, 0.6);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--planet-cyan);
}

.project-header {
    padding: 30px;
    background: linear-gradient(to right, var(--nebula-purple), var(--starlight-blue));
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.project-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.project-support {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.support-text {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.support-logo {
    height: 140px;
    filter: brightness(1) invert(1);
}

.project-content {
    padding: 30px;
}

.project-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    color: var(--planet-cyan);
    font-size: 1.5rem;
    margin-top: 5px;
}

.quote {
    font-style: italic;
    padding: 25px;
    background: rgba(74, 125, 255, 0.1);
    border-radius: 15px;
    margin-top: 30px;
    border-left: 4px solid var(--accent-gold);
    position: relative;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.5;
    font-family: serif;
}

.quote-author {
    margin-top: 15px;
    text-align: right;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Events Section */
.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.event-card {
    background: rgba(10, 10, 42, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--planet-cyan);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.event-date {
    background: linear-gradient(to right, var(--nebula-purple), var(--starlight-blue));
    color: white;
    padding: 15px;
    text-align: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.event-content {
    padding: 25px;
}

.event-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.event-desc {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.read-more {
    color: var(--planet-cyan);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--planet-cyan);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(10, 10, 42, 0.6);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(74, 125, 255, 0.1);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-category {
    font-size: 0.9rem;
    color: var(--planet-cyan);
    background: rgba(0, 212, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 15px;
}

.faq-icon {
    color: var(--planet-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(74, 125, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--planet-cyan);
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-dim);
}

.contact-form {
    background: rgba(10, 10, 42, 0.6);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--planet-cyan);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--deep-space);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(74, 125, 255, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--planet-cyan);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px white;
    z-index: 1;
}

.shooting-star::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, white, transparent);
    transform: rotate(-45deg);
    transform-origin: left;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--deep-space);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--starlight-blue), var(--planet-cyan));
    border-radius: 5px;
}

/* Particle Background */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* FAQ Category Styles */
.faq-category {
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(10, 10, 42, 0.6);
}

.faq-category-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(to right, rgba(42, 15, 92, 0.6), rgba(74, 125, 255, 0.3));
}

.faq-category-header:hover {
    background: linear-gradient(to right, rgba(42, 15, 92, 0.8), rgba(74, 125, 255, 0.4));
}

.faq-category-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--planet-cyan);
    margin: 0;
}

.faq-category-icon {
    color: var(--planet-cyan);
    transition: transform 0.3s ease;
}

.faq-category.active .faq-category-icon {
    transform: rotate(180deg);
}

.faq-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-category.active .faq-category-content {
    max-height: 5000px;
}

/* FAQ Item Styles (updated for nested structure) */
.faq-category-content .faq-item {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
}

.faq-category-content .faq-item:first-child {
    border-top: none;
}

.faq-category-content .faq-question {
    padding: 15px 20px;
}

.faq-category-content .faq-answer {
    padding: 0 20px;
}

.faq-category-content .faq-item.active .faq-answer {
    padding: 0 20px 15px;
}

/* Responsive Design - Mobile Menu Fixes */
@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hide desktop navigation by default */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(1, 1, 18, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1000;
        padding: 80px 20px;
    }
    
    /* Show navigation when active */
    .nav-links.active {
        right: 0;
    }
    
    /* Navigation items */
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 15px;
        display: block;
        width: 100%;
    }
    
    .nav-links .cta-button {
        margin-top: 20px;
        width: 80%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Container adjustments */
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    /* Hero section adjustments */
    .hero {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .hero-content {
        width: 100%;
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .motto {
        font-size: 1.2rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero p {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    /* Objectives section */
    .objectives-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .objective-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 25px 20px;
        text-align: center;
    }
    
    /* About section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
    }
    
    .about-content h3 {
        font-size: 2rem;
        text-align: center;
    }
    
    .mission, .vision {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    /* Team slider */
    .team-slider {
        gap: 20px;
        padding: 10px 0;
    }
    
    .team-member {
        min-width: 250px;
        margin: 0 auto;
    }
    
    .member-image {
        height: 200px;
    }
    
    .member-info {
        padding: 20px;
    }
    
    /* Projects section */
    .project-card {
        margin: 0 0 30px 0;
        width: 100%;
    }
    
    .project-header {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .project-support {
        justify-content: center;
        margin-top: 15px;
    }
    
    .project-content {
        padding: 25px 20px;
    }
    
    .project-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quote {
        padding: 20px;
        margin: 20px 0;
    }
    
    /* Events section */
    .events-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .event-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Gallery section */
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    /* FAQ section */
    .faq-container {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 18px 15px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-category {
        margin-left: 10px;
        font-size: 0.8rem;
        padding: 2px 8px;
    }
    
    /* Contact section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .copyright {
        padding: 20px 15px;
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .motto {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .cta-button,
    .hero-buttons .secondary-button {
        width: 100%;
        max-width: 280px;
        margin: 5px auto;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .section-title::after {
        width: 80px;
        bottom: -10px;
    }
    
    /* Hide moon on very small screens */
    .moon {
        display: none;
    }
    
    /* Fix objectives */
    .objective-card {
        padding: 20px 15px;
    }
    
    .objective-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .objective-title {
        font-size: 1.2rem;
    }
    
    /* Fix team slider */
    .team-member {
        min-width: 220px;
    }
    
    .member-image {
        height: 180px;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    /* Fix gallery */
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    /* Fix forms */
    .contact-form h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }
    
    /* Fix event cards */
    .event-title {
        font-size: 1.2rem;
    }
    
    /* Fix project highlights */
    .highlight {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .highlight-icon {
        margin-top: 0;
        font-size: 1.8rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    button, 
    .cta-button, 
    .secondary-button,
    .slider-btn,
    .read-more {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Fix spacing issues */
    section {
        padding: 70px 0;
    }
    
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Fix image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve readability */
    p, li, .event-desc, .member-info p {
        line-height: 1.6;
        font-size: 1rem;
    }
    
    /* Fix team slider container */
    .team-slider-container {
        overflow: visible;
        margin-top: 25px;
    }
    
    .team-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
        margin-bottom: -12px;
    }
    
    .team-slider::-webkit-scrollbar {
        height: 4px;
    }
    
    .team-member {
        scroll-snap-align: center;
    }
}

/* Tablet devices */
@media (min-width: 481px) and (max-width: 768px) {
    .objectives-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop styles for navigation */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
        padding-top: 70px;
    }
    
    .nav-links {
        height: calc(100vh - 70px);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .mobile-menu-btn {
        cursor: pointer;
    }
    
    input, textarea {
        font-size: 16px;
    }
}

/* Android Chrome fixes */
@supports not (-webkit-touch-callout: none) {
    .hero {
        min-height: 100vh;
    }
}

/* General mobile alignment fixes */
* {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure proper box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Fix form elements on mobile */
input, textarea, button {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

/* Improve scrolling on mobile */
html {
    -webkit-overflow-scrolling: touch;
}