

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.testimonial-slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.client-info strong {
    display: block;
    color: #dc3545;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.client-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-controls {
    margin-top: 2rem;
}

.testimonial-controls .btn {
    width: 45px;
    height: 45px;
    border: 2px solid #e9ecef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
    color: #666;
}

.testimonial-controls .btn:hover {
    border-color: #dc3545;
    background: #dc3545;
    color: white;
    transform: scale(1.1);
}
