@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700;900&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'League Spartan', sans-serif !important;
}
:root {
    --site-background: #FFFFF;
    --text-color: #212121;
}



body, h1, h2, h3, h4, h5, h6, p, a, label, input, textarea, button {
    color: var(--text-color);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #212121;
    overflow-x: hidden;
    background-color: var(--site-background);
    color: var(--text-color);
    
}

body, h1, h2, h3, h4, h5, h6, p, a, label, .about-title, .about-subtitle, .highlight, .feature-card h3, .feature-card p, .nav-links a, .footer-content, .footer-tagline, .hero-tagline, .hero-subtitle, .cta-button, .partner-card h3 {
    color: #212121 !important;
}

p {
    font-family: 'Poppins', sans-serif !important;
}


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

/* Navigation */
nav {
    position: fixed;
    top: 0; /* or e.g. top: 16px; */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.1rem 0;
    border-radius: 0;
    
    /* Remove width: 100% */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
 
}

.logo-img {
    height: 5rem; /* Adjust as needed */
    display: block;
    margin: 0 auto;
    width: 6rem;
}
.logo {
    background: none !important;
    -webkit-text-fill-color: unset !important;
    text-shadow: none !important;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 5px #00F5FF); }
    100% { filter: drop-shadow(0 0 20px #EA047E); }
}

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

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #212121, #212121);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    box-sizing: border-box; /* Ensure padding fits inside height */
  }


.hero h1 {
    font-size: 8rem;
    font-weight: 900;
    margin-bottom: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textPulse 4s ease-in-out infinite;
    letter-spacing: 5px;
}

@keyframes textPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-tagline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 10rem;;
    font-weight: 700;
    color: #212121;
    font-family: 'League Spartan', sans-serif !important;
    text-shadow: none !important;
    
}
.animate-words span {
    opacity: 0;
    display: inline-block;
    animation: wordFadeIn 0.4s ease forwards;
  }
  
  @keyframes wordFadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}
@keyframes popInUp {
    0% {
      opacity: 0;
      transform: scale(0.8) translateY(20px);
    }
    60% {
      opacity: 1 !important;
      transform: scale(1.05) translateY(0);
    }
    100% {
      opacity: 1 !important; /* <-- Add this line */
      transform: scale(1);
    }
  }
  
  .animate-tagline {
    opacity: 1;
    animation: popInUp 1s ease-out forwards;
}
  
@keyframes taglineGlow {
    0% { text-shadow: 0 0 10px #2d2163; }
    100% { text-shadow: 0 0 30px #2d2163, 0 0 50px #2d2163; }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: #FFFFFF;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.cta-button:hover {
    /* Remove jump/scale effect */
    box-shadow: none;
    transform: none;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Sections */
.section {
    padding: 4rem 0;
    display: none;
    position: relative;
    background: transparent;
}

.section.active {
    display: block;
}

.section h2 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 900;
    background-color: #212121 !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Event Details */
.event-details {
    /*background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(33, 33, 33, 0.9));*/
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.event-info {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    margin-top: 4rem;
    justify-content: center;
    align-items: center;
    overflow-x: auto; /* allows horizontal scroll if needed */
    padding-bottom: 1rem; /* optional, for scroll bar spacing */
}

.info-card {
    background: #212121 !important;
    color: #FFFFFF !important;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 65vh;
    max-width: 260px !important;
    aspect-ratio: 1 / 1;
    height: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

/* testing*/
.info-card:hover {
    transform: rotateX(5deg) rotateY(-5deg) scale(1.05) translateY(-10px);
    box-shadow:
      0 30px 80px rgba(49, 52, 52, 0.2),
      0 0 40px rgba(255, 255, 255, 0.05),
      0 0 100px rgba(255, 255, 255, 0.1);
  }

.info-card h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF !important;
}

.info-card p {
    font-size: 1.3rem;
    font-weight: 500;
    color: #FFFFFF !important;
}

/* Partners Section 
.partners-marquee {
    overflow: hidden;
    width: 100vw;
    position: relative;
    height: 260px;
    margin-left: calc(-50vw + 50%);
    display: flex;
    justify-content: center;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    transform: translateX(0);
    will-change: transform;
    animation: none; 
    animation-fill-mode: forwards;
}

.partner-card {
    background: none;
    padding: 0;
    border: none;
    text-align: center;
    width: 200px;
    flex-shrink: 0;
}

.partner-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: none;
}

.partner-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.partner-card h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 500;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.marquee-track[style*="animation"] {
    animation-iteration-count: infinite !important;
    animation-timing-function: linear !important;
}

#partner h2 {
    color: #212121 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-shadow: none !important;
}*/
/*test*/
.partners-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
    min-width: 200%;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    background: none;
    padding: 0;
    border: none;
    text-align: center;
    width: 160px;
    flex: 0 0 160px;
    margin-right: 2rem;
    display: inline-block;
}
.partner-card:nth-child(7),
.partner-card:nth-child(14) {
    margin-right: 0;
}
.partner-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}
.partner-card h3 {
    color: #212121;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .partner-card {
        width: 110px;
        flex: 0 0 110px;
        margin-right: 1.2rem;
    }
    .partner-card:nth-child(7),
    .partner-card:nth-child(14) {
        margin-right: 0;
    }
    .partner-logo {
        width: 65px;
        height: 65px;
    }
    .marquee-track {
        /* No gap! */
    }
}

/* Mobile */
@media (max-width: 768px) {
    .partner-card {
        width: 70px;
        flex: 0 0 70px;
        margin-right: 0.7rem;
    }
    .partner-card:nth-child(7),
    .partner-card:nth-child(14) {
        margin-right: 0;
    }
    .partner-logo {
        width: 40px;
        height: 40px;
    }
    .marquee-track {
        /* No gap! */
    }
    .partners-marquee {
        height: 80px;
    }
    .partner-card h3 {
        font-size: 0.7rem;
    }
}

/* Smallest screens */
@media (max-width: 480px) {
    .partner-card {
        width: 44px;
        flex: 0 0 44px;
        margin-right: 0.4rem;
    }
    .partner-card:nth-child(7),
    .partner-card:nth-child(14) {
        margin-right: 0;
    }
    .partner-logo {
        width: 28px;
        height: 28px;
    }
    .partners-marquee {
        height: 50px;
    }
    .partner-card h3 {
        font-size: 0.6rem;
    }
}
/* Footer */
/*footer {
    background: url('waves.jpg') center center/cover no-repeat;
    backdrop-filter: blur(20px);
    color: white;
    height: 20rem;
    padding: 4rem 0;
    text-align: left;
    z-index: 1000;
}


.footer-content {
    font-size: 1.2rem;
    
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 1.8rem;
    color: #00F5FF;
    font-weight: 700;
} */
.section-fade {
    height: 100px;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: -50px; /* overlap the footer */
    position: relative;
    z-index: 2;
    opacity: 0.5;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;   /* Align content to bottom */
    align-items: flex-start;     /* Align content to left */
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    background: none;
    color: white;
    height: 13rem;
    padding: 2rem 3rem;
    text-align: left;
    overflow: hidden;
}

.footer-content,
.footer-tagline {
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0;
    font-weight: 700;      /* bold */
    color: #f5f5f5 !important;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ), url('waves.jpg') center/cover no-repeat;
    z-index: -1;
}

.footer-content {
    color: #f5f5f5 !important;
    font-size: 0.8rem !important;
}

.footer-tagline {
    margin-top: 2rem;
    margin-bottom: 2rem !important;
    font-weight: 700;
    font-size: 1rem;
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .section h2 {
        font-size: 2.5rem;
    }
    
    .about-mission-container {
        padding: 40px 20px;
    }

    .about-mission-label {
        margin-bottom: 20px;
    }

    .about-mission-label span {
        font-size: 1.5rem;
    }

    .about-mission-text {
        margin-bottom: 20px;
    }

    .about-achieve-container {
        padding: 40px 20px;
    }

    

    .about-achieve-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-achieve-item {
        padding-left: 10px;
    }

    .about-achieve-item h3 {
        font-size: 14px;
    }

    .about-achieve-item p {
        font-size: 12px;
    }

    .partners-intro {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .partners-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-logo-img {
        width: 300px;
    }
}

.hero-logo-img {
    display: block;
    margin: 0 auto 0 auto;
    max-width: 90vw;
    width: 700px;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.5));
    animation: none !important;
}

@media (max-width: 768px) {
    .hero-logo-img {
        width: 300px;
    }
}

.hero,
.event-details {
    position: relative;
    /* Remove any background color/image here if present */
}




/*Contact form testing*/
.contact-form {
    position: relative;
    max-width: 600px;
    margin: 6rem auto 0 auto;
    padding: 3rem;
    background: #212121 !important;
    color: #FFFFFF !important;
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    z-index: 2;
    margin-bottom: 5rem;
  }
  
  
  
  @keyframes waterSplash {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    100% {
      transform: translate(50%, 50%) rotate(360deg);
    }
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
  }
  .contact-form,
.contact-form *,
.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form button,
.contact-form h3,
.contact-form p,
.contact-form span {
    color: #FFFFFF !important; /*fixing the contact form bug*/
}
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #000;   
    box-shadow: none;     
  }
  
  .contact-form button {
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    color: #FFFFFF;
    padding: 1rem 2rem;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
  
  .contact-form button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
  
  .contact-form button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.4s ease;
    z-index: -1;
  }
  
  .contact-form button:hover::after {
    left: 100%;
  }
  
  /*about*/
  /* Enhanced styling for the EXPLOSIVE EXPERIENCE section */
  .about-title {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    color: #000000 !important;
    text-shadow: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    margin-top: 3rem;
  }
  
  .about-title::before {
    display: none;
  }
  
  .about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .about-subtitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
  }
  
  @keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
  }
  
  .highlight {
    background: #EA047E !important;
    color: #fff !important;
    padding: 0.1em 0.4em;
    border-radius: 0.3em;
    font-weight: 900;
    font-size: 1.2em;
    display: inline-block;
    letter-spacing: 0.05em;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  /* Additional enhancement for better visual impact */
  .about-subtitle strong {
    font-weight: 800;
    color: #212121 !important;
    text-shadow: none !important;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .about-title {
      font-size: 2.5rem;
    }
    
    .about-subtitle {
      font-size: 1.2rem;
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .about-title {
      font-size: 2rem;
    }
    
    .about-subtitle {
      font-size: 1rem;
      padding: 1rem;
    }
  }

.cta-button,
.contact-form button {
    background: #212121 !important;
    color: #fff !important;
    border: none;
}



/* about.html */
.about-mission-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.about-mission-label {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 30px;
}

.about-mission-label span {
    font-family: 'League Spartan', sans-serif;
    font-weight: bold;
    font-size: 3rem;
    color: "#212121";
}

.about-mission-text {
    font-size: 1.5rem;
    color: #212121;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-achieve-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.about-achieve-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #212121;
    opacity: 0;
    transform: translateY(40px);
}

.about-achieve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    text-align: left;
}

.about-achieve-item {
    border-left: 4px solid #212121;
    padding-left: 16px;
}

.about-achieve-item h3 {
    margin-bottom: 10px;
    font-size: 2rem;
    color: #212121;
}

.about-achieve-item p {
    font-size: 1.5rem;
    color: #212121;
    line-height: 1.5;
}

/* partners.html */
.partners-intro {
    text-align: center;
    font-size: 1.5rem;
    color: #212121;
    margin-bottom: 3rem;
    font-weight: 300;
}

.partners-form-title {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* === About Section Animations === */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.2s;
}
.fade-in.delay-2 {
  animation-delay: 0.4s;
}
.fade-in.delay-3 {
  animation-delay: 0.6s;
}
.fade-in.delay-4 {
  animation-delay: 0.8s;
}
.fade-in.delay-5 {
  animation-delay: 1s;
}

/* Ensure about-achieve-item is initially hidden for staggered effect */
.about-achieve-item {
  opacity: 0;
  transition: opacity 0.7s;
}

.about-achieve-item.visible {
  opacity: 1;
}
@keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animated-element {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 0.8s ease-out forwards;
  }

/* --- Responsive Navigation Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #212121;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 10px;
    }
    .partners-marquee {
        height: 200px;
    }
    .partner-logo {
        width: 110px;
        height: 110px;
    }
    .partner-card {
        width: 120px;
    }
}

@media (max-width: 900px) {
    .about-achieve-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-achieve-item {
        padding-left: 8px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 0;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -80vw;
        width: 40vw;
        max-width: 200px;
        height: 100vh;
        background: #fff;
        box-shadow: 8px 0 32px rgba(0,0,0,0.15);
        border-radius: 0 20px 20px 0;
        z-index: 1001;
        gap: 0;
        padding-top: 5rem;
        transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
        font-size: 1rem;
        align-items: flex-start;
    }
    .nav-links.open {
        left: 0;
    }
    .nav-links li {
        margin: 1.1rem 0;
        text-align: left;
        padding-left: 2rem;
        font-size: 1rem;
    }
    .nav-links a {
        font-size: 1rem;
    }
    .hamburger {
        display: flex;
    }
    .logo-img {
        height: 3rem;
        width: 3.5rem;
    }
    .section h2 {
        font-size: 2.2rem;
    }
    .partners-marquee {
        height: 140px;
        margin-left: 0;
        width: 100%;
    }
    .marquee-track {
        gap: 1.5rem;
    }
    .partner-logo {
        width: 70px;
        height: 70px;
    }
    .partner-card {
        width: 90px;
    }
    .partners-intro {
        font-size: 1.1rem;
    }
    .contact-form {
        padding: 1.2rem;
        margin: 3rem auto 2rem auto;
        width: 90%;
    }
    .footer-tagline {
        font-size: 1.1rem;
    }
    .event-details {
        padding: 3rem 0;
    }
    .info-card {
        width: 140px;
        height: 160px;
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    .info-card h3 {
        font-size: 1.1rem;
    }
    .info-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 4px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-tagline {
        font-size: 1.1rem;
        margin-top: 5rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .section h2 {
        font-size: 1.1rem;
    }
    .partners-marquee {
        height: 90px;
    }
    .partner-logo {
        width: 40px;
        height: 40px;
    }
    .partner-card {
        width: 50px;
    }
    .about-title {
        font-size: 1.2rem;
    }
    .about-subtitle {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    .about-mission-label span {
        font-size: 1.1rem;
    }
    .about-mission-text {
        font-size: 0.9rem;
    }
    .about-achieve-title {
        font-size: 1rem;
    }
    .about-achieve-item h3 {
        font-size: 0.9rem;
    }
    .about-achieve-item p {
        font-size: 0.8rem;
    }
    .contact-form {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    .contact-form button {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .footer-tagline {
        font-size: 0.8rem;
    }
    .info-card {
        width: 90px;
        height: 90px;
        font-size: 0.7rem;
        padding: 0.2rem;
    }
    .info-card h3 {
        font-size: 0.7rem;
    }
    .info-card p {
        font-size: 0.6rem;
    }
}

/* Prevent horizontal overflow */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
.section, .container, .partners-marquee, .marquee-track {
    max-width: 100vw;
    overflow-x: hidden;
}
@media (max-width: 768px) {
  .event-info {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .info-card {
    width: 60vw;
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .event-info {
    flex-wrap: wrap;      /* Allow cards to wrap to next line if needed */
    gap: 2rem;
    justify-content: center;
  }
  .info-card {
    width: 260px;         /* Fixed width for laptop screens */
    max-width: 90vw;
    min-width: 180px;
    aspect-ratio: 1 / 1;
  }
}
