.custom-slider .slide-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
}

.custom-slider .slide-image img {
  width: 320px;
  border-radius: 10px;
}

.custom-slider .slide-text {
  max-width: 800px;
}

.custom-slider .slide-text h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #00697C;
  font-family: Lato;
  font-weight: 700;
}

.custom-slider .slide-text p {
  font-size: 18px;
  font-family: Lato;
  font-weight: 400;
  margin-bottom: 10px;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #00697C !important;
}

@media screen and (max-width: 768px) {
  .custom-slider .slide-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
	.custom-slider .slide-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #00697C;
  font-family: Lato;
  font-weight: 700;
}

}


.custom-slider .swiper-pagination {
  position: relative;
  margin-top: 25px; /* space below the card */
  bottom: 0 !important;
  text-align: center;
}

.custom-slider {
  padding-bottom: 30px; /* ensures enough space for dots */
}


.custom-slider .swiper-pagination-bullet {
  background-color: #000; /* inactive dots - black */
  opacity: 1; /* make them fully visible */
}

.custom-slider .swiper-pagination-bullet-active {
  background-color: #fff !Important; /* active dot - white */
  
}