/* Conference Page Styles */

.conference-sec1 {
    position: relative;
    margin-bottom: -8px;
}

.conference-banner {
    position: relative;
    width: 100%;
    padding-top: 157px;
    padding-bottom: 90px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conference-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270.05deg, rgba(146, 14, 24, 0.5) 0.05%, rgba(147, 11, 25, 0.5) 31.77%, rgba(61, 1, 4, 0.5) 56.37%, rgba(44, 1, 2, 0.5) 73.14%, rgba(8, 0, 1, 0.5) 85.26%, rgba(0, 0, 0, 0.5) 99.96%);
}

.conferenceBannerText {
    position: relative;
    width: 100%;
}

.conferenceBannerText h1 {
    font-family: 'Creato Display', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: clamp(36px, 8vw, 52px);
    line-height: 100%;
    letter-spacing: 2%;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.conference-subtitle {
    margin-bottom: 30px;
}

.subtitle-text {
    font-family: 'Creato Display', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(20px, 1.46vw, 28px) !important;
    line-height: 150%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.subtitle-red {
    font-family: 'Creato Display', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: clamp(28px, 2.5vw, 48px) !important;
    line-height: 150%;
    letter-spacing: 0%;
    color: #d32f2f;
    margin: 14px 0 0 0;
}

/* .conference-logo {
    margin-bottom: 40px;
} */

.embassy-logo {
    height: auto;
}

.conference-event-desc {
    margin-bottom: 40px;
    margin-top: 14px;
}

.event-text {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(32px, 2.1vw, 40px) !important;
    line-height: 150%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.conference-event-desc h2 {
    font-family: 'Creato Display', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(28px, 2.1vw, 40px);
    line-height: 150%;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
    max-width: 100%;
}

.conference-datetime {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.datetime-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.datetime-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.datetime-item span {
    font-family: 'Creato Display', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(20px, 4vw, 28px);
    line-height: 150%;
    letter-spacing: 2%;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.datetime-item sup {
    font-size: 0.7em;
    vertical-align: super;
}

.datetime-item sub {
    font-size: 0.7em;
    vertical-align: sub;
}

/* Responsive Styles */
@media (max-width: 992px) {
section.conference-sec3 .row {
    display: flex;
    flex-direction: column-reverse;
}
}
@media (max-width: 768px) {
    .conference-banner {
        min-height: 450px;
    }

    .conference-datetime {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

}

@media (max-width: 480px) {
    .conference-banner {
        min-height: 350px;
    }

    .datetime-item img {
        width: 28px;
        height: 28px;
    }
}

/* Conference Video Section Styles */

.conference-sec2 {
    position: relative;
    width: 100%;
    padding: 0;
}

.conference-video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.conference-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.conference-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000CC;
}

.conference-video-title {
    position: absolute;
    top: 60px;
    left: 100px;
    font-family: 'Creato Display', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 150%;
    letter-spacing: 2%;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.conference-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.conference-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.conference-play-button img {
    width: auto;
    height: auto;
}

/* Responsive Video Section */
@media (max-width: 768px) {
    .conference-video-container {
        height: 500px;
    }

    .conference-video-title {
        top: 40px;
        left: 50px;
    }
}

@media (max-width: 480px) {
    .conference-video-title {
        top: 30px;
        left: 20px;
    }
}

/* Conference Overview Section Styles */

.conference-sec3 {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
}

/* 3D Carousel Slider (Conference Overview) */

.conference-slider-col {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.conference-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.conference-slider-container {
    position: relative;
    height: 500px;
    padding: 40px 0;
    perspective: 1000px;
    overflow: visible;
}
.conference-slider-wrapper .slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conference-slider-wrapper .slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
    opacity: 0;
    width: 100%;
    max-width: 100%;
    /* Let the height follow the image's natural aspect ratio */
    height: 100%;
    transition: transform 0.8s ease, opacity 0.8s ease;
    pointer-events: none;
}

.conference-slider-wrapper .slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, 0, 20px) scale(1);
    z-index: 2;
    pointer-events: auto;
}

.conference-slider-wrapper .slide.next {
    opacity: 0.2;
    transform: translate(-75%, -50%) translate3d(35%, 0, 0px) scale(0.9);
    z-index: 1;
    pointer-events: auto;
}

.conference-slider-wrapper .slide.prev {
    opacity: 0.2;
    transform: translate(-25%, -50%) translate3d(-35%, 0, 0px) scale(0.9);
    z-index: 1;
    pointer-events: auto;
}

.conference-slider-wrapper .slide-content {
    width: 100%;
    height: auto;

    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.conference-slider-wrapper .slide-content img {
    width: 100%;
    height: auto;
    /* Preserve original image aspect ratio without stretching vertically */
    object-fit: contain;
    display: block;
}

.conference-slider-wrapper .slider-controls {
    position: static;
    margin-top: 90px;
    display: flex;
    justify-content: center;
    gap: 20px;
    pointer-events: none;
    z-index: 10;
}
.col-xl-6.col-lg-6.col-md-12.col-12.conference-content-col {
    padding-left: 10%;
}
.conference-slider-btn {
    pointer-events: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.conference-slider-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.conference-slider-btn img {
    max-width: 100%;
    height: auto;
}

.conference-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}

.conference-overview-title {
    font-family: 'Creato Display', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(32px, 5vw, 40px);
    line-height: 150%;
    letter-spacing: 0%;
    color: #000000;
    margin: 0 0 20px 0;
    padding: 0;
}

.conference-overview-text {
    font-family: 'Creato Display', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 150%;
    letter-spacing: 0%;
    color: #333333;
    margin: 0;
    padding: 0;
}

/* Responsive Overview Section */
@media (max-width: 768px) {
    .conference-sec3 {
        padding: 40px 0;
    }

    .conference-slider-wrapper {
        margin-top: 20px;
    }

    .conference-thumbnail {
        width: 70px;
        height: 80px;
    }

    .conference-content-col {
        padding: 40px 20px 0 20px;
    }
}

@media (max-width: 480px) {
    .conference-sec3 {
        padding: 30px 0;
    }

    .conference-slider-col,
    .conference-content-col {
        margin-bottom: 30px;
    }

    .conference-slider-wrapper {
        max-width: 100%;
    }

    .conference-slider-container {
        height: 400px;
    }

    .conference-thumbnail {
        width: 60px;
        height: 70px;
    }

    .conference-slider-nav {
        bottom: -70px;
        gap: 15px;
    }

    .conference-slider-btn {
        width: 45px;
        height: 45px;
        border: 2px solid #000000;
        padding: 8px;
    }

    .conference-content-col {
        padding: 30px 15px 0 15px;
    }
}
@media (max-width: 450px) {


    .conference-slider-container {
        height: 350px;
    }
}
@media (max-width: 400px) {

.conference-slider-wrapper .slider-controls {
    margin-top: 65px;
}
}
@media (max-width: 992px) {
    .conference-overview-title {
    text-align: center;
}
    .col-xl-6.col-lg-6.col-md-12.col-12.conference-content-col {
    padding-left: 0%;
}
}