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

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #f0f0f0;
    --dark-color: #000000;
    --light-color: #ffffff;
    --text-color: #000000;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Ensure all sections use full width */
section {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

/* Prevent overflow in all containers */
.container, .nav-container {
    overflow-x: hidden;
    max-width: 100%;
}

/* Prevent horizontal overflow globally */
* {
    box-sizing: border-box;
}

/* Ensure proper text contrast */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
}

p {
    color: var(--text-light);
}

/* Ensure all content is visible by default */
section, .container, .hero-content, .about-content, .programs-content, 
.coaches-content, .achievements-content, .gallery-content, .events-content, 
.testimonials-content, .contact-content, .whatsapp-redirect {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure statistics are always visible */
.about-stats, .stat-item, .stat-number, .stat-label {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Prevent scroll overflow issues */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-hero {
    font-size: 1.1rem;
    padding: 15px 40px;
    margin-top: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Header / Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.nav-logo span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--secondary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('WhatsApp Image 2025-06-28 at 23.47.49.jpeg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(17, 17, 17, 0.8));
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-color);
    width: 100%;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: var(--white);
}

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

.program-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-color);
}

.program-icon i {
    font-size: 2rem;
    color: var(--white);
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-card ul {
    list-style: none;
}

.program-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.program-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Coaches Section */
.coaches {
    padding: 100px 0;
    background: var(--light-color);
}

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

.coach-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.coach-image {
    height: 250px;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.coach-card:hover .coach-image img {
    transform: scale(1.1);
}

.coach-info {
    padding: 1.5rem;
}

.coach-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.coach-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.coach-certifications {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.coach-bio {
    color: var(--text-light);
    line-height: 1.6;
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: var(--white);
}

.achievements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.achievements-timeline {
    position: relative;
}

.achievements-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 60px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.player-success h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.success-stories {
    display: grid;
    gap: 1.5rem;
}

.story-card {
    display: flex;
    gap: 1rem;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.story-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
    min-height: 400px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    width: 100%;
    min-height: 300px;
    position: relative;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    min-height: 250px;
    background: var(--white);
    border: 1px solid #e0e0e0;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    opacity: 1;
    display: block;
}

/* Mobile Gallery Styles */
@media (max-width: 768px) {
    .gallery-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.5rem;
        padding: 0 0.5rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: auto; /* Prevent momentum scrolling issues */
    }
    
    /* Prevent gallery from causing page overflow */
    .gallery {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .gallery-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .gallery-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
        margin-right: 0.25rem;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .gallery-item:last-child {
        margin-right: 0;
    }
    
    .gallery-item img {
        height: 200px;
        opacity: 1;
        pointer-events: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    

}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 250px;
    }
    
    .gallery-item img {
        height: 180px;
    }
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(26, 77, 46, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
}

/* Events Section */
.events {
    padding: 100px 0;
    background: var(--white);
}

.events-content {
    display: grid;
    gap: 3rem;
}

.next-event {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.next-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('WhatsApp Image 2025-06-28 at 23.47.55.jpeg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.next-event > * {
    position: relative;
    z-index: 1;
}

.event-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.next-event-details h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.next-event-details p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.event-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.event-info > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-info i {
    color: var(--white);
}

.events-list {
    display: grid;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    gap: 1.5rem;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.event-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.event-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.event-time {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-color);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--secondary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: var(--primary-color);
    margin: 0 2px;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-content span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

/* WhatsApp Redirection Section */
.whatsapp-redirect {
    background: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.whatsapp-content {
    max-width: 500px;
    margin: 0 auto;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.whatsapp-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.whatsapp-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    margin: 2rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.whatsapp-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.whatsapp-info strong {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--white);
    opacity: 0.8;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    margin: 0 0.25rem;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero-content {
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-menu .nav-link {
        padding: 0.75rem 1rem;
        display: block;
    }
    
    /* Prevent horizontal overflow on mobile */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Prevent overflow in all sections on mobile */
    section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* Prevent countdown overflow */
    .event-countdown {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

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

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .about-content,
    .achievements-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .whatsapp-redirect {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-icon {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-icon i {
        font-size: 2rem;
    }

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

    .event-countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .event-info {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 8px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Additional overflow prevention for small screens */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* Prevent section overflow on small mobile */
    section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* Prevent countdown overflow on small mobile */
    .event-countdown {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .programs-grid,
    .coaches-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.25rem;
        padding: 0 0.25rem;
        margin: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: auto;
        scroll-behavior: smooth;
        width: 100%;
        max-width: 100%;
    }
    
    .gallery-item {
        flex: 0 0 250px;
        scroll-snap-align: start;
        margin-right: 0.25rem;
        user-select: none;
    }
    
    .gallery-item img {
        height: 180px;
        opacity: 1;
        pointer-events: none;
    }

    .next-event {
        padding: 2rem 1rem;
    }

    .event-countdown {
        gap: 0.5rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
    overflow: hidden;
}

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

.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
    overflow: hidden;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
    overflow: hidden;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}



 