/* Video Testimonials Component Styles */
.video-testimonials-section {
    position: relative;
}

.video-testimonials-section.bg-light-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.video-testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 15px 15px;
    transition: all 0.3s ease;
    position: relative;
}

.video-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-testimonial-card .video-embed {
    position: relative;
    background: #000;
    /* aspect-ratio: 16/9; */
    overflow: hidden;
}

.video-testimonial-card .video-embed video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px 20px 0 0;
    background: #000;
}

/* Plyr video player specific styles */
.video-testimonial-card .video-embed .plyr {
    border-radius: 20px 20px 0 0;
}

.video-testimonial-card .video-embed .plyr__video-wrapper {
    background: #000;
}

.video-testimonial-card .video-info {
    padding: 25px;
    text-align: center;
}

.video-testimonial-card .student-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 5px;
}

.video-testimonial-card .university {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.video-testimonial-card .course-badge {
    background: linear-gradient(135deg, var(--bs-primary), #4a69bd);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

/* Owl Carousel Custom Styles for Video Testimonials */
/* .video-testimonials-section .custom-owl-nav {
    margin-top: 30px;
    text-align: center;
}

.video-testimonials-section .custom-owl-nav button {
    background: var(--bs-primary) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 10px !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
}

.video-testimonials-section .custom-owl-nav button:hover {
    background: #4a69bd !important;
    transform: scale(1.1);
} */


/* Mobile Responsive */
@media (max-width: 768px) {

    .video-testimonial-card .video-info {
        padding: 20px;
    }

    .video-testimonial-card .student-name {
        font-size: 1.1rem;
    }
}
