.industries-testimonials-track-wrapper {
  overflow: hidden;
}

.industries-testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.industries-testimonials-card {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 1rem;
  opacity: 0.75;
  transition: transform 0.3s, box-shadow 0.3s;
  transform: scale(0.8);
}

.industries-testimonials-card.active {
  transform: scale(1.05);
  opacity: 1;
}

.industries-testimonials-card .card-body {
  border-radius: 0.75rem;
  height: 100%;
}

.industries-testimonials-dots {
  justify-content: center;
}

.industries-testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s;
}

.industries-testimonials-dot.active {
  background-color: #99c455;
}

.text-green {
  color: #99c455;
}

/* Stars wrapping for tablets and smaller screens */
@media (max-width: 1024px) {
  .stars-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .header-content {
    flex-direction: column;
    align-items: center !important;
  }

  .user-info {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}

/* Responsive adjustment */
@media (max-width: 767px) {
  .industries-testimonials-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
