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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a2e;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.3);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #64b5f6;
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.logo-icon {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(100, 181, 246, 0.2);
    color: #64b5f6;
}

.register-btn {
    background: #64b5f6;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #42a5f5;
    transform: translateY(-2px);
}

/* Mission Section */
.mission-section {
    position: relative;
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
        url('/images/frontcover.jpg?v=1759125800') center/cover;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text {
    z-index: 2;
}

.mission-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.mission-pillars h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.pillars-list {
    list-style: none;
}

.pillars-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.pillars-list li::before {
    content: "●";
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.mission-images {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mission-photo {
    width: 400px;
    height: 300px;
    background: 
        linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)),
        url('/images/INNOVATE-127.jpg?v=1759125800') center 20%/cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

/* Years Gallery Section */
.years-section {
    background: #16213e;
    padding: 4rem 0;
}

.years-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.years-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: white;
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    height: 300px;
}

.carousel-slide {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* Smooth slide transitions */
.carousel-slide.slide-exit {
    opacity: 0;
    transform: translateX(-100px) scale(0.95);
}

.carousel-slide.slide-enter.slide-next {
    opacity: 0;
    transform: translateX(100px) scale(0.95);
}

.carousel-slide.slide-enter.slide-prev {
    opacity: 0;
    transform: translateX(-100px) scale(0.95);
}

.carousel-slide:hover img {
    transform: scale(1.05);
}


.slide-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin: 0;
    z-index: 2;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    padding: 1rem;
    border-radius: 8px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(100, 181, 246, 0.8);
    border-color: #64b5f6;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(100, 181, 246, 0.4);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(100, 181, 246, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: #64b5f6;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(100, 181, 246, 0.5);
}


/* Organizers Section */
.organizers-section {
    background: #1a1a2e;
    padding: 4rem 0;
}

.organizers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.organizers-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: white;
}

.organizer-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.organizer-logo-section {
    background: transparent;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.organizer-logo {
    width: 280px;
    height: 400px;
    background: white;
    border-radius: 15px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 2rem;
    font-weight: bold;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.organizer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.organizer-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.organizer-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.organizer-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.past-events h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.past-events ul {
    list-style: none;
}

.past-events li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.past-events li::before {
    content: "•";
    color: #64b5f6;
    font-size: 1.2rem;
    margin-right: 0.8rem;
}

.learn-more-btn {
    background: #64b5f6;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2.5rem;
    display: inline-block;
    text-decoration: none;
}

.learn-more-btn:hover {
    background: #42a5f5;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .mission-photo {
        width: 100%;
        height: 250px;
    }

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

    .carousel-slide {
        height: 250px;
    }
    
    .carousel {
        height: 250px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
