@import url("https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css");
/* -----------------------------------------------------
   BRAND COLORS
----------------------------------------------------- */
:root {
  --primary: #f15704;
  --secondary: #035c01;
  --white: #ffffff;
  --light-bg: #f9f9f9;
  --border-light: rgba(0, 0, 0, 0.08);
}

/* -----------------------------------------------------
   LAYOUT UTILITY
----------------------------------------------------- */
.col-centered {
  margin: 0 auto;
  max-width: 650px;
  width: 100%;
}

/* -----------------------------------------------------
   IMAGE (LOGO / CUSTOMER PIC)
----------------------------------------------------- */
.customer-feedback .owl-item img {
  width: 120px;
  max-width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: var(--white);
  padding: 10px;
  border: 2px solid var(--primary);
  border-radius: 14px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Mobile sizing */
@media (max-width: 768px) {
  .customer-feedback .owl-item img {
    width: 90px;
  }
}

/* -----------------------------------------------------
   TESTIMONIAL CARD
----------------------------------------------------- */

.feedback-slider-item {
  position: relative;
  padding: 40px 30px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  margin: 40px;
}

/* Accent bar on top */
.feedback-slider-item::before {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 20px;
}

/* -----------------------------------------------------
   TEXT STYLES
----------------------------------------------------- */
.customer-name {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary);
  text-align: center;
}

.feedback-slider-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

/* -----------------------------------------------------
   RATING BADGE
----------------------------------------------------- */
.customer-rating {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: -15px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.customer-rating i {
  color: var(--primary);
  font-size: 12px;
  margin-left: 3px;
}

/* -----------------------------------------------------
   NAVIGATION (ARROWS)
----------------------------------------------------- */
.feedback-slider {
  position: relative !important;
}

.feedback-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* allow clicks on arrows only */
}

.feedback-slider .owl-nav button.owl-prev,
.feedback-slider .owl-nav button.owl-next {
  pointer-events: auto;
  background: #fff;
  border: 1px solid #ddd;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: #035c01;
  transition: 0.3s ease;
}

.feedback-slider .owl-nav button.owl-prev:hover,
.feedback-slider .owl-nav button.owl-next:hover {
  background: #eaeaea;
}

/* Icons fix */
.feedback-slider .owl-nav button span {
  font-size: 28px;
  line-height: 0;
}

.customer-feedback .owl-nav [class*="owl-"] {
  color: var(--primary);
  font-size: 28px;
  background: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: 0.25s ease;
}

.customer-feedback .owl-prev {
  left: -20px;
}
.customer-feedback .owl-next {
  right: -20px;
}

.customer-feedback .owl-prev:hover,
.customer-feedback .owl-next:hover {
  background: var(--primary);
  color: var(--white);
}

/* -----------------------------------------------------
   DOTS
----------------------------------------------------- */
.customer-feedback .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.customer-feedback .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 50%;
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--primary);
  transition: 0.3s;
}

.customer-feedback .owl-dot.active span {
  background: var(--primary);
}

/* -----------------------------------------------------
   RESPONSIVE ENHANCEMENTS
----------------------------------------------------- */
@media (max-width: 767px) {
  .feedback-slider-item {
    margin: 20px 15px;
    padding: 30px 25px;
  }
}
