/* ========== TESTIMONIALS SECTION ========== */
/* Student testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-item:before {
    content: '"';
    font-style: italic;
    position: absolute;
    top: 8px;
    left: 15px;
    font-size: 80px;
    color: #ff9933; /* Kesari (saffron) color */
    opacity: 0.8;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff9933; /* Kesari (saffron) color */
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    color: #2c3e50; /* Deep gray color */
}

.client-details p {
    color: #666;
    font-size: 14px;
}