.testimonial-card {
  background-color: #478ac9;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 0 0 calc(25% - 20px);
}

.testimonial-header {
  position: relative;
  margin-bottom: 10px;
}

.testimonial-image {
  width: 171px;
  height: 171px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin: -83px auto 0;
}

.testimonial-icon {
  position: absolute;
  top: -38px;
  right: 60px;
  background-color: orange;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-name {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: white;
}

.testimonial-stars {
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.5;
  color: white;
}

.slider-container {
  display: flex;
  align-items: center;
  height: 600px;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
  width: 100%;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.main-heading {
  font-size: var(--slide-font-size);
  color: var(--slide-font-color);
  font-style: var(--slide-font-style);
  font-weight: 700;
}

.shop-btn {
  line-height: 1.1!important;
  width: 250px;
  color: #000;
}

.banner-desc {
  font-size: 40px;
  color: #000;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .testimonial-card {
      flex: 0 0 calc(33.33% - 20px);
  }

  .testimonial-icon {
      right: 70px;
  }
}

@media (max-width: 1000px) {
  .testimonial-icon {
      display: none;
  }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .testimonial-card {
      flex: 0 0 100%;
  }

  .testimonial-icon {
      display: none;
  }

  .main-heading {
      font-size: 25px;
      font-weight: 600;
  }

  .banner-desc {
      font-size: 15px;
      font-weight: 400;
  }

  .shop-btn {
      line-height: 1.1!important;
      width: 150px;
      font-size: small;
      color: #000;
  }
}
