.elementor-7647 .elementor-element.elementor-element-d016d6f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7647 .elementor-element.elementor-element-d3dde7f{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-d3dde7f *//* Full-width scrolling row */
.slider-row {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}

.slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  animation: scroll-left 40s linear infinite;
  width: max-content;
  will-change: transform;
}

.slider-row.rtl .slider-track {
  animation: scroll-right 40s linear infinite;
}

/* Individual card container */
.slide {
  flex: 0 0 auto;
  width: 460px;
}

/* Testimonial card styling */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card .stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
}

.testimonial-card .message {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
}

.testimonial-card .designation {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
}

/* Animations */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@media (max-width: 768px) {
  .slide {
    width: 260px;
  }
}/* End custom CSS */