/* ========== Section Base ========== */
.customer_review {
  position: relative;
}

/* ========== Header Styles ========== */
.head_customer_review {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.head_title h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
  color: var(--primary-color);
}

/* ========== Navigation Buttons ========== */
.customer_review .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 250px);
  max-width: 1164px;
  z-index: 3; 
  padding: 0 20px;
}

#left:after,
#right:after {
  font-size: 12px !important;
  color: var(--white-color) !important;
  background: var(--primary-color);
  border-radius: 30px;
  padding: 13px 16px;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--white-color) !important;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 30px !important;
  width: 30px !important;
}

.swiper-button-next,
.swiper-button-prev {
  svg {
    height: 14px !important;
  }
}

.swiper-button-next,
.swiper-button-prev {
  svg {
    display: none !important;
  }
}
/* ========== Swiper Container ========== */
.customer_review .swiper-container {
  overflow: hidden;
  margin: auto;
  height: auto;
  width: 100%;
  border-radius: 60px;
  box-shadow: 0 4px 32px 12px rgba(194, 194, 194, 0.08);
}

/* ========== Review Card ========== */
.customer_review .one-review {
  padding: 40px 16px;
  width: 100% !important;
}

/* ========== Reviewer Information ========== */
.customer_review .reviewer-information .image-parent {
  width: 100px;
  height: 100px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
}

.customer_review .reviewer-information .image-parent img {
  max-width: 100%;
}

.customer_review .reviewer-information .containt {
  display: flex;
  flex-direction: column;
}

.customer_review .reviewer-information .containt h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 38.4px;
  text-align: center;
  margin-bottom: 0.25rem;
}

.customer_review .reviewer-information .containt p {
  font-size: 24px;
  font-weight: 400;
  line-height: 28.8px;
  text-align: center;
  margin-bottom: 0.25rem;
}

/* ========== Feedback Section ========== */
.customer_review .feadbake {
  width: 80%;
  display: flex;
  margin: auto;
}

.customer_review .feadbake p {
  font-size: 24px;
  font-weight: 400;
  line-height: 43.2px;
  text-align: center;
  width: 100%;
}

/* Quote SVG Icons */
.customer_review .feadbake .quotes_top {
  align-self: flex-start;
  width: 50px;
  position: absolute;
  right: 30px;
}

.customer_review .feadbake .quotes_bottom {
  align-self: flex-end;
  width: 50px;
  position: absolute;
  left: 50px;
}

/* ========== Tablet Responsive (max-width: 767px) ========== */
@media (width <= 767px) {
  .head_title h2 {
    font-size: 27px;
  }

  .customer_review .reviewer-information .containt h2 {
    font-size: 25px;
  }

  .customer_review .reviewer-information .containt p {
    font-size: 19px;
    line-height: 17.8px;
  }

  .customer_review .feadbake p {
    font-size: 14px;
    width: 89%;
    margin: auto;
    line-height: 25px;
  }

  .customer_review .btns {
    width: calc(100% - 40px);
    padding: 0 10px;
  }
}
/* ========== Mobile Responsive (max-width: 425px) ========== */
@media (width <= 425px) {
  .head_title h2 {
    font-size: 23px;
  }

  .customer_review .reviewer-information .containt h2 {
    font-size: 20px;
  }

  .customer_review .reviewer-information .containt p {
    font-size: 16px;
  }

  .customer_review .feadbake p {
    font-size: 12px;
  }

  .customer_review .feadbake .quotes_top {
    width: 36px;
    right: 26px;
  }

  #left:after,
  #right:after {
    font-size: 7px !important;
    padding: 9px 10px;
  }

  .swiper-navigation-icon {
    display: none !important;
  }

  .customer_review .btns {
    width: calc(100% - 20px);
    padding: 0 5px;
  }
}
