.testimonials-container {
  padding: 3rem 1.5rem;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #d1d5db;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: #a5b4fc;
}

.testimonial-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  border: 3px solid #a5b4fc;
  box-shadow: 0 4px 10px rgba(165, 180, 252, 0.5);
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 0.3rem;
}

.testimonial-board {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0.75rem;
  background: #e0e7ff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.star {
  width: 18px;
  height: 18px;
  fill: #facc15;
}

.testimonial-message {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
  padding: 0 1rem;
}




