@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 100%;
}

/* Keep the existing navbar-brand styles for fallback */
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #D5F637 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.7rem;
    /* Reduced from 1rem */
    padding: 0.3rem 1rem !important;
    /* Reduced padding */
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    /* Added smaller font size */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: #D5F637;
    color: black !important;
    transform: translateY(-2px);
}

.cart-btn {
    background: transparent;
    border: 2px solid #D5F637;
    color: #D5F637;
    padding: 0.5rem 1.2rem;
    /* Increased from 0.3rem 0.8rem */
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    /* Increased from 0.9rem */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-btn:hover {
    background: #D5F637;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(213, 246, 55, 0.3);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    background: #000;
    /* Changed from blue gradient to simple black */
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
}

.carousel-inner,
#heroCarousel {
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: relative;
    height: 100vh;
    width: 100%;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active::before {
    opacity: 0.8;
}

.carousel-item:nth-child(1)::before {
    background-image: url('../assets/gallery/Shotcom_IMG_9457.JPG');
}

.carousel-item:nth-child(2)::before {
    background-image: url('../assets/images/bday-juhu/2.jpg');
}

.carousel-item:nth-child(3)::before {
    background-image: url('../assets/images/pvt-byculla/2.jpg');
}

.carousel-item:nth-child(4)::before {
    background-image: url('../assets/bg/shoot-copy.jpg');
}

.carousel-item:nth-child(5)::before {
    background-image: url('../assets/arenas/andheri_link_road/27.jpg');
}

.carousel-item .row {
    height: 100%;
    align-items: center;
    padding: 0 15px;
    margin: 0;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin-left: 5%;
    position: relative;
    z-index: 3;
    color: white;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    overflow: hidden;
}

.hero-title .line-1 {
    display: block;
    transform: translateX(-100%);
    transition: transform 0.8s ease-out;
    transition-delay: 0.5s;
}

.hero-title .line-2 {
    display: block;
    transform: translateX(100%);
    transition: transform 0.8s ease-out;
    transition-delay: 0.7s;
}

.carousel-item.active .hero-title .line-1,
.carousel-item.active .hero-title .line-2 {
    transform: translateX(0);
}

.hero-title .highlight {
    color: #D5F637;
    text-shadow: 0 0 20px rgba(213, 246, 55, 0.5);
}

.view-more-btn {
    background: #D5F637;
    color: black;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s;
}

.carousel-item.active .view-more-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Navigation Dots */
.hero-nav {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.hero-nav-dot {
    width: 35px;
    /* Reduced from 50px */
    height: 35px;
    /* Reduced from 50px */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin: 0.7rem 0;
    /* Reduced from 1rem */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    /* Added smaller font size */
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-dot.active {
    background: #D5F637;
    color: black;
    border-color: #D5F637;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(213, 246, 55, 0.7);
    font-weight: 700;
}

/* Remove the countdown after element */
.hero-nav-dot.active::after {
    display: none;
}

.section-title-exp {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: -25px;
}

/* Corporate Events Section */
.corporate-events-section {
    background: #1a2332;
    padding: 5rem 0 2rem;
    color: white;
    position: relative;
}

.corporate-subtitle {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.corporate-tagline {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #D5F637;
}

.corporate-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.venues-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #D5F637;
    text-align: center;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.venue-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(213, 246, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.venue-card:hover {
    background: rgba(213, 246, 55, 0.1);
    transform: translateY(-5px);
    border-color: #D5F637;
}

.venue-card i {
    font-size: 2rem;
    color: #D5F637;
    margin-bottom: 1rem;
    display: block;
}

.venue-card span {
    font-weight: 600;
    font-size: 1rem;
}

.corporate-btn {
    background: #D5F637;
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.corporate-btn:hover {
    background: rgba(213, 246, 55, 0.8);
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(213, 246, 55, 0.3);
}

.corporate-btn-outline {
    background: transparent;
    color: #D5F637;
    border: 2px solid #D5F637;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.corporate-btn-outline:hover {
    background: #D5F637;
    color: black;
    transform: translateY(-3px);
}

/* Activities Scroller */
.activities-scroller {
    background: #D5F637;
    color: black;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 3rem;
}

.scroller-content {
    display: inline-block;
    animation: scroll 40s linear infinite;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter Tight', sans-serif;
}

/* Birthday Parties Section */
.birthday-parties-section {
    background: #0d0d0d;
    padding: 5rem 0 2rem;
    color: white;
    position: relative;
}

.birthday-subtitle {
    font-size: 1.7rem;
    font-weight: 700;
    color: #D5F637;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.birthday-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-box {
    background: linear-gradient(135deg, #D5F637, #ffff00);
    color: black;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(213, 246, 55, 0.3);
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.what-we-bring-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #D5F637;
    text-align: center;
    text-transform: uppercase;
}

.bring-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.bring-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(213, 246, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bring-item:hover {
    background: #a3b350;
    transform: translateY(-5px);
    border-color: #D5F637;
}

.bring-item i {
    font-size: 2rem;
    color: #D5F637;
    margin-bottom: 1rem;
    display: block;
}

.bring-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(213, 246, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(213, 246, 55, 0.1);
    border-color: #D5F637;
    transform: translateY(-5px);
}

.info-card h5 {
    color: #D5F637;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card li:last-child {
    border-bottom: none;
}

.game-modes-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #D5F637;
    text-align: center;
    text-transform: uppercase;
}

.game-modes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.game-mode {
    background: #D5F637;
    color: black;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.game-mode:hover {
    background: #D5F637;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(213, 246, 55, 0.4);
}

.photo-shoot-card {
    background: linear-gradient(135deg, #D5F637, #D5F637);
    color: black;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px #D5F637;
}

.photo-shoot-card h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.photo-shoot-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.final-message {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #D5F637;
    text-align: center;
}

/* Private Events Section */
.private-events-section {
    background: #1a2332;
    padding: 5rem 0 2rem;
    color: white;
}

.private-subtitle {
    font-size: 1.7rem;
    font-weight: 700;
    color: #D5F637;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.private-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Special styling for the last two cards to center them */
.event-types-grid .event-type-card:nth-last-child(2) {
    grid-column: 2;
}

.event-types-grid .event-type-card:last-child {
    grid-column: 3;
}

.event-type-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(213, 246, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.event-type-card:hover {
    background: rgba(213, 246, 55, 0.1);
    transform: translateY(-5px);
    border-color: #D5F637;
}

.event-type-card i {
    font-size: 2rem;
    color: #D5F637;
    margin-bottom: 1rem;
    display: block;
}

.event-type-card span {
    font-weight: 600;
    font-size: 1rem;
}

/* Shoots/Projects Section */
.shoots-projects-section {
    background: #0d0d0d;
    padding: 5rem 0 2rem;
    color: white;
}

.shoots-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #D5F637;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.shoots-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.usp-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #D5F637;
    text-align: center;
    text-transform: uppercase;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.usp-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(213, 246, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.usp-item:hover {
    background: rgba(213, 246, 55, 0.1);
    transform: translateY(-5px);
    border-color: #D5F637;
}

.usp-item i {
    font-size: 2rem;
    color: #D5F637;
    margin-bottom: 1rem;
    display: block;
}

.usp-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.equipment-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #D5F637;
    text-align: center;
    text-transform: uppercase;
}

.equipment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(213, 246, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center; /* center contents horizontally */
    transition: all 0.3s ease;
}

.equipment-item:hover {
    background: rgba(213, 246, 55, 0.1);
    border-color: #D5F637;
    transform: translateY(-5px);
}

.equipment-number {
    background: #D5F637;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.equipment-details h5 {
    color: #D5F637;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.equipment-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.projects-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #D5F637;
    text-align: center;
    text-transform: uppercase;
    word-spacing: 5px;
}

.projects-links {
    text-align: center;
    padding: 2rem;
    background: rgba(213, 246, 55, 0.1);
    border-radius: 10px;
    margin-bottom: 3rem;
}

.projects-note {
    color: #D5F637;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Footer Section */
.footer-section {
    background-color: #111;
    padding: 5rem 0 2rem;
    color: #fff;
    position: relative;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #D5F637;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #D5F637;
    color: #000;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #D5F637;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-menu a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #D5F637;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-menu a:hover {
    color: #D5F637;
    padding-left: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: #D5F637;
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #D5F637;
}

/* Our Arenas Section */
.our-arenas-section {
    background: #1a2332;
    padding: 5rem 0 2rem;
    color: white;
}

.arenas-subtitle {
    font-size: 1.7rem;
    font-weight: 700;
    color: #D5F637;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.arenas-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.what-we-provide-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #D5F637;
    text-align: center;
    text-transform: uppercase;
    word-spacing: 10px;
}

.locations-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #D5F637;
    text-align: center;
    text-transform: uppercase;
    word-spacing: 10px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    height: 400px;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.location-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.location-card:hover .location-overlay {
    background: linear-gradient(45deg, rgba(213, 246, 55, 0.9), rgba(213, 246, 55, 0.7));
    color: black;
}

.location-overlay .location-number {
    background: #D5F637;
    color: black;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(213, 246, 55, 0.3);
}

.location-card:hover .location-overlay .location-number {
    background: black;
    color: #D5F637;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.location-overlay .location-details h5 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.location-card:hover .location-overlay .location-details h5 {
    color: black;
    text-shadow: none;
}

.location-overlay .location-details p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.location-card:hover .location-overlay .location-details p {
    color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.location-overlay .location-details .view-gallery {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-style: italic;
    transition: all 0.3s ease;
}

.location-card:hover .location-overlay .location-details .view-gallery {
    color: rgba(0, 0, 0, 0.7);
}

/* Arena Modal Styles */
.arena-modal-content {
    background: #1a2332;
    border: none;
    border-radius: 15px;
}

.arena-modal-header {
    background: linear-gradient(135deg, #D5F637, #b8d628);
    color: black;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.arena-modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.arena-modal-body {
    padding: 2rem;
    color: white;
}

.arena-info .arena-name {
    color: #D5F637;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.arena-info .arena-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Media Tabs */
.arena-media-tabs {
    border-bottom: 2px solid rgba(213, 246, 55, 0.3);
    margin-bottom: 2rem;
}

.arena-media-tabs .nav-link {
    background: transparent;
    border: 2px solid rgba(213, 246, 55, 0.3);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    margin-right: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.arena-media-tabs .nav-link:hover {
    color: #D5F637;
    border-color: #D5F637;
    transform: translateY(-2px);
}

.arena-media-tabs .nav-link.active {
    background: #D5F637;
    color: black;
    border-color: #D5F637;
    box-shadow: 0 5px 15px rgba(213, 246, 55, 0.3);
}

.arena-media-tabs .nav-link i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Photos Grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.no-videos {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-style: italic;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* Photo Lightbox */
.lightbox-content {
    background: rgba(0, 0, 0, 0.95);
    border: none;
}

.lightbox-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1050;
    border: none;
    background: transparent;
    padding: 1rem;
}

.lightbox-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 0;
    position: relative;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(213, 246, 55, 0.9);
    color: black;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-btn:hover {
    background: #D5F637;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.lightbox-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 991px) {
    .corporate-subtitle {
        font-size: 2rem;
    }

    .corporate-tagline {
        font-size: 1.5rem;
    }

    .birthday-subtitle {
        font-size: 1.5rem;
    }

    .what-we-bring-title {
        font-size: 2rem;
    }

    .private-subtitle {
        font-size: 2rem;
    }

    .shoots-subtitle {
        font-size: 1.5rem;
    }

    .usp-title,
    .equipment-title {
        font-size: 2rem;
    }

    .arenas-subtitle {
        font-size: 2rem;
    }

    .what-we-provide-title,
    .locations-title {
        font-size: 2rem;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .location-image {
        height: 250px;
    }

    .location-overlay .location-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .location-overlay .location-details h5 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-nav {
        display: none;
    }

    .navbar-nav {
        text-align: center;
    }

    .feature-card {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-feature {
        flex-direction: column;
    }

    .about-feature-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .about-feature-content {
        text-align: center;
    }

    .venues-grid,
    .bring-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .event-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .usp-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .equipment-list {
        grid-template-columns: 1fr;
    }

    .equipment-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center; /* ensure center alignment on mobile */
    }

    .equipment-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .corporate-subtitle {
        font-size: 1.8rem;
    }

    .corporate-tagline {
        font-size: 1.3rem;
    }

    .game-modes-list {
        flex-direction: column;
        align-items: center;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

    .private-subtitle {
        font-size: 1.8rem;
    }

    .location-card {
        flex-direction: column;
        text-align: center;
    }

    .location-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {

    .venues-grid,
    .bring-items-grid {
        grid-template-columns: 1fr;
    }

    .corporate-subtitle {
        font-size: 1.5rem;
    }

    .scroller-content {
        font-size: 1.2rem;
    }

    .event-types-grid,
    .usp-grid {
        grid-template-columns: 1fr;
    }

    .private-subtitle {
        font-size: 1.5rem;
    }

    .arenas-subtitle {
        font-size: 1.5rem;
    }

    .location-image {
        height: 180px;
    }

    .location-overlay {
        padding: 1rem;
    }

    .location-overlay .location-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .location-overlay .location-details h5 {
        font-size: 1.1rem;
    }

    .navbar-logo {
        height: 28px; /* smaller logo height for mobile */
        max-height: 28px;
        width: auto;
    }
    /* Optional: reduce navbar-brand font-size so layout stays balanced */
    .navbar-brand {
        font-size: 1.2rem;
    }
}


/* Pulse animation for Vlogs tab */
.vlogs-pulse {
    position: relative;
    border: 3px solid #D5F637;
    /* Increased border width */
    border-radius: 10px;
    /* Slightly more rounded */
    animation: vlogs-pulse-anim 0.8s infinite;
    /* Faster pulse */
    box-shadow: 0 0 0 0 #D5F637;
    z-index: 1;
}

@keyframes vlogs-pulse-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(213, 246, 55, 0.95);
        /* Stronger initial shadow */
    }

    70% {
        box-shadow: 0 0 0 18px rgba(213, 246, 55, 0);
        /* Larger spread */
    }

    100% {
        box-shadow: 0 0 0 0 rgba(213, 246, 55, 0);
    }
}

/* Caution Tape Styles */
#wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #000;
}

.tape {
    position: absolute !important;
    overflow: hidden;
    text-align: center;
    font-family: impact;
    background-color: yellow;
    color: black;
    border: 2px solid black;
    transition: opacity 0.2s linear;
    white-space: nowrap;
}

.tape:hover {
    opacity: 0.2 !important;
}

.tape span {
    position: relative;
    display: inline-block;
}

.conveyer1 {
    animation-name: shift;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.conveyer2 {
    animation-name: shift2;
    animation-duration: 50s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    backface-visibility: hidden;
}

.stripes {
    background: repeating-linear-gradient(45deg,
            yellow,
            yellow 25px,
            black 25px,
            black 50px) !important;
}

.dark-mode {
    background-color: transparent !important;
    border: 2px solid yellow !important;
    color: yellow !important;
}

@keyframes shift {
    from {
        left: 0%;
    }

    to {
        left: 5%;
    }
}

@keyframes shift2 {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

/* New CSS for Our Locations Section */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s;
    height: 400px;
}

.location-card:hover {
    transform: scale(1.05);
}

.location-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1rem;
    text-align: center;
}

.location-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.location-details h5 {
    font-size: 1.25rem;
    margin: 0;
}

.location-details p {
    margin: 0;
}

@media (max-width: 768px) {
    .location-card {
        /* Adjust card styles for mobile devices */
        border-radius: 0.25rem;
    }

    .location-overlay {
        padding: 0.5rem;
    }

    .location-number {
        font-size: 1.5rem;
    }

    .location-details h5 {
        font-size: 1rem;
    }
}

/* Modal Styles */
.arena-modal-content {
    background-color: #121212;
    color: #ffffff;
}

.arena-modal-header {
    border-bottom: 1px solid #444;
}

.arena-modal-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.arena-modal-body {
    padding: 2rem;
}

.arena-info {
    margin-bottom: 1.5rem;
}

.arena-name {
    font-size: 1.25rem;
    font-weight: bold;
}

.arena-location {
    font-size: 1rem;
    color: #bbb;
}

.arena-media-tabs {
    margin-bottom: 1.5rem;
}

.tab-content {
    border: 1px solid #444;
    border-radius: 0.5rem;
    overflow: hidden;
}

.photo-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.photo-item:hover {
    transform: scale(1.05);
}

.video-item {
    margin-bottom: 1rem;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Lightbox Styles */
.lightbox-content {
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
}

.lightbox-header {
    border-bottom: 1px solid #444;
}

.lightbox-body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1rem;
}

.lightbox-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.lightbox-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: none;
    color: #111;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.08);
}

.back-to-top i {
    display: block;
    position: absolute;
    top: 13px;
    left: 17px;
    right: 0;
    margin: 0 auto;
    font-size: 1.3rem;
    color: #111;
    z-index: 2;
    pointer-events: none;
    transition: color 0.3s;
}

.back-to-top:hover i {
    color: #1ea952;
}

.back-to-top::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid #D5F637;
    margin: 0 auto;
    transition: border-bottom-color 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.back-to-top:hover::before {
    border-bottom-color: #1ea952;
}

/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 20px;
}

/* FAQ Button Styles */
.faq-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.faq-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    background-color: #D5F637;
    color: #000;
}

.faq-button i {
    font-size: 22px;
}

@media (max-width: 768px) {
    .faq-button {
        width: 45px;
        height: 45px;
        left: 20px;
        bottom: 20px;
    }
}

.whatsapp-button,
.faq-button {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-button.show,
.faq-button.show {
    opacity: 1;
    visibility: visible;
}

/* Event Cards Styles */
.events-gallery-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #D5F637;
    text-align: center;
    text-transform: uppercase;
    word-spacing: 15px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    height: 300px;
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transition: all 0.3s ease;
}

.event-card:hover .event-overlay {
    background: linear-gradient(transparent, rgba(213, 246, 55, 0.9));
    color: black;
}

.event-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.event-card:hover .event-name {
    color: black;
    text-shadow: none;
}

/* Event Modal Styles */
.event-modal-content {
    background: #1a2332;
    border: none;
    border-radius: 15px;
}

.event-modal-header {
    background: linear-gradient(135deg, #D5F637, #b8d628);
    color: black;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.event-modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-modal-body {
    padding: 2rem;
    color: white;
}

.event-info .event-title {
    color: #D5F637;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.event-info .event-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Event Media Tabs */
.event-media-tabs {
    border-bottom: 2px solid rgba(213, 246, 55, 0.3);
    margin-bottom: 2rem;
}

.event-media-tabs .nav-link {
    background: transparent;
    border: 2px solid rgba(213, 246, 55, 0.3);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    margin-right: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.event-media-tabs .nav-link:hover {
    color: #D5F637;
    border-color: #D5F637;
    transform: translateY(-2px);
}

.event-media-tabs .nav-link.active {
    background: #D5F637;
    color: black;
    border-color: #D5F637;
    box-shadow: 0 5px 15px rgba(213, 246, 55, 0.3);
}

.event-media-tabs .nav-link i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Event Photos Grid */
.event-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.event-photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 200px;
}

.event-photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.event-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-photo-item:hover img {
    transform: scale(1.05);
}

/* Event Videos Grid */
.event-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-video-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.event-video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 10px;
    overflow: hidden;
}

.event-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.no-event-media {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-style: italic;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* Responsive adjustments for event cards */
@media (max-width: 991px) {
    .events-gallery-title {
        font-size: 2rem;
    }

    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .event-card {
        height: 250px;
    }

    .event-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .event-card {
        height: 220px;
    }

    .event-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .event-name {
        font-size: 1.1rem;
    }

    .event-photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .event-photo-item {
        height: 150px;
    }

    .event-videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Remove centering for last two cards on mobile */
    .event-types-grid .event-type-card:nth-last-child(2),
    .event-types-grid .event-type-card:last-child {
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        height: 200px;
    }

    .events-gallery-title {
        font-size: 1.8rem;
    }

    .event-photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .event-photo-item {
        height: 120px;
    }
}

/* Add small mobile override for navbar logo */
@media (max-width: 576px) {
	.navbar-logo {
		height: 28px; /* smaller logo height for mobile */
		max-height: 28px;
		width: auto;
	}
	/* Optional: reduce navbar-brand font-size so layout stays balanced */
	.navbar-brand {
		font-size: 1.2rem;
	}
}