
.specialty-corner {
  height: 100px;
  width: 100px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.15s ease-in-out;
  margin-bottom: 10px;
}
.specialty-img {
  height: 100px;
  width: 100px;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.2);
  filter: brightness(0) saturate(100%) invert(30%) sepia(8%) saturate(2188%)
    hue-rotate(123deg) brightness(94%) contrast(87%);
  -webkit-filter: brightness(0) saturate(100%) invert(30%) sepia(8%)
    saturate(2188%) hue-rotate(123deg) brightness(94%) contrast(87%);
}
@media (max-width: 768px) {
  .specialty-slider .slick-next,
  .specialty-slider .slick-prev {
    z-index: 1000;
    top: 107%;
    background: none !important; /* Remove any background */
    border: none !important;
  }

  .specialty-slider .slick-next:before,
  .specialty-slider .slick-prev:before {
    color: var(--color-secondary-green);
    content: none;
  }

  .specialty-slider .slick-next {
    right: 0%;
  }

  .specialty-slider .slick-prev {
    left: 0%;
  }

  .slick-prev i,
  .slick-next i {
    font-size: 17px;
    color: var(--color-secondary-green);
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 1;
  }

  .specialty-slider .slick-slide {
    height: auto; /* Let content define height */
    padding: 10px; /* Add some padding between items */
    box-sizing: border-box;
  }

  /* Style for the inner flex container (your specialty item) */
  .specialty-slider .d-flex {
    /* Slick wraps each row in a div, so this helps center the content */
    height: 100%;
    justify-content: center;
  }

  /* Style for the circular image/icon container */
/*  .specialty-img {
    object-fit: contain;
    margin-bottom: 5px;
  }*/

  /* Styling for the text */
  .specialty-slider p {
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    color: #375b57; /* Dark teal text color */
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    min-height: calc(1.5em * 2);
  }

  /* Customizing the Pagination Dots */
  .slick-dots {
    bottom: -30px; /* Position below the content */
  }

  .slick-dots li button:before {
    font-size: 10px; /* Adjust size of default dots */
    color: #b2dfdb; /* Inactive dot color (light teal) */
  }

  .slick-dots li.slick-active button:before {
    color: #375b57; /* Active dot color (dark teal) */
  }
}