/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nova-cyan: #00D9FF;
    --nova-blue: #4169E1;
    --nova-purple: #9D4EDD;
    --nova-white: #FFFFFF;
    --space-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #2a2a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--space-black);
    color: var(--nova-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(157, 78, 221, 0.3);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(157, 78, 221, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--nova-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--nova-cyan), var(--nova-purple));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--nova-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--nova-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, var(--space-black) 100%);
}

/* Animated Stars Background */
.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="2" height="2"><circle cx="1" cy="1" r="1" fill="white"/></svg>') repeat;
    animation: animateStars 100s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="3" height="3"><circle cx="1.5" cy="1.5" r="1.5" fill="rgba(157, 78, 221, 0.8)"/></svg>') repeat;
    animation: animateStars 150s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><circle cx="2" cy="2" r="2" fill="rgba(0, 217, 255, 0.6)"/></svg>') repeat;
    animation: animateStars 200s linear infinite;
}

@keyframes animateStars {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-2000px);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 20px;
}

.hero-logo-img {
    width: 350px;
    max-width: 90vw;
    animation: floatLogo 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.5));
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--nova-cyan), var(--nova-blue), var(--nova-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    animation: glow 3s ease-in-out infinite;
    letter-spacing: 8px;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.8));
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--nova-white);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--nova-purple);
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--nova-cyan), var(--nova-purple));
    color: var(--nova-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--nova-blue), var(--nova-cyan));
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.6);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--nova-purple);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--nova-cyan);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--nova-purple);
    border-right: 2px solid var(--nova-purple);
    transform: rotate(45deg);
    margin: -5px;
    animation: arrowMove 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

@keyframes arrowMove {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--nova-cyan), var(--nova-blue), var(--nova-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--nova-cyan), var(--nova-blue), var(--nova-purple));
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--space-black) 0%, var(--dark-gray) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--nova-cyan);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-text strong {
    color: var(--nova-purple);
}

/* Supernova Visual */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.supernova-circle {
    position: relative;
    width: 400px;
    height: 400px;
}

.core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--nova-white), var(--nova-cyan));
    border-radius: 50%;
    box-shadow: 0 0 60px var(--nova-cyan),
                0 0 100px var(--nova-purple),
                0 0 140px var(--nova-blue);
    animation: pulse 3s ease-in-out infinite;
    transition: transform 0.15s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.orbit {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 200px;
    height: 200px;
    border-color: rgba(0, 217, 255, 0.5);
    animation: rotate 10s linear infinite;
}

.orbit-2 {
    width: 280px;
    height: 280px;
    border-color: rgba(157, 78, 221, 0.5);
    animation: rotate 15s linear infinite reverse;
}

.orbit-3 {
    width: 360px;
    height: 360px;
    border-color: rgba(65, 105, 225, 0.5);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Stats Section */
.stats {
    background: var(--space-black);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--nova-cyan);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.3);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--nova-cyan), var(--nova-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Team Section */
.team {
    background: linear-gradient(180deg, var(--space-black) 0%, var(--dark-gray) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    perspective: 1000px;
    height: 300px;
}

.team-card-inner {
    height: 100%;
    padding: 40px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.team-card:hover .team-card-inner {
    transform: rotateY(5deg) rotateX(5deg);
    border-color: var(--nova-cyan);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
}

.team-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: grayscale(0.3);
}

.team-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--nova-cyan);
    margin-bottom: 15px;
}

.team-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Achievements / Timeline */
.achievements {
    background: var(--space-black);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--nova-blue), var(--nova-purple), var(--nova-cyan));
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--nova-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--nova-cyan);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    border-color: var(--nova-cyan);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--nova-cyan);
    margin-bottom: 10px;
}

.timeline-date {
    color: var(--nova-purple);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Values Section */
.values {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--space-black) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    height: 250px;
    perspective: 1000px;
}

.value-card-front {
    height: 100%;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover .value-card-front {
    transform: rotateY(10deg) scale(1.05);
    border-color: var(--nova-cyan);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.4);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--nova-cyan), var(--nova-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fundraising Section */
.fundraising {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--space-black) 100%);
}

.fundraising-content {
    max-width: 900px;
    margin: 0 auto;
}

.fundraising-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
    gap: 40px;
}

.funds-raised,
.funds-goal {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 50px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    flex: 1;
}

.funds-raised .amount,
.funds-goal .amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--nova-cyan), var(--nova-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.funds-raised .label,
.funds-goal .label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.progress-bar-container {
    margin-bottom: 80px;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(157, 78, 221, 0.3);
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nova-cyan), var(--nova-purple), var(--nova-blue));
    border-radius: 15px;
    transition: width 1.5s ease;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(157, 78, 221, 0.8);
    }
}

.progress-percentage {
    text-align: center;
    margin-top: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nova-purple);
}

.fundraising-milestones {
    position: relative;
    padding: 40px 0;
}

.fundraising-milestones::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--nova-cyan), var(--nova-purple), var(--nova-blue));
    border-radius: 2px;
}

.milestone {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding-left: 80px;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: rgba(157, 78, 221, 0.3);
    border: 3px solid var(--nova-purple);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.milestone.achieved::before {
    background: var(--nova-cyan);
    border-color: var(--nova-cyan);
    box-shadow: 0 0 20px var(--nova-cyan);
}

.milestone.active::before {
    background: var(--nova-purple);
    border-color: var(--nova-purple);
    box-shadow: 0 0 20px var(--nova-purple);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--nova-purple);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px var(--nova-purple);
    }
}

.milestone-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.milestone.achieved .milestone-icon,
.milestone.active .milestone-icon {
    filter: grayscale(0%);
    opacity: 1;
}

.milestone-content {
    flex: 1;
    padding: 25px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(0, 217, 255, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s ease;
}

.milestone.achieved .milestone-content,
.milestone.active .milestone-content {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(0, 217, 255, 0.15));
    border-color: rgba(157, 78, 221, 0.5);
}

.milestone:hover .milestone-content {
    transform: translateX(10px);
    border-color: var(--nova-cyan);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.milestone-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--nova-cyan);
    margin-bottom: 10px;
}

.milestone-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.milestone-status {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nova-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.milestone.achieved .milestone-status {
    background: rgba(0, 217, 255, 0.3);
    color: var(--nova-cyan);
}

.milestone.active .milestone-status {
    background: rgba(157, 78, 221, 0.4);
    color: var(--nova-white);
    animation: pulseStatus 2s ease-in-out infinite;
}

@keyframes pulseStatus {
    0%, 100% {
        box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(157, 78, 221, 0.6);
    }
}

/* Contact Section */
.contact {
    background: var(--space-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--nova-cyan);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--nova-cyan);
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 10px;
    color: var(--nova-white);
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--nova-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.submit-button {
    padding: 18px;
    background: linear-gradient(135deg, var(--nova-cyan), var(--nova-purple));
    color: var(--nova-white);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(0, 217, 255, 0.2));
    border: 1px solid var(--nova-cyan);
    color: var(--nova-white);
    opacity: 1;
    animation: successPulse 0.5s ease;
}

.form-message.error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.5);
    color: #ff3b30;
    opacity: 1;
    animation: errorShake 0.5s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(157, 78, 221, 0.3);
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 10px 0;
}

.footer-tagline {
    font-style: italic;
    color: var(--nova-purple);
    margin-top: 20px;
}

/* Scroll Animations */
[data-scroll] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-scroll].visible {
    opacity: 1;
}

[data-scroll="fade-up"].visible {
    animation: fadeUp 0.8s ease forwards;
}

[data-scroll="fade-right"].visible {
    animation: fadeRight 0.8s ease forwards;
}

[data-scroll="fade-left"].visible {
    animation: fadeLeft 0.8s ease forwards;
}

[data-scroll="zoom-in"].visible {
    animation: zoomIn 0.8s ease forwards;
}

[data-scroll="slide-right"].visible {
    animation: slideRight 0.8s ease forwards;
}

[data-scroll="slide-left"].visible {
    animation: slideLeft 0.8s ease forwards;
}

[data-scroll="flip-in"].visible {
    animation: flipIn 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0);
    }
}

/* Sponsorship Section */
.sponsorship {
    background: var(--space-black);
    padding: 100px 0;
}

.sponsorship-content {
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-highlight {
    margin-bottom: 60px;
}

.sponsor-highlight h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--nova-cyan);
    margin-bottom: 30px;
    text-align: center;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.sponsor-card {
    padding: 30px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    border-color: var(--nova-cyan);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.sponsor-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--nova-purple);
    margin-bottom: 15px;
}

.sponsor-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sponsorship-info {
    padding: 40px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(0, 217, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.sponsorship-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--nova-cyan);
    margin-bottom: 20px;
}

.sponsorship-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--nova-purple);
    margin: 30px 0 15px 0;
}

.sponsorship-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.sponsor-breakdown {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.sponsor-breakdown h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--nova-cyan);
    margin-bottom: 20px;
    text-align: center;
}

.sponsor-table table {
    width: 100%;
    border-collapse: collapse;
}

.sponsor-table th,
.sponsor-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
}

.sponsor-table th {
    font-family: 'Orbitron', sans-serif;
    color: var(--nova-purple);
    font-size: 1.2rem;
}

.sponsor-table td {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.sponsor-table .total-row td {
    border-top: 2px solid var(--nova-cyan);
    padding-top: 20px;
    font-size: 1.3rem;
    color: var(--nova-cyan);
}

/* Team Members Section */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-member-card {
    padding: 30px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    border-color: var(--nova-cyan);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.team-member-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--nova-cyan);
    margin-bottom: 10px;
}

.team-member-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--nova-purple);
    margin-bottom: 15px;
}

.team-member-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.team-info {
    padding: 40px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(0, 217, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.team-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--nova-cyan);
    margin-bottom: 20px;
}

.team-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Design Section */
.design {
    background: var(--dark-gray);
    padding: 100px 0;
}

.design-content {
    max-width: 1200px;
    margin: 0 auto;
}

.design-block {
    padding: 40px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(0, 217, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.design-block:hover {
    border-color: var(--nova-cyan);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.design-block h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--nova-cyan);
    margin-bottom: 20px;
}

.design-block h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--nova-purple);
    margin: 25px 0 15px 0;
}

.design-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Research Section */
.research {
    background: var(--space-black);
    padding: 100px 0;
}

.research-content {
    max-width: 1200px;
    margin: 0 auto;
}

.research-block {
    padding: 40px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(0, 217, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.research-block:hover {
    border-color: var(--nova-cyan);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.research-block h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--nova-cyan);
    margin-bottom: 20px;
}

.research-block h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--nova-purple);
    margin: 25px 0 15px 0;
}

.research-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.research-block ul {
    margin: 20px 0 20px 30px;
}

.research-block li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .supernova-circle {
        width: 300px;
        height: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        justify-content: flex-end !important;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
    }

    .fundraising-stats {
        flex-direction: column;
        gap: 20px;
    }

    .fundraising-milestones::before {
        left: 20px;
    }

    .milestone {
        padding-left: 60px;
    }

    .milestone::before {
        left: 12px;
    }

    .milestone-icon {
        font-size: 2rem;
        min-width: 40px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        letter-spacing: 4px;
    }

    .stat-number {
        font-size: 3rem;
    }

    section {
        padding: 80px 0;
    }
}
