/* -----------------------------------
BASE SECTION STYLES
----------------------------------- */
.indO_Vid_Hc_section {
    padding-top: 5rem;
    padding-bottom: 5rem;

    background-color: #ffffff;
}

/* Typography */
.indO_Vid_Hc_title {
    color: rgba(9, 37, 58, 0.8);
    margin-bottom: 25px;
    font-family: Sora;
    font-weight: 400;
    font-size: clamp(1.5rem, 1.2214rem + 1.1429vw, 2.25rem);
    line-height: 120%;
    text-align: center;
}

.indO_Vid_Hc_subtitle {
    color: rgba(9, 37, 58, 0.5);
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 300;
    font-size: clamp(0.875rem, 0.7821rem + 0.381vw, 1.125rem);
    line-height: 170%;
    letter-spacing: 0%;
}

/* -----------------------------------
VIDEO CONTAINER
----------------------------------- */
.indO_Vid_Hc_video-wrapper {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio */
    aspect-ratio: 16 / 9;
    overflow: hidden;

}

.indO_Vid_Hc_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Hide initially until loaded to prevent a flash */
    opacity: 1;
    transition: opacity 0.5s ease;
}

.indO_Vid_Hc_video.loaded {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .indO_Vid_Hc_subtitle{
        text-align: center;
    }
    .indO_Vid_Hc_section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .indO_Vid_Hc_title {
                margin-bottom: 15px;
    }
}

/* Dummy space just to allow scrolling to test the effect */
.indO_Vid_Hc_dummy-space {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #6c757d;
    font-family: 'Poppins', sans-serif;
}