/* ═══════════════ TESTIMONIALS ═══════════════ */
.Testimonials {
  background: #f9f5f0;
  padding: 6em 2em;
  overflow: hidden;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-inner h2 {
  font-size: 2.4em;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.4em;
}

.testimonials-inner > p {
  color: #666;
  margin-bottom: 3em;
}

/* ── Slider Track ── */
.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 2em;
  transition: transform 0.6s ease-in-out;
  padding-bottom: 1em;
}

.testimonial-card {
  min-width: 340px;
  max-width: 340px;
  background: white;
  border-radius: 20px;
  padding: 2em;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: left;
  flex-shrink: 0;
}

.stars {
  color: #f5a623;
  font-size: 1.3em;
  margin-bottom: 0.8em;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #444;
  line-height: 1.75;
  font-size: 0.95em;
  margin-bottom: 1.5em;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1em;
}

.testi-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #133E87;
  transform: none;
  cursor: default;
}

.testi-author img:hover {
  transform: none;
}

.testi-author strong {
  display: block;
  font-size: 0.95em;
  color: #1a1a2e;
}

.testi-author span {
  font-size: 0.8em;
  color: #888;
}

/* ── Dots ── */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2em;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.testi-dot.active {
  background: #133E87;
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
  }
}
