.testimonials-section {
    margin-top :200px;
  padding: 80px 20px;
  background: linear-gradient(to right, #f9fafb, #ebf4ff);
  font-family: sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-header .highlight {
  color: #2563eb; /* blue-600 */
}

.section-header p {
  color: #4b5563;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.stars {
  color: #fbbf24; /* yellow-400 */
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.content {
  color: #374151;
  font-style: italic;
  margin-bottom: 24px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.profile strong {
  color: #111827;
  display: block;
}

.role {
  color: #6b7280;
  font-size: 0.9rem;
}
