.testimonials-section {
    padding: 150px 0;
    /* background: #f4f8ff; */
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

/* FLEX horizontal row */
.testimonial-wrapper {
    display: flex;
    gap: 30px;
}
.testimonials-container {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    width: calc(33.33% - 10px);
    padding: 25px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    opacity: 0.6;
    transform: scale(0.9);
    transition: 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card.active {
     opacity: 1;
    transform: scale(1);
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
}

.testimonial-card h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #003366;
}

.testimonial-card span {
    font-size: 14px;
    color: #777;
}
.testi-footer{
      display: flex;
    justify-content: space-between;
    align-items: center;
}
.user-info{
  gap: 10px;
      display: flex;
    align-items: center;
}


/* Tablet: show 2 cards */
@media(max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 10px);
    }
}

/* Mobile: show 1 card */
@media(max-width: 600px) {
    .testimonial-card {
        min-width: 100%;
    }
}