/* Testimonials Section */
#testimonials {
    background-color: var(--secondary-color) !important;
}

#testimonials h3 {
    color: var(--text-color) !important;
}

.testimonial-card {
    background-color: var(--background-color) !important;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-quote {
    position: relative;
}

.testimonial-card .card-text {
    color: var(--text-secondary-color) !important;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author h6 {
    color: var(--text-color) !important;
}

.testimonial-author .text-muted {
    color: var(--text-secondary-color) !important;
}

.testimonial-author .text-primary {
    color: var(--primary-color) !important;
}

.avatar-placeholder {
    background-color: var(--primary-color) !important;
}

/* Quote styling */
.fa-quote-left {
    color: var(--primary-color) !important;
    opacity: 0.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card .card-text {
        font-size: 1rem;
    }
    
    .testimonial-author img,
    .avatar-placeholder {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Dark mode adjustments */
.dark .testimonial-card {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05) !important;
}

.dark .testimonial-card:hover {
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1) !important;
}
