
.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
  padding: 0 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
  min-width: 100%;
}

.testimonial-card {
  flex: 0 0 100%;
  flex-shrink: 0;
  border: 1px solid #003fff50;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 2px;
  background-color: #fff;
}

.stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 10px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid black;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-arrow {
  left: 1px;
}

.right-arrow {
  right: 1px;
}

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

.dots span {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dots span.active {
  background-color: #003fff;
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}