/* Testimonials Section Styling */
.testimonials-section {
  background-color: #e7fa50;
  padding: 60px 0;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading p {
  margin-top: 20px;
}

.owl-testimonials .item {
  background-color: #7a6ad8;
  color: #fff;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.owl-testimonials .item:hover {
  transform: scale(1.02);
}

.owl-testimonials .author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.owl-testimonials .author img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin-right: 20px;
}

.owl-testimonials .author .category {
  font-size: 14px;
  font-style: italic;
  color: #fff;
}

.owl-testimonials .author h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .testimonials-section {
    padding: 30px 10px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .owl-testimonials .item {
    padding: 30px;
  }

  .owl-testimonials .author img {
    width: 50px;
    height: 50px;
  }
}

/* Owl Carousel Styles */
.owl-carousel .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #7a6ad8;
  border-radius: 25px;
  padding: 80px;
}

.owl-carousel .item p {
  font-size: 18px;
  line-height: 40px;
  color: #fff;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
}

.owl-carousel .item img {
  border-radius: 50%;
  max-width: 100px;
  margin-bottom: 15px;
}

.owl-carousel .item h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
}