/* ========== SITE HEADER ========== */
.mh-site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0e0e4;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 6px rgba(225, 66, 98, 0.06);
}

.mh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.mh-header-logo img {
    display: block;
}

.mh-header-cta {
    background-color: #E14262;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    border: none;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.mh-header-cta:hover {
    background-color: #cf3d57;
    transform: scale(1.02);
}

/* ========== BODY ========== */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 0px 0;
    /* min-height: 80vh; */
    display: flex;
    align-items: center;
    background-color: #FFEDF0;
    padding-top: 50px;
}
.left-hero{
    padding-bottom: 100px;
}

.left-content {
    padding-left: 10%;
}

.event-badge {
    background: linear-gradient(90deg, #FFEDF0 13.4%, #E14262 41.02%);
    color: white;
    display: inline-block;
    padding: 15px 35px 15px 10%;
    border-radius: 0 30px 30px 0;
    margin-bottom: 35px;
    position: absolute;
    left: 0;
}

.event-badge p {
    margin: 0;
}

.badge-title {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
}

.badge-date {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

.main-heading {
    font-size: 4vw;
    font-weight: 700;
    color: #212b36;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-top: 100px;
}

.period-power-up {
    /* color: #e4536d; */

}

.the-100-conversation {
    font-size: 3vw;
    font-weight: 700;
}

.sub-heading {
    font-size: 26px;
    font-weight: 700;
    color: #A33141;
    margin-bottom: 40px;
}

.info-cards-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.info-card {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.04); */
    border: 1px solid #fceef0;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    min-width: 280px;
}

.time-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #E14262;
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 15px;
    border-radius: 6px;
}

.icon-box {
    /* background-color: #fff1f3; */
    /* padding: 12px; */
    border-radius: 12px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box svg {
    width: 32px;
    height: 32px;
}

.card-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    /* color: #adb5bd; */
    letter-spacing: 1px;
    margin-bottom: 2px;
    text-align: left;
}

.card-value {
    font-size: 16px;
    font-weight: 600;
    color: #A33141;
    margin: 0;
    white-space: nowrap;
}

.btn-join {
    background-color: #E14262;
    color: white;
    border-radius: 50px;
    padding: 16px 50px;
    font-size: 20px;
    font-weight: 800;
    border: none;
    z-index: 10;
    /* box-shadow: 0 10px 25px rgba(228, 83, 109, 0.4); */
    /* transition: all 0.3s ease; */
    margin-bottom: 20px;
}

.btn-join:hover {
    background-color: #cf3d57;
    color: white;
    transform: scale(1.02);
}

.seats-badge {
    background: #FFEDF0;
    border: 2px solid #E14262;
    padding: 18px 23px 15px 24px;
    border-radius: 50px;
    display: inline-block;
        position: absolute;
    bottom: -50px;
    width: 90%;

    margin: auto;
    z-index: 1;
    border-radius: 0 0px 24px 24px;
}

.seats-badge p {
    margin: 0;
    color: #0088CC;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    /* filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); */
}

.mh-day-logo-img {
    position: absolute;
    right: 4%;
}

/* ---- Responsive ---- */
@media (max-width: 1400px) {
    .main-heading { font-size: 3rem; }
    .the-100-conversation { font-size: 2rem; }
    .sub-heading { font-size: 22px; }
    .left-hero { padding-bottom: 80px; }
    .info-card { padding: 12px 20px; min-width: 240px; }
}

@media (max-width: 1200px) {
    .main-heading { font-size: 2.8rem; }
    .the-100-conversation { font-size: 2.2rem; }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 20px;
    }
    .left-hero {
        padding-bottom: 0px;
    }
    .badge-title{
        font-size: 14px;
    }
    .event-badge{
            background: linear-gradient(90deg, #FFEDF0 6.4%, #E14262 42.02%);
    color: white;
    display: inline-block;
    padding: 11px 15px 15px 68px;
    border-radius: 0 20px 20px 0;
    margin-bottom: 35px;
    position: absolute;
    left: 0;
    }
    .badge-date {
        font-size: 14px;
        text-align: left;
    }
    .left-content {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center !important;
    }

    .main-heading {
        font-size: 28px;
        margin-top: 69px;
        text-align: center !important;
        line-height: 1.2;
    }
    .the-100-conversation {
        font-size: 2.2rem;
    }
    .sub-heading {
        font-size: 17px;
        margin-bottom: 20px;
        text-align: center;
    }
    .info-cards-container {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .info-card {
        min-width: unset;
        width: 100%;
        max-width: 342px;
        padding: 10px 15px;
        border-radius: 15px;
    }
    .card-value {
        font-size: 15px;
    }
    .icon-box svg {
        width: 24px;
        height: 24px;
    }
    .time-badge {
        padding: 4px 10px;
        font-size: 11px;
        /* top: 5px; */
        right: 5px;
    }
    .cta-section {
        /* margin-top: 20px; */
        width: 100%;
    }
    .btn-join {
        width: 80%;
        max-width: 240px;
        padding: 14px 20px;
        font-size: 18px;
        margin-bottom: 0;
    }
    .hero-join-btn{
        max-width: 280px;
    }
    .seats-badge {
        position: relative;
        bottom: unset;
        left: unset;
        width: 75%;
        max-width: 260px;
        margin: -10px auto 0;
        padding: 15px 10px 10px;
        z-index: 1;
        border-radius: 0 0 15px 15px;
    }
    .right-hero {
        text-align: center !important;
        padding-right: 0;
        margin-top: 10px;
    }
    .hero-img {
        max-width: 90%;
        margin: 0 auto;
    }
    .mh-day-logo-img {
        position: absolute;
        width: 104px;
        left: 1%;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 9vw;
    }
    .the-100-conversation {
        font-size: 7vw;
    }
    .right-hero{
        padding: 0 !important;
    }
    .sub-heading {
        font-size: 18px;
    }
    .btn-join {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
    }
    .info-card {
        padding: 15px;
    }
    .card-value {
        font-size: 14px;
    }

    .seats-badge {
        padding: 15px 20px;
        border-radius: 0 0 20px 20px;
    }
    .seats-badge p {
        font-size: 11px;
    }
}

/* ========== SPEAKERS SECTION ========== */
.speakers-section {
    background-color: #ffffff;
    padding: 80px 20px 100px;
}

.speakers-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.speakers-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212b36;
    margin-bottom: 60px;
}

.speakers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.speaker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 calc(25% - 18px);
    padding: 18px 18px 20px;
    background: #ffffff;
    border: 2px solid #FFEDF0;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(225, 66, 98, 0.04);
    text-align: center;
    transition: all 0.3s ease;
    justify-content: center;
}

.speaker-card-button {
    appearance: none;
    cursor: pointer;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(225, 66, 98, 0.1);
    border-color: #FFE4E9;
}

.speaker-card-button:focus-visible {
    outline: 3px solid rgba(225, 66, 98, 0.35);
    outline-offset: 4px;
}

.speaker-img-wrap {
    width: 72%;
    /* height: 150px; */
    margin-bottom: 18px;
    flex-shrink: 0;
    /* border-radius: 50%; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.speaker-name {
    font-size: 20px;
    font-weight: 800;
    color: #212b36;
    margin: 0;
    line-height: 1.2;
}

.speaker-name::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #FFB3C1;
    margin: 15px auto;
    border-radius: 2px;
}

.speaker-role {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.speaker-modal {
    background: rgba(31, 31, 31, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.speaker-modal .modal-content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.speaker-modal .modal-dialog {
    max-width: 1120px;
    padding: 16px;
}

.speaker-modal-shell {
    background: transparent;
    border-radius: 0;
    padding: 0;
    position: relative;
}

.speaker-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #212b36;
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.speaker-modal-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 44px;
    min-height: 360px;
    border-radius: 24px;
    background: #ffffff;
    padding: 44px 56px;
}

.speaker-modal-profile {
    position: relative;
    z-index: 1;
    flex: 0 0 280px;
    text-align: center;
}

.speaker-modal-image-wrap {
    width: 80%;
    /* height: 170px; */
    margin: 0 auto 18px;
    /* border-radius: 50%; */
    overflow: hidden;
}

.speaker-modal-image-wrap img {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
}

.speaker-modal-name {
    margin: 0 0 6px;
    font-size: 23px;
    font-weight: 800;
    color: #212b36;
    line-height: 1.1;
}

.speaker-modal-role {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #3f3f3f;
    line-height: 1.4;
}

.speaker-modal-body {
    position: relative;
    z-index: 1;
    flex: 1;
    /* max-width: 540px; */
}

.speaker-modal-heading {
    margin: 0 0 20px;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.15;
    color: #E14262;
}

.speaker-modal-highlights {
    margin: 0 0 28px;
    padding-left: 20px;
    color: #1f1f1f;
}

.speaker-modal-highlights li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.5;
}

.speaker-modal-highlights li:last-child {
    margin-bottom: 0;
}

.speaker-modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    text-decoration: none;
}

.speaker-modal-accent {
    position: absolute;
    border-radius: 50%;
    background: #f5b5c4;
    pointer-events: none;
}

.speaker-modal-accent-top {
    top: -84px;
    left: 28px;
    width: 230px;
    height: 230px;
}

.speaker-modal-accent-bottom {
    right: -92px;
    bottom: -112px;
    width: 250px;
    height: 250px;
}

@media (max-width: 1200px) {
    .speaker-card {
        flex: 0 1 calc(33.333% - 16px);
    }
}

@media (max-width: 900px) {
    .speakers-inner {
        padding: 0 24px;
    }

    .speaker-card {
        flex: 0 1 calc(50% - 12px);
    }
    .speakers-title {
        font-size: 2rem;
    }
    .speaker-modal-image-wrap img{
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 600px) {
    .speakers-inner {
        padding: 0 16px;
    }

    .speakers-grid {
        gap: 20px;
    }
    .speaker-card {
        flex: 0 1 calc(50% - 10px);
        padding: 25px 15px;
        border-radius: 24px;
    }
    .speaker-img-wrap {
        /* width: 120px;
        height: 120px; */
    }
    .speaker-name {
        font-size: 17px;
    }
    .speaker-role {
        font-size: 12px;
    }

    .speaker-modal-card {
        gap: 28px;
        padding: 36px 32px;
    }

    .speaker-modal-profile {
        flex-basis: 220px;
    }

    .speaker-modal-name {
        font-size: 24px;
    }

    .speaker-modal-role {
        font-size: 17px;
    }

    .speaker-modal-heading {
        font-size: 32px;
    }

    .speaker-modal-highlights li {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .speaker-card {
        flex: 0 1 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .speaker-modal .modal-dialog {
        padding: 12px;
    }

    .speaker-modal-shell {
        padding: 0;
        border-radius: 0;
    }

    .speaker-modal-card {
        flex-direction: column;
        align-items: flex-start;
        min-height: unset;
        padding: 28px 22px;
    }

    .speaker-modal-profile {
        flex: unset;
        width: 100%;
        text-align: center;
    }

    .speaker-modal-body {
        max-width: none;
        margin: auto;
    }

    .speaker-modal-image-wrap {
        width: 150px;
        height: 150px;
    }

    .speaker-modal-heading {
        font-size: 28px;
    }

    .speaker-modal-highlights li {
        font-size: 16px;
    }

    .speaker-modal-role {
        font-size: 16px;
    }

    .speaker-modal-accent-top {
        top: -70px;
        left: -24px;
        width: 170px;
        height: 170px;
    }

    .speaker-modal-accent-bottom {
        right: -80px;
        bottom: -100px;
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .speaker-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .speaker-modal-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .speaker-modal-name {
        font-size: 22px;
    }

    .speaker-modal-role {
        font-size: 15px;
    }

    .speaker-modal-heading {
        font-size: 24px;
    }

    .speaker-modal-highlights {
        margin-bottom: 22px;
    }

    .speaker-modal-highlights li {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .speaker-modal-cta {
        width: 100%;
    }
}
.right-hero{
    padding-right: 10%;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    /* background-color: #f9f9f9; */
    /* border-top: 1px solid #f0e0e4; */
    /* border-bottom: 1px solid #f0e0e4; */
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    padding: 28px 20px;
}

.partners-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.partners-label {
    flex-shrink: 0;
}

.partners-label-text {
    font-size: 18px;
    font-weight: 800;
    color: #E14262;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-logos {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0;
}

.partner-logo-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.partner-logo-item img {
    max-height: 96px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    /* filter: grayscale(20%); */
    transition: filter 0.2s ease, transform 0.2s ease;
}

.partner-logo-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-divider {
    width: 1px;
    height: 50px;
    background-color: #ddd;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .partners-inner {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    .partners-label-text {
        font-size: 28px;
    }
    .partners-logos {
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 0;
    }
    .partner-logo-item {
        flex: 0 0 48%; /* Force two columns */
        width: 48%;
        padding: 15px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .partner-divider {
        display: flex; /* Changed from block to flex for better behavior */
        align-items: center;
        width: 1px;
        height: 60px;
        background-color: #ddd;
        margin: 0;
        flex-shrink: 0;
    }
    /* Hide the divider between the first row and second row, and subsequent rows */
    .partners-logos .partner-divider:nth-child(4n) {
        display: none;
    }
    .partner-logo-item img {
        /* max-height: 50px;
        max-width: 120px; */
    }
}

/* ========== TRAINER GUIDE SLIDER SECTION ========== */
.trainer-guide-section {
    /* background-color: #ffffff; */
    padding: 60px 20px 70px;
    /* border-top: 1px solid #f0e0e4; */
}

.trainer-guide-inner {
    display: flex;
    align-items: stretch;
    gap: 40px;
    justify-content: center;
}

/* ---- LEFT: Slider ---- */
.trainer-slider-wrap {
    position: relative;
    flex: 0 0 66%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 901px) {
    .trainer-slider-wrap {
        width: 833px;
        height: 511px;
        flex: 0 0 auto;
    }
}

.trainer-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 833 / 511;
    background: #ffedf0;
}

@media (min-width: 901px) {
    .trainer-slider {
        height: 100%;
        aspect-ratio: unset;
    }
}

.trainer-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.trainer-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.trainer-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Caption overlay at bottom */
.trainer-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
    padding: 50px 24px 20px;
    z-index: 5;
}

.trainer-caption p {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    max-width: 85%;
}

/* Dots */
.trainer-dots {
    position: absolute;
    bottom: 14px;
    right: 20px;
    display: flex;
    gap: 7px;
    z-index: 10;
}

.trainer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.trainer-dot.active {
    background: #E14262;
    border-color: #E14262;
    transform: scale(1.3);
}

/* Arrows */
.trainer-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.88);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E14262;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}

.trainer-arrow:hover {
    background: #E14262;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.trainer-arrow-prev { left: 14px; }
.trainer-arrow-next { right: 14px; }

/* ---- RIGHT: Stats Card ---- */
.trainer-stats-card {
    flex: 1;
    border: 0.89px solid rgba(225, 66, 98, 1);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 0;
    background: #ffffff;
}

.trainer-stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
}

.trainer-stat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
}

.trainer-stat-icon svg {
    width: 38px;
    height: 38px;
    stroke: #1a1a2e;
}

.trainer-stat-body {
    display: flex;
    flex-direction: column;
}

.trainer-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #E14262;
    line-height: 1;
    margin: 0 0 4px;
}

.trainer-stat-label {
    font-size: 13px;
    font-weight: 600;
    /* color: #555; */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trainer-stat-divider {
    height: 1px;
    background-color: #f0e0e4;
    margin: 4px 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .trainer-guide-inner {
        flex-direction: column;
        gap: 28px;
    }
    .trainer-slider-wrap {
        flex: unset;
        width: 100%;
    }
    .trainer-stats-card {
        padding: 24px 24px;
    }
    .trainer-stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 560px) {
    .trainer-stat-number {
        font-size: 1.5rem;
    }
    .trainer-arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .trainer-caption p {
        font-size: 14px;
    }
}

/* ========== NBS VENUE SECTION ========== */
.nbs-venue-section {
    padding: 60px 20px 70px;
    background-color: #ffffff;
}

.nbs-venue-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    /* background: #f9f9f9; */
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 6px 30px rgba(225, 66, 98, 0.07);
}

/* ---- Left: Image ---- */
.nbs-venue-img-wrap {
    position: relative;
    flex: 0 0 42%;
    border-radius: 16px;
    /* overflow: hidden; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12); */
}

.nbs-venue-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    /* background: #ffedf0; */
}

.nbs-venue-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.nbs-venue-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.nbs-venue-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.nbs-venue-badge {
      position: absolute;
    bottom: -3%;
    right: -3%;
    background-color: #E14262;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
}

.nbs-venue-badge p {
    margin: 0;
    line-height: 1.3;
}

.nbs-badge-line1 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nbs-badge-line2 {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

/* ---- Right: Content ---- */
.nbs-venue-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nbs-tagline {
    font-size: 13px;
    font-weight: 600;
    /* color: #888; */
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    margin: 0;
}

.nbs-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #E14262;
    margin: 0 0 4px;
    line-height: 1.2;
}

.nbs-desc {
    font-size: 14px;
    /* color: #444; */
    line-height: 1.7;
    margin: 0;
}

/* ---- CTA Row ---- */
.nbs-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.nbs-time-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.nbs-time-info svg {
    flex-shrink: 0;
    color: #555;
}

.nbs-time-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #888;
    margin: 0;
}

.nbs-time-value {
    font-size: 15px;
    font-weight: 700;
    color: #212b36;
    margin: 0;
    white-space: nowrap;
}

.nbs-join-btn {
    background-color: #E14262;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.nbs-join-btn:hover {
    background-color: #cf3d57;
    transform: scale(1.03);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .nbs-venue-inner {
        flex-direction: column;
        gap: 30px;
        padding: 24px;
    }
    .nbs-venue-img-wrap {
        flex: unset;
        width: 100%;
    }
    .nbs-heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 560px) {
    .nbs-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .nbs-heading {
        font-size: 1.4rem;
    }
}
/* ========== EXPERIENCE SECTION ========== */
.experience-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
}

.experience-sub-title {
    color: #E14262;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.experience-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #2D3436;
    margin-bottom: 50px;
    line-height: 1.2;
}

.experience-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.experience-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border: 1.5px solid #E14262;
    border-radius: 24px;
    padding: 24px;
    text-align: left;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(225, 66, 98, 0.12);
}

.card-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 16px;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-item-title {
    font-size: 22px;
    font-weight: 800;
    color: #212b36;
    margin-bottom: 12px;
}

.card-item-desc {
    font-size: 15px;
    color: #4A4A4A;
    line-height: 1.6;
    margin: 0;
}

.experience-cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .experience-grid {
        justify-content: center;
    }
    .experience-card {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 60px 15px;
    }
    .experience-main-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .experience-card {
        min-width: 100%;
        padding: 20px;
    }
    .experience-cta .btn-join {
        width: 100%;
        max-width: 320px;
    }

    .nbs-venue-section{
        padding-top: 20px;
    }
    .experience-section{
        padding-top: 20px;
    }
}

/* ========== MOBILE STICKY BAR ========== */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
background: linear-gradient(90deg, #FFEEF3 0%, #FFFFFF 100%);
box-shadow: 0px -2px 12px 2px rgba(0, 0, 0, 0.25);
    padding: 14px 20px;
    z-index: 2000;
    display: none;
    border-top: 1px solid #FFEDF0;
}

.sticky-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-bar-text {
    flex: 1;
}

.sticky-bar-title {
    font-size: 20px;
    font-weight: 800;
    color: #212b36;
    margin: 0;
    line-height: 1.1;
}

.sticky-bar-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: #4A4A4A;
    margin: 0;
    line-height: 1.1;
}

.sticky-bar-btn {
    background-color: #E14262;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 800;
    border: none;
    white-space: nowrap;
    /* margin-left: 15px; */
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 991px) {
    .mobile-sticky-bar {
        display: block;
        padding: 5px;
    }
    body {
        padding-bottom: 90px;
    }
}

@media (max-width: 480px) {
    .sticky-bar-inner {
        padding: 0 5px;
    }
    .sticky-bar-title {
        font-size: 16px;
    }
    .sticky-bar-subtitle {
        font-size: 12px;
    }
    .sticky-bar-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}
