.video-section {
    text-align: center;
    padding-bottom: 50px;
    overflow-x: hidden;
}

.video-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.video-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-bottom: 50px;
}

.video-card {
    background: #F9F9F9;
    border-radius: 12px;
    min-width: 320px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 10px;
    z-index: 999999999;
    pointer-events: none;
}

.video-card p {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    padding: 0 5px;
    position: absolute;
    bottom: -20px;
    color: black;
    left: 0;
    z-index: 999999999999;

}

.vedio_slider_container {
    position: relative;
}



.video-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-slide.video-card {
    min-width: 320px;
}







.landing_arrow_left {
    background: var(--branColor);
    color: #fff;
    padding: 10px;
    position: absolute;
    top: 38.5% !important;
    left: 0;
    z-index: 99999;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.landing_arrow_right {
    background: var(--branColor);
    color: #fff;
    padding: 10px;
    position: absolute;
    top: 38.5% !important;
    right: 0;
    z-index: 99999;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.landing_arrow_left:hover .leftarrowforveio {
    transform: translateX(20px);
    animation: fadeInLeftforVediosection 0.6s ease forwards;
}

.landing_arrow_right:hover .rightarrowforveio {
    transform: translateX(-20px);
    animation: fadeInRightForVedioSection 0.6s ease forwards;
}





@keyframes fadeInLeftforVediosection {
    from {
        opacity: 0;
        transform: translateX(20px) !important;
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes fadeInRightForVedioSection {
    from {
        opacity: 0;
        transform: translateX(20px) !important;
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}




/* Responsive */
@media (max-width: 992px) {
    .video-card {
        min-width: 260px;
    }


    .landing_arrow_right {
        display: none;
    }

    .landing_arrow_left {
        display: none;
    }

}

@media (max-width: 576px) {
    .video-section h2 {
        font-size: 1.5rem;
    }

    .video-card {
        min-width: 90%;
    }

    .nav-btn {
        font-size: 1.8rem;
    }
}