:root {
    --primary-color: #4a2c82;
  }


.slick-slider img{
  width: 100%;
}
/* .slick-slider .image-box {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
} */

/* ===== Rectangle Dots ===== */
.slick-dots {
  bottom: 10px;
  display: flex !important;
  justify-content: center;
  gap: 8px;
}

.slick-dots li {
  width: 40px;      /* Dot width */
  height: 6px;      /* Dot height */
  margin: 0;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 3px;
  background: #ccc;
  opacity: 1;
  transition: background 0.3s;
}

.slick-dots li.slick-active button {
  background: var(--primary-color);
}

.slick-dots li button:before{
  display: none;
}
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

@media (max-width: 575.98px) {
  .slick-dots {
    bottom: 5px;
    display: flex !important;
    justify-content: center;
    gap: 8px;
  }
  /* .slick-slider .image-box {
        width: 100%;
        height: auto;
    } */
}