
/* ---------- GENERAL ---------- */
.text-title-orange {
  color: #f38221;
}

/* ---------- RESPONSIVE SWIPER VISIBILITY ---------- */
.testimonial3Swiper {
  display: block;
}
.testimonial2Swiper {
  display: none;
}
@media (max-width: 576px) {
  .testimonial3Swiper {
    display: none !important;
  }
  .testimonial2Swiper {
    display: block !important;
  }
}

/* ---------- CARD STYLING ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}

/* ---------- QUOTE ICON ---------- */
.quote-icon {
  font-size: 38px;
  color: #f38221;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: bold;
}

/* ---------- IMAGES ---------- */
.petal-img {
  width: 40px;
  height: auto;
}
.butterfly-vertical {
  height: 100px;
  width: auto;
}

/* ---------- SWIPER PAGINATION ---------- */
.testimonial3Swiper,
.testimonial2Swiper {
  padding-bottom: 50px;
}
.testimonial3Swiper .swiper-pagination,
.testimonial2Swiper .swiper-pagination {
  text-align: left;
  padding-left: 15px;
  bottom: -2px !important;
}
.testimonial3Swiper .swiper-pagination-bullet,
.testimonial2Swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d6d6d6;
  opacity: 1;
}
.testimonial3Swiper .swiper-pagination-bullet-active,
.testimonial2Swiper .swiper-pagination-bullet-active {
  background: #F38221 !important;
}

/* ---------- STAR + NAME ---------- */
.name-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.name-rating h6 {
  white-space: nowrap;
  margin-bottom: 0;
}
.rating {
  display: flex;
  gap: 4px;
}
.rating .star {
  width: 18px;
  height: 18px;
  background: url('https://cdn-icons-png.flaticon.com/512/1828/1828884.png') no-repeat center;
  background-size: contain;
}

/* ---------- COLOR VARIATIONS ---------- */
.testimonial2Swiper .swiper-slide:nth-child(odd) {
  background: #F38221;
  color: #fff;
}
.testimonial2Swiper .swiper-slide:nth-child(odd) .rating .star {
  filter: brightness(0) invert(1);
}
.testimonial2Swiper .swiper-slide:nth-child(even) {
  background: #F9EFEE;
  color: #000;
}
.testimonial2Swiper .swiper-slide:nth-child(even) .rating .star {
  filter: brightness(0);
}
.home-testimonial5{
  background: #F9EFEE;
}
/* ---------- RESPONSIVE LAYOUT ---------- */
@media (max-width: 992px) {
  .row > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 576px) {
  .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .butterfly-vertical {
    height: 200px;
  }
  .testimonial2Swiper {
    display: block;
    padding-bottom: 60px;
  }
  .testimonial2Swiper .swiper-pagination {
    padding-left: 10px;
    bottom: -20px !important;
  }
}