        :root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #2563eb;
            --light: #f8fafc;
            --dark: #0f172a;
            --text: #334155;
            --text-light: #64748b;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary);
            margin-top: 10px;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background-color: white;
            color: var(--primary);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--dark);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            max-width: 700px;
            margin: 15px auto 0;
            color: var(--text-light);
        }
        
        /* Header Styles */

 /* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    width: 100%;
    overflow: hidden;
    color: white;
}

.hero-carousel {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    width: 100%;
    animation: fadeInUp 0.8s ease;
    margin-bottom: 100px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
}

#hero-title-tag {
    color: var(--secondary);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-group {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-group .btn {
    margin-right: 0;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.indicator.active {
    background: white;
}




.png-set{
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    height: 100%;
    padding-top: 90px;
}

.image-png{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}
.image-png img{
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for Mobile */
@media (max-width: 767px) {
    .hero {
        height: 100vh;
    }
    
    .hero-carousel {
        width: 100%;
    }
    
    .hero-slide {
        min-width: 100%;
        width: 100%;
        background-position: right;
    }
    
    .hero-content {
        padding: 20px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .btn-group {
        justify-content: center;
        margin-top: 20px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    .png-set{
        flex-direction: column-reverse;
    }
    .image-png{
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        justify-content: center;
    }
    .image-png img{
        width: 50%;
    }
}

/* For very small devices */
@media (max-width: 480px) {
    .hero {
        height: 100vh;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .btn-group .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .png-set{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
}
         

        /* All sports */
#show-all-sports {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    gap: 15px; 
    padding: 12px;
}



.show-sports-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.show-sports-box h2 {
    font-size: 20px;
    color: var(--light);
    text-align: center;
    margin-top: 10px;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.show-sports-box:hover h2 {
    transform: translateY(-20px);
}


.sports-box-link {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.show-sports-box:hover .sports-box-link {
    bottom: 20px;
}

.sports-box-link:hover {
    background-color: white;
    color: var(--secondary);
    transform: translateX(-50%) scale(1.1);
}


.sport-img1 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://lh3.googleusercontent.com/gps-cs-s/AC9h4npWiPpEKSSqsbe9xHiFe7H_auHEBCvbC4RKVCW5tWPExJ1ib2Wl5mrPYmShi1qsVGPKAWl9RPDy3SfCXILmgV-wSzlNdx_OmpWqX6RcHhkpyDkipNlYphx2LDpyNzZCCjqP-8mZ=s680-w680-h510-rw');
}

.sport-img2 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1552674605-db6ffd4facb5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80');
}

.sport-img3 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://lh3.googleusercontent.com/gps-cs-s/AC9h4nqvKAIWejC2AoB3u0PFlfg6cR8LMALt8e2gZf7oBRhuNsPez6D6yf1oj_BkFScNiMq7DITsQL4Gl5vRUZQQ7RdhEQCD808TWTR8Sw60wPWHEgmQWMjOz-XIiccQ0n8u5IMoJH9Jrg=s680-w680-h510-rw')
}

.sport-img4 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://colonelzsharpshooterz.com/wp-content/uploads/2024/05/shooting.jpg')
}

.sport-img5 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://content.jdmagicbox.com/comp/def_content/lawn-tennis-courts/finpgmkhma-lawn-tennis-courts-1-4uiie.jpg');
}

.show-sports-box {
    width: 19%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

        
        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(220, 38, 38, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--secondary);
            font-size: 32px;
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-card p {
            color: var(--text-light);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .about-image .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background-color: var(--secondary);
            color: white;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        }
        
        .experience-badge h3 {
            font-size: 40px;
            line-height: 1;
        }
        
        .experience-badge p {
            font-size: 16px;
            font-weight: 600;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
        }
        
        .about-list {
            margin: 30px 0;
        }
        
        .about-list li {
            margin-bottom: 15px;
            list-style: none;
            display: flex;
            align-items: flex-start;
        }
        
        .about-list li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        /* Classes Section */
        .classes {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .classes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .class-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .class-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .class-img {
            height: 250px;
            overflow: hidden;
        }
        
        .class-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .class-card:hover .class-img img {
            transform: scale(1.1);
        }
        
        .class-content {
            padding: 25px;
        }
        
        .class-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .class-content p {
            color: var(--text);
            margin-bottom: 15px;
        }
        
        .class-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .class-meta span {
            display: flex;
            align-items: center;
        }
        
        .class-meta i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        .class-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        /* Trainers Section */
        .trainers {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .trainers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .trainer-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .trainer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .trainer-img {
            height: 300px;
            overflow: hidden;
        }
        
        .trainer-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .trainer-card:hover .trainer-img img {
            transform: scale(1.1);
        }
        
        .trainer-content {
            padding: 25px;
        }
        
        .trainer-content h3 {
            font-size: 22px;
            margin-bottom: 5px;
        }
        
        .trainer-content p {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .trainer-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .trainer-social a {
            width: 35px;
            height: 35px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            transition: all 0.3s;
        }
        
        .trainer-social a:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1541534741688-6078c6bfb5c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        .testimonials .section-title h2 {
            color: white;
        }
        
        .testimonials .section-title h2::after {
            background-color: white;
        }
        
        .testimonials .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            text-align: center;
            padding: 0 20px;
        }
        
        .testimonial-text {
            font-size: 20px;
            font-style: italic;
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 60px;
            color: rgba(255, 255, 255, 0.2);
            position: absolute;
        }
        
        .testimonial-text::before {
            top: -30px;
            left: -15px;
        }
        
        .testimonial-text::after {
            bottom: -50px;
            right: -15px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--secondary);
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background-color: white;
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--secondary);
            position: relative;
        }
        
        .pricing-card.popular::before {
            content: 'Popular';
            position: absolute;
            top: -12px;
            right: 30px;
            background-color: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-light);
        }
        
        .pricing-features {
            margin: 30px 0;
        }
        
        .pricing-features li {
            margin-bottom: 15px;
            list-style: none;
            color: var(--text-light);
        }
        
        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }
        
        /* Blog Section */
        .blog {
            padding: 100px 0;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .blog-img {
            height: 250px;
            overflow: hidden;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-meta {
            display: flex;
            margin-bottom: 15px;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .blog-meta span {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .blog-meta i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        .blog-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .blog-content p {
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .read-more {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .contact-text p {
            color: var(--text-light);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Open Sans', sans-serif;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }
        
        .animate.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 46px;
            }
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .about-image .experience-badge {
                width: 120px;
                height: 120px;
                right: -20px;
                bottom: -20px;
            }
            
            .experience-badge h3 {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            #header {
                padding: 0 20px;
            }
            
            nav {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                background-color: white;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                padding: 20px 0;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .btn-group {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-group .btn {
                margin-right: 0;
                width: 100%;
                text-align: center;
            }

            #show-all-sports{
                flex-wrap: wrap;
            }
            .show-sports-box{
                width: 45%;
                background-repeat: no-repeat;
                background-size: cover;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-bottom: 50px;
            }
            
            .about-image .experience-badge {
                right: 0;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .price {
                font-size: 36px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 4px;
            }
            
            .newsletter-form button {
                border-radius: 4px;
                padding: 12px;
            }
        }
 