.gallery-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    text-align: center;
}

.video-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    white-space: nowrap;
    scrollbar-width: none;
}
.video-container::-webkit-scrollbar {
    display: none;
}
.video-container iframe {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    scroll-snap-align: start;
    overflow: hidden;
}
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s;
}
.nav-btn:hover {
    background-color: black;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
@media (max-width: 768px) {
    .video-container iframe {
        width: 80%;
        height: 400px;
    }
}
@media (max-width: 480px) {
    .video-container iframe {
        width: 90%;
        height: 300px;
    }
}