/* Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

/* Slide-in Animation */
@keyframes slideIn {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slide-in {
  animation: slideIn 1.5s ease-out;
}

#reviewCarouselSection .slick-track {
  display: flex !important;
  align-items: stretch;
}
#reviewCarouselSection .slick-slide {
  height: auto !important;
}
#reviewCarouselSection .slick-slide > div {
  display: flex;
  flex-direction: column;
}
#reviewCarouselSection .slick-dots li button:before {
  font-size: 12px;
  color: gray;
}
#reviewCarouselSection .slick-dots li.slick-active button:before {
  color: black;
}

#reviewCarouselSection .review-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

#reviewCarouselSection .slick-dots {
  text-align: center;
  margin: 20px 0;
}

#reviewCarouselSection .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

#reviewCarouselSection .slick-dots li button {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

#reviewCarouselSection .slick-dots li button:before {
  font-size: 15px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  color: gray;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#reviewCarouselSection .slick-dots li.slick-active button:before {
  color: black;
}
