/* Simple Testimonials Display Styles */
.testimonials-modern {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.testimonials-display {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 40px;
}

.testimonials-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch; /* Ensure cards stretch to match height */
}

.testimonial-card-modern {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 320px; /* Increased height to prevent text cutoff */
    overflow: visible; /* Allow content to be fully visible */
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    color: #E2706D;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-card-modern p {
    flex-grow: 1;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.testimonial-author-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author-modern h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author-modern span {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* View More Testimonials Link */
.view-more-testimonials {
    text-align: center;
    margin-top: 40px;
}

.testimonials-link {
    display: inline-block;
    color: #E2706D;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #E2706D;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.testimonials-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.testimonials-link:hover {
    background-color: #E2706D;
    color: white;
}

.testimonials-link:hover i {
    transform: translateX(5px);
}
/* Responsive styles */
@media (max-width: 992px) {
    .testimonial-card-modern {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
        height: 320px; /* Maintain consistent height */
    }
}

@media (max-width: 768px) {
    .testimonials-display {
        padding: 0 20px;
    }
    
    .testimonial-card-modern {
        flex: 0 0 100%;
        max-width: 100%;
        height: 280px; /* Slightly shorter on mobile but still tall enough */
    }
    
    /* Second testimonial hidden via JavaScript */
    
    .view-more-testimonials {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .testimonial-card-modern {
        padding: 20px;
    }
    
    /* Additional mobile styles */
    .testimonial-author-modern h4 {
        font-size: 16px;
    }
    
    .testimonial-author-modern span {
        font-size: 12px;
    }
}
