/* body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
} */

.testimonial-slider {
  width: 90%;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
  margin-left:10%;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
}

.info {
  flex: 1;
}

.stars {
  color: gold;
  font-size: 1rem;
  margin-left: 10px;
}

.text {
  font-weight: 500;
  margin: 10px 0;
}

.name1 {
  font-weight: bold;
  font-size: 1.1rem;
  margin-left: 0%;
}

/* Dots Navigation */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
}

.dots .active {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
    text-align: center;
  }

  .card img {
    width: 100px;
    height: 100px;
  }

  .info {
    padding: 10px;
  }
}
