* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("../Assest/bg.jpg");
    background-size: contain;
    color: black;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: transparent;
    transition: background 0.3s;
}

header.scrolled {
    /* background-color: rgba(0, 0, 0, 0.8); */
}

.menu-toggle {
    width: 15%;
    font-size: 30px;
    cursor: pointer;
    color: #eb5b25;
    z-index: 1001;
    /* right: 0px; */
}

.logo img {
    height: 100px;
}

.header-btn {
    background-color: #eb5b25;
    color: white;
    padding: 8px;
    border: none;
    position: relative;
    /* display: none; */
    /* z-index: 1000; */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 24px;
}

.header-btn:hover {
    background: white;
    color: black;
}

.mobile-menu {
    position: fixed;
    text-align: center;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #111;
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-top: 0px;
}

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

.mobile-menu-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.mobile-menu-logo img {
    height: 120px;
}

.mobile-menu-items {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    color: #ebd8b4;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #eb5b25;
}

.mobile-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .header-btn {
        font-size: 10px;
    }

    .logo img {
        height: 40px;
    }
}

/* hero section */
.hero-section {
    width: 100%;
    height: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section-heading {
    padding: 30px;
    color: #eb5b25;
    font-size: 26px;
}

.heo-section-button button {
    border-radius: 5px;
    font-size: 32px;
    padding: 10px;
    background-color: #eb5b25;
    color: white;
    border: none;
}

@media (max-width: 768px) {
    .hero-section-heading h1 {
        font-size: 30px;
    }
    .heo-section-button button{
        font-size: 20px;
    }
}

/* hero section */

/* counter */
.counter-section {
    /* background-image: url("Assest/counter-bg.avif"); */
    background-color: #1d1d1b;
    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: 72px;
    font-weight: bold;
    color: #ebd8b4;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 18px;
    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 */

/* details  */

.mystry-page-wraper {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.mystry-details-section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    box-sizing: border-box;
    border-radius: 12px;
}

.mystry-details-left,
.mystry-details-right {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.mystry-details-left p {
    font-size: 20px;
}

.mystry-details-left .second {
    font-size: 17px;
    font-weight: 500;
}

.mystry-details-right {
    background-color: white;
    border-radius: 12px;
}

.mystry-details-right ol {
    padding-left: 20px;
    font-size: 18px;
}

/* ✅ Responsive styles for mobile screens */
@media (max-width: 768px) {

    .mystry-details-left,
    .mystry-details-right {
        width: 100%;
        padding: 15px;
    }

    .mystry-details-left h1 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .mystry-details-left p,
    .mystry-details-right ol {
        font-size: 16px;
    }

    .mystry-details-left .second {
        font-size: 15px;
    }

    .mystry-details-section {
        flex-direction: column;
        padding: 10px;
    }
}


/* details  */

/* success rate */
.custom-slider-wrapper {
    background: url('../Assest/mystry-bg.webp') no-repeat center center / cover;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 12px;
}

.custom-slider-container {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
}

.custom-slider-slide {
    display: flex;
    min-width: 100%;
    color: #fcefdc;
    padding: 20px;
    align-items: center;
    position: relative;
    gap: 30px;
    box-sizing: border-box;
}

.custom-slider-left {
    flex: 1;
    display: flex;
    justify-content: center;
    transform: rotate(-3deg);
}

.custom-slider-image {
    width: 90%;
    max-width: 300px;
    border-radius: 8px;
}

.custom-slider-right {
    flex: 2;
    position: relative;
}

.custom-slider-title {
    font-size: 40px;
    margin-bottom: 10px;
}

.custom-slider-desc {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.custom-slider-success label,
.custom-slider-difficulty label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9em;
}

.custom-slider-progress-bar {
    background: #fff;
    height: 30px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.custom-slider-progress {
    background: #493926;
    color: #fff;
    height: 100%;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
}

.custom-slider-level {
    background: #493926;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 30px;
}

.custom-slider-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 12px 24px;
    background: #ff5c1f;
    border: none;
    color: #fff;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.custom-slider-btn:hover {
    background: #e14e0f;
}

.custom-slider-dots {
    text-align: center;
    margin-top: 20px;
}

.custom-slider-dots span {
    display: inline-block;
    height: 12px;
    width: 12px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
}

.custom-slider-dots .active {
    background: #fff;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-slider-slide {
        flex-direction: column;
    }

    .custom-slider-btn {
        position: static;
        margin-top: 20px;
    }

    .custom-slider-right {
        text-align: center;
    }

    .custom-slider-title {
        font-size: 1.8rem;
        text-align: start;

    }

    .custom-slider-desc {
        font-size: 1rem;
        text-align: start;
    }
    .custom-slider-difficulty{
        text-align: left;
    }

}


/* success rate */

/* testomonial */

.testimonial-container {
    max-width: 80%;
    margin: 30px auto;
    /* padding: 20px; */
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.quote-icon {
    font-size: 80px;
    line-height: 0.7;
    color: #493926;
    margin-right: 10px;
    margin-top: -5px;
}

.author-name {
    margin: 0;
    font-size: 2rem;
    color: #493926;
    line-height: 1.2;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #493926;
    font-family: 'Rajdhani';
    margin: 0;
    padding-left: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0px;
    padding-bottom: 12px;
}

.slider-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #493926;
    transform: scale(1.2);
}

/* Animation Classes */
.slide-left {
    animation: slideLeft 0.5s ease;
}

.slide-right {
    animation: slideRight 0.5s ease;
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial {
        padding: 20px;
    }

    .quote-icon {
        font-size: 40px;
        margin-top: -3px;
    }

    .author-name {
        font-size: 2.5rem;
    }

    .testimonial-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .testimonial {
        /* padding: 15px; */
    }

    .quote-icon {
        font-size: 35px;
        margin-right: 8px;
    }
}

/* pricing wrapper */
.custom-pricing-wrapper {
    background-color: #1d1d1b;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.custom-pricing-container {
    width: 1100px;
    /* You can change the width manually */
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

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

.custom-pricing-text h2 {
    color: #f25c22;
    font-size: 48px;
    margin-bottom: 20px;
}

.custom-pricing-text p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
    font-style: italic;
}

.custom-pricing-table {
    flex: 1.5;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.custom-pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.custom-pricing-table th,
.custom-pricing-table td {
    padding: 20px;
    text-align: left;
    color: #121210;
}

.custom-pricing-table thead th {
    background-color: #ec5523;
    color: white;
    font-weight: bold;
}

.custom-pricing-table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.custom-pricing-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .custom-pricing-container {
        flex-direction: column;
        width: 100%;
    }

    .custom-pricing-text h2 {
        font-size: 36px;
    }

    .custom-pricing-table table,
    .custom-pricing-table th,
    .custom-pricing-table td {
        font-size: 14px;
    }
}

/* pricing wrapper */

/* question tab */

.tab-btn {
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 18px;
    background-color: #eb5b25;
    color: white;
}

.booking-section-wrapper {
    padding: 40px 20px;
    margin-bottom: -50px;
    background-color: #1d1d1b;
    font-family: 'Segoe UI', sans-serif;
}

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

.booking-section-tab {
    padding: 12px 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: 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;
    }
}

/* question tab */


/* Footer Styles */
.footer {
    background-color: #222;
    color: #fff;
    margin-top: 50px;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Logo Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    width: 200px;
    /* margin-bottom: 20px; */
}

.footer-description {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'Rajdhani';
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    background-color: #eb5b25;
    color: #ffffff;
    font-size: 24px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    background: #000;
    transform: translateY (-3px);
}

/* Links Sections */
.footer-section h3 {
    color: #ebd8b4;
    font-size: 24px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 600;
}

/* .footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ff6b6b;
} */

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    font-family: 'Rajdhani';
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #eb5b25;
    padding-left: 5px;
}

.footer-links li:not(a) {
    color: #ffffff;
    font-size: 16px;
}

/* 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';
}

/* Copyright */
.copyright {
    background-color: #aa1b44;
    height: 135px;
    display: flex;
    font-family: 'Rajdhani';
    justify-content: space-between;
    text-align: center;
    border-top: 1px solid #444;
    color: white;
    padding: 10px;
    font-size: 18px;
}

.copyright a {
    color: #ff6b6b;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        padding-left: 0;
        color: #ff6b6b;
    }
}

/* FLOT ICON */

.float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 12px;
    left: 16px;
    background-color: #eb5a25;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
}

.float1 {
    position: fixed;
    bottom: 34px;
    left: 96px;
    background-color: #222222;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
    text-decoration: none;
    font-family: 'Orbitron';
    font-size: 1rem;
    line-height: 1.4em;
}

.my-float {
    margin-top: 16px;
}