.testimonial-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #f3f3f3;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.profile-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 5px #fff, 0 0 10px rgba(0,0,0,0.1);
}

h4 {
  margin: 0.5rem 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.img-shadow{
    box-shadow: 2px 2px 10px #0000;
}
