#testimonials {
  background: linear-gradient(180deg, #0a1a2e 0%, #0e3550 50%, #1a6a82 100%);
  text-align: center;
}

.testimonial-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-avatar {
  width: 64px; height: 64px;
  background: rgba(180, 220, 235, 0.2);
  border: 2px solid rgba(180, 220, 235, 0.4);
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.testimonial-avatar svg {
  width: 36px; height: 36px;
  color: rgba(180, 220, 235, 0.7);
}

.testimonial-card {
  background: rgba(176, 216, 224, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(176, 216, 224, 0.2);
  border-radius: 20px;
  padding: 48px 48px 40px;
  margin-top: -28px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-card p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 24px;
}

.testimonial-card .name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
  gap: 12px;
}

.t-nav-btn {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(10, 26, 46, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast);
  color: var(--dark);
}

.t-nav-btn:hover {
  background: rgba(10, 26, 46, 0.1);
}

.t-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background var(--t-med), transform var(--t-med);
}

.t-dot.active {
  background: var(--cyan);
  transform: scale(1.3);
}

@media (max-width: 640px) {
  .testimonial-card { padding: 48px 24px 32px; }
}
