/* Testimonials section styles */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.quote-icon {
    width: 100px;
    height: 100px;
    background: #3B82F6;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-icon i {
    font-size: 2.5rem;
    color: white;
}

.testimonials-text .section-badge {
    margin-bottom: 20px;
}

.testimonials-text h2 {
    font-size: 2.5rem;
    color: #1E293B;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.testimonials-text p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    background: #F8FAFC;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    position: relative;
}

.testimonial-slide.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.testimonial-slide::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #3B82F6;
    font-family: serif;
    line-height: 1;
}

.testimonial-slide p {
    font-style: italic;
    color: #1E293B;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h5 {
    color: #1E293B;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info span {
    color: #64748B;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #F59E0B;
    font-size: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3B82F6;
    transform: scale(1.2);
}

.dot:hover {
    background: #64748B;
}