.testimonial-one {
  background: linear-gradient(to right, #f8fbff, #ffffff);
}

.testimonial-card {
  background: white;
  padding: 35px 35px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid #eef2f7;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -30px;
  right: 25px;
  font-size: 120px;
  color: #e8f1ff;
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.testimonial-review {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5faff;
  padding: 10px 16px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 18px;
}

.stars {
  color: #f5b301;
  font-size: 18px;
  letter-spacing: 2px;
  animation: starPulse 2s infinite;
}

.review-label {
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

@keyframes starPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
}

.testimonial-card .client {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .client img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #e6f0ff;
}

.testimonial-card .client h4 {
  font-weight: 600;
  color: #0b2c4d;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #1e60aa;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* .swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #1e60aa;
  color: white;
} */
