.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.star-rating {
  color: #ffc107;
}

h6 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}

h6:hover {
  color: #45A735;
}

.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: #e9f7ef;
  border-radius: 50%;
  transform: translateY(-50%);
  color: #45A735;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #45A735;
  color: #fff;
}

.carousel-indicators [data-bs-target] {
  background-color: #45A735;
}