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

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

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* ============================= */
/* Scroll Down Icon */
/* ============================= */

.scroll-down-icon {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-down-icon img {
    width: 50px;
    height: auto;
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .scroll-down-icon img {
        width: 38px;
    }
}







@media (max-width: 768px) {

    .video-hero video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}


/* Tablet */
@media (max-width: 1024px) {
    .video-hero {
        height: 40vh;
    }
}

/* Large Mobile */
@media (max-width: 768px) {
    .video-hero {
        height: 30vh;
    }
}

/* Normal Mobile */
@media (max-width: 480px) {
    .video-hero {
        height: 25vh;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .video-hero {
        height: 22vh;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .video-hero {
        height: 20vh;
    }
}
