/* testimonials-compact.css */
.testimonials {
    padding: 60px 0;
    background: #F8FAFC;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #002C6B;
    font-size: 32px;
    margin-bottom: 12px;
}

.section-header p {
    color: #4B5563;
    font-size: 16px;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.testimonials-track {
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
}

.quote-icon {
    color: #00B1EB;
    font-size: 24px;
    opacity: 0.2;
    margin-bottom: 16px;
    display: block;
}

.testimonial-content p {
    color: #1F2937;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00B1EB;
}

.author-info h4 {
    color: #002C6B;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-info p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #00B1EB;
    border-radius: 50%;
    background: white;
    color: #00B1EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #00B1EB;
    color: white;
    transform: translateY(-2px);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00B1EB;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 24px;
    }

    .testimonial-content p {
        font-size: 15px;
    }
}