.navbar {
    background-color: black !important;
}

.hero-section {
    background-color: black !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section .hero-content {
    width: 90%;
    min-height: 51.25vw;
    /* height: 90vh; */
    margin: 0 auto;
    padding: 50px 0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.hero-section .hero-content.event-content {
    width: 90%;
    height: auto;
    padding: 0 0;
}

.hero-content .introVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.hero-content .introHeading {
    font-size: 52px;
    line-height: 60px;
    color: white;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
    text-shadow:
        4px 4px 0 rgba(0, 0, 0, 0.5),
        -2px 4px 0 rgba(0, 0, 0, 0.5),
        4px -2px 0 rgba(0, 0, 0, 0.5),
        -2px -2px 0 rgba(0, 0, 0, 0.5);
}

.hero-content .introPara {
    font-size: 20px;
    margin-bottom: 36px;
    color: #ffffff;
    font-weight: 300;
    -webkit-text-stroke: 0px rgba(0, 0, 0, 0.3);
    text-shadow:
        0 0 3px rgba(0, 0, 0, 1),
        0 0 6px rgba(0, 0, 0, 1),
        0 0 12px rgba(0, 0, 0, 1),
        0 0 20px rgba(0, 0, 0, 0.9);
}

.section-divider {
    width: 100%;
    height: 48px;
    background-color: #FBCF00;
    margin: 0px 0;
}

.custom_btn {
    background-color: var(--primary-color);
}

.text-primaryColor {
    color: #FBCF00;
}

/* =============================================================
   EVENTS SECTION — Nitro redesign
   Paste this into your stylesheet (e.g. style.css or nitro.css)
   All selectors use .ev-* prefix to avoid any theme conflicts.
   ============================================================= */

/* ---------- Section ---------- */
.events-section {
    background-image: url('./../images/nitro-bg.png');
    background-color: #0c0e14;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 70px 0;
    position: relative;
}

.events-section .weekly-events {
    margin-bottom: 60px;
}

.events-section .all-events .all-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
    row-gap: 24px;
}

/* ---------- Owl wrapper ---------- */
.events-section .events-owl {
    position: relative;
}

.events-owl .owl-item {
    display: flex;
}

.events-owl .owl-item .ev-card {
    flex: 1;
    max-height: unset;
}

/* ---------- Card ---------- */
.ev-card {
    background: #13182a;
    border-radius: 3px;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 0 !important;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    /* max-height: 490px; */
}

.ev-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

/* ---------- Image wrapper ---------- */
.ev-img {
    position: relative;
    overflow: hidden;
    line-height: 0;
    /* No dark panel / no pseudo-element overlay */
}

.ev-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.ev-card.group-card .ev-img img {
    height: 320px;
}

.ev-card.group-card .ev-body {
    min-height: 205px;
}

.ev-card:hover .ev-img img {
    transform: scale(1.05);
}

/* Invisible click overlay */
.ev-abs-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

/* ---------- Card body ---------- */
.ev-body {
    padding: 44px 18px 30px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    flex: 1;
    background: #141824;
    position: relative;
    /* min-height: 220px; */
    height: fit-content;
}

.ev-body .logo-img {
    width: 62px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -35px;
}

/* Title */
.ev-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin: 0 0 7px;
    line-height: 1.3;
    /* Reset theme h5 margin */
    padding: 0;
}

.ev-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.ev-title a:hover {
    color: #FBCF00;
}

/* Gold date / venue */
.ev-meta {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FBCF00;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Price */
.ev-price {
    font-size: 16px;
    color: #989fab;
    margin: 0 0 0px;
    font-weight: 500;
}

/* Discipline */
.ev-type {
    font-size: 16px;
    font-weight: 500;
    /* letter-spacing: 0.14em; */
    text-transform: uppercase;
    color: #989fab;
    margin: 0 0 18px;
}

/* ---------- Owl nav — round gold circles ---------- */
.events-section .events-owl .owl-nav {
    margin: 0;
    position: static;
}

.events-section .events-owl .owl-nav .owl-prev,
.events-section .events-owl .owl-nav .owl-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: #FBCF00 !important;
    color: #0c0e14 !important;
    font-size: 0 !important;
    line-height: 50px !important;
    text-align: center !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    z-index: 10;
    cursor: pointer;
    transition: background 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Use the existing fa-chevron-left/right icon inside */
.events-section .events-owl .owl-nav .owl-prev i,
.events-section .events-owl .owl-nav .owl-next i {
    font-size: 1.3rem !important;
    color: #0c0e14 !important;
    line-height: 1 !important;
}

.events-section .events-owl .owl-nav .owl-prev {
    left: -110px !important;
}

.events-section .events-owl .owl-nav .owl-next {
    right: -110px !important;
}

.events-section .events-owl .owl-nav .owl-prev:hover,
.events-section .events-owl .owl-nav .owl-next:hover {
    background: #FBCF00 !important;
}

/* Disabled state */
.events-section .events-owl .owl-nav .owl-prev.disabled,
.events-section .events-owl .owl-nav .owl-next.disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
}

/* Hide dots */
.events-section .events-owl .owl-dots {
    display: none !important;
}

/* ---------- Null out theme styles that bleed into .ev-card ---------- */

.ev-card::before,
.ev-card::after {
    display: none !important;
}

.ev-card .services-icon {
    display: none !important;
}

.ev-card .item-content {
    padding-top: 0 !important;
}

/* PRELOADER  */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    bottom: 0;
    background-color: #000000;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOADER  */
.loading-container {
    display: block;
    width: 100%;
    margin: 16px 0;
}

.loader {
    margin: 0 auto;
    position: relative;
    width: 55px;
    height: 55px;
    background-repeat: no-repeat;
    background-image: linear-gradient(#FFF 50px, transparent 0),
        linear-gradient(#FFF 50px, transparent 0),
        linear-gradient(#FFF 50px, transparent 0),
        linear-gradient(#FFF 50px, transparent 0),
        linear-gradient(#FFF 50px, transparent 0),
        linear-gradient(#FFF 50px, transparent 0);
    background-size: 5px 40px;
    background-position: 0px center, 10px center, 20px center, 30px center, 40px center, 50px center;
    animation: spikeUp 1s linear infinite alternate;
}

@keyframes spikeUp {
    0% {
        background-size: 5px 40px
    }

    16% {
        background-size: 5px 55px, 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 40px
    }

    33% {
        background-size: 5px 40px, 5px 55px, 5px 40px, 5px 40px, 5px 40px, 5px 40px
    }

    50% {
        background-size: 5px 40px, 5px 40px, 5px 55px, 5px 40px, 5px 40px, 5px 40px
    }

    66% {
        background-size: 5px 40px, 5px 40px, 5px 40px, 5px 55px, 5px 40px, 5px 40px
    }

    83% {
        background-size: 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 55px, 5px 40px
    }

    100% {
        background-size: 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 40px, 5px 55px
    }
}

.ceo_section_container {
    padding-left: 89px !important;
}

.sellwithus_about_section {
    padding-right: 89px !important;
}

/* RESEND CONFIRMATION MODAL STYLING START  */

.navbar .resendNavLink {
    position: relative;
}

.navbar .resendModal {
    position: absolute;
    top: 35%;
    right: -16px !important;
    margin-top: 8px;
    display: none;

}

.navbar .resendModal .modal-box {
    max-width: 500px;
    width: 500px !important;
}

.navbar .resendModal .modal-box .modal-title {
    text-align: start;
}

/* MEDIA QUERIES  */

/* ── 1200px – 1400px: prevent resend button overflow ── */
@media (min-width: 1200px) and (max-width: 1450px) {
    .top-includes {
        display: flex !important;
        /* flex-direction: column !important; */
        align-items: flex-end !important;
        gap: 8px !important;
    }

    .top-includes li {
        margin: 0 !important;
    }

    .top-includes .btn {
        font-size: 12px !important;
        padding: 20px 4px !important;
        white-space: nowrap !important;
    }

    /* Give the CTA column a bit more room */
    .nitro-header-actions .col-xl-5 {
        flex: 0 0 48% !important;
        max-width: 48% !important;
    }

    .nitro-header-actions .col-xl-7 {
        flex: 0 0 52% !important;
        max-width: 52% !important;
    }
}

/* ── 768px – 1199px: expand logo column width ── */
@media (min-width: 768px) and (max-width: 1199px) {
    .nitro-header-logo img {
        max-height: 50px !important;
        /* prevent it being capped too small */
        width: auto !important;
    }

    /* Widen the logo column — hamburger col only needs ~60px */
    .nitro-header-row>.col-lg-3 {
        flex: 0 0 70% !important;
        max-width: 70% !important;
    }

    .nitro-header-row>.col-lg-9 {
        flex: 0 0 30% !important;
        max-width: 30% !important;
    }

    .nitro-header-actions .nav-action-btns {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .navbar .resendModal {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: 0 !important;
        display: none;
        align-items: center;
        justify-content: center;
        background: #000000bd;
    }

    .navbar .resendModal .modal-box {
        background-color: #141824 !important;
        width: 94% !important;
        max-width: 500px !important;
        max-height: 90vh;
        overflow-y: auto;
        padding: 20px;
        position: relative;
    }

    .navbar .resendModal .modal-box .modal-close {
        position: absolute;
        top: 24px;
        right: 12px;
        font-size: 32px;
        color: rgb(247, 247, 247);
    }

    .navbar .resendModal .modal-box .modal-close:hover {
        color: rgb(211, 0, 0);
        cursor: pointer;
    }

    .navbar .resendModal .modal-box .modal-title {
        margin-top: 6px !important;
        margin-bottom: 16px !important;
    }

    .navbar .resendModal .modal-box .form-group {
        text-align: start !important;
        margin-bottom: 24px !important;
    }

    .navbar .resendModal .modal-box .form-control {
        background-color: #1B2230 !important;
    }

    .navbar .resendModal .modal-box .modal-footer-btns {
        display: flex;
        flex-direction: column-reverse;
        gap: 12px;
    }
}

/* RESEND CONFIRMATION MODAL STYLING END  */

@media (max-width: 1250px) {


    .events-section .events-owl .owl-nav .owl-prev {
        left: 0 !important;
    }

    .events-section .events-owl .owl-nav .owl-next {
        right: 0 !important;
    }
}


@media (max-width: 992px) {

    p,
    li,
    div {
        font-size: 14px !important;
    }

    .btn {
        padding: 12px 24px !important;
    }

    .btn+.btn {
        margin-top: 0 !important;
        padding: 12px 4px !important;
        font-size: 12px !important;
    }

    /* forms */
    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="password"],
    input[type="search"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select,
    .form-control {
        font-size: 14px;
        height: 52px;
        padding-bottom: 7px;
        padding-left: 16px;
        padding-right: 12px;
        padding-top: 7px;
    }

    .special-heading {
        font-size: 26px !important;
    }

    /* SELL WITH US  */
    .ceo_section_container {
        padding-right: 25px !important;
        padding-left: 25px !important;
    }

    .sellwithus_about_section {
        padding-right: 25px !important;
        padding-left: 25px !important;
    }

    .hero-section {
        min-height: 35vh;
    }

    /* HIDE TEXTUAL INFO IN MOBILE VIEW IN EVENT PAGE  */
    .hero-section .hero-text {
        display: none;
    }

    .hero-section .hero-content {
        width: 100%;
        height: 100%;
        padding: 10px 0;
    }

    .hero-section .hero-content .hero-information {
        margin-top: 10px !important;
    }

    .hero-content .introHeading {
        font-size: 24px !important;
        line-height: 30px !important;
        margin-bottom: 0 !important;
        padding-bottom: 12px !important;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
        text-shadow:
            4px 4px 0 rgba(0, 0, 0, 0.5),
            -2px 4px 0 rgba(0, 0, 0, 0.5),
            4px -2px 0 rgba(0, 0, 0, 0.5),
            -2px -2px 0 rgba(0, 0, 0, 0.5);
    }

    .hero-content .introPara {
        font-size: 20px;
        margin-bottom: 8px;
        margin-top: 12px;
        color: #ffffff;
        font-weight: 300;
        line-height: 1.5;
        -webkit-text-stroke: 0px rgba(0, 0, 0, 0.3);
        text-shadow:
            0 0 3px rgba(0, 0, 0, 1),
            0 0 6px rgba(0, 0, 0, 1),
            0 0 12px rgba(0, 0, 0, 1),
            0 0 20px rgba(0, 0, 0, 0.9);
    }

    .hero-content .hero-btn {
        text-align: center;
        margin: 0 auto;
        display: block;
    }

    .hero-section .hero-overlay {
        padding: 8px 16px !important;
    }

    .hero-section .hero-overlay h4 {
        font-size: 16px !important;
        margin-bottom: 0 !important;
    }

    .hero-section .hero-overlay p {
        font-size: 12px !important;
    }

    .section-divider {
        width: 100%;
        height: 28px;
        background-color: #FBCF00;
    }

    .events-section {
        padding: 16px 0;

    }

    .events-section .all-events .all-events-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        column-gap: 18px;
        row-gap: 24px;
    }

    .events-section .all-events .allEventsHeading {
        margin-top: 48px;
    }



    /* Title */
    .ev-title {
        font-size: 18px;
        margin: 0 0 7px;
        line-height: 1.3;
    }

    /* Gold date / venue */
    .ev-meta {
        font-size: 10px;
        margin-bottom: 8px;
    }

    /* Price */
    .ev-price {
        font-size: 12px;
    }

    /* Discipline */
    .ev-type {
        font-size: 12px;
        font-weight: 500;
        margin: 0 0 14px;
    }


}

@media (min-width: 768px) and (max-width: 1200px) {
    .events-section .all-events .all-events-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

    }


}

@media (min-width: 570px) and (max-width: 992px) {
    .hero-section .hero-content .hero-information {
        margin-top: 80px !important;
    }

    .hero-content .introHeading {
        font-size: 36px !important;
        line-height: 42px !important;


    }

    .hero-content .introPara {
        font-size: 18px !important;
        margin-top: 18px !important;
    }
}


/* ===== RESEND MODAL ===== */
#resendModal {
    padding: 16px;
}

#resendModal .modal-box {
    background: #141824;
    border: 1px solid #2e3446;
    border-radius: 8px;
    width: 100%;
    max-width: 520px;
    padding: 24px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    margin-top: 60px;
    /* pushes it toward top */
    align-self: flex-start;
}

#resendModal .modal-box .modal-close {
    position: absolute;
    top: 8px;
    right: 24px;
    cursor: pointer;
    color: #778;
    font-size: 53px;
    line-height: 1;
    background: none;
    border: none;
    transition: color 0.2s;
    padding: 0 !important;
}

#resendModal .modal-box .modal-close:hover {
    color: #fff;
}

#resendModal .modal-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
}

#resendModal .modal-bar {
    width: 40px;
    height: 3px;
    background: #FBCF00;
    margin-bottom: 24px;
}

/* Match checkout form-control style */
#resendModal .form-group {
    margin-bottom: 24px !important;

}

#resendModal .form-control {
    background-color: #1b2230 !important;
    border: 1px solid #2e3446 !important;
    color: #f0f0f0 !important;
    border-radius: 4px;
}

#resendModal .form-control:focus {
    border-color: #FBCF00 !important;
    box-shadow: 0 0 0 2px rgba(251, 207, 0, 0.15) !important;
    outline: none;
}

#resendModal .form-control::placeholder {
    color: #556;
}

#resendModal select.form-control option {
    background: #1b2230;
    color: #f0f0f0;
}

#resendModal label {
    color: #ccc;
    font-size: 0.88rem;
    margin-bottom: 14px;
    display: block;
    align-items: start;
    text-align: start;

}

#resendModal .required {
    color: #FBCF00;
}

#resendModal .modal-footer-btns {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

#resendModal .modal-footer-btns .cancelBtn:hover {
    color: white;
}

@media (max-width: 480px) {
    #resendModal .modal-box {
        padding: 24px 18px;
        margin-top: 20px;
    }

    #resendModal .modal-footer-btns {
        flex-direction: column-reverse;
    }

    #resendModal .modal-footer-btns button {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
    }
}