
.testimonials-scroller {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.testimonials-scroller::-webkit-scrollbar { height: 6px; }
.testimonials-scroller::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 20px;
}

/* Premium Card */
.testimonial-card {
  scroll-snap-align: start;
  min-width: 300px;
  max-width: 380px;

  border-radius: 18px;
  padding: 32px;
  border: 1px solid #e6eaf3;

  box-shadow: 
    0 8px 20px rgba(0,0,0,0.03),
    0 20px 50px rgba(0,0,0,0.06);

  transition: .3s ease;
}

/* Smooth premium hover */
@media(hover:hover){
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
      0 10px 30px rgba(0,0,0,0.04),
      0 30px 60px rgba(0,0,0,0.08);
  }
}

/* Tablet + Desktop Grid */
@media(min-width:992px){
  .testimonials-scroller {
    overflow: visible;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: none;
  }
}

/* Badge */
.testimonial-badge {
  display: inline-block;
  font-size: .75rem;
  padding: 6px 14px;
  background: #eef3ff;
  color: #4456df;
  border-radius: 40px;
  font-weight: 600;
}

/* Text */
.testimonial-quote {
  margin: 20px 0 26px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.client-name {
  font-weight: 600;
  font-size: 1.05rem;
}
.client-role {
  color: #6b7280;
  font-size: .85rem;
}

/* Stats Box */
.rating-box {
  border: 1px solid #e4e7ee;
  padding: 20px 28px;
  border-radius: 18px;
  box-shadow: 0px 10px 40px rgba(0,0,0,0.05);
}