/* ============================================
   Testimonials Section Styles
============================================ */
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Section Heading */
.testimonial-section .section-heading h4 {
    color: #6b7280;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-section .section-heading h2 {
    color: #1f2937;
    font-size: 36px;
    margin-bottom: 15px;
}

.testimonial-section .section-description {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Testimonial Stats */
.testimonial-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.testimonial-stats .stat-item {
    text-align: center;
}

.testimonial-stats .stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.testimonial-stats .stat-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0;
}

/* Carousel Wrapper */
.testimonial-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.testimonialSwiper {
    padding: 30px 10px 50px;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.testimonial-course {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0;
    flex-grow: 1;
    font-style: italic;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 60px;
    color: #667eea;
    opacity: 0.1;
}

/* Swiper Navigation */
.swiper-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.testimonial-prev i,
.testimonial-next i {
    font-size: 18px;
}

/* Swiper Pagination */
.testimonialSwiper .swiper-pagination {
    bottom: 10px;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #667eea;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .testimonial-stats {
        margin-top: 30px;
    }
    
    .testimonial-section .section-heading h2 {
        font-size: 28px;
    }
    
    .testimonial-stats .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .testimonial-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-name {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .quote-icon {
        font-size: 40px;
        bottom: 15px;
        right: 15px;
    }
}

/* Animation */
@keyframes fadeInTestimonial {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInTestimonial 0.6s ease-out;
}


