.testimonials-section {
  display: flex;
  gap: 30px;
  padding: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  width: 300px;
  background: #fdf2d6;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0px 5px 18px rgba(0,0,0,0.12);
  transition: .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 16px 28px rgba(0,0,0,0.2);
}
.testprofile{
  display: flex;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #565656;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
  height: 180px;
}

.testimonial-card h3 {
  font-size: 18px;
  margin: 5px 0;
}

.testimonial-card span {
  font-size: 14px;
  color: gray;
}
