


/* hero video section */

.video-section {
    position: relative;
    width: 100%;
    height: 77vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    width: 80%;
    padding: 20px;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.tagline {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn {
    
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Fallback image if video doesn't load */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* Behind video but in front of default background */
    display: none;
    /* Hidden by default */
}

/* Show fallback if video fails to load */
.video-fallback.active {
    display: block;
}

/* Loading overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    transition: opacity 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .description {
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 12px;
        font-size: 0.8rem;
    }

    .content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 28px;
    }

    .description {
        font-size: 1rem;
    }
}

/* hero video section */

/* counter section */
.counter-section {
    background-image: url("../Assest/counter-bg.avif");
    background-size: cover;
    padding: 20px 20px;
    text-align: center;
}

.counters-container {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.counter-item {
    padding: 20px;
    margin: 10px;
    flex: 1;
    min-width: 150px;
}

.counter-number {
    font-size: 4.5rem;
    font-weight: bold;
    color: #ebd8b4;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 20px !important;
    color: #eb5b25;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .counter-number {
        font-size: 36px;
    }

    .counter-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .counters-container {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .counter-item {
        width: 48%;
        min-width: unset;
        box-sizing: border-box;
        padding: 15px 10px;
        margin: 1%;
        text-align: center;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-label {
        font-size: 14px;
    }
}

/* counter section */

/* heading */

.challenge-pragraph {
    text-align: center;
    margin: 30px;
    font-size: 1.4rem !important;
    padding: 30px 0px;
    color: black;
}

.challenge-pragraph span {
    font-size: 3rem;
    font-weight: bold;
    color: #493926;
}

@media (max-width: 768px) {
    .challenge-pragraph {
        text-align: left;
        font-size: 1rem;
    }
}

/* heading */

/* studio slider */
.slider-container {
    position: relative;
    width: 1300px;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100vh;
    min-height: 600px;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background-image: url(Assest/slider-content.webp);
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
}

.slide-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #eb5b25;
    text-align: center;
    text-transform: uppercase;
}

.slide-subheading {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
    text-transform: uppercase;
}

.slide-content h5 {
    color: white;
    font-size: 14px;
    text-align: center;
}

.divider {
    border-top: 1px dashed #f7f7f7;
    height: 0;
    margin: 10px 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.challenge-men-icon img {
    height: 50px;
}

.stat-icon {
    font-size: 1.5rem;
    color: #ff6600;
}

.stat-value {
    color: red;
    color: white;
    text-align: center;
    font-size: 3.1rem;
    font-weight: bold;
    min-width: 50px;
    display: inline-block;
}

.stat-value2 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('Assest/bumb.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    font-size: 3rem;
    color: #493926;
    text-align: center;
    line-height: 1;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    padding-top: 0px;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
    text-transform: uppercase;
}

.counter-bum {
    background-image: url('Assest/bumb.svg');
    background-size: auto;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px !important;
}

.features-title {
    font-size: 1.2rem !important;
    color: #eb5b25;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.feature-icon {
    color: #ff6600;
}

.highlight {
    font-weight: bold;
    color: #ff6600;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-dot.active {
    background-color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .slide-content {
        left: 0%;
        padding: 20px;
        width: 90%;
        flex-direction: column;
    }
	.slider-container{
		width: 100%;
	}
	.slide img {
		width: 100%;
    }

    .studio-image {
        display: block;
    }

    .slide-heading {
        font-size: 2rem;
    }

    .slide-subheading {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .features-list {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 15px;
    }

    .slide-heading {
        font-size: 1.8rem;
    }

    .stats-container {
        justify-content: center;
        gap: 50px;
    }
}

/* studio slider */

/* how to play */
.how-to-play {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 2.2rem !important;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
    text-transform: uppercase;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.step-card {
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
}

.step-icon img {
    height: auto;
    max-width: 100%;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.step-description {
    color: #666;
    font-size: .9rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-card {
        padding: 25px 20px;
    }
}

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

    .step-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .step-title {
        font-size: 1.2rem;
    }
}

/* how to play */

/* video  */
/* .footer-video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
} */

/* .footer-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.challenge-footer-video {
    width: 100%;
    /* Full screen on desktop */
    position: relative;
    overflow: hidden;
}

.challenge-footer-video video {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .challenge-footer-video {
        display: none;
        /* Let video height adapt naturally */
    }

}

/* video  */

/* pricing section */
.custom-pricing-section {
    background-color: #1d1d1b;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
}

.custom-pricing-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.custom-pricing-text {
    flex: 1;
    min-width: 280px;
}

.custom-pricing-heading {
    font-size: 2.5rem;
    color: #ff5c1f;
    margin-bottom: 20px;
}

.custom-pricing-text p {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.custom-pricing-text strong {
    font-weight: bold;
    color: #fff;
}

.custom-pricing-tables {
    flex: 1.5;
    min-width: 300px;
}

.custom-price-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    color: #000;
}

.custom-price-header,
.custom-price-body {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.custom-price-header span {
    background-color: #ff5c1f;
    color: #000;
    font-weight: bold;
    flex: 1;
    padding: 20px 10px;
    font-size: 1.1rem;
    border-right: 1px solid #fff;
}

.custom-price-header span:last-child {
    border-right: none;
}

.custom-price-header small {
    font-size: 0.7rem;
    display: block;
    margin-top: 5px;
}

.custom-price-body span {
    flex: 1;
    padding: 20px 10px;
    font-size: 1rem;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.custom-price-body span:last-child {
    border-right: none;
}

.custom-price-notes {
    font-size: 0.9rem;
    color: #ddd;
    margin-top: 20px;
    list-style: disc;
    padding-left: 20px;
}

.custom-price-notes li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-pricing-container {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-price-header span,
    .custom-price-body span {
        font-size: 0.95rem;
        padding: 15px 5px;
    }

    .custom-pricing-heading {
        font-size: 2rem;
    }
}


/* pricing section */

/* booking and any question */
.booking-section-wrapper {
    padding: 40px 20px;
    background-color: #1d1d1b;
}

.booking-section-tabs {
    display: flex;
    margin-left: 190px;
    position: relative;
    z-index: 10;
    gap: 10px;
}

.booking-section-tab {
    padding: 30px 24px;
    font-weight: bold;
    font-size: 18px;
    border: none;
    cursor: pointer;
    background-color: #ef5c24;
    color: white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.booking-section-tab.active {
    background-color: white;
    color: #1d1d1b;
}

.booking-section-tab-content-wrapper {
    max-width: 1100px;
    margin: auto;
}

.booking-section-container {
    display: none;
    background-color: white;
    padding: 40px;
    border-radius: 0 0 4px 4px;
    position: relative;
    top: -1px;
}

.booking-section-container.active {
    display: block;
}

.booking-section-heading {
    font-size: 48px;
    color: #3f2d17;
    margin-bottom: 20px;
}

.booking-section-description,
.booking-section-sub-description {
    font-size: 20px !important;
    color: #111;
    margin-bottom: 20px;
}

.booking-section-players {
    margin-top: 40px;
}

.booking-section-players h3 {
    color: #ef5c24;
    font-size: 24px;
    margin-bottom: 10px;
}

.booking-section-players label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.booking-section-player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.booking-section-player-controls button {
    width: 40px;
    height: 40px;
    font-size: 24px;
    border-radius: 50%;
    border: 2px solid #ef5c24;
    background: none;
    color: #ef5c24;
    cursor: pointer;
}

.booking-section-player-controls span {
    font-size: 24px;
}

.booking-section-package-heading {
    margin-top: 50px;
    color: #ef5c24;
    font-size: 24px;
    margin-bottom: 20px;
}

.booking-section-packages {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.booking-section-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.booking-section-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.booking-section-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.booking-section-card p {
    font-size: 18px;
    color: #ef5c24;
}

/* FAQ */
.booking-section-faq {
    margin-top: 30px;
}

.booking-section-faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.booking-section-faq-question {
    background: none;
    background-color: #eb5b25;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    text-align: left;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.booking-section-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    padding: 20px;
    color: white;
}

.booking-section-faq-question.open::after {
    content: '-';
}

.booking-section-faq-answer {
    display: none;
    margin-top: 8px;
    color: #444;
    font-size: 16px;
}

.booking-section-faq-answer.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-section-packages {
        flex-direction: column;
        align-items: center;
    }

    .booking-section-tabs {
        margin-left: -30px;
        flex-direction: row;
        /* ✅ Force row direction even on mobile */
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .booking-section-tab {
        width: auto;
        padding: 10px 16px;
        font-size: 16px;
    }

    .booking-section-heading {
        font-size: 20px;
        text-align: center;
    }
}

/* booking and any question */


/* Popup styles */
.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.custom-popup-form {
    background: linear-gradient(to bottom right, #fff, #fef2e0);
    color: #000;
    padding: 40px 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 179, 71, 0.6);
    position: relative;
    text-align: center;
}

.custom-popup-form h3 {
    margin-top: 0;
    font-size: 2rem;
    color: #ff6600;
}

.custom-popup-form p {
    margin-bottom: 25px;
    color: #444;
}

.custom-popup-form input,
.custom-popup-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.custom-popup-form button.send {
    background: #ffb347;
    color: #000;
    padding: 12px 25px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px #ffb347;
    transition: background 0.3s ease;
}

.custom-popup-form button.send:hover {
    background: #ffa733;
}

.custom-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    background: transparent;
    border: none;
}


/* custom location with map */


/* Contact Info */
.contact-info {
    color: #bbb;
    padding: 8px;
}

.contact-info i {
    font-size: 20px;
}


.contact-info span {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Rajdhani';
}



