.video-carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
}

.video-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.video-slide {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    min-width: 100%;
    box-sizing: border-box;
}

.video-slide iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.control-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator-dot {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.indicator-dot.active {
    background-color: white;
}

@media (max-width: 768px) {
    .carousel-controls {
        flex-direction: row;
        top: auto;
        bottom: 10px;
        left: 10px;
        transform: none;
    }
}
