.testimonial-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.testimonial-card {
  scroll-snap-align: center;
  min-width: 300px;
  background: #f9fbfc;
  box-shadow: 0 4px 8px 0 rgba(171, 190, 209, 0.4);
  padding: 24px 0 0 0;
  position: relative;
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: -27px;
  margin-left: 2rem;
}

.testimonial-header img {
  width: 106px;
  height: 106px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 12px;
  border: 8px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.testimonial-name {
  font-weight: 400;
  font-size: 24px;
  color: #1177DD;
  margin-bottom: 2px;
}

.testimonial-title {
  font-size: 14px;
  color: #000000;
}

.testimonial-body {
  background: #D5E2F5;
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
  position: relative;
  border: 16px solid #fff;
  margin-top: -1rem;
}

.testimonial-body::after {
  content: "";
  position: absolute;
  top: -20px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-image: url('https://netpower2dev.wpenginepowered.com/wp-content/uploads/2025/07/unnamed-file.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.testimonial-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-carousel-inner {
    display: flex;
    white-space: nowrap;
    transition: transform 0.1s linear;
}

.testimonial-slide {
    min-width: 300px;
    margin: 0 10px;
    flex-shrink: 0;
    background: #f9f9f9;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}
