/* Testimonial Section */

.testimonial-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}

/* Carousel */

.testimonial-carousel {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform .5s ease;
}

/* Card */

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #fff;
    padding: 5px 24px;
    border-radius: 16px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
}

/* Stars */

.stars {
    color: #109977;
    font-size: 20px;
    letter-spacing: 3px;
   
}

/* Review Text */

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 18px;
    min-height: 90px;
}

/* Read more link */

.read-more-inline {
    color: #109977;
    font-weight: 600;
    cursor: pointer;
}

.read-more-inline:hover {
    text-decoration: underline;
}

/* Author */

.testimonial-author {
    font-weight: 700;
    font-size: 16px;
    color: #1a202c;
    line-height:1;
}

.testimonial-date {
    font-size: 14px;
    color: #a0aec0;
}

/* Navigation */

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all .3s ease;
}

.dot.active {
    background: #109977;
    width: 28px;
    border-radius: 12px;
}

/* Responsive */

@media (max-width: 992px) {

.testimonial-card {
    flex: 0 0 calc(50% - 12px);
}

}

@media (max-width: 768px) {

.testimonial-card {
    flex: 0 0 100%;
}

}