﻿


/* =========================================================
           MAIN WRAPPER
        ========================================================= */

.main-wrapper {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0 12px;
}

/* =========================================================
           MAIN LAYOUT
        ========================================================= */

.events-layout {
    display: flex;
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

/* =========================================================
           MAP SIDE
        ========================================================= */

.map-side {
    width: 48%;
    display: flex;
}

.map-container {
    width: 100%;
    height: 700px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 28px rgba(0,0,0,0.45);
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

/* =========================================================
           EVENTS SIDE
        ========================================================= */

.events-side {
    width: 52%;
    display: flex;
}

.events-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =========================================================
           EVENT CARD
        ========================================================= */

.event-card {
    display: flex;
    align-items: center;
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
    height: 90px;
    min-height: 90px;
    flex-shrink: 0;

}

    .event-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,140,255,0.18);
    }

/* =========================================================
           IMAGE SECTION
        ========================================================= */

.event-image-wrapper {
    position: relative;
    width: 45%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none !important;
}

/* REMOVE IMAGE SCROLL/ZOOM */

.event-card:hover .event-img {
    transform: none !important;
}

/* =========================================================
           IMAGE OVERLAY
        ========================================================= */

.event-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* =========================================================
           CITY NAME
        ========================================================= */

.event-city-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    width: 92%;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* =========================================================
           CONTENT
        ========================================================= */

.event-content {
    width: 55%;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date-label {
    color: #a1a1a1;
    font-size: 9px;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.event-date {
    color: #c20e49;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

/* =========================================================
           MAP MARKERS
        ========================================================= */

.marker-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.pin-img {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 2;
}

.city-name {
    margin-left: 5px;
    background: #fff;
    padding: 4px 10px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 700;
    color: #007bff;
    white-space: nowrap;
}

.pulse-ring {
    position: absolute;
    width: 14px;
    height: 14px;
    left: 6px;
    top: 6px;
    border-radius: 50%;
    background: rgba(0,123,255,0.4);
    animation: pulse 1.5s infinite;
    z-index: 1;
}

@keyframes pulse {

    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* =========================================================
           LARGE SCREEN
        ========================================================= */

@media(max-width: 1400px) {

    .map-container {
        height: 660px;
    }
}

/* =========================================================
           LAPTOP
        ========================================================= */

@media(max-width: 1200px) {

    .map-side {
        width: 62%;
    }

    .events-side {
        width: 38%;
    }

    .map-container {
        height: 620px;
    }

    .event-card {
        height: 84px;
        min-height: 84px;
    }

    .event-date {
        font-size: 14px;
    }

    .event-city-name {
        font-size: 14px;
    }
}

/* =========================================================
           TABLET
        ========================================================= */

@media(max-width: 991px) {

    .events-layout {
        flex-direction: column;
    }

    .map-side,
    .events-side {
        width: 100%;
    }

    .map-container {
        height: 420px;
    }

    .events-list {
        gap: 12px;
    }

    .event-card {
        height: 95px;
    }
}

/* =========================================================
           MOBILE
        ========================================================= */

@media(max-width: 768px) {

    .vision-bg {
        padding: 18px 0;
    }

    .main-wrapper {
        padding: 0 12px;
    }

    .map-container {
        height: 320px;
        border-radius: 14px;
    }

    .event-card {
        height: 88px;
    }

    .event-image-wrapper {
        width: 42%;
    }

    .event-content {
        width: 58%;
        padding: 8px 10px;
    }

    .event-city-name {
        font-size: 13px;
    }

    .event-date {
        font-size: 13px;
    }
}

/* =========================================================
           SMALL MOBILE
        ========================================================= */

@media(max-width: 480px) {

    .map-container {
        height: 260px;
        border-radius: 12px;
    }

    .event-card {
        flex-direction: row;
        height: 82px;
        min-height: 82px;
    }

    .event-image-wrapper {
        width: 44%;
        height: 100%;
    }

    .event-content {
        width: 56%;
        text-align: left;
    }

    .event-city-name {
        font-size: 12px;
    }

    .event-date {
        font-size: 12px;
    }

    .event-date-label {
        font-size: 8px;
    }
}
.container-fluid {
    max-width: 1200px;
    margin: auto;
}

.gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
/* TITLE */
.gallery-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
    gap: 15px;
}

/* ITEM */
.gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

    /* IMAGE */
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    /* HOVER */
    .gallery-item:hover img {
        transform: scale(1.08);
    }

/* ================= LIGHTBOX ================= */
#lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

    #lightbox img {
        display: block;
        margin: auto;
        max-width: 90%;
        max-height: 80%;
        border-radius: 10px;
    }

    #lightbox .close {
        position: absolute;
        top: 20px;
        right: 40px;
        color: #fff;
        font-size: 40px;
        cursor: pointer;
    }

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .vision-text {
        font-size: 24px;
    }
}


/*---------------Category----------------------*/
/* ================= CATEGORY ================= */
/*.category-scroll {
    overflow-x: auto;
}

    .category-scroll .row {
        min-width: max-content;
    }

.category-card {
    background: #2c3a47;
    border-radius: 16px;
    text-align: center;
    padding: 18px 10px;*/
/* DEFAULT BORDER */
/*border: 2px solid #ffffff;
    transition: all 0.3s ease;
    min-width: 130px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .category-card:hover {
        border-color: #ff0000;*/ /* RED BORDER */
/*transform: translateY(1px);
    }

.cat-icon {
    width: 45px;
    height: 45px;*/ /* NEW */
/*object-fit: contain;
    margin-bottom: 10px;
}*/

/* Disable scroll on large screens */
/*@media (min-width: 768px) {
    .category-scroll {
        overflow-x: hidden;
    }

        .category-scroll .row {
            min-width: 100%;
        }
}*/

/* ================= TABLE ================= */
/*.table-responsive-custom {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
}*/


/* HEADER */
/*.battle-header {
    background: linear-gradient(90deg, #c20e49, #ef233c);
}

    .battle-header th {
        color: #fff;
        padding: 18px;
        font-size: 15px;
        text-align: center;
    }*/

/* BODY */
/*.battle-table td {
    padding: 16px;
    text-align: center;
    font-size: 14px;
}

    .battle-table td:first-child {
        text-align: left;
        color: #ffd166;
        font-weight: bold;
    }

.battle-table tbody tr {
    background: #1a1a1a;
}

    .battle-table tbody tr:nth-child(even) {
        background: #202020;
    }*/

/* Disable table scroll on desktop */
/*@media (min-width: 992px) {
    .table-responsive-custom {
        overflow-x: visible;
    }
}*/

/* ================= MOBILE ================= */
/*@media (max-width: 768px) {

    .vision-content h1 {
        font-size: 22px;
    }

    .vision-content {
        font-size: 14px;
    }

    .category-card {
        min-width: 120px;
    }

    .cat-icon {
        width: 35px;
    }

    .battle-table {
        min-width: 700px;
    }

    .vision-bg {
        padding: 30px 10px;*/ /* tighter padding */
/*}

    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .category-scroll {
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .battle-table th,
    .battle-table td {
        font-size: 11px;
        padding: 10px;
    }
}*/


/* ================= CHALLENGE SECTION ================= */
/*.challenge-section {
    width: 100%;
    background: #000;
    padding: 50px 20px;
    box-sizing: border-box;
}

.challenge-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}*/

/* CARD */
/*.challenge-card {
    background: linear-gradient(90deg, #1a1a1a, #202020);
    border-radius: 6px;
    padding: 28px 24px 24px 24px;
    position: relative;
    color: #fff;*/
/*    min-height: 190px;
*/
/* IMPORTANT: create left space for number box */
/*padding-left: 60px;
    text-align: left;
}*/

/* NUMBER BOX */
/*.challenge-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #6b6b6b;
    color: #fff;
    font-weight: 600;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 2px;
}*/

/* TITLE (RED TEXT) */
/*.challenge-card h3 {
    color: #ff1f4b;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
}*/

/* TEXT (WHITE) */
/*.challenge-card p {
    font-size: 14px;
    color: #d1d1d1;
    line-height: 1.6;
    margin: 0;
}*/

/* ================= RESPONSIVE ================= */

/* Laptop */
/*@media (max-width: 1024px) {
    .challenge-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}*/

/* Tablet */
/*@media (max-width: 768px) {
    .challenge-section {
        padding: 40px 15px;
    }

    .challenge-card {
        padding: 24px 20px 20px 55px;
        min-height: 180px;
    }

        .challenge-card h3 {
            font-size: 14px;
        }

        .challenge-card p {
            font-size: 13px;
        }
}*/

/* Mobile */
/*@media (max-width: 480px) {
    .challenge-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .challenge-section {
        padding: 30px 10px;
    }

    .challenge-card {
        padding: 22px 18px 18px 50px;
        min-height: auto;
    }

    .challenge-number {
        top: 18px;
        left: 15px;
        font-size: 12px;
        padding: 5px 8px;
    }

    .challenge-card h3 {
        font-size: 14px;
    }

    .challenge-card p {
        font-size: 13px;
    }
}*/

/* ================= CATEGORY ================= */
/*.category-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
}*/

/* Hide scrollbar */
/*.category-scroll::-webkit-scrollbar {
        display: none;
    }

.category-scroll {
    scrollbar-width: none;
}*/

/* TRACK */
/*.category-track {
    display: flex;
    gap: 12px;
    padding: 0 12px;
}*/

/* CARD */
/*.category-card {
    flex: 0 0 auto;
    width: 130px;
    height: 140px;
    background: #2c3a47;
    border-radius: 16px;
    padding: 18px 10px;
    text-align: center;
    border: 2px solid #fff;
    scroll-snap-align: start;
    transition: 0.3s;
}

    .category-card:hover {
        border-color: red;
        transform: translateY(-3px);
    }

.cat-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
}*/

/* ================= DESKTOP CENTER ================= */

/*@media (min-width: 768px) {

    .category-scroll {
        overflow-x: hidden;
        scroll-snap-type: none;
    }

    .category-track {
        justify-content: center;
        flex-wrap: wrap;
    }
}*/

/* ================= TABLE ================= */
/*.table-responsive-custom {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
}

.battle-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    font-family: 'Segoe UI', sans-serif;
}*/

/* HEADER */
/*.battle-header {
    background: linear-gradient(90deg, #c20e49, #ef233c);
}

    .battle-header th {
        color: #fff;
        padding: 18px;
        font-size: 15px;
        text-align: center;
    }*/

/* BODY */
/*.battle-table td {
    padding: 16px;
    text-align: center;
    font-size: 14px;
}

    .battle-table td:first-child {
        text-align: left;
        color: #ffd166;
        font-weight: bold;
    }

.battle-table tbody tr {
    background: #1a1a1a;
}

    .battle-table tbody tr:nth-child(even) {
        background: #202020;
    }*/

/* Disable table scroll on desktop */
/*@media (min-width: 992px) {
    .table-responsive-custom {
        overflow-x: visible;
    }
}*/

/* ================= MOBILE ================= */
/*@media (max-width: 768px) {

    .vision-content h1 {
        font-size: 22px;
    }

    .vision-content {
        font-size: 14px;
    }

    .category-card {
        min-width: 120px;
    }

    .cat-icon {
        width: 35px;
    }

    .battle-table {
        min-width: 700px;
    }

    .vision-bg {
        padding: 30px 10px;*/ /* tighter padding */
/*}

    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .category-scroll {
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .battle-table th,
    .battle-table td {
        font-size: 11px;
        padding: 10px;
    }
}*/


/* ================= CHALLENGE SECTION ================= */
/*.challenge-section {
    width: 100%;
    background: #000;
    padding: 50px 20px;
    box-sizing: border-box;
}

.challenge-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}*/

/* CARD */
/*.challenge-card {
    background: linear-gradient(90deg, #1a1a1a, #202020);
    border-radius: 6px;
    padding: 28px 24px 24px 24px;
    position: relative;
    color: #fff;*/
/*    min-height: 190px;
*/
/* IMPORTANT: create left space for number box */
/*padding-left: 60px;
    text-align: left;
}*/

/* NUMBER BOX */
/*.challenge-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #6b6b6b;
    color: #fff;
    font-weight: 600;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 2px;
}*/

/* TITLE (RED TEXT) */
/*.challenge-card h3 {
    color: #ff1f4b;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
}*/

/* TEXT (WHITE) */
/*.challenge-card p {
    font-size: 14px;
    color: #d1d1d1;
    line-height: 1.6;
    margin: 0;
}*/

/* ================= RESPONSIVE ================= */

/* Laptop */
/*@media (max-width: 1024px) {
    .challenge-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}*/

/* Tablet */
/*@media (max-width: 768px) {
    .challenge-section {
        padding: 40px 15px;
    }

    .challenge-card {
        padding: 24px 20px 20px 55px;
        min-height: 180px;
    }

        .challenge-card h3 {
            font-size: 14px;
        }

        .challenge-card p {
            font-size: 13px;
        }
}*/

/* Mobile */
/*@media (max-width: 480px) {
    .challenge-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .challenge-section {
        padding: 30px 10px;
    }

    .challenge-card {
        padding: 22px 18px 18px 50px;
        min-height: auto;
    }

    .challenge-number {
        top: 18px;
        left: 15px;
        font-size: 12px;
        padding: 5px 8px;
    }

    .challenge-card h3 {
        font-size: 14px;
    }

    .challenge-card p {
        font-size: 13px;
    }
}*/

/*-----------------------------Promises-----------------------------*/
/* ================= PROMISE CONTAINER ================= */
.promise-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom:10px;
    font-family: 'Segoe UI', sans-serif;
}

/* ================= BOX ================= */
.promise-box {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    background: #2f3a45;
}

    .promise-box:hover {
        transform: translateY(-3px);
    }

/* ================= HEADER ================= */
.promise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #cf1a44;
    cursor: pointer;
    min-height: 60px; /* equal height */
}

.promise-box.active .promise-header {
    background: linear-gradient(135deg, #1f2a35, #2f3a45);
}

/* ================= TOGGLE ================= */
.toggle {
    font-size: 28px;
    font-weight: bold;
    transition: transform 0.8s ease;
}

.promise-box.active .toggle {
    transform: rotate(180deg);
}

/* ================= BODY ================= */
.promise-body {
    background: #3a4652;
    color: #e6e6e6;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease, padding 0.3s ease;
}

.promise-box.active .promise-body {
    max-height: 300px; /* enough for content */
    padding: 15px 20px;
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .vision-content {
        font-size: 16px;
    }

    .promise-header {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .vision-bg {
        padding: 30px 15px;
    }

    .vision-content {
        font-size: 15px;
    }

    .promise-header {
        font-size: 15px;
        padding: 12px 14px;
    }

    .toggle {
        font-size: 24px;
    }

    .promise-body {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .promise-header {
        font-size: 14px;
    }
}

.commitment-section {
    display: flex;
    align-items: center;
    justify-content: center;
    /* max-width: 1100px;*/ /* 🔥 keeps content centered */
    /*margin: 40px auto; */ /* 🔥 center horizontally */

    gap: 40px;
    padding: 40px 20px;
    background-color: #3e4c59;
    color: white;
    font-weight: bold;
    /*border-radius: 12px; */ /* optional - looks better */
}

/* LEFT */
.left-text {
    flex: 1;
    min-width: 250px;
    text-align: right; /* 🔥 left aligned */
}

    .left-text h2 {
        margin-top: 10px;
    }

/* DIVIDER */
.divider {
    width: 3px;
    height: 80px;
    background-color: #cf1a44;
    align-self: center;
}
/* RIGHT */
.right-text {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .divider {
        height: 60px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .commitment-section {
        flex-direction: column;
        text-align: center;
    }

    .left-text,
    .right-text {
        text-align: center;
    }

    .divider {
        width: 60px;
        height: 3px;
    }
}

/*---------------------------Region----------------------------------*/

/* ================= SLIDER SECTION ================= */
.city-slider-section {
    background: #000;
    padding: 60px 0;
    position: relative;
}

/* SWIPER WIDTH */
.citySwiper {
    width: 100%;
    max-width: 1400px; /* wider layout */
    margin: auto;
    position: relative;
}

/* SLIDE FIX */
.swiper-slide {
    display: flex;
    justify-content: center;
}

/* CARD */
.city-card {
    text-align: center;
    color: #fff;
    width: 100%;
}

    /* TITLE */
    .city-card h3 {
        margin-bottom: 20px;
        font-size: 22px;
        font-weight: 600;
    }

    /* IMAGE (BIGGER SIZE) */
    .city-card img {
        width: 350px;
        height: 350px;
        object-fit: cover;
        display: block;
        margin: auto;
    }

/* BUTTON (CENTER FIXED) */
.view-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 28px;
    background: #c20e49;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

/* ================= ARROWS (FAR LEFT & RIGHT) ================= */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

/* Move arrows OUTSIDE */
.swiper-button-prev {
    left: -60px;
}

.swiper-button-next {
    right: -60px;
}

/* ================= DOTS ================= */
.swiper-pagination-bullet {
    background: #777;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #c20e49;
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {
    .citySwiper {
        max-width: 1100px;
    }

    .swiper-button-prev {
        left: -40px;
    }

    .swiper-button-next {
        right: -40px;
    }
}

/* Tablet (iPad) */
@media (max-width: 992px) {
    .city-card img {
        width: 260px;
        height: 260px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none; /* hide arrows for touch devices */
    }
}

/* Mobile */
@media (max-width: 576px) {
    .city-card img {
        width: 220px;
        height: 220px;
    }

    .city-card h3 {
        font-size: 18px;
    }

    .view-btn {
        font-size: 13px;
        padding: 8px 20px;
    }
}
/*---------------------------------------Training Gyms-------------------------------*/
/* ================= GYM SECTION ================= */
.gym-section {
    width: 100%;
    padding: 40px 10px;
}

/* CONTAINER (WIDER CARDS) */
.gym-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.gym-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    height: 100%;
}

/* IMAGE */
.gym-img {
    width: 100%;
    height: 250px;
}

    .gym-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* CONTENT */
.gym-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    text-align: left !important;
}

/* TEXT */
.gym-text h5 {
    color: #c20e49;
    font-size: 22px;
    margin: 0 0 5px 0;
}

.gym-text p {
    color: #6c757d;
    font-size: 15px;
    margin: 0;
}

/* ARROW */
.gym-arrow {
    color: #c20e49;
    font-size: 22px;
    transform: rotate(-45deg);
}

    .gym-arrow a:hover {
        color: #0056b3;
    }

    .gym-arrow a {
        color: #c20e49;
    }
/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {
    .gym-container {
        max-width: 1100px;
        gap: 25px;
    }
}

/* Tablet (iPad) */
@media (max-width: 992px) {
    .gym-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 90%;
    }
}

/* Mobile (Android + iPhone) */
@media (max-width: 576px) {
    .gym-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gym-img {
        height: 220px;
    }

    .gym-text h5 {
        font-size: 20px;
    }

    .gym-text p {
        font-size: 14px;
    }
}

/*----------------------------File Upload--------------------------------*/
.upload-wrapper {
    color: black;
}

.upload-box {
    width: 100%;
    padding: 5px;
    border: 2px dashed #bbb;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

    .upload-box:hover {
        border-color: #ff4d6d;
        background: #fff5f7;
        transform: scale(1.01);
    }

.img-preview {
    width: 120px;
    height: 120px;
    object-fit: fill;
    border-radius: 10px;
    border: 2px solid #ddd;
}

#fileName {
    font-size: 14px;
    color: #333;
}

.preview-img {
    width: 100%;
    height: 120px;
    object-fit: fill;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: red;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 14px;
    cursor: pointer;
}

.btn {
    font-size: 18px;
}




/*-------------------------------Concept--------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VIDEO SECTION */
.video-banner {
    position: relative;
    width: 100%;
    min-height: 250px;
    max-height: 600px;
    overflow: hidden;
}

    /* VIDEO */
    .video-banner video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Keep same focus position on all screens */
        object-position: center 28%;
        z-index: 1;
    }

    /* DARK OVERLAY */
    .video-banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 2;
    }

/* TEXT CONTENT */
.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3;
    width: 90%;
    max-width: 1000px;
}

    .video-content h1 {
        font-size: clamp(24px, 5vw, 60px);
        font-weight: 700;
        line-height: 1.2;
        margin: 0;
    }

    .video-content h2 {
        font-size: clamp(20px, 3vw, 50px);
        font-weight: 700;
        line-height: 1.2;
        margin: 0;
    }

/* TABLET */
@media (max-width: 768px) {

    .video-banner {
        height: 30vh;
        min-height: 220px;
    }

    .video-content {
        width: 92%;
    }

        .video-content h1 {
            font-size: clamp(22px, 6vw, 42px);
        }

        .video-content h2 {
            font-size: clamp(18px, 4vw, 32px);
        }
}

/* MOBILE */
@media (max-width: 480px) {

    .video-banner {
        height: 25vh;
        min-height: 180px;
    }

    .video-content {
        width: 95%;
    }

        .video-content h1 {
            font-size: 20px;
            line-height: 1.3;
        }

        .video-content h2 {
            font-size: 16px;
            line-height: 1.3;
        }
}

/* MARQUEE CONTAINER */
.marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #ff2d2d, #ff6a00, #ffcc00);
    padding: 10px 0;
}

/* TRACK */
.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 18s linear infinite;
}

/* TEXT */
.marquee span {
    white-space: nowrap;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 0 40px;
    display: inline-block;
}

/* ANIMATION */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width:768px) {
    .marquee span {
        font-size: 16px;
        padding: 0 25px;
    }
}

@media (max-width:480px) {
    .marquee span {
        font-size: 14px;
        padding: 0 20px;
    }
}


.fitness-slider {
    width: 100%;
    padding: 20px 0;
    background: #000;
}

/* SWIPER */
.swiper {
    width: 100%;
    padding-bottom: 40px;
}

/* SLIDE */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CARD */
.slide-card {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

    /* IMAGE */
    .slide-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* LABEL */
.label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 4px;
}

/* DOTS */
.swiper-pagination-bullet {
    background: #999;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/* RESPONSIVE */
@media (max-width:768px) {
    .slide-card {
        height: 300px;
    }
}

@media (max-width:480px) {
    .slide-card {
        height: 250px;
    }
}

/* ===== RESET ===== */


/* ===== SECTION ===== */
.season-section {
    width: 100%;
    padding: clamp(20px, 5vw, 20px) clamp(10px, 4vw, 30px);
}

/* ===== CONTAINER ===== */
.season-box {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    /*background: #e6e6e6;*/
    border-radius: clamp(12px, 2vw, 25px);
    /* padding: clamp(25px, 5vw, 50px) clamp(15px, 4vw, 40px);*/
    text-align: center;
}

/* ===== TOP TAG ===== */
.season-tag {
    display: inline-block;
    background: #d80f3c;
    color: #fff;
    padding: clamp(1px, 1.5vw, 1px) clamp(14px, 4vw, 34px);
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(12px, 2vw, 18px);
    letter-spacing: 1px;
    margin-bottom: clamp(12px, 0vw, 0px);
}

/* ===== INFO TEXT ===== */
.season-info {
    font-size: clamp(12px, 2vw, 12px);
    color: black;
    font-weight: bold;
    /* margin-bottom: clamp(10px, 2vw, 20px);*/
}

/* ===== SUB TAG ===== */
.season-subtag {
    display: inline-block;
    background: #d80f3c;
    color: #fff;
    padding: clamp(5px, 1.5vw, 10px) clamp(15px, 3vw, 25px);
    border-radius: 50px;
    font-size: clamp(10px, 1.8vw, 14px);
    font-weight: bold;
    /*    letter-spacing: 1px;
*/ /*  margin-bottom: clamp(10px, 2vw, 20px);*/
}

/* ===== TITLE ===== */
.season-title {
    font-size: clamp(14px, 3vw, 20px);
    font-weight: bold;
    color: black;
    /*    letter-spacing: 1px;
*/ line-height: 2.3;
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width:360px) {
    .season-box {
        padding: 20px 10px;
    }
}

/* ===== LARGE SCREENS ===== */
@media (min-width:1400px) {
    .season-box {
        max-width: 1300px;
    }
}





/*--------------------------CONCEPT PAGE LAST DIV-----------------------*/

.container {
    display: flex;
    width: 100%;
    max-width: 1800px;
    padding: 20px;
    background: #727472;
    border-radius: 30px;
    color: white;
    gap: 30px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* LEFT */
.left {
    flex: 1;
}

.item {
    border-bottom: 1px solid #aaa;
    margin-bottom: 10px;
}

.header {
    cursor: pointer;
    padding: 15px 0;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.arrow {
    transition: transform 0.3s ease;
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

    .content p {
        font-size: 17px;
        line-height: 1.6;
        color: #eaeaea;
        padding-bottom: 15px;
    }

.item.active .arrow {
    transform: rotate(180deg);
}

/* RIGHT */
.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

    .image-wrapper img {
        width: 100%;
        height: auto;
    }

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

    .modal.active {
        opacity: 1;
        visibility: visible;
    }

    .modal img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        animation: zoomIn 0.3s ease;
        padding-top: 70px;
    }

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

/* TABLET */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 15px;
        border-radius: 20px;
    }

    .left, .right {
        width: 100%;
    }

    .image-wrapper {
        max-width: 100%;
    }
}

/* SMALL PHONES */
@media (max-width: 480px) {
    .header {
        font-size: 15px;
    }

    .content p {
        font-size: 13px;
    }
}

/***********************UPCOMING EVENTS******************************/

/* MAIN WRAPPER */
/*.main-wrapper {
    max-width: 1400px;*/ /* controls overall width */
/*margin: 0 auto;*/ /* centers horizontally */
/*padding: 40px 20px;
}*/

/* EQUAL HEIGHT ROW */
/*.equal-row {
    display: flex;
    flex-wrap: wrap;
}

.equal-col {
    display: flex;
    flex-direction: column;
}*/

/* MAP */
/*.map-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 16px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
}*/

/* EVENT CARD */
/*.event-card {
    display: flex;
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: 0.3s;
}

    .event-card:hover {
        transform: translateY(-4px);
    }

.event-img {
    width: 35%;
    object-fit: cover;
}

.event-content {
    padding: 35px;
    width: 65%;
    color: white;
}*/

/*.event-content h2 {
                margin: 0;
                font-size: 18px;
            }
*/
/*.event-content small {
        color: #aaa;
        font-size: 11px;
    }

.event-date {
    color: #c026ff;
    font-weight: bold;
    font-size: 30px;
    margin-top: 5px;
}*/

/* REMOVE SCROLL */
/*.events-list {
    overflow: visible;
}*/

/* 📱 TABLET */
/*@media (max-width: 991px) {
    .map-container {
        min-height: 400px;
    }
}*/

/* 📱 MOBILE */
/*@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }

    .event-img {
        width: 100%;
        height: 180px;
    }

    .event-content {
        width: 100%;
    }
}

.marker-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}*/

/* =====================================
           PIN IMAGE
        ===================================== */

/*.pin-img {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}*/

/* =====================================
           CITY LABEL
        ===================================== */

/*.city-name {
    margin-left: 8px;
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #e51b1b;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}*/

/* =====================================
           PULSE EFFECT
        ===================================== */

/*.pulse-ring {
    position: absolute;
    width: 18px;
    height: 18px;
    left: 7px;
    top: 7px;
    background: rgba(34,197,94,0.5);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    z-index: 1;
}

@keyframes pulse {

    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}*/


/* ================= CATEGORY ================= */
.category-wrapper {
    width: 100% !important;
    overflow: hidden !important;
    color: white !important;
}

.category-scroll {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 12px;
}

    .category-scroll::-webkit-scrollbar {
        display: none;
    }

.category-track {
    display: flex;
    gap: 12px;
}

.category-card {
    flex: 0 0 auto;
    width: 130px;
    height: 140px;
    background: #2c3a47;
    border-radius: 16px;
    border: 2px solid #fff;
    text-align: center;
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.category-title {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.main-title {
    display: block; /* important */
    font-size: 30px;
}

.sub-title {
    display: block; /* important */
    font-size: 20px;
}

.category-card:hover {
    border-color: red;
}

.cat-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    object-fit: contain;
}

/* Desktop */
@media (min-width: 768px) {
    .category-scroll {
        justify-content: center;
        overflow-x: hidden;
    }

    .category-track {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ================= TABLE ================= */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    color: white;
}

/* TABLE BASE */
.battle-table {
    width: 100%;
    min-width: 700px; /* mobile scroll */
    border-collapse: collapse;
    background: #111;
}

/* HEADER (PURE RED) */
.battle-header {
    background: #ff1f4b; /* 🔥 clean red */
}

    .battle-header th {
        color: #fff;
        padding: 14px;
        font-weight: 600;
        background-color: #d60b3c;
    }

/* BODY */
.battle-table td {
    padding: 12px;
    text-align: center;
}

    .battle-table td:first-child {
        text-align: left;
        color: #ffd166;
        font-weight: bold;
    }

.battle-table tr:nth-child(even) {
    background: #202020;
}

.battle-table tr:nth-child(odd) {
    background: #1a1a1a;
}

/* ================= DESKTOP FIX ================= */
@media (min-width: 992px) {

    .table-wrapper {
        overflow-x: visible; /* remove scroll */
        display: flex;
        justify-content: center; /* center table */
    }

    .battle-table {
        width: 85%; /* 👈 control width */
        min-width: auto; /* remove forced scroll */
        max-width: 1100px;
    }
}

/* ================= CHALLENGE ================= */
.challenge-section {
    width: 100%;
    background: #000;
    padding: 40px 15px;
}

.challenge-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 20px;
}

/* Desktop */
@media (min-width: 992px) {
    .challenge-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (min-width: 600px) and (max-width: 991px) {
    .challenge-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 599px) {
    .challenge-container {
        grid-template-columns: 1fr;
    }
}

.challenge-card {
    background: #1a1a1a;
    padding: 20px 20px 20px 55px;
    border-radius: 8px;
    position: relative;
    color: #fff;
}

.challenge-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: gray;
    padding: 5px 10px;
    border-radius: 5px;
}

.challenge-card h3 {
    color: #ff1f4b;
    margin-bottom: 10px;
}

.challenge-card p {
    color: #ccc;
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {
    .category-card {
        width: 110px;
        height: 130px;
    }

    .cat-icon {
        width: 35px;
        height: 35px;
    }

    .battle-table th,
    .battle-table td {
        font-size: 12px;
        padding: 8px;
    }
}


/*****************************EVENTS DETAILS***************************/

.event-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
           BACK BUTTON WRAPPER
        ==========================================*/

.back-btn-wrapper {
    width: 100%;
    max-width: 950px;
    margin-bottom: 18px;
    display: flex;
    justify-content: flex-start;
}

.btn-back {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .btn-back:hover {
        transform: translateY(-2px);
        background: #f8f8f8;
    }

/* =========================================
           DATE TABS (CENTERED SAME WIDTH)
        ==========================================*/

.date-tabs-wrapper {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 24px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.date-tab {
    min-width: 130px;
    padding: 12px 18px;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    color: #111;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .date-tab:hover {
        transform: translateY(-3px);
        color: #000;
        text-decoration: none;
    }

    .date-tab.active {
        background: #dc3545;
        color: #fff;
    }

.date-day {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 4px;
    display: block;
}

/* =========================================
           CARD BOX (CENTERED + SMALLER)
        ==========================================*/

.card-box {
    width: 100%;
    max-width: 800px;
    margin: 0 215px 14px auto;
    padding: 16px 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);


}

    .card-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

/* =========================================
           LAYOUT
        ==========================================*/

.ticket-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT */

.ticket-left {
    min-width: 160px;
}

.ticket-price {
    font-size: 36px;
    font-weight: 800;
    color: #2c5cc5;
    line-height: 1;
}

    .ticket-price span {
        font-size: 18px;
    }

.ticket-day {
    font-size: 13px;
    color: #777;
    margin-top: 6px;
}

/* RIGHT */

.ticket-right {
    flex: 1;
    display:flex;
    justify-content:center;
}

/* =========================================
           CATEGORY
        ==========================================*/

.category-box {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
}

.category-btn {
    min-width: 150px;
    background: #f8f9fc;
    border-radius: 14px;
    padding: 12px 16px;
    text-align: center;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
}

    .category-btn:hover {
        background: #fff5f5;
        border-color: #dc3545;
        transform: translateY(-2px);
        text-decoration: none;
    }

.category-Name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.category-sub {
    font-size: 12px;
    color: #777;
}

/* =========================================
           RESPONSIVE
        ==========================================*/

@media (max-width: 768px) {

    .ticket-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .category-box {
        justify-content: flex-start;
    }

    .category-btn {
        flex: 1 1 calc(50% - 10px);
    }

    .back-btn-wrapper,
    .date-tabs-wrapper,
    .card-box {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .category-btn {
        width: 100%;
    }

    .ticket-price {
        font-size: 28px;
    }
}



/****************************WINNER CATEGORIES***************************************/
