 /* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background-color: #333333;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(74, 140, 74, 0.9);
    z-index: 1000;
    transition: background 0.3s;
    overflow: visible;
    /* Add shiny animation */
    background-image: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    background-size: 200% 100%;
    animation: shiny 3s linear infinite;
}

@keyframes shiny {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}

.nav-menu li {
    margin-left: 0.75rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 30px;
    height: 30px;
    margin-right: 0.5rem;
}

.separator {
    width: 2px;
    height: 30px;
    background: #fff;
    margin: 0 0.5rem;
}

.nav-logo h1 {
    color: #fff;
    font-size: 1.2rem;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 1rem;
}

.nav-menu a {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.nav-menu a.active,
.nav-menu a:hover {
    background-color: rgba(74, 140, 74, 0.9);
    color: #e0ffe0;
    transform: scale(1.1);
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #f0f0f0;
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
    left: 0;
}

.nav-menu a:hover::after {
    width: 100%;
    left: 0;
    background: #f0f0f0;
}

.nav-menu a:hover {
    color: #f0f0f0;
    transform: scale(1.1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    list-style: none;
    padding: 0;
    display: none;
    min-width: 150px;
    max-width: 250px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
} */

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.5rem 1rem;
    display: block;
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem 8rem 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    scroll-margin-top: 60px; /* offset for fixed navbar */
    scroll-snap-align: start;
    background-color: #000000;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll for anchor navigation */
html {
    scroll-behavior: smooth;
}

/* Scroll snap container */
body {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

/* Home Section */
.home-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/background-home/background-home.jpg');
    background-size: cover;
    background-position: center center;
    filter: brightness(0.4);
    z-index: 0;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.2; }
}

.home-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: subtleFloat 6s ease-in-out infinite;
}

.home-content h1 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

body.loaded .home-content h1 {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease forwards;
}

.technology-description {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

body.loaded .technology-description {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.countdown-timer {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

body.loaded .countdown-timer {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.home-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.9s, transform 1s ease 0.9s;
}

body.loaded .home-buttons {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease 0.9s forwards;
}

/* Leaving animation */
.home-content.leaving h1,
.home-content.leaving .technology-description,
.home-content.leaving .countdown-timer,
.home-content.leaving .home-buttons {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.home-content h1 {
    font-family: 'Fontfabric', 'Montserrat', 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 1px;
    color: #e0f2f1;
}

.technology-description {
    font-size: 1rem;
    color: #cce6ff;
    margin-bottom: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.home-content .slogan {
    font-size: 1.1rem;
    color: #cce6ff;
    margin-top: 0.5rem;
    font-style: italic;
}

.home-content {
    gap: 1.5rem;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: #cce6ff;
    animation: fadeInUp 1.5s ease forwards;
}

.cta-button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #8b0000, #004d40);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
    animation: fadeInUp 1.5s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Glowing pulse */
    animation: pulseGlowDark 2s infinite;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(139, 0, 0, 1);
}

@keyframes pulseGlowDark {
    0%, 100% {
        box-shadow: 0 0 15px rgb(255, 251, 32);
    }
    50% {
        box-shadow: 0 0 30px rgb(118, 139, 0);
    }
}

.light-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255, 255, 255), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.cta-button:hover .light-effect {
    left: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgb(216, 244, 6)
    }
    50% {
        box-shadow: 0 0 30px rgb(0, 192, 58);
    }
}

/* Particle effect */
.particle {
    position: absolute;
    background: rgba(89, 172, 119, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 8px 2px rgba(89, 172, 119, 0.7);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
        box-shadow: 0 0 8px 2px rgba(89, 172, 119, 0.7);
    }
    25% {
        transform: translateY(-15px) translateX(10px) scale(1.2);
        opacity: 0.5;
        box-shadow: 0 0 12px 4px rgba(89, 172, 119, 0.9);
    }
    50% {
        transform: translateY(-30px) translateX(0) scale(1);
        opacity: 0.3;
        box-shadow: 0 0 8px 2px rgba(89, 172, 119, 0.7);
    }
    75% {
        transform: translateY(-15px) translateX(-10px) scale(0.8);
        opacity: 0.2;
        box-shadow: 0 0 6px 1px rgba(89, 172, 119, 0.5);
    }
}

/* Sponsor box glowing corner animation */
.sponsors-track img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sponsors-track img::before,
.sponsors-track img::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 10px;
    box-sizing: border-box;
}

.sponsors-track img::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: #59AC77;
    border-left-color: #59AC77;
    animation: glowCorners 3s linear infinite;
}

.sponsors-track img::after {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-bottom-color: #59AC77;
    border-right-color: #59AC77;
    animation: glowCornersReverse 3s linear infinite;
}

@keyframes glowCorners {
    0%, 100% {
        box-shadow: 0 0 10px #59AC77, 0 0 20px #59AC77;
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 20px #a0f0a0, 0 0 40px #a0f0a0;
        opacity: 0.6;
    }
}

@keyframes glowCornersReverse {
    0%, 100% {
        box-shadow: 0 0 10px #59AC77, 0 0 20px #59AC77;
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 20px #a0f0a0, 0 0 40px #a0f0a0;
        opacity: 0.6;
    }
}

.sponsors-track img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #00ffffcc;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #59AC77;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    min-width: 60px;
    text-align: center;
    color: #59AC77;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.countdown-number {
    font-size: 2rem;
    font-weight: bold;
}

.countdown-label {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    letter-spacing: 1px;
}

.countdown-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Event Section */
.event-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #204020;
    font-family: 'Montserrat', sans-serif;
}

.event-description {
    font-size: 0.9rem;
    color: #406040;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 0;
    max-width: 600px;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: #59AC77;
    color: #000;
    box-shadow: 0 0 10px #59AC77;
}

.btn-primary:hover {
    background-color: #4a8c4a;
    box-shadow: 0 0 30px 5px #4a8c4a;
    transform: scale(1.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary {
    background-color: transparent;
    color: #59AC77;
    border: 2px solid #59AC77;
}

.btn-secondary:hover {
    background-color: #59AC77;
    animation: fadeInUp 1.5s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Glowing pulse */
    animation: pulseGlowDark 2s infinite;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(139, 0, 0, 1);
}

@keyframes pulseGlowDark {
    0%, 100% {
        box-shadow: 0 0 15px rgb(255, 251, 32);
    }
    50% {
        box-shadow: 0 0 30px rgb(118, 139, 0);
    }
}

.light-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255, 255, 255), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.cta-button:hover .light-effect {
    left: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgb(216, 244, 6)
    }
    50% {
        box-shadow: 0 0 30px rgb(0, 192, 58);
    }
}

/* Particle effect */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.3;
    }
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #59AC77;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    min-width: 60px;
    text-align: center;
    color: #59AC77;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.countdown-number {
    font-size: 2rem;
    font-weight: bold;
}

.countdown-label {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    letter-spacing: 1px;
}

.countdown-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: #59AC77;
    color: #000;
    box-shadow: 0 0 10px #59AC77;
}

.btn-primary:hover {
    background-color: #4a8c4a;
    box-shadow: 0 0 30px 5px #4a8c4a;
    transform: scale(1.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary {
    background-color: transparent;
    color: #59AC77;
    border: 2px solid #59AC77;
}

.btn-secondary:hover {
    background-color: #59AC77;
    color: #000; /* Change text color to black for better contrast */
    box-shadow: 0 0 30px 5px #59AC77;
    transform: scale(1.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* About Section Background */
.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Removed background image as per request */
    background: transparent;
    z-index: 0;
    /* Optional: add subtle background color or gradient if needed */
    /* animation: aboutBgPan 20s ease-in-out infinite alternate; */
}

@keyframes aboutBgPan {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.about-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.about-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: aboutParticleFloat 8s ease-in-out infinite;
}

@keyframes aboutParticleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.3;
    }
}

/* About Section */
.about-container {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem; /* added horizontal padding */
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: none !important;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.about-image,
.about-text,
.about-text p,
.about-text h3,
.about-text ul,
.about-text li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
    color: #fff;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    text-align: inherit;
    border-radius: 0;
    position: static;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        max-width: 90%;
        padding: 1rem 0.5rem;
    }
    .about-image {
        max-width: 150px;
        margin-bottom: 1rem;
    }
    .about-text {
        max-width: 100%;
        text-align: center;
    }
}

.about-image {
    border: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: none;
    box-shadow: none;
}

.about-image img {
    width: 200px;
    height: auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #59AC77 !important;
    text-align: center;
    text-shadow: 0 0 10px #59AC77 !important;
    padding: 0;
    margin-bottom: 0.2rem;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #59AC77;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 10px #59AC77;
    text-align: center;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #204020;
    font-family: 'Montserrat', sans-serif;
}

.about-text ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 1rem;
}

/* Responsive for About */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}





.about-bottom {
    width: 100%;
    background-color: transparent !important;
    padding: 1rem 0;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.sponsor-logos img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sponsor-logos img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}





/* .about-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #204020;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 0.75rem;
}

.about-text h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #204020;
    border-radius: 2px;
    box-shadow: 0 0 8px #204020;
} */

@media (max-width: 768px) {
    .about-top {
        flex-direction: column;
        text-align: center;
    }
    .about-image, .about-text {
        max-width: 100%;
    }
    .about-text {
        text-align: center;
    }
    .about-bottom {
        padding: 1rem 0.5rem;
    }
}

/* New styles for about-top and children for desktop */
.about-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 0 0 180px;
    max-width: 180px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: #f0f0f0; /* plain white like navbar */
    text-shadow: none; /* remove glowing effect */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.vertical-separator {
    width: 2px;
    background-color: #59AC77;
    height: 180px;
    margin: 0 1rem;
    align-self: center;
}
/* Slideshow Styles */
.slideshow {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slide {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    transition: transform 0.5s ease;
}

/* Sponsors Section */
.sponsors-section {
    background-color: #000;
    color: #fff;
    padding: 1rem 1rem 3rem 1rem; /* added more bottom padding */
    text-align: center;
}

.sponsors-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #59AC77;
    text-shadow: 0 0 10px #59AC77;
    margin-bottom: 0.2rem; /* reduced space below title */
}

.sponsors-subtitle {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.sponsors-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.sponsors-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 30s linear infinite;
    /* Show 6 logos at a time */
    /* max-width: calc(6 * 150px + 5 * 2rem); */ /* Removed max-width to allow full width for scrolling */
    overflow: hidden;
}

.sponsors-track img {
    width: 150px; /* fixed width for consistent size */
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: none; /* remove shadow for clean look */
    transition: transform 0.3s ease;
}

.sponsors-track img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #00ffffcc;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Translate by full width of the track plus gap */
        transform: translateX(calc(-100% - 2rem));
    }
}

@media (max-width: 768px) {
    .sponsors-title {
        font-size: 2rem;
    }
    .sponsors-subtitle {
        font-size: 1rem;
    }
    .sponsors-track img {
        width: 100px;
    }
}
