
/* Custom slick number dots using .slide__dots injected via customPaging */
.slide__dots {
  border: 2px solid transparent;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-weight: bold;
  color: #ffffff;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect for dot */
.slide__dots:hover {
  color: #b8c3d2;
  border-color: #b8c3d2;
}

/* Active dot when parent li gets .slick-active */
.slick-dots li.slick-active .slide__dots {
  color: #b8c3d2;
  border-color: #b8c3d2;
}

/* Blue Get Started button on 3rd testimonial slide */
.testimonial-slide:nth-child(3) .common__btn {
  background-color: #052b60 !important;
  border-color: #052b60 !important;
  color: #ffffff !important;
}
