/* Testimonials Section Styles */
.section.testimonials-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.testimonials-section h6 {
    color: #ee7212;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section.testimonials-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-content p {
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    padding-top: 1rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.25rem 0;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-indicators .indicator.active {
    background-color: #ee7212;
}



/* Responsive Design */
@media (max-width: 1199.98px) {
    .section.testimonials-section .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991.98px) {
    .section.testimonials-section {
        padding: 4rem 0;
    }
    
    .section.testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section.testimonials-section {
        padding: 3rem 0;
    }
    
    .section.testimonials-section .section-title {
        font-size: 1.75rem;
    }
    
    .section.testimonials-section .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-logo {
        margin-bottom: 1rem;
    }
    
    .author-info h5 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .section.testimonials-section {
        padding: 2rem 0;
    }
    
    .section.testimonials-section .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-content {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .author-info h5 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
}
