/* Hero Video Background */
.static-hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.static-hero-video .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.static-hero-video .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.static-hero-video .video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Dark overlay for text readability */
    z-index: 1;
}

.static-hero-video .container-fluid {
    position: relative;
    z-index: 2;
    width: 100%;
}

.static-hero-video .slide-content {
    text-align: center;
    color: #fff;
}

.static-hero-video .slide-title h2 {
    font-size: 70px;
    line-height: 90px;
    margin-bottom: 20px;
    color: #fff;
}

.static-hero-video .slide-title-sub span {
    color: #fff;
    font-size: 20px;
    display: block;
    margin-bottom: 20px;
    font-family: "Gilda Display", serif;
}

.static-hero-video .slide-title-sub span i img {
    display: inline-block;
    padding: 0 10px;
}

@media (max-width: 991px) {
    .static-hero-video .slide-title h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 575px) {
    .static-hero-video .slide-title h2 {
        font-size: 30px;
        line-height: 40px;
    }
}