@media (max-width: 700px) {


    
    /* Mobile CSS for Booking Overlay */
    #bookingOverlay .booking-content {
        padding: 0;
        border-radius: 0;
        background: #181818;
        max-width: 100vw;
        min-height: 100vh;
        box-sizing: border-box;
        margin: 0;
        margin-top: 100px; /* Space for the header */
    }

    #bookingOverlay .close-booking {
        position: absolute;
        top: 18px;
        right: 18px;
        background: none;
        border: none;
        color: #0f0;
        font-size: 28px;
        cursor: pointer;
        z-index: 10;
    }

    #bookingMessageIntro {
        padding: 24px 12px 18px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #bookingMessageIntro h2 {
        color: #0f0;
        font-size: 22px;
        margin-bottom: 12px;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
    }

    #bookingMessageIntro p {
        color: #fff;
        font-size: 15px;
        margin-bottom: 8px;
    }

    #bookingMessageIntro button,
    #bookingOverlay .booking-content button,
    #bookingOverlay .booking-content input[type="submit"] {
        width: 100%;
        padding: 12px 0;
        background: #0f0;
        color: #181818;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.2s;
        margin-bottom: 10px;
    }

    #bookingMessageIntro button:hover,
    #bookingOverlay .booking-content button:hover,
    #bookingOverlay .booking-content input[type="submit"]:hover {
        background: #0c0;
    }

    #bookingMessageIntro img {
        margin-top: 10px;
        border-radius: 10px;
        background: #222;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    }

    #bookingForm {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 18px 0 0 0;
    }

    #bookingForm input,
    #bookingForm select,
    #bookingForm textarea {
        width: 100%;
        padding: 10px 8px;
        margin-bottom: 10px;
        border: 1px solid #222;
        border-radius: 6px;
        background: #222;
        color: #fff;
        font-size: 15px;
        font-family: inherit;
        box-sizing: border-box;
    }

    #bookingForm button[type="submit"] {
        width: 100%;
        padding: 12px 0;
        background: #0f0;
        color: #181818;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.2s;
    }

    #bookingForm button[type="submit"]:hover {
        background: #0c0;
    }

    #bookingMessage {
        color: #0f0;
        font-size: 15px;
        margin-top: 10px;
        text-align: center;
        min-height: 22px;
    }

    @media (min-width: 600px) {
        #bookingOverlay .booking-content {
            max-width: 400px;
            margin: 32px auto;
            padding: 32px 24px;
            border-radius: 16px;
        }
        #bookingOverlay .close-booking {
            top: 22px;
            right: 22px;
            font-size: 32px;
        }
        #bookingForm {
            max-width: 360px;
        }
        #bookingMessageIntro {
            padding: 32px 18px 24px 18px;
        }
    }

    /* Mobile CSS for Meet the Coach Overlay */
    #coachesOverlay .overlay-content {
        padding: 0;
        border-radius: 0;
        background: #181818;
        max-width: 100vw;
        min-height: 100vh;
        box-sizing: border-box;
    }

    .coaches-container {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 18px 10px 28px 10px;
        padding-bottom: 200px; /* Space for the header */
    }

    .coach-profile-card {
        background: #181818;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        padding: 18px 12px 14px 12px;
        margin-bottom: 10px;
    }

    .coach-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 12px;
    }

    .coach-image img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        border: 2px solid #0f0;
        background: #222;
    }

    .coach-info {
        color: #fff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }

    .coach-name {
        color: rgb(0, 0, 0);
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 2px;
        letter-spacing: 1px;
    }

    .coach-info h2 {
        color: #0f0;
        font-size: 16px;
        margin: 4px 0 10px 0;
        font-weight: 600;
    }

    .coach-info p {
        font-size: 15px;
        margin-bottom: 0;
    }

    @media (min-width: 600px) {
        #coachesOverlay .overlay-content {
            max-width: 500px;
            margin: 32px auto;
            border-radius: 16px;
            padding: 32px 28px;
        }
        .coaches-container {
            flex-direction: row;
            gap: 32px;
            padding: 24px 18px 32px 18px;
            justify-content: center;
        }
        .coach-profile-card {
            flex: 1 1 220px;
            max-width: 320px;
            margin-bottom: 0;
            padding: 24px 18px 18px 18px;
        }
        .coach-image img {
            width: 130px;
            height: 130px;
        }
        .coach-info {
            font-size: 16px;
            line-height: 1.7;
        }
        .coach-name {
            font-size: 22px;
        }
        .coach-info h2 {
            font-size: 18px;
        }
    }

    /* Mobile CSS for Contact Us Overlay */
    #contactOverlay .contact-overlay-content {
        padding: 0;
        border-radius: 0;
        background: #181818;
        max-width: 100vw;
        min-height: 100vh;
        box-sizing: border-box;
        margin: 0;
    }

    .contact-overlay-section {
        padding: 24px 12px 18px 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-overlay-section h2 {
        color: #0f0;
        font-size: 22px;
        margin-bottom: 18px;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700;
        text-align: center;
    }

    #contactFormOverlay {
        width: 100%;
        max-width: 340px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .input-group {
        display: flex;
        align-items: center;
        background: #222;
        border-radius: 6px;
        padding: 0 8px;
        margin-bottom: 10px;
    }

    .input-icon {
        margin-right: 6px;
        display: flex;
        align-items: center;
    }

    #contactFormOverlay input,
    #contactFormOverlay textarea {
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        font-size: 15px;
        font-family: inherit;
        flex: 1 1 0;
        padding: 10px 0;
        min-width: 0;
    }

    #contactFormOverlay textarea {
        min-height: 70px;
        resize: vertical;
    }

    .contact-send-btn {
        width: 100%;
        padding: 12px 0;
        background: #0f0;
        color: #181818;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.2s;
        margin-top: 8px;
    }

    .contact-send-btn:hover {
        background: #0c0;
    }

    .contact-close-btn {
        position: absolute;
        top: 18px;
        right: 18px;
        background: none;
        border: none;
        color: #0f0;
        font-size: 28px;
        cursor: pointer;
        z-index: 10;
    }

    .contact-close-btn {
        transform: rotate(90deg);
    }

    .about-close-btn {
        position: absolute;
        top: 55px;
        right: 25px;
        background: none;
        border: none;
        color: #0f0;
        font-size: 28px;
        cursor: pointer;
        z-index: 10;
    }

    .services-close-btn {
        position: absolute;
        top: 55px;
        right: 55px;
        background: none;
        border: none;
        color: #0f0;
        font-size: 28px;
        cursor: pointer;
        z-index: 10;
    }

    .coaches-close-btn {
        position: absolute;
        top: 55px;
        right: 85px;
        background: none;
        border: none;
        color: #0f0;
        font-size: 28px;
        cursor: pointer;
        z-index: 10;
    }

    .schedule-close-btn {
        position: absolute;
        top: 55px;
        right: 85px;
        background: none;
        border: none;
        color: #0f0;
        font-size: 28px;
        cursor: pointer;
        z-index: 10;
    }

    #contactFormMessage {
        color: #0f0;
        font-size: 15px;
        margin-top: 10px;
        text-align: center;
        min-height: 22px;
    }

    @media (min-width: 600px) {
        #contactOverlay .contact-overlay-content {
            max-width: 420px;
            margin: 32px auto;
            border-radius: 16px;
            padding: 32px 28px;
        }
        .contact-overlay-section {
            padding: 32px 18px 24px 18px;
        }
        #contactFormOverlay {
            max-width: 360px;
        }
        .contact-close-btn {
            top: 22px;
            right: 22px;
            font-size: 32px;
        }
    }

    /* Mobile CSS for Services Overlay */
    #servicesOverlay .overlay-content {
        padding: 0;
        border-radius: 0;
        background: #181818;
        max-width: 100vw;
        min-height: 100vh;
        box-sizing: border-box;
        padding-top: 255px;
    }

    .service-container {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 18px 10px 28px 10px;
    }

    .service-box {
        background: #181818;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        margin-bottom: 10px;
        padding: 0 0 14px 0;
    }

    .service-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #222;
        padding: 12px 0 0 0;
    }

    .service-image img {
        width: 100%;
        max-width: 320px;
        border-radius: 10px 10px 0 0;
        object-fit: cover;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    }

    .service-text {
        color: #fff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 15px;
        line-height: 1.5;
        padding: 14px 12px 0 12px;
    }

    .service-text h3 {
        color: #0f0;
        font-size: 18px;
        margin-bottom: 8px;
        margin-top: 0;
        text-align: left;
    }

    .service-text p {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .service-text ul {
        padding-left: 18px;
        margin-bottom: 8px;
    }

    .service-text li {
        color: #00ff00;
        font-size: 14px;
        margin-bottom: 4px;
    }

    @media (min-width: 600px) {
        #servicesOverlay .overlay-content {
            max-width: 700px;
            margin: 32px auto;
            border-radius: 16px;
            padding: 32px 28px;
        }
        .service-container {
            flex-direction: row;
            gap: 32px;
            padding: 24px 18px 32px 18px;
        }
        .service-box {
            flex: 1 1 220px;
            max-width: 320px;
            margin-bottom: 0;
            padding: 0 0 18px 0;
        }
        .service-image img {
            max-width: 320px;
            height: auto;
        }
        .service-text {
            font-size: 16px;
            line-height: 1.7;
            padding: 18px 14px 0 14px;
        }
        .service-text h3 {
            font-size: 22px;
        }
        .service-text li {
            font-size: 15px;
        }
    }

    /* Mobile CSS for About Us Overlay */
    #aboutUsOverlay .overlay-content {
        padding: 0;
        border-radius: 0;
        background: #181818;
        max-width: 100vw;
        min-height: 100vh;
        box-sizing: border-box;
    }

    .about-container {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 18px 10px 28px 10px;
    }

    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .about-image img {
        width: 100%;
        max-width: 320px;
        border-radius: 10px;
        object-fit: cover;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    }

    .about-text {
        color: #fff;
        font-family: 'Rajdhani', sans-serif;
        font-size: 15px;
        line-height: 1.5;
    }

    .about-text h1 {
        color: #0f0;
        font-size: 22px;
        margin-bottom: 10px;
        text-align: left;
        text-decoration: underline;
    }

    .about-text h2 {
        color: #0f0;
        font-size: 17px;
        margin: 18px 0 8px 0;
        text-align: left;
    }

    .about-text ul {
        padding-left: 18px;
        margin-bottom: 12px;
    }

    .about-text li {
        color: #00ff00;
        font-size: 14px;
        margin-bottom: 4px;
    }

    @media (min-width: 600px) {
        #aboutUsOverlay .overlay-content {
            max-width: 600px;
            margin: 32px auto;
            border-radius: 16px;
            padding: 32px 28px;
        }
        .about-container {
            flex-direction: row;
            gap: 32px;
            padding: 24px 18px 32px 18px;
        }
        .about-image {
            max-width: 260px;
            flex: 0 0 260px;
            margin-bottom: 0;
            align-items: flex-start;
        }
        .about-image img {
            max-width: 260px;
            height: auto;
        }
        .about-text {
            font-size: 16px;
            line-height: 1.7;
        }
        .about-text h1 {
            font-size: 28px;
        }
        .about-text h2 {
            font-size: 20px;
        }
        .about-text li {
            font-size: 15px;
        }
    }

    /* Mobile CSS for schedule overlay */
    .schedule-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 10px 0;
    }

    .schedule-item {
        background: #181818;
        border-radius: 10px;
        box-shadow: 0 1px 8px rgba(0,0,0,0.10);
        padding: 14px 1px;
        color: #fff;
        font-family: 'Rajdhani', sans-serif;
        margin: 0 15px;
        margin-bottom: 50px; /* Space for the header */
        position: relative;
        margin-right: 55px; /* Adjusted for better alignment */
    }

        .schedule-item::before {
        content: '\1F4C5';
        display: none !important;
        }

    .schedule-item h3 {
        margin: 0 0 8px 0;
        font-size: 16px;
        color: #0f0;
        font-weight: 700;
        letter-spacing: 1px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .schedule-location {
        font-size: 13px;
        color: #fff;
        font-weight: 500;
        margin-left: 6px;
        background: #222;
        border-radius: 4px;
        padding: 2px 7px;
    }

    .schedule-times {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .schedule-times li {
        font-size: 14px;
        padding: 2px 0;
        border-bottom: 1px solid #222;
    }

    .schedule-times li:last-child {
        border-bottom: none;
    }

    

/* Mobile CSS for scroll-down-indicator */
.scroll-down-indicator {
    bottom: 85px;
    left: 43%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
    color: #0f0;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 12px;
    letter-spacing: 1px;
    pointer-events: none;
}

.arrow-down {
    margin-top: 4px;
    width: 22px;
    height: 22px;
    border-left: 3px solid #0f0;
    border-bottom: 3px solid #0f0;
    transform: rotate(-45deg);
    animation: bounce 1.5s infinite;
}


  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0) rotate(-45deg);
    }
    40% {
      transform: translateX(-50%) translateY(8px) rotate(-45deg);
    }
    60% {
      transform: translateX(-50%) translateY(4px) rotate(-45deg);
    }
  }

@media (min-width: 600px) {
    .scroll-down-indicator {
        display: none;
    }
}

/* Mobile CSS for booking content */
.booking-content {
    padding: 20px 12px;
    background: #181818;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    margin: 24px 0;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
}

.booking-content h2,
.booking-content h3 {
    margin-top: 0;
    color: #0f0;
    font-size: 18px;
    letter-spacing: 1px;
}

.booking-content label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.booking-content input,
.booking-content select,
.booking-content textarea {
    width: 100%;
    padding: 10px 8px;
    margin-bottom: 14px;
    border: 1px solid #222;
    border-radius: 6px;
    background: #222;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}

.booking-content button,
.booking-content input[type="submit"] {
    width: 100%;
    padding: 12px 0;
    background: #0f0;
    color: #181818;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.booking-content button:hover,
.booking-content input[type="submit"]:hover {
    background: #0c0;
}

@media (min-width: 600px) {
    .booking-content {
        max-width: 400px;
        margin: 32px auto;
        padding: 32px 24px;
        font-size: 16px;
    }
}

/* Mobile CSS for schedule items */
.schedule-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 12px 0;
}

.schedule-item {
    background: #181818;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.10);
    padding: 16px 12px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
}

.schedule-item h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    color: #0f0;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.schedule-location {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin-left: 6px;
    background: #222;
    border-radius: 4px;
    padding: 2px 7px;
}

.schedule-times {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-times li {
    font-size: 15px;
    padding: 2px 0;
    border-bottom: 1px solid #222;
}

.schedule-times li:last-child {
    border-bottom: none;
}

#testimonials {
    min-height: 86vh; /* Enough space for the carousel */
    background: url('../Images/CoachSectionIMG.webp') no-repeat center/cover !important; 
    text-shadow: #000000 0px 22px 50px;
    font-family: 'Rajdhani', sans-serif !important;
}

@media (min-width: 600px) {
    .schedule-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    .schedule-item {
        min-width: 220px;
        max-width: 260px;
        flex: 1 1 220px;
        margin: 0;
        padding: 20px 16px;
    }
    .schedule-item h3 {
        font-size: 19px;
    }
    .schedule-times li {
        font-size: 16px;
    }
}

/* Mobile CSS for testimonials section */
#testimonials {
    padding: 32px 0 24px 0;
    background: #111;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
}

#testimonials h1 {
    color: #0f0;
    font-size: 22px;
    margin-bottom: 18px;
    letter-spacing: 1px;
    font-weight: 700;
}

.carousel-containerT {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto;
    max-width: 100vw;
}

.carouselT {
    flex: 1 1 0;
    display: flex;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.testimonial-card {
    min-width: 100%;
    max-width: 100%;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.4s, transform 0.4s;
    background: #181818;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 22px 14px 18px 14px;
    margin: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

.testimonial-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #0f0;
    background: #222;
     margin-right: 40px;
}

.testimonial-text {
    font-size: 10px;
    color: #fff;
    margin-bottom: 12px;
    font-style: italic;
    line-height: 1.1;
    margin-right: 40px;
}

.testimonial-author {
    font-size: 15px;
    color: #0f0;
    font-weight: 700;
    margin-bottom: 2px;
    margin-top: 0;
    margin-right: 40px;
}

.testimonial-subtext {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 55px;
    margin-right: 40px;
}

.nav-button {
    background: none;
    border: none;
    padding: 0 8px;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    transition: filter 0.2s;
    filter: brightness(1);
}

.nav-button:active {
    filter: brightness(0.7);
}

@media (min-width: 600px) {
    #testimonials {
        padding: 48px 0 36px 0;
    }
    #testimonials h1 {
        font-size: 28px;
    }
    .carousel-containerT {
        max-width: 700px;
    }
    .testimonial-card,
    .carouselT {
        min-width: 420px;
        max-width: 420px;
        padding: 32px 28px 28px 28px;
    }
    .testimonial-img {
        width: 64px;
        height: 64px;
    }
    .testimonial-text {
        font-size: 17px;
    }
    .testimonial-author {
        font-size: 17px;
    }
    .testimonial-subtext {
        font-size: 15px;
    }
}

/* Force hide menu overlay when not shown */
.menu-overlay {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    top: -100vh !important;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    transition: none !important;
}
.menu-overlay.show {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    top: 0 !important;
    transition: top 0.4s ease !important;
}
}