.customer-say {
  scroll-margin: 110px;
  padding: 40px 0;
  background: #fff;
}

/* Header Row */
.customer-say .header-row {
  all: unset;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}

/* Left fading line */
.customer-say .header-line {
  width: 6px;
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(to bottom, #00f200, transparent);
}

/* Title */
.customer-say h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #004135;
  line-height: 2.5rem;
  text-align: left;
}

/* Navigation Buttons */
.customer-say .nav-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.customer-say .nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #004135;
  cursor: pointer;
  transition: all 0.3s ease;
}

.customer-say .nav-btn svg {
  stroke: #174035;
  transition: stroke 0.3s ease;
}

.customer-say .nav-btn:hover {
  background: #47ee40;
}

.customer-say .nav-btn:hover svg {
  stroke: #fff;
}

/* Swiper Cards */
.customer-say .testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.customer-say .testimonial-quote {
  position: absolute;
  top: -4%;
  font-size: 32px;
  color: #004135;
  margin-bottom: 16px;
}

.customer-say .testimonial-text {
  color: #6a6c72;
  font-size: 15px;
}

/* Footer Layout (image + name + stars) */
.customer-say .testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px; /* Increased gap */
  margin-top: 20px;
}

.customer-say .testimonial-img {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #33c19f; /* Green border */
}

.customer-say .testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 4px;
}

.customer-say .testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  margin: 0 0 2px 0;
}

.customer-say .stars {
  display: flex;
  gap: 4px;
}

.customer-say .stars span {
  color: #f8c917;
  font-size: 20px;
}

/* Swiper pagination overrides */
.customer-say .swiper-pagination-bullet {
  background: #004135 !important;
  opacity: 0.3;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px !important;
}

.customer-say .swiper-pagination-bullet-active {
  background: #004135 !important;
  opacity: 1;
}

/* Equal height slides */
.customer-say .cards-swiper .swiper-wrapper {
  align-items: stretch !important;
}

.customer-say .cards-swiper .swiper-slide {
  height: auto !important;
}

.customer-say .swiper-pagination {
  position: relative;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .customer-say h2 {
    font-size: 1.375rem;
    line-height: 1.625rem;
  }
}

/*# sourceMappingURL=customersays.css.map */
