.video-background iframe {
    width: 175% !important;
}

.sub-heading {
    font-size: 22px;
}

@media (max-width: 767px) {
    .video-background iframe {
        width: 520% !important;
    }
}



.hero-text {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    /* space below the logo */
}

.banner-logo-container span {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    /* adjust as needed for theme */
    text-align: center;
}

.banner-logo-container img {
    width: 320px;
    height: auto;
    max-width: 80vw;
    /* responsive scaling */
    object-fit: contain;
}

.banner-logo-container {
    margin-bottom: 7rem;
    margin-top: -19rem;
}

/* Medium devices (tablets, small laptops) */
@media (max-width: 991px) {
    .banner-logo-container img {
        width: 260px;
    }

    .banner-logo-container span {
        font-size: 1.1rem;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .banner-logo-container img {
        width: 240px;
    }

    .banner-logo-container span {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .banner-logo-container {
        margin-bottom: 4rem;
        margin-top: -49px;
    }
}

.speaker-section {
    padding: 80px 0;
}

.section-desc {
    max-width: 500px;
    margin-top: 15px;
    color: #555;
}

.carousel-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.vertical-carousel {
    width: 120px;
    height: 400px;
    overflow: hidden;
}

.vertical-carousel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 10px;
    background: #fff;
}

.workwith {
    background: #f9f9f9;
}

/* Slider container */
.vertical-slider {
    width: 155px;
    height: 500px;
    overflow: hidden;
    position: relative;
}

/* Track */
.slider-track {
    display: flex;
    flex-direction: column;
}

/* Slide item */
.slide {
    padding: 10px 0;
    cursor: pointer;
}

.slide img {
    width: 100%;
    padding: 10px;
    /* background: #fff; */
}

/* UP animation */
.up .slider-track {
    animation: scroll-up 8s linear infinite;
}

/* DOWN animation */
.down .slider-track {
    animation: scroll-down 8s linear infinite;
}

/* Pause on hover */
.pause-on-hover:hover .slider-track {
    animation-play-state: paused;
}

.vertical-slider .title {
    background: black;
    color: white;
    position: absolute;
    z-index: 9;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    border-radius: 30px;
}

/* Keyframes */
@keyframes scroll-up {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes scroll-down {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0);
    }
}

/* ========================= */
/* 📱 MOBILE ONLY OVERRIDES */
/* ========================= */
@media (max-width: 767px) {

    .vertical-slider .title {
        display: none;

    }

    .carousel-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .vertical-slider {
        height: auto;
        width: 100%;
        margin-top: 40px
    }

    .slider-track {
        flex-direction: row;
        width: max-content;
    }

    .slide {
        padding: 0 12px;
        flex-shrink: 0;
        width: 190px
    }

    /* Horizontal animations */
    .vertical-slider.up .slider-track {
        animation: scrollLeft 18s linear infinite;
    }

    .vertical-slider.down .slider-track {
        animation: scrollRight 18s linear infinite;
    }

    @keyframes scrollLeft {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    @keyframes scrollRight {
        from {
            transform: translateX(-50%);
        }

        to {
            transform: translateX(0);
        }
    }

    /* Pause on touch (mobile hover fallback) */
    .pause-on-hover:active .slider-track {
        animation-play-state: paused;
    }

}

@media (max-width: 1176px) {

    .corporate-events-nav {
        display: none;
    }
}

@media (max-width: 991px) {

    .corporate-events-nav {
        display: block;
    }
}

/* iPad only (Portrait + Landscape) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .video-background iframe {
        width: 348% !important;
        /* adjust if needed */
    }
}

/* Tablet */
@media (max-width: 768px) {
    .video-background iframe {
        width: 312% !important;
    }

    .video-background {
        background: black;
        z-index: 1;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .video-background iframe {
        width: 520% !important;
    }
}

.btn {
    background-color: black;
    color: white;
}

.card-wrap .cards {
    background-color: black;
    color: white;
    border-radius: 50px;
}

.card-wrap .card-item {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.testimonial-name {
    background: black;
    color: white;
}

.about-section {
    background-color: white;
}

#mainHeader a {
    font-family: 'Cormorant', serif;
    font-size: 22px;
    line-height: 1.2;
    /* text-transform: uppercase; */
}

.dropdown-menu a:hover,.dropdown-item:focus {
    color: black !important;
    background: white;
}

.event-bg .img-cta, .event .img-cta {
    position: absolute;
    bottom: 20px;
    left: 15px;
    border-radius: 20px;
    background: black;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

a{
    color: white !important;
}

.event-title a{
    color: black !important;
}

