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

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url("../Assest/corporate-event.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.right-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    /* adjust as needed */
    height: 100%;
    background-image: url('https://mlqqvsi21e7s.i.optimole.com/w:222/h:360/q:mauto/f:best/https://challengerooms.in/wp-content/uploads/2023/10/steel-optimized.png');
    /* your fence/mesh pattern */
    background-repeat: repeat-y;
    background-size: contain;
    z-index: 0;
    /* ensure it's behind content */
    opacity: 1;
    pointer-events: none;
    /* allows clicking through */
}

@media screen and (max-width: 768px) {
    .right-overlay {
        display: none;
        /* optional: hide on small screens */
    }
}

body::before {
    /* content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20vw; */
    /* 30% of screen width on right side */
    /* height: 100vh;
    background-image: url('https://mlqqvsi21e7s.i.optimole.com/w:222/h:360/q:mauto/f:best/https://challengerooms.in/wp-content/uploads/2023/10/steel-optimized.png'); */
    /* Right-side overlay image */
    /* background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none; */
}

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;
    }
}


/* header close */

.hero-section-group {
    width: 100%;
    height: 500px;
    margin-top: 70px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-section-group h1 {
    font-size: 3.3rem;
    color: white;
    padding-bottom: 10px;
}

.hero-section-group p {
    font-size: 1.4rem;
    color: white;
}

.hero-section-group button {
    border: none;
    background-color: #aa1b44;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 26px;
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-section-group h1 {
        font-size: 1.8rem;
    }

    .hero-section-group p {
        font-size: 1.6rem;
        padding: 20px;
    }
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: transparent;
    /* or add dark background if needed */
    padding: 10px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: white;
    font-size: 20px;
    font-family: 'Arial Black', sans-serif;
    white-space: nowrap;
}

.check-icon {
    color: #f7941e;
    /* orange shade similar to your screenshot */
    margin-right: 8px;
    font-size: 24px;
}

/* Responsive: stack items on small screens */
@media (max-width: 600px) {
    .feature-list {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* booking */
.booking-section-wrapper {
    padding: 40px 20px;
}

.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 */
.click-to-faq {
    padding: 10px;
    margin: 20px;
    font-size: 18px;
    background-color: #ef5c24;
    color: white;
    border: none;
}

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

    /* FIXED: Keep tab buttons horizontal on mobile */
    .booking-section-tabs {
        margin-left: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
    }

    .booking-section-tab {
        width: auto;
        flex: 1 1 auto;
        text-align: center;
        padding: 20px 16px;
        font-size: 16px;
    }

    .booking-section-heading {
        font-size: 30px;
    }
}


/* bookung */

/* Footer Styles */
.footer {
    background-color: #222;
    color: #fff;
    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;
}

/* footer */