* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}
html {
    scroll-padding-top: 100px; /* Adjust based on your navbar height */
    scroll-behavior: smooth;   /* Optional: for smooth scrolling */
}


nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: height 0.3s ease, padding 0.3s ease;
}

.all-logos-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-space {
    width: 85px; 
    height: 80px;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 5px;
}


.logo-space img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}


.logo-space:hover {
    background: rgba(255, 105, 180, 0.2);
    border-color: rgba(255, 105, 180, 0.5);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    background: rgba(255, 105, 180, 0.1);
    color: #ff69b4;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff69b4, #ff1493, #ff69b4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero .tagline {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #bbb;
    line-height: 1.8;
}

.floating-element {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff69b4;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.floating-element:nth-child(1) { 
    top: 20%; 
    left: 10%; 
    animation-delay: 0s; 
}

.floating-element:nth-child(2) { 
    top: 60%; 
    left: 80%; 
    animation-delay: 2s; 
}

.floating-element:nth-child(3) { 
    top: 80%; 
    left: 20%; 
    animation-delay: 4s; 
}

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

.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

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

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #bbb;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 105, 180, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff69b4;
}

.stat-label {
    color: #888;
    font-weight: 500;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff69b4, #ff1493);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-content {
    background: rgba(255, 105, 180, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.3);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

.timeline-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff69b4;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #bbb;
    font-size: 1rem;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff69b4;
    border-radius: 50%;
    top: 2rem;
    border: 4px solid #0a0a0a;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -60px;
}

.register {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.1));
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 105, 180, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff69b4;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-info {
    color: #bbb;
}

.contact-info a {
    color: #ff69b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff1493;
}

footer {
    background: #000;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    color: #888;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- START: MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    nav {
        padding: 0.5rem 1rem;
        height: 80px;
    }
    
    .all-logos-container {
        gap: 0.5rem;
    }

    .logo-section {
        gap: 0.5rem;
    }

    /* Make all logos smaller to fit */
    .logo-space {
        width: 45px;
        height: 45px;
    }

    /* Styles for the mobile navigation menu */
    nav ul {
        display: none; /* Hide by default */
        position: absolute;
        top: 80px; /* Position below the navbar */
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        padding: 1rem;
        border-top: 1px solid rgba(255, 105, 180, 0.1);

        /* MODIFIED: For horizontal, wrapping menu */
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Style for when the mobile menu is open */
    nav ul.mobile-open {
        display: flex;
    }

    nav ul li {
        width: auto; /* Allow items to size naturally */
    }

    nav ul a {
        padding: 0.5rem 1rem; /* Adjust padding for horizontal items */
        display: inline-block;
        width: auto;
    }

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

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

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 3rem;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }

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

    .section {
        padding: 4rem 1rem;
    }

    .section h2 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}
/* --- END: MOBILE RESPONSIVE FIXES --- */