/* Video Background Section */
.video-section {
    width: 100%;
}

.video-bg-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-title-overlay {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
}

.video-title-bold {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .video-bg-wrapper {
        height: 60vh;
        min-height: 500px;
    }

    .video-title-overlay {
        bottom: 8%;
    }

    .video-title-bold {
        font-size: 2rem;
    }
}