/* Testimonials Section Styles */

.testimonials-section {
    background: #ffffff;
    padding: 60px 40px;
    position: relative;
}

.testimonials-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 10px;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    margin: 0 10px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.star {
    color: #ffa500;
    font-size: 18px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #8839a8;
    background: white;
    color: #8839a8;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #8839a8;
    color: white;
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8839a8;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .testimonial-card {
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .testimonials-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 20px;
    }

    .testimonial-card {
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

    .testimonials-title {
        font-size: 24px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
}