/* ========== Testimonials ========== */
.testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px 36px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(108, 60, 240, 0.06);
  text-align: center;
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.testimonial-stars i {
  margin: 0 2px;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testi-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.testi-btn.active {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(108, 60, 240, 0.15);
}
