:root {
  --swiper-theme-color: #fff;
  --swiper-pagination-bullet-horizontal-gap: 10px;
  --swiper-navigation-size: 65px;
}
.swiper-container{
  height: 100%; 
  max-height: 100vh;
  min-width: 0;
  max-width: 100vw; 
  width: 100%;
  overflow: hidden;
}
 
.swiper-slide{
  position: relative;
  width: auto;
  flex-shrink: 0;
  display: block;
  height: 100%;
  max-height: 100%;
}

.swiper-wrapper{
  max-height: 100%;
  height: 100%t;
  display: flex;
}

/* SWIPER HERO */
.swiper-hero{
  height: calc(100vh - 80px);
}
.hero-image-holder{
  width: 100%;
  height: calc(100vh - 80px);
  background-position: center center;
  background-size: cover;
}
@media (min-width: 1000px){
  .hero-image-holder{
    height: calc(100vh - 130px);
  }
}
.swiper-hero .swiper-button-prev::after,
.swiper-hero .swiper-button-next::after {
  display: none; /* Hide default Swiper arrows */
}
.swiper-hero .swiper-button-prev {
  background: url("../images/arrow-left-white.svg") no-repeat center;
  background-size: contain;
  width: var(--sw-arrow-size); /* Adjust size */
  height: var(--sw-arrow-size);
  left: 30px;
}

/* Right Arrow */
.swiper-hero .swiper-button-next {
  background: url("../images/arrow-right-white.svg") no-repeat center;
  background-size: contain;
  width: var(--sw-arrow-size);
  height: var(--sw-arrow-size);
  right: 30px;
}
.hero-button-next, .hero-button-prev{
  display: none;
  transition: all 0.3s;
}
/* Arrow hover */
.hero-button-next:hover{
  transform: translate(10px, 0);
}
.hero-button-prev:hover{
  transform: translate(-10px, 0);
}
.swiper-pagination.hero-pagination{
  display: flex;
  bottom: 40px;
}
.slide-text{
  width: 100%;
  padding: 0 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.slide-text .button{
  color: #fff;
}
.swiper-heading{
  font-family: "Forum", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 30px;
}
.hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover{
  background: transparent;
  border: 1px solid #fff;
}
.hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background: transparent;
  border: 1px solid #fff;
}
.hero-pagination .swiper-pagination-bullet{
  background: #fff;
}
@media (min-width: 1000px){
  .swiper-hero{
    height: calc(100vh - 130px);
  }
}
@media (min-width: 1300px){
  .swiper-heading{
    font-size: 48px;
    line-height: 60px;
  }
}
@media (min-width: 992px){
  .hero-button-next, .hero-button-prev{
    display: block;
  }
  .swiper-pagination.hero-pagination{
    display: none;
  }
}

.swiper-pagination-padding{
  padding-bottom: 50px;
}
/* Swiper treatments */
.swiper-treatments{
  height: auto;
  padding-bottom: 0;
}
  .swiper-treatments .swiper-slide{
    text-align: center;
  }
  .swiper-treatments .swiper-button-next{
    color: var(--sw-dark-color);
    top: 50%;
    transform: translate(18px, -30px);
  }
  .swiper-treatments .swiper-button-prev{
    color: var(--sw-dark-color);
    top: 50%;
    transform: translate(-18px, -30px);
  }
  .swiper-treatments .swipe-image-wrap{
      /* width: 100%; */
      display: inline-block;
      width: 210px;
      height: 210px;
      border-radius: 100%;
      overflow: hidden;
      position: relative;
      padding: 9px;
    }
    .swiper-treatments .swipe-image-wrap::after{
      content: '';
      display: block;
      position: absolute;
      top: 3px;
      left: 3px;
      width: 195px;
      height: 195px;
      border: 1px solid var(--btn-border-light-color);
      border-radius: 50%;
      transition: all 0.3s;
    }
    .swiper-treatments .swipe-image-wrap:hover::after{
      border: 1px solid var(--btn-border-color);
    }
    .swiper-treatments .swiper-image-circle{
      width: 185px;
      border-radius: 100%;
      overflow: hidden;
    }
    .swiper-treatments .swipe-image-wrap img{
      display: block;
      width: 100%;
      height: auto;
    }
    .swiper-treatments .swiper-button-prev::after,
    .swiper-treatments .swiper-button-next::after {
      display: none; /* Hide default Swiper arrows */
    }
    .swiper-treatments .swiper-button-prev {
      background: url("../images/arrow-left.svg") no-repeat center;
      background-size: contain;
      width: 45px;
      height: 45px;
    }
    
    /* Right Arrow */
    .swiper-treatments .swiper-button-next {
      background: url("../images/arrow-right.svg") no-repeat center;
      background-size: contain;
      width: 45px;
      height: 45px;
    }
    .swiper-treatments .treatments-pagination{
      display: none;
    }
@media (min-width: 1000px){
  .swiper-treatments{
    padding-bottom: 70px;
  }
  .swiper-treatments .swiper-button-next, .swiper-treatments .swiper-button-prev{
    display: none;
  }
  .swiper-treatments .treatments-pagination{
    display: flex;
  }
}


.swiper-pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
}
.swiper-pagination-bullet {
  width: 8px;          /* Bullet width */
  height: 8px;         /* Bullet height */
  background-color: #4d4b49; /* Default bullet color */
  border-radius: 50%;    /* Make it round */
  transition: all 0.3s; /* Smooth transition */
  opacity: 1;
}

/* Style for active bullet */
.swiper-pagination-bullet-active {
  background-color: #fff; /* Active bullet color */
  width: 18px;          /* Bullet width */
  height: 18px;
  border: 1px solid #4d4b49;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active:hover{
  background-color: #fff;
}

/* Optional: Add hover effect */
.swiper-pagination-bullet:hover {
  background-color: #4d4b49; /* Hover bullet color */
}



/* Review siper */
.googleReviewSwiper .swipe-image-wrap{
  /* width: 100%; */
  display: inline-block;
  width: 165px;
  height: 165px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  padding: 9px;
}
.googleReviewSwiper .swipe-image-wrap:after{
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--btn-border-light-color);
  border-radius: 50%;
}
.googleReviewSwiper .swiper-image-circle{
  width: 150px;
  border-radius: 100%;
  overflow: hidden;
}
.googleReviewSwiper .swipe-image-wrap img{
  display: block;
  width: 100%;
  height: auto;
}
.g-sw .swiper-button-prev::after,
.g-sw .swiper-button-next::after {
  display: none; /* Hide default Swiper arrows */
}
.g-sw .swiper-button-prev {
  background: url("../images/arrow-left.svg") no-repeat center;
  background-size: contain;
  width: var(--sw-arrow-size); /* Adjust size */
  height: var(--sw-arrow-size);
  left: 30px;
}

/* Right Arrow */
.g-sw .swiper-button-next {
  background: url("../images/arrow-right.svg") no-repeat center;
  background-size: contain;
  width: var(--sw-arrow-size);
  height: var(--sw-arrow-size);
  right: 30px;
}
.g-sw .swiper-button-prev, .g-sw .swiper-button-next{
  display: none;
}
.g-sw .swiper-button-next, .g-sw .swiper-button-prev{
  color: var(--sw-dark-color);
  width: 45px;
  height: 45px;
}
.g-sw .swiper-button-next{
  right: -50px;
}
.g-sw .swiper-button-prev{
  left: -50px;
}

.review-card img{
  width: 80%;
}
@media (min-width: 1200px){
  .g-sw .swiper-button-prev, .g-sw .swiper-button-next{
    display: block;
  } 
}
@media (min-width: 1400px){
  .g-sw .swiper-button-next{
    right: -100px;
  }
  .g-sw .swiper-button-prev{
    left: -100px;
  }
}
.review-card{
  padding-left: 15px;
  padding-right: 15px;
}
/* BLOG SWIPER */
.blogSwiper img{
  width: 100%;
  height: auto;
}

.blogSwiper img{
  width: 100%;
  height: auto;
}



/* Feature */
.swiper-feature{
  height: 165px;
}
@media (min-width: 900px){
  .swiper-feature{
    height: 165px;
  } 
}
@media (min-width: 1400px){
  .swiper-feature{
    height: 170px;
  } 
}
.swiper-feature img{
  width: 100%;
  max-width: 257px;
}
.swiper-pagination-feature{
  z-index: 9999;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
}
.swiper-feature .swiper-button-next{
    color: var(--sw-dark-color);
    top: 50%;
    transform: translate(18px, -30px);
  }
  .swiper-feature .swiper-button-prev{
    color: var(--sw-dark-color);
    top: 50%;
    transform: translate(-18px, -30px);
  }
.swiper-feature .swiper-button-prev::after,
    .swiper-feature .swiper-button-next::after {
      display: none; /* Hide default Swiper arrows */
    }
    .swiper-feature .swiper-button-prev {
      background: url("../images/arrow-left.svg") no-repeat center;
      background-size: contain;
      width: 45px;
      height: 45px;
    }
    
    /* Right Arrow */
    .swiper-feature .swiper-button-next {
      background: url("../images/arrow-right.svg") no-repeat center;
      background-size: contain;
      width: 45px;
      height: 45px;
    }
