.testimonials-section10 {
  width: 100%;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(to right, transparent, #f9fafb, transparent);
  position: relative;
  z-index: 20;
}

@media (max-width: 1100px) {
  .testimonials-section10 {
    padding: 4rem 0;
  }
}

@media (max-width: 600px) {
  .testimonials-section10 {
    padding: 3rem 0;
  }
}

.blur-overlay10 {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.marquee-container10 {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.marquee-track10 {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.marquee-track10:hover {
  animation-play-state: paused;
}

.testimonial-item10 {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.testimonial-item10:hover {
  opacity: 1;
}

.testimonial-avatar10 {
  width: 3rem;
  height: 3rem;
  border-radius: 25%;
  object-fit: cover;
}

.testimonial-text10 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #334155;
  letter-spacing: -0.5px;
}

@media (max-width: 600px){
  .testimonial-text10 {
  font-size: 1rem;
  letter-spacing: 0px;
}
}

.fade10 {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 20;
}

.fade-left10 {
  left: 0;
  background: linear-gradient(to right, #f9fafb, transparent);
}

.fade-right10 {
  right: 0;
  background: linear-gradient(to left, #f9fafb, transparent);
}

@keyframes marquee10 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
