/* including required css files */
@import url("fonts.css");
@import url("roots.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fontRegular);
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0 15px;
    background-color: var(--darkColor);
}

a {
    text-decoration: none;
}

/* header section */
.hero {
    width: 100%;
    height: 100%;
    background: rgb(190, 190, 190);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background-image: url("../../assets/images/home_hero_image1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 34px 50px;
}

.hero-img {
    width: 100%;
    height: 100%;
    background: rgb(190, 190, 190);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background-image: url("../../assets/images/hero-img.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 34px 50px;
}

.event-details-header {
    margin-top: 34px;
    margin-bottom: 50px;
}

.nav-bar {
    width: 100%;
    background-color: #ffffff25;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 10px;
}

.logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 68px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
    font-family: var(--fontMedium);
}

.nav-links ul li a:hover {
    color: var(--primaryColor);
    transition: all 0.3s ease-in-out;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 11px;
}

.btn {
    background-color: var(--primaryColor);
    border-radius: 10px;
    padding: 10px 19px;
    width: fit-content;
    cursor: pointer;
}

.btn p {
    color: var(--darkColor) !important;
    font-size: 15px !important;
    font-family: var(--fontBold) !important;
}

.arr-btn {
    background-color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
}

.yellow-outline-btn {
    background-color: transparent;
    border: 2px solid var(--primaryColor);
}

.yellow-outline-btn p {
    color: var(--primaryColor) !important;
}

.dart-btn {
    background-color: var(--darkColor);
}

.dart-btn p {
    color: var(--white) !important;
}

.arr-outline-btn {
    background-color: transparent;
    border: 2px solid var(--white);
}

.arr-dark-btn {
    background-color: var(--darkColor);
}

.arrow-btn {
    display: flex;
    align-items: center;
}

.hamburger-menu {
    display: none;
}

.header-info {
    padding: 50px 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.welcome-text {
    border: 1px solid var(--white);
    border-radius: 54px;
    width: fit-content;
    padding: 2px 10px;
}

.welcome-text p {
    color: var(--white);
    font-size: 18px;
}

.header-title {
    font-size: 120px;
    color: var(--white);
    font-family: var(--fontLight);
    margin-right: 15%;
    line-height: 100px;
    letter-spacing: 0;
}

.header-title span {
    line-height: 1;
    display: inline-flex;
    align-items: flex-start;
}

.header-title sup {
    font-size: 70px;
    vertical-align: top;
    position: relative;
    top: -5px;
    margin-left: 2px;
}

.header-subtitle {
    font-size: 15px;
    font-family: var(--fontMedium);
    color: var(--whiteColor);
    margin-right: 70%;
    line-height: 20px;
}

.header-title-event {
    font-size: 150px;
    color: var(--primaryColor);
    font-family: var(--fontLight);
    margin-right: 15%;
    line-height: 154px;
    letter-spacing: 0;
}

.header-subtitle-event {
    font-size: 15px;
    font-family: var(--fontMedium);
    color: var(--whiteColor);
    margin-right: 30%;
    line-height: 20px;
}

.header-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.countdown-container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 80%;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 950px) {
    .hero {
        background-image: url("../../assets/images/home_hero_image1.png");
        padding: 15px;
    }

    .hero-img {
        padding: 15px;
    }

    .header-info {
        align-items: start;
        padding: 30px 0 10px 0;
        gap: 5px;
    }

    .header-title {
        font-size: 40px;
        margin-right: 0;
        line-height: 50px;
    }

    .header-title sup {
        font-size: 15px;
        top: 5px;
    }

    .header-btns {
        flex-direction: column;
        align-items: start;
        margin-top: 15px;
        justify-content: start;
        gap: 30px;
    }

    .header-btn {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 5px;
    }

    .countdown-container {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
        width: 100%;
    }

    .stats {
        padding: 70px 8px;
    }

    .stats-title {
        font-size: 40px;
        line-height: 40px;
    }
}

/* End of header section */

/* Statistics section */

.module-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stats {
    width: 100%;
    padding: 90px 53px;
    display: flex;
    flex-direction: column;
}

.stats-title {
    font-size: 55px;
    color: var(--white);
    font-family: var(--fontLight);
    line-height: 50px;
}

.stats-content {
    width: 100%;
    display: flex;
    margin-top: 24px;
}

.stats-number {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stats-number-subtile {
    font-size: 15px;
    font-family: var(--fontMedium);
    color: var(--white);
    margin-right: 60%;
    margin-bottom: 20px;
}

.stats-nums {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.stats-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stats-details .circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f1c40f;
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stats-num {
    background-color: #ffffff10;
    border: 1px solid var(--white);
    border-radius: 16px;
    display: flex;
    padding: 14px;
    width: 100%;
}

.stats-num-text {
    display: flex;
    flex-direction: column;
}

.stats-num-text p:first-child {
    font-size: 16px;
    color: var(--primaryColor);
    margin-bottom: 5px;
    font-family: var(--fontBold);
}

.stats-num-text p:last-child {
    font-size: 13px;
    color: var(--white);
    font-family: var(--fontLight);
}

.stats-video {
    width: 100%;
    height: 500px;
    border-radius: 23px;
    background-color: #16161665;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.video-player {
    height: 80%;
    background-color: #ffffff10;
    border-radius: inherit;
}

.next-event {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.next-event-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-image {
    width: 93px;
    height: 62px;
    background-color: #00000034;
    border-radius: 5px;
    border: 5px solid #00000034;
}

.event-image img {
    width: 100%;
    height: auto;
}

.next-event-text p:first-child {
    font-size: 21px;
    font-family: var(--fontMedium);
    color: var(--white500Color);
}

.next-event-text p:last-child,
.next-event-date p:last-child {
    font-size: 17px;
    font-family: var(--fontMedium);
    color: var(--white200Color);
}

.next-event-date p:first-child {
    font-size: 31px;
    font-family: var(--fontMedium);
    color: var(--primaryColor);
    text-align: end;
}

@media screen and (max-width: 950px) {
    .stats {
        padding: 70px 8px;
    }

    .module-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .module-container .image {
        width: 100%;
    }

    .module-container .image img {
        width: 100%;
    }

    .stats-details .circle {
        display: none;
    }

    .stats-title {
        text-align: start;
        margin: 0;
        font-size: 40px;
        line-height: 40px;
    }

    .stats-content {
        flex-direction: column;
        justify-content: start;
        gap: 10px;
    }

    .stats-number-header {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        margin-bottom: 20px;
    }

    .stats-number-subtile {
        margin-right: 0%;
        text-align: start;
    }

    .stats-nums {
        margin-right: 0;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .stats-num {
        padding: 15px 10px;
        gap: 10px;
    }

    .stats-num svg {
        height: 30px;
        width: 30px;
    }

    .stats-num-text p:first-child {
        font-size: 14px;
        color: var(--primaryColor);
        font-family: var(--fontBold);
    }

    .video-player {
        height: 100%;
        width: 100%;
        background-color: #ffffff10;
        border-radius: inherit;
    }
}

/* End Statistics section */

/* UP next section */
.dark-section {
    position: relative;
}

.dark-section .mtn-illustration {
    position: absolute;
    bottom: -50px;
    right: 0;
    height: auto;
}

.up-next {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        to bottom,
        #ffffff,
        #ffcb05 25% 50%,
        transparent
    );
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 150px 45px 0 45px;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
}

.up-next-title {
    font-size: 160px;
    font-family: var(--fontLight);
    color: var(--whiteColor);
    line-height: 150px;
    text-align: center;
}

.up-next-subtitle {
    text-align: center;
    justify-content: center;
    font-size: 40px;
    font-family: var(--fontLight);
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--white);
    border-radius: 12px;
    width: fit-content;
    margin: auto;
    margin-top: 1rem;
    padding: 5px 25px;
}

.up-next-subtitle.except {
    border: none;
    margin-top: 2rem;
    font-size: 30px;
    background-color: transparent;
}

.up-next-stats {
    display: flex;
    gap: 45px;
    justify-content: center;
    margin: 25px 0;
}

.up-next-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.up-next-stat-text P:first-child {
    font-size: 18px;
    color: var(--white100Color);
    font-family: var(--fontMedium);
}

.up-next-stat-text P:last-child {
    font-size: 12px;
    color: var(--white200Color);
    font-family: var(--fontMedium);
}

.count-down {
    display: flex;
    /* width: 80%; */
    gap: 14px;
    justify-content: space-between;
    align-items: center;
}

.count-down-line {
    height: 1px;
    width: 100%;
    background-color: var(--white);
}

.counters {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 18px;
}

.counter {
    /* padding: 20px 15px; */
    height: 90px;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background-image: linear-gradient(to bottom, #ffffff10, #999999);
    border: 3px solid var(--white);
}

.counter p:first-child {
    font-size: 14px;
    color: var(--white);
    font-family: var(--fontMedium);
}

.counter p:last-child {
    color: var(--white100Color);
    font-family: var(--fontMedium);
}

.callto-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin: 10px;
}

.callto-action .callto-action-text {
    font-size: 15px;
    color: var(--whiteColor);
    font-family: var(--fontMedium);
    text-align: center;
    margin: 0 25%;
}

@media screen and (max-width: 950px) {
    .up-next {
        padding: 50px 10px 0 10px;
    }

    .up-next-title {
        font-size: 60px;
        line-height: 70px;
    }

    .up-next-subtitle {
        font-size: 27px;
    }

    .counters {
        gap: 5px;
    }

    .counter {
        flex-grow: 1;
        height: 70px;
        width: 70px;
    }

    .counter p:first-child {
        font-size: 14px;
    }

    .counter p:last-child {
        font-size: 12px;
    }

    .up-next-stats {
        gap: 10px;
    }

    .up-next-stat-text P:first-child {
        font-size: 12px;
    }

    .up-next-stat-text P:last-child {
        font-size: 10px;
    }

    .callto-action .callto-action-text {
        margin: 0;
        font-size: 13px;
    }

    .dark-section .mtn-illustration {
        position: absolute;
        bottom: -50px;
        right: 0;
        height: 120px;
    }

    .dark-section .mtn-illustration img {
        height: 100%;
        width: 100%;
    }
}

/* End of Up next section */

/*  */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    padding: 0 55px;
}

.sectioin-left-title {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.speaker-titel {
    color: var(--black300Color);
    font-size: 55px;
    font-family: var(--fontMedium);
    text-wrap: nowrap;
    line-height: 50px;
}

.speaker-des {
    color: var(--black300Color);
    font-family: var(--fontMedium);
    font-size: 14px;
    margin-left: 35%;
    text-align: end;
}

@media screen and (max-width: 950px) {
    .section-title {
        flex-direction: column;
        align-items: start;
        gap: 10px;
        padding: 40px 10px;
    }

    .sectioin-left-title {
        gap: 5px;
    }

    .speaker-titel {
        font-size: 40px;
        line-height: 40px;
    }

    .speaker-des {
        margin: 0;
        text-align: start;
        font-size: 12px;
    }
}

.speakers {
    height: 500px;
    width: 100%;
    display: flex;
    gap: 20px;
    position: relative;
    margin: 40px 0;
}

.speakers::-webkit-scrollbar {
    display: none;
}

.speakers::-webkit-scrollbar-thumb {
    display: none;
}

.speakers-carousel {
    height: 100%;
    width: 90%;
    background-image: linear-gradient(to right, #ffffff50, transparent);
    border-top-left-radius: 26px;
    border-bottom-left-radius: 26px;
    display: flex;
    align-items: center;
    position: relative;
}

.flip-cards {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    align-items: center;
    position: absolute;
}

.speakers .flip-cards::-webkit-scrollbar {
    display: none;
}

.speakers .flip-cards::-webkit-scrollbar-thumb {
    display: none;
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    min-width: 320px;
    height: 450px;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 17px;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.speaker-info {
    position: absolute;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, #161616, transparent);
    bottom: 0;
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding: 10px;
}

.speaker-info p:first-child,
.back-speaker-info p:first-child {
    color: var(--white100Color);
    font-family: var(--fontMedium);
    font-size: 20px;
    text-align: start;
    margin-bottom: 0;
}

.speaker-info p:last-child,
.back-speaker-info p:last-child {
    color: var(--white200Color);
    font-family: var(--fontLight);
    font-size: 12px;
    text-align: start;
    margin-bottom: 0;
}

/* Style the back side */
.flip-card-back {
    background-color: var(--dackerColor);
    color: var(--whiteColor);
    transform: rotateY(180deg);
    padding: 14px;
}

.card-back-head {
    display: flex;
    gap: 10px;
}

.speaker-pic {
    width: 56px;
    height: 54px;
    border-radius: 3px;
}

.speaker-pic img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.back-speaker-info {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.back-body {
    text-align: start;
    font-size: 14px;
}

.back-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.back-footer p:first-child {
    margin-bottom: 0;
    font-size: 21px;
    color: var(--white100Color);
    font-family: var(--fontMedium);
}

.back-footer p:last-child {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--white200Color);
    font-family: var(--fontLight);
}

.carousel-btns {
    display: flex;
    gap: 6px;
}

.reviews {
    padding: 90px 55px 91px 55px;
}

.review {
    display: flex;
    width: 100%;
    gap: 1rem;
    margin-top: 2rem;
}

.review .video-player {
    width: 55%;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
}

.testimonial-carousel {
    width: 45%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.testimonial-carousel .slides {
    height: 100%;
}

.testimonial-carousel .slides img {
    width: 100%;
    display: none;
    height: 100%;
    border-radius: 10px;
}

/* Indicators */
.testimonial-carousel .indicators {
    text-align: center;
    margin-top: 10px;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
}

.testimonial-carousel .dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #444;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-carousel .dot.active {
    background-color: #bbb;
}

@media screen and (max-width: 950px) {
    .reviews {
        padding: 40px 8px;
    }

    .review {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .review-message {
        font-size: 15px;
        color: var(--white);
        text-align: start;
        line-height: 23px;
    }

    .review-action svg {
        height: 35px;
        width: 35px;
    }

    .review-profile img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .reviewer-info p:first-child {
        font-size: 20px;
        color: var(--white);
        font-family: var(--fontBold);
    }

    .reviewer-info p:last-child {
        font-size: 12px;
        color: var(--white200Color);
    }

    .review .video-player {
        width: 100%;
        border-radius: 20px;
    }

    .testimonial-carousel {
        width: 100%;
        aspect-ratio: auto;
    }

    .testimonial-carousel .slides img {
        width: 100%;
        height: auto;
    }
}

.partners-wrapper {
    padding: 52px 55px;
    margin-top: 90px;
    border-top: 1px solid #ffffff25;
    border-bottom: 1px solid #ffffff25;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partners-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* margin-right: 30%; */
}

.partners-title .speaker-titel {
    color: var(--white);
    line-height: 68px;
    font-family: var(--fontLight);
    text-wrap: wrap;
}

.partners-des {
    font-size: 14px;
    font-family: var(--fontMedium);
    color: var(--whiteColor);
}

.partners-logos {
    padding: 36px 35px;
    background-color: var(--white);
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 55px;
    row-gap: 33px;
}

.prt-logo img {
    filter: grayscale(100%);
    /* Makes the image completely black and white */
    transition: filter 0.2s ease-in-out;
    /* Smooth transition for the filter property */
}

.prt-logo img:hover {
    filter: grayscale(0%);
    /* Removes the grayscale effect on hover */
}

@media screen and (max-width: 950px) {
    .reviews {
        padding: 40px 8px;
    }

    .partners-wrapper {
        padding: 40px 8px;
        display: flex;
        flex-direction: column;
    }

    .partners-title {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-right: 0;
    }

    .partners-title .speaker-titel {
        color: var(--white);
        line-height: 30px;
        margin-bottom: 1rem;
        font-size: 35px;
        font-family: var(--fontLight);
    }

    .partners-des {
        font-size: 14px;
        margin-bottom: 2rem;
        font-family: var(--fontMedium);
        color: var(--whiteColor);
    }

    /* .partners-logos {
        padding: 12px;
        background-color: var(--white);
        border-radius: 12px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        min-width: 100%;
        overflow-x: scroll;
    } */
}

.gallery-wrapper {
    width: 100%;
    background-image: linear-gradient(
        to bottom,
        #101010,
        #101010 25% 50%,
        transparent
    );
    margin-top: 91px;
    border-radius: 37px;
    padding: 54px;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.galleery-title {
    font-size: 70px;
    color: var(--white);
    font-family: var(--fontLight);
    margin-right: 15%;
    line-height: 68px;
}

.gallery-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background-color: #1a1a1a;
    border: 1px solid #33333350;
    border-radius: 20px;
}

.gallerly-filter {
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dcdcdc;
    border-radius: 21px;
    cursor: pointer;
}

.gallerly-filter p {
    font-size: 12px;
    color: var(--dackerColor);
    text-wrap: nowrap;
}

.active-filter {
    background-color: var(--primaryColor);
}

.active-filter p {
    font-family: var(--fontBold);
}

.show-image {
    width: 350px;
    min-width: 350px;
    height: 242px;
    border-radius: 17px;
    background-color: #ffffff10;
    position: relative;
}

.show-image img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.gallery-shows {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: #101010;
    padding: 20px 0;
}

.gallery-show {
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-show::-webkit-scrollbar {
    display: none;
}

.gallery-show::-webkit-scrollbar-track {
    display: none;
}

.gallery-show::-webkit-scrollbar-thumb {
    display: none;
}

.show-images {
    display: flex;
    gap: 18px;
}

.image-shows-btns {
    position: absolute;
    width: 100%;
    padding: 0 10px;
}

@media screen and (max-width: 950px) {
    .gallery-wrapper {
        padding: 15px;
    }

    .gallery-header {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

    .galleery-title {
        font-size: 28px;
        color: var(--white);
        font-family: var(--fontLight);
        margin-right: 0;
        line-height: 24px;
    }

    .gallery-filters {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .gallerly-filter {
        flex-grow: 1;
    }
}

/* End of Gallery section  */

/* footer section */
.footer {
    width: 100%;
    background-image: linear-gradient(
        to bottom,
        #ffffff,
        #ffcb05 25% 50%,
        transparent
    );
    margin-top: 120px;
    border-radius: 25px;
    padding: 70px 50px 10px 50px;
}

.footer-form {
    display: flex;
    gap: 20px;
}

.form-text {
    width: 50%;
}

.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    gap: 1rem;
    width: calc(250px * 12);
    animation: scroll 40s linear infinite;
}

.logo-track img {
    height: 80px; /* adjust logo size */
    width: auto;
    margin: 0 20px;
    object-fit: contain;
    filter: brightness(1);
    transition: transform 0.3s ease;
}

.logo-track img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.form-text p:first-child {
    font-size: 80px;
    font-family: var(--fontLight);
    color: var(--blackColor);
    line-height: 68px;
    margin-bottom: 24px;
}

.form-text p:last-child {
    font-size: 14px;
    font-family: var(--fontMedium);
    color: var(--blackColor);
    line-height: 25px;
}

.form-section {
    padding: 10px;
    background-image: linear-gradient(to right, #10101060, transparent);
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    display: flex;
    gap: 16px;
    width: 100%;
}

.footer-links,
.footer-fields {
    background-color: #16161627;
    border-radius: 13px;
    padding: 25px 20px;
}

.footer-fields {
    width: 100%;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 30px;
}

.footer-links ul li {
    display: flex;
    padding: 7px 0;
    align-items: center;
    gap: 9px;
}

.footer-links ul li a {
    color: var(--white200Color);
    font-family: var(--fontMedium);
    text-wrap: nowrap;
}

.contact-text {
    font-size: 40px;
    color: var(--white);
    font-family: var(--fontLight);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-input-row {
    display: flex;
    gap: 19px;
}

.form-input {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}

.form-input label {
    color: var(--white);
}

.form-input input {
    height: 50px;
    width: 100%;
    background-color: #ffffff17;
    border: 1px solid #ffffff90;
    border-radius: 6px;
    padding: 12px;
    color: var(--white);
    font-size: 16px;
}

.form-input textarea {
    width: 100%;
    background-color: #ffffff17;
    border: 1px solid #ffffff90;
    border-radius: 6px;
    padding: 12px;
    color: var(--white);
    font-size: 16px;
    resize: none;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
    color: var(--white200Color);
}

.form-input input:focus,
.form-input textarea:focus {
    outline: none;
}

.other-events {
    background-color: #10101043;
    padding: 10px;
    border-radius: 18px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.other-event {
    display: flex;
    gap: 18px;
}

.other-event .footer-event-image {
    width: 297px;
    min-width: 297px;
    height: 206px;
    border-radius: 17px;
    background-color: #00000070;
}

.other-event .footer-event-image img {
    height: 100%;
    width: 100%;
    border-radius: 17px;
    object-fit: cover;
}

.footer-event {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    padding: 14px 0px;
    min-width: 350px;
}

.footer-event-title {
    font-size: 24px;
    color: var(--white100Color);
    font-family: var(--fontMedium);
}

.footer-event-subtitle {
    font-size: 12px;
    font-family: var(--fontLight);
    color: var(--white200Color);
}

.footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 10px 0;
}

.social-media p {
    color: var(--white);
    font-size: 12px;
}

.read-more-btn {
    display: flex;
    border-bottom: 1px solid var(--primaryColor);
    width: fit-content;
    padding: 8px 0;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
}

.read-more-btn p {
    font-size: 15px;
    color: var(--primaryColor);
    font-family: var(--fontBold);
}

.footer-links-section {
    background-color: #ffffff06;
    width: 100%;
    padding: 5px;
    border-radius: 42px;
    display: flex;
    justify-content: center;
}

.footer-links-section p {
    color: var(--white);
    font-size: 12px;
    font-family: var(--fontMedium);
}

.footer-links-section p a {
    color: var(--white);
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-show::-webkit-scrollbar,
.other-events::-webkit-scrollbar {
    width: 12px;
    /* For vertical scrollbar */
    height: 12px;
    /* For horizontal scrollbar */
}

.gallery-show::-webkit-scrollbar-track,
.other-events::-webkit-scrollbar-track {
    background: none;
}

.gallery-show::-webkit-scrollbar-thumb,
.other-events::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
    /* For rounded corners */
}

@media screen and (max-width: 950px) {
    .footer {
        padding: 15px 8px;
    }

    .footer-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-text {
        width: 100%;
    }

    .form-text p:first-child {
        font-size: 35px;
        margin-bottom: 0;
    }

    .form-text p:last-child {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 2rem;
    }

    .form-section {
        display: flex;
        flex-direction: column;
    }

    .footer-links,
    .footer-fields {
        background-color: #16161627;
        border-radius: 13px;
        padding: 15px;
    }

    .footer-links ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 10px;
        padding-right: 0;
    }

    .footer-links ul li {
        flex-grow: 1;
    }

    .contact-text {
        font-size: 30px;
        margin-bottom: 1rem;
        color: var(--white);
        font-family: var(--fontLight);
    }
}

@media (max-width: 950px) {
    .counter p:last-child {
        font-size: 12px;
    }

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
    }

    .header-title-event {
        font-size: 60px;
        margin-right: 0;
        line-height: 50px;
        text-align: start;
    }

    .header-subtitle,
    .header-subtitle-event {
        font-size: 15px;
        margin: 0;
        text-align: start;
    }
}

@media screen and (max-width: 600px) {
    body {
        padding: 0 5px;
    }

    .event-details-header {
        margin: 15px;
    }

    .count-down-line {
        display: none;
    }
}

@media (max-width: 450px) {
    .stats-video {
        height: 350px;
        border-radius: 15px;
        padding: 5px;
        gap: 10px;
    }

    .next-event-text p:first-child {
        font-size: 16px;
    }

    .next-event-text p:last-child,
    .next-event-date p:last-child {
        font-size: 12px;
    }

    .next-event-date p:first-child {
        font-size: 16px;
    }
}

/* =========================== CREATE EVENT MODAL ========================= */
.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
}

/* Modal box */
.modal-content {
    background: #333;
    position: fixed;
    padding: 0.5rem;
    border-radius: 10px;
    width: 60%;
    max-height: 95%;
    overflow-y: scroll;
    position: relative;
}

/* Modal box */
.modal-content.except {
    width: 100%;
}

.modal-content::-webkit-scrollbar {
    width: 5px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #f1c40f; /* thumb color */
    border-radius: 10px;
}

.modal-content .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: white;
    padding: 1.5rem;
}

.modal-content .modal-header .back-arrow {
    cursor: pointer;
}

.modal-content .event-steps {
    display: flex;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    gap: 1rem;
    justify-content: space-between;
}

.modal-content .event-steps .step {
    display: flex;
    flex-direction: column;
    color: white;
}

.modal-content .event-steps .step .circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.modal-content .event-steps .step .circle.active,
.modal-content .event-steps .step .circle.completed {
    background: var(--primaryColor);
    color: var(--textColor);
}

/* Step contents */
.step-content {
    display: none;
}

.step-content.active-content {
    display: block;
}

.packages {
    display: flex;
    max-width: 100%;
    overflow-x: scroll;
    gap: 1rem;
}

.packages::-webkit-scrollbar {
    display: none;
}

.packages::-webkit-scrollbar-thumb {
    display: none;
}

.package-card {
    min-width: 45%;
    width: 100%;
    border: 2px solid white;
    border-radius: 14px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    position: relative;
}

.packages .package-card .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.packages .package-card .card-header p {
    font-size: 12px;
    color: white;
    font-family: var(--fontBold);
}

.packages .package-card .card-header span {
    color: white;
    font-size: 2rem;
    font-family: var(--fontBold);
}

.packages .package-card .price {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--fontMedium);
    color: var(--primaryColor);
}

.packages .package-card .features {
    border: 2px solid white;
    border-radius: 12px;
    list-style: none;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
}

.packages .package-card .features li {
    margin-bottom: 10px;
    display: flex;
    gap: 5px;
    color: white;
    align-items: center;
    font-size: 12px;
    line-height: 13px;
}

.packages .package-card .features li .svg {
    height: 25px;
    width: 25px;
}

.packages .package-card.active {
    border-color: var(--primaryColor);
    background: #2e2e2e;
}

.step-content .package-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

@media screen and (max-width: 950px) {
    .modal-content {
        width: 95%;
        height: 95%;
    }

    .modal-content .modal-header {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    .modal-content .modal-header h2 {
        font-size: 15px;
    }

    /* .packages {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    } */

    .packages {
        display: flex;
        max-width: 100%;
        overflow-x: scroll;
        gap: 1rem;
    }

    .packages::-webkit-scrollbar {
        display: none;
    }

    .packages::-webkit-scrollbar-thumb {
        display: none;
    }

    .package-card {
        min-width: 93%;
        width: 100%;
        border: 2px solid white;
        border-radius: 14px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        transition: 0.3s;
        position: relative;
    }

    .packages .package-card .card-header span {
        font-size: 1.5rem;
        text-wrap: none;
    }

    .packages .package-card .price {
        font-size: 2rem;
    }

    .modal-content .event-steps .step .label {
        display: none;
    }

    .packages .package-card .features li {
        font-size: 12px;
    }

    .step-content .package-btns {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .step-content .package-btns a {
        width: 100%;
    }

    .step-content .package-btns a .arrow-btn {
        width: 100%;
    }

    .step-content .package-btns a .arrow-btn .btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 550px) {
    .arr-btn {
        display: none;
    }
}

/* ==================== step two============ */

.payment-container {
    border: 0.2px solid var(--primaryColor);
    border-radius: 12px;
    padding: 1rem;
    background-color: rgba(22, 22, 22, 0.27);
}

.payment-container .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.payment-container .form-group .input-group {
    width: 100%;
}

.payment-container .form-group .input-group label {
    font-family: var(--fontRegular);
    color: white;
    font-size: 13px;
    margin-bottom: 10px;
}

.payment-container .form-group .input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.17);
    color: #b3b3b3;
    font-size: 14px;
}

.payment-container .checkbox {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5rem;
}

.payment-container .checkbox input {
    accent-color: var(--primaryColor);
    height: 17px;
    width: 17px;
    border: 1px solid var(--primaryColor);
    border-radius: 5px;
    outline: none;
    background-color: transparent;
}

.payment-container .checkbox label {
    color: white;
    font-size: 12px;
}

.payment-container .checkbox a {
    color: var(--primaryColor);
    text-decoration: none;
    font-weight: bold;
}

.payment-container .checkbox span {
    color: var(--primaryColor);
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.payment-container .payment-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid white;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.payment-container .payment-price.except {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    gap: 1rem;
    font-family: var(--fontLight);
    align-items: center;
}

.payment-container .payment-price .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-container .payment-price .card-header p {
    font-size: 12px;
    color: white;
    font-family: var(--fontBold);
}

.payment-container .payment-price .card-header span {
    color: white;
    font-size: 1.5rem;
    font-family: var(--fontBold);
}

.payment-container .payment-price .price {
    font-size: 2rem;
    font-family: var(--fontMedium);
    color: var(--primaryColor);
}

/* Loader */
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #222;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {
    .payment-container .form-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .payment-container .payment-price .card-header span {
        color: white;
        font-size: 1rem;
        font-family: var(--fontBold);
    }

    .payment-container .payment-price .price {
        font-size: 1.5rem;
        font-family: var(--fontMedium);
        color: var(--primaryColor);
    }
}

/* ==================== step three============ */
.payment-container .payment-header {
    display: flex;
    flex-direction: column;
    color: white;
    padding: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.payment-container .payment-header h2 {
    font-size: 2rem;
    font-family: var(--fontBold);
}

.payment-container .payment-header p {
    font-size: 14px;
    font-family: var(--fontLight);
}

.payment-container .payment-information {
    margin-bottom: 1.5rem;
}

.payment-container .payment-information header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.payment-container .payment-information header h2 {
    font-family: var(--fontBold);
    font-size: 2rem;
    color: white;
}

.payment-container .payment-information .infor-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    padding: 5px 0;
    color: white;
    margin-bottom: 0.5rem;
}

.payment-container .payment-information .infor-group span {
    font-family: var(--fontRegular);
}

.payment-container .payment-information .infor-group p {
    font-family: var(--fontLight);
}

@media screen and (max-width: 500px) {
    .payment-container .payment-header h2 {
        font-size: 1.3rem;
        font-family: var(--fontBold);
    }

    .payment-container .payment-information header h2 {
        font-family: var(--fontBold);
        font-size: 1.3rem;
        color: white;
    }

    .payment-container .payment-information .infor-group span {
        font-family: var(--fontRegular);
    }

    .payment-container .payment-information .infor-group p {
        font-family: var(--fontLight);
        font-size: 13px;
    }
}

/* ======================== receipt ================== */
section {
    max-width: 50%;
    margin: auto;
    width: 100%;
    padding: 1rem;
}

@media screen and (max-width: 970px) {
    section {
        max-width: 100%;
    }
}

/* =========================== All Events ========================= */
.event-container {
    padding: 20px 50px;
    margin-top: 5rem;
    border-radius: 12px;
    background-color: rgba(182, 182, 182, 0.08);
}

.search-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--primaryColor);
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    background-color: rgba(22, 22, 22, 0.27);
}

.search-bar-container .search {
    border: 1px solid var(--white);
    background-color: rgba(255, 255, 255, 0.17);
    border-radius: 10px;
    padding: 8px;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-bar-container .search input {
    width: 100%;
    border: none;
    outline: none;
    color: #cccccc;
    background-color: transparent;
}

.search-bar-container .select-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 40%;
}

.search-bar-container .select-container .select {
    border: 1px solid var(--white);
    background-color: rgba(255, 255, 255, 0.17);
    border-radius: 10px;
    padding: 8px;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-bar-container .select-container .select select {
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.search-bar-container .select-container .select select option {
    color: black;
}

.event-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

.event-list-container .event-item {
    padding: 5px;
    display: flex;
    flex-direction: column;
    background-color: rgba(22, 22, 22, 0.65);
    border: 1px solid var(--white);
    border-radius: 12px;
}

.event-list-container .event-item .event-img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
}

.event-list-container .event-item .event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.event-list-container .event-item .event-img .event-date {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #e6e6e6;
    padding: 5px 7px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.18);
    font-family: var(--fontMedium);
    font-size: 12px;
}

.event-list-container .event-item .event-details {
    padding: 10px;
}

.event-list-container .event-item .event-details h2 {
    color: var(--white);
    font-size: 2rem;
    line-height: 30px;
    margin-bottom: 0.5rem;
}

.event-list-container .event-item .event-details ul {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.event-list-container .event-item .event-details ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    color: white;
    font-size: 13px;
}

.event-list-container .event-item .event-details p {
    line-height: 15px;
    font-family: var(--fontLight);
    color: white;
    font-size: 12px;
}

.event-list-container .event-item .event-action-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 10px;
}

.event-list-container .event-item .event-action-btns .price {
    color: var(--primaryColor);
    font-size: 1.5rem;
    font-family: var(--fontBold);
}

.event-container .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    gap: 10px;
}

.event-container .pagination .p-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 1px solid #b3b3b3;
    color: #f2f2f2;
    font-family: var(--fontRegular);
}

.event-container .pagination .p-btn.active {
    background-color: var(--primaryColor);
    color: #014d6d;
    border: none;
}

@media screen and (max-width: 768px) {
    .event-container {
        padding: 15px;
        margin-top: 2rem;
        background-color: transparent;
    }

    .search-bar-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0;
        border: none;
        background-color: transparent;
    }

    .search-bar-container .search {
        width: 100%;
    }

    .event-list-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        gap: 0.5rem;
    }

    .search-bar-container .select-container {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .event-list-container .event-item .event-details h2 {
        color: var(--white);
        font-size: 1.5rem;
        line-height: 20px;
        margin-bottom: 0.5rem;
    }
}

/* =============================== EVENT DETAILS ================================ */
.event-details-container {
    background-color: rgba(0, 0, 0, 0.08);
    padding: 20px 50px;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
}

.left-event-container {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.left-event-container .image {
    width: 100%;
    height: 355px;
    border-radius: 12px;
    margin-bottom: 1rem;
    background-color: rgba(22, 22, 22, 0.65);
    border: 1px solid var(--white);
    border-radius: 12px;
    padding: 5px;
}

.left-event-container .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.left-event-container .event-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.left-event-container .up-next-statss {
    display: flex;
    gap: 2rem;
}

.left-event-container .up-next-statss .up-next-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.left-event-container .up-next-statss .up-next-stat-text P:first-child {
    font-size: 18px;
    color: var(--white100Color);
    font-family: var(--fontMedium);
}

.left-event-container .up-next-statss .up-next-stat-text P:last-child {
    font-size: 12px;
    color: var(--white200Color);
    font-family: var(--fontMedium);
}

.left-event-container .event-description {
    margin: 3rem 0;
    line-height: 25px;
    font-family: var(--fontLight);
}

.select-packages-container {
    margin: 90px 0;
    padding: 0 50px;
    margin-bottom: 0;
}

.select-packages-container .package-card {
    min-width: 0%;
    width: 100%;
    border: 2px solid white;
    border-radius: 14px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    position: relative;
}

@media screen and (max-width: 950px) {
    .select-packages-container {
        margin: 90px 0;
        padding: 0 10px;
        margin-bottom: 0;
    }

    .select-packages-container .packages {
        display: flex;
        flex-direction: column;
    }

    .select-packages-container .package-btns {
        display: flex;
        flex-direction: row;
        /* flex-direction: column-reverse; */
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 2rem;
    }
}

.left-event-container .event-description .title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.left-event-container .event-description .info {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 1.5rem;
}

.left-event-container .speakers {
    width: 100%;
    display: flex;
    gap: 20px;
    position: relative;
}

.left-event-container .speakers::-webkit-scrollbar {
    display: none;
}

.left-event-container .speakers::-webkit-scrollbar-thumb {
    display: none;
}

.left-event-container .speakers .speakers-carousel {
    height: 100%;
    width: 90%;
    background-image: linear-gradient(to right, #ffffff50, transparent);
    border-top-left-radius: 26px;
    border-bottom-left-radius: 26px;
    display: flex;
    align-items: center;
    position: relative;
}

.left-event-container .speakers .flip-cards {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    align-items: center;
    position: absolute;
}

.left-event-container .speakers .flip-cards::-webkit-scrollbar {
    display: none;
}

.left-event-container .speakers .flip-cards::-webkit-scrollbar-thumb {
    display: none;
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.left-event-container .speakers .flip-cards .flip-card {
    background-color: transparent;
    min-width: 350px;
    height: 450px;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.left-event-container .speakers .flip-cards .flip-card .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.left-event-container
    .speakers
    .flip-cards
    .flip-card
    .flip-card:hover
    .flip-card-inner {
    transform: rotateY(180deg);
}

.left-event-container .speakers .flip-cards .flip-card .flip-card-front,
.left-event-container .speakers .flip-cards .flip-card .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 17px;
}

.left-event-container .speakers .flip-cards .flip-card .flip-card-front {
    background-color: #bbb;
}

.left-event-container .speakers .flip-cards .flip-card .flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.left-event-container .speakers .flip-cards .flip-card .speaker-info {
    position: absolute;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, #161616, transparent);
    bottom: 0;
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding: 10px;
}

.left-event-container
    .speakers
    .flip-cards
    .flip-card
    .speaker-info
    p:first-child,
.left-event-container
    .speakers
    .flip-cards
    .flip-card
    .back-speaker-info
    p:first-child {
    color: var(--white100Color);
    font-family: var(--fontMedium);
    font-size: 20px;
    text-align: start;
    margin-bottom: 0;
}

.left-event-container
    .speakers
    .flip-cards
    .flip-card
    .speaker-info
    p:last-child,
.left-event-container
    .speakers
    .flip-cards
    .flip-card
    .back-speaker-info
    p:last-child {
    color: var(--white200Color);
    font-family: var(--fontLight);
    font-size: 12px;
    margin-bottom: 0;
    text-align: start;
}

/* Style the back side */
.left-event-container .speakers .flip-cards .flip-card .flip-card-back {
    background-color: var(--dackerColor);
    color: var(--whiteColor);
    transform: rotateY(180deg);
    padding: 14px;
}

.left-event-container .speakers .flip-cards .flip-card .card-back-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.left-event-container .speakers .flip-cards .flip-card .speaker-pic {
    width: 56px;
    height: 54px;
    border-radius: 3px;
}

.left-event-container .speakers .flip-cards .flip-card .speaker-pic img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.left-event-container .speakers .flip-cards .flip-card .back-speaker-info {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.left-event-container .speakers .flip-cards .flip-card .back-body {
    text-align: start;
    font-size: 14px;
}

.left-event-container .speakers .flip-cards .flip-card .back-footer {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.left-event-container
    .speakers
    .flip-cards
    .flip-card
    .back-footer
    p:first-child {
    margin-bottom: 0;
    font-size: 21px;
    color: var(--white100Color);
    font-family: var(--fontMedium);
}

.left-event-container
    .speakers
    .flip-cards
    .flip-card
    .back-footer
    p:last-child {
    font-size: 14px;
    color: var(--white200Color);
    font-family: var(--fontLight);
}

.left-event-container .carousel-btns {
    display: flex;
    gap: 6px;
}

.left-event-container .agenda-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--white);
    padding: 1rem;
}

/* Tabs */
.left-event-container .agenda-container .tabs {
    display: flex;
    gap: 3rem;
    margin: 1rem;
    border-bottom: 1px solid #666666;
}

.left-event-container .agenda-container .tabs .tab {
    text-align: start;
    padding: 0 1rem;
    cursor: pointer;
    color: #aaa;
    font-family: var(--fontLight);
}

.left-event-container .agenda-container .tabs .tab.active {
    color: #fff;
    border-bottom: 4px solid var(--white);
}

.left-event-container .agenda-container .tabs .tab p {
    font-size: 12px;
}

.left-event-container .agenda-container .tabs .tab span {
    font-size: 1.5rem;
}

/* Agenda List */
.left-event-container .agenda-container .agenda-list {
    max-height: 530px;
    overflow: scroll;
    padding: 1rem;
    transition: max-height 0.3s ease;
}

.left-event-container .agenda-container .agenda-list::-webkit-scrollbar {
    width: 5px;
}

.left-event-container .agenda-container .agenda-list::-webkit-scrollbar-thumb {
    background: #f1c40f; /* thumb color */
    border-radius: 10px;
}

.left-event-container .agenda-container .agenda-list .agenda-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.left-event-container .agenda-container .agenda-list .agenda-item .time {
    color: #ccc;
    font-size: 0.7rem;
    text-wrap: nowrap;
}

.left-event-container .agenda-container .agenda-list .agenda-item .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1c40f;
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.left-event-container .agenda-container .agenda-list .agenda-item .details {
    background: rgba(0, 0, 0, 0.31);
    width: 80%;
    border-radius: 8px;
    padding: 1rem;
    position: relative;
}

.left-event-container .agenda-container .agenda-list .agenda-item .details h4 {
    margin: 0 0 0.3rem;
    color: #fff;
}

.left-event-container .agenda-container .agenda-list .agenda-item .details p {
    margin: 0;
    font-size: 0.9rem;
    color: #bbb;
}

.left-event-container .agenda-container .see-more {
    text-align: center;
    padding: 0.8rem;
    cursor: pointer;
    color: #f1c40f;
    font-weight: bold;
    border-top: 1px solid #444;
}

.right-event-container {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.right-event-container .event-details-container {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--white);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.right-event-container .event-details-container h2 {
    font-size: 2rem;
    color: var(--white);
}

.right-event-container .event-details-container .details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.right-event-container .event-details-container .details.except {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: rgba(22, 22, 22, 0.45);
    color: var(--white);
    gap: 1rem;
}

.right-event-container .event-details-container .details .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.right-event-container .event-details-container .details .info {
    display: flex;
    flex-direction: column;
}

.right-event-container .event-details-container .details .info h1 {
    font-size: 1.2rem;
    color: var(--white);
}

.right-event-container .event-details-container .details .info span {
    font-size: 0.8rem;
    color: var(--white200Color);
}

@media screen and (max-width: 945px) {
    .event-details-container {
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .left-event-container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .left-event-container .up-next-statss .up-next-stat-text P:first-child {
        font-size: 14px;
        color: var(--white100Color);
        font-family: var(--fontMedium);
    }

    .left-event-container .up-next-statss .up-next-stat-text P:last-child {
        font-size: 10px;
        color: var(--white200Color);
        font-family: var(--fontMedium);
    }

    .left-event-container .agenda-container {
        padding: 0.5rem;
    }

    .left-event-container .event-title {
        font-size: 2rem;
        color: var(--white);
        margin-bottom: 1rem;
    }

    .left-event-container .agenda-container .tabs {
        gap: 1.5rem;
    }

    .left-event-container .agenda-container .tabs .tab {
        padding: 0;
        line-height: 15px;
    }

    .left-event-container .agenda-container .tabs .tab p {
        font-size: 10px;
        margin-bottom: 0;
    }

    .left-event-container .agenda-container .tabs .tab span {
        font-size: 0.8rem;
        line-height: 10px;
        text-wrap: nowrap;
    }

    .left-event-container .agenda-container .agenda-list .agenda-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .left-event-container .agenda-container .agenda-list .agenda-item .details {
        width: 100%;
    }

    .left-event-container .event-description {
        margin: 1rem 0;
    }

    .left-event-container .event-description:last-child {
        margin: 0;
    }

    .right-event-container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .right-event-container .event-details-container h2 {
        font-size: 1.5rem;
        color: var(--white);
    }
}

/* Pourquoi MTN Business Academy (MBA)? */
.mtn-section {
    padding: 50px 45px 0 45px;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    /* width: 100%;
    height: 100%;
    background: rgb(190, 190, 190);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background-image: url("../../assets/images/image1.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 34px 50px; */
}

.mtn-section h2 {
    font-size: 50px;
    width: 50%;
    line-height: 50px;
    margin-bottom: 5rem;
    font-weight: 500;
    color: white;
}

.mtn-section .stats-grid {
    display: grid;
    grid-template-columns: 20% 30% 30% 20%; /* defines your column widths */
    /* border: 1px solid white; */
    position: relative;
    z-index: 1;
}

.mtn-section .stat-item {
    border: 1px solid white;
    padding: 20px 10px;
}

.mtn-section .stat-item:last-child,
.mtn-section .stat-item:first-child {
    border-left: none;
    border-right: none;
}

.mtn-section .stat-item .item {
    text-align: left;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 25px 15px;
    border-radius: 10px;
    border: 1px solid white;
    background-color: rgba(255, 255, 255, 0.15);
}

.mtn-section .stat-item .item.except {
    background-color: transparent;
    border: none;
}

.mtn-section .stat-item .item.except img {
    height: 135px;
    width: 100%;
}

.mtn-section .stat-item .icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.mtn-section .stat-item h3 {
    color: #f5c518;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.mtn-section .stat-item p {
    font-size: 12px;
    color: white;
    line-height: 1.4;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 950px) {
    .mtn-section {
        padding: 0 10px 0 10px;
        display: flex;
        flex-direction: column;
        margin-top: 90px;
    }

    .mtn-section h2 {
        width: 100%;
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 3rem;
        font-weight: 700;
        color: white;
    }

    .mtn-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mtn-section .stat-item {
        text-align: left;
    }

    .mtn-section .stat-item {
        border: none;
        padding: 10px;
    }

    .mtn-section .stat-item:last-child,
    .mtn-section .stat-item:first-child {
        border-left: none;
        border-right: none;
    }

    .mtn-section .stat-item .item.except {
        display: none;
    }
}

.language-switcher {
    position: fixed;
    bottom: 100px;
    right: 50px;
    z-index: 9999;
    background: #333;
    border-radius: 10px 10px 0 0;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lang-btn {
    background: #333;
    width: 100%;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border: 10px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.lang-btn img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
}

/* Hidden dropdown */
.lang-options {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    background: #333;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.lang-item {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.lang-item:hover {
    background: #444;
}

.lang-item.active {
    background: #444;
}

.lang-item img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    margin-right: 6px;
}

@media screen and (max-width: 768px) {
    .language-switcher {
        bottom: 20px;
        right: 20px;
    }
}

/* Modal container (hidden by default) */
.tmodal {
    display: none; /* Hidden initially */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dim background */
    justify-content: center;
    align-items: center;
}

/* Modal box */
.tmodal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

@media screen and (max-width: 768px) {
    .tmodal-content{
        width: 90%;
        padding: 10px;
    }


.custom-modal-header h2 {
    font-size: 16px;
    color: var(--textColor);
}
}

.tmodal-content p {
    text-align: center;
    margin-top: 1rem;
}

.tmodal-content p strong {
    color: var(--primaryColor);
    font-weight: 600;
}

/* Close button */
.tclose {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

/* =========== successful registration modal ================*/
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 99991;
}

.custom-modal-content {
    background: #f5f5f5;
    padding: 0.5rem;
    border-radius: 10px;
    max-width: 30%;
    text-align: center;
}

.custom-modal-header {
    display: flex;
    justify-content: end;
    align-items: center;
    font-weight: bold;
    padding: .1rem .5rem .1rem .1rem;
    margin-bottom: .5rem;
}

.custom-modal-header h2 {
    font-size: 20px;
    color: var(--textColor);
}

.custom-modal-header .close {
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
}

.custom-modal-content .custom-modal-body {
    background-color: white;
    border-radius: 10px;
    padding: 0.5rem 2rem 2rem 2rem;
}

.custom-confetti {
    display: block;
    margin: auto;
}

.custom-thanks {
    font-size: 2.5rem;
    line-height: 2rem;
    margin: 1rem 0;
    font-weight: 100;
    font-family: var(--fontLight) !important;
    color: var(--primaryColor);
}

.custom-info {
    font-size: 0.8rem;
    color: var(--textColor);
    margin-bottom: 1rem;
}

.custom-modal-content .custom-modal-body .countdown-section {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 1rem;
    align-items: center;
}

.custom-modal-content .custom-modal-body .countdown-section .time-box {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.27) 50.97%,
        rgba(153, 153, 153, 0.27) 57.7%
    );

    padding: 1rem;
    border-radius: 10px;
    color: var(--blackColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 0.76px solid #ffffff;
}

.custom-modal-content .custom-modal-body .countdown-section .time-box .value {
    font-size: 2rem;
    font-weight: bold;
}

.custom-modal-content .custom-modal-body .countdown-section .time-box .label {
    font-size: 0.7rem;
    font-family: var(--fontBold);
}

@media screen and (max-width: 950px) {
    .custom-modal-content {
        background: white;
        padding: 0.5rem;
        border-radius: 10px;
        max-width: 95%;
        max-height: 85vh;
        overflow-y: scroll;
        text-align: center;
    }

    .custom-modal-content .custom-modal-body .countdown-section {
        padding: 1rem;
        display: grid;
        grid-template-columns: auto auto;
        margin: auto;
    }
}
