.testimonials-pro {
  margin: 50px 0 40px 0;
  padding: 2.2rem 1rem;
  background: linear-gradient(108deg, #fafdff 60%, #e3ecfa 100%);
  border-radius: 2rem;
  box-shadow: 0 2px 28px #0a41aa0c;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testimonials-pro .section-title {
  font-family: 'Merriweather', serif;
  color: #133366;
  font-size: 2rem;
  margin-bottom: 2.1rem;
  letter-spacing: 1px;
}

.testimonial-slider-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.testimonial-track {
  display: flex;
  overflow: hidden;
  width: 440px;
  min-height: 230px;
  position: relative;
  transition: transform 0.5s cubic-bezier(.6,.1,0,1);
}

.testimonial-card {
  flex: 0 0 440px;
  background: rgba(255,255,255,0.98);
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px #0a41aa13;
  padding: 1.7rem 2rem 1.2rem 2rem;
  margin: 0 0.25rem;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
  transition: opacity 0.33s, transform 0.33s;
  position: absolute;
  left: 0;
  top: 0;
}

.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: scale(1);
  z-index: 2;
}

.testimonial-quote {
  font-style: italic;
  color: #234;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
}
.testimonial-quote i.fa-quote-left {
  color: #0a41aa;
  font-size: 1.3rem;
  margin-right: 0.4rem;
  vertical-align: top;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1rem;
  justify-content: center;
}

.testimonial-client img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a41aa44;
  box-shadow: 0 1px 8px #0a41aa15;
}

.client-name {
  font-weight: bold;
  color: #124165;
  font-size: 1.07rem;
}

.client-role {
  display: block;
  color: #587ab8;
  font-size: 0.97rem;
  margin-top: 0.2rem;
  font-style: normal;
}

.testimonial-arrow {
  background: #0a41aa;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  box-shadow: 0 1px 8px #0a41aa22;
  cursor: pointer;
  transition: background 0.19s;
  z-index: 3;
}

.testimonial-arrow:hover { background: #2865c7; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.1rem;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b4ccef;
  border: none;
  cursor: pointer;
  transition: background 0.21s;
}

.testimonial-dots .dot.active {
  background: #0a41aa;
}

@media (max-width: 540px) {
  .testimonial-track, .testimonial-card { width: 96vw; min-width: 95vw; max-width: 98vw; flex: 0 0 96vw; }
  .testimonial-card { padding: 1.2rem 0.5rem; }
}
