@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* font-family: "Outfit", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
/* font-family: "Prata", serif; */
/*=====================
 Common Section 
 ======================*/
:root {
      --xspace: 5px;
      --vw-width: calc(100vw - 18px);

      --primary-color: #00AEEF;
      --secondary-color: #F41C5E;
      --dark-text: #013540;
      --description-text : #000000;

      --font-outfit : "Outfit", sans-serif;
      --font-prata : "Prata", serif;

      --description-font-size : 16px;
    }

    body {
      margin: 0;
      font-family: var(--font-outfit);
    }
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}
p{font-weight:300 !important}
p>span{font-weight:300 !important}
    select:focus-visible {
      border: none;
      outline: none;
    }
	.owl-carousel .owl-item img.img-slider {
		border-radius: 20px;
		width: 166px;
		height: 170px;
		object-fit: cover;
	}
    .owl-nav {
        display: flex;
        gap: 10px;
        position: absolute;
        top: -130px;
        right: 0px;
    }
    .owl-nav button.owl-next, .owl-nav button.owl-prev {
        width: 50px;
        height: 50px;
        opacity: 1;
        margin: 0;
        border-radius: 50px;
        background-color: #E8E8E8 !important;
        box-shadow: 0 2px 2px 0 #0000003d, 0 0 2px 0 #0000001f;
        font-family: "Font Awesome 7 Free" !important;
        font-weight: 900 !important;
    }
    .owl-nav button.owl-next:hover, .owl-nav button.owl-prev:hover{
      background-color: var(--dark-text) !important;
      color: var(--bs-white);
    }
    .owl-nav button>span {
        display: none;
    }
    .owl-nav button.owl-prev:after {
        content: "\f060";
    }
    .owl-nav button.owl-next:after {
      content: "\f061";
    }
   .light{ color: var(--bs-white);}
   
   .light .section-title>h2{
      color: var(--bs-white);
    }
    .section-title>h2>span{
      color: var(--primary-color);
    }
    .section-title.light>h2{
      color: var(--bs-white);
    }
    .light .section-title>p {
        color: var(--bs-white);
    }
     .section-title.center>h2{
      text-align: center;
     }
    .form-control.round, .form-select.round{
      border-radius: 50px;
      padding: 12px 20px;
    }
.wpcf7-not-valid-tip {
    font-size: 12px !important;
    position: absolute;
    bottom: 0;
    right: 20px;
}
.wpcf7-response-output {
    position: absolute;
    bottom: 0;
    width: -webkit-fill-available;
    text-align: center;
    font-size: 12px;
    font-weight: 200;
}
.wpcf7-spinner{
    position: absolute !important;
        background-color: #ffffff6e !important;
    right: 0;
    top: 15px;
}
.wpcf7-form-control.btn-submit{
    padding:14px;
}
/*=====================
 Menu Section 
 ======================*/
 .custom-menu {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* background: #fff; */
      padding: 0px 0px 15px 0px;
      position: relative;
      z-index: 1000;
    }

    .custom-menu a {
      text-decoration: none;
      color: var(--dark-text);
      padding: 8px 12px;
      display: block;
      transition: 0.3s;
    }

    .custom-menu a:hover {
      color: var(--primary-color);
    }
.mob-logo{display: none !important;}
    .custom-menu ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 25px;
    }
    .logo>img{
        width:138px;
    }
    .custom-menu ul.main-menu{
      
    }

    .custom-menu ul.main-menu li a{

    }
    
.custom-menu ul.main-menu li a i {
    font-size: 12px;
    float: right;
    margin-top: 6px;
    padding-left: 10px;
}
ul.sub-menu li a{
	font-size:14px;
}
    .custom-menu ul.main-menu li {
      position: relative;
    }

    /* Dropdown */
    .custom-menu ul.main-menu ul {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 200px;
      display: none;
      gap:0px;
      flex-direction: column;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      border-radius: 6px;
      padding: 10px 0;
      opacity: 0;
      transform: translateY(20px);
    }

    @keyframes dropdownSlide {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .custom-menu ul.main-menu li:hover > ul {
      display: flex;
      animation: dropdownSlide 0.3s ease forwards;
    }

    .custom-menu ul.main-menu ul ul {
      top: 0;
      left: 100%;
      margin-left: 1px;
    }

    /* Book Now */
.custom-menu .book-btn {
  background: var(--secondary-color);
  color: var(--bs-white);
  border: 2px solid var(--secondary-color);
  padding: 10px 40px;
  border-radius: 25px;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-right:15px;
}

.custom-menu .book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.custom-menu .book-btn:hover::before {
  left: 0;
}

.custom-menu .book-btn:hover {
  color: #fff;
}
.custom-menu ul.main-menu li.book-btn-item{
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
/*-----start button -----*/
.cus-book-btn {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 10px 40px;
  border-radius: 25px;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

.cus-book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: left 0.3s ease;
  z-index: -1;
    
}

.cus-book-btn:hover::before {
  left: 0;
}

.cus-book-btn:hover {
  color: #fff;
}
/*-----end button-----*/

    /* Mobile Toggle */
    .menu-toggle {
      cursor: pointer;
      display: none;
    }
.custom-menu a.logo {
    background-color: var(--primary-color);
    display: block;
    padding: 14px 0px !important;
    border-radius: 0px 0px 10px 10px;
}
.mob-book-btn{display: none !important;}

.menu-item-has-children > a {
  position: relative;
  padding-right: 20px; 
}
.menu-item-has-children > a::after {
  content: "▼"; 
  font-size: 10px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.menu-item-has-children > .sub-menu > li > a {
  position: relative;
  padding-right: 20px; 
}
.menu-item-has-children > .sub-menu > li.menu-item-70 > a::after {
  content: "▼"; 
  font-size: 10px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
  transition: transform 0.3s ease;
}
.menu-item-has-children > .sub-menu > li.menu-item-71 > a::after {
  content: "▼"; 
  font-size: 10px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
  transition: transform 0.3s ease;
}
/*.menu-item-has-children:hover > .sub-menu > li > a::after {*/
/*  transform: translateY(-50%) rotate(180deg);*/
/*}*/

/*=====================
 Banner Section 
 ======================*/

.hero-section {
  padding: 0px 0;
  background-color: #fff;
  position: relative;
}
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 50px 10px 0px;
    height: 100%;
    justify-content: center;
}
.hero-content h1 {
  font-size: 55px;
  line-height: normal;
  /* max-width: 500px; */
  /*font-family: var(--font-prata);*/
}

.hero-content h1 span,
.hero-content h1 strong,
.hero-content h1 em {
  color: var(--primary-color);
}

.hero-content p {
  color: var(--description-text);

/*   max-width: 500px; */
  line-height: 1.6;
  margin: 0px;
	display: contents;
	font-weight: 300;
	display:block;
}
/* Container */
.clinic-banner-dropdown {
  position: relative;
  display: inline-block;
}

/* Button */
.dropdown-btn {
  background: var(--primary-color);
  color: var(--bs-white);
  width: 100%;
  border: none;
  padding: 13px 40px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.dropdown-btn:hover {
  opacity: 0.9;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 220px;
    background: transparent;
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 999;
}

/* Dropdown items */
.dropdown-content a {
  color: var(--primary-color);
  padding: 12px 20px !important;
  width: 100%;
  text-decoration: none;
  display: block;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Show dropdown when active */
.clinic-banner-dropdown.active .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}



/*=====================
 Experience Section 
 ======================*/
.exp-doctors {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.exp-doctors img {}
.exp-content h4 {
  font-size: 28px;
  color: var(--primary-color);
  margin: 0;
}
.exp-content p {
  margin: 0;

  color: #000000;
}
.exp-content{
  /*font-family: var(--font-prata);*/
}
/* Button group */
.custom-btn-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.custom-btn-group a {
    position: relative;
    display: inline-block;
    padding: 11px 40px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    background: transparent;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.custom-btn-group a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.custom-btn-group a:hover::before {
    left: 0;
}

.custom-btn-group a:hover {
    color: #fff;
}

.custom-btn-group a>i{
    font-size: 12px;
    padding-left: 16px;
}
.custom-btn-group .clinics  {
    padding: 1px 1px 1px 10px;
    border: none;
    color: white;
    font-weight: 500;
    background-color: var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.custom-btn-group .clinics>select {
    background-color: transparent;
    border: none;
    color: var(--bs-white);
    cursor: pointer;
}
.custom-btn-group .clinics>select>option{
  color: var(--dark-text);
}
.custom-btn-group .clinics>a {
    width: 48px;
    padding: 9px;
    text-align: center;
    /*background-color: var(--bs-white);*/
    /*color: var(--secondary-color);*/
}
.custom-btn-group .clinics>a>i{
    padding-left: 0;
}
.partner-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    flex-direction: column;
    margin-top: -180px;
    position: relative;
    width: 90%;
    left: 5%;
}
.partner-box h4 {
  margin: 0 0 10px;
  font-size: var(--description-font-size);
  font-weight: 600;
}
.partner-box p {
  margin: 0;
  font-size: 14px;
  color: #5B6277;
}
.partner-box img {
    height: 58px;
    margin-left: 0;
    object-fit: cover;
    object-position: center;
    width: 100px;
}
.partner-box .client-text-box {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.img-hero {
    width: 100%;
    margin-top: 0px;
    border-radius: 20px;
    /* position: relative; */
}
/*=====================
 Services Section 
 ======================*/
.bg-services {
    padding: 100px 20px 50px 20px;
}
.section-title{}
.section-title>h2{
font-size: 40px;
/*font-family: var(--font-prata);*/
line-height: 50px;
color: var(--dark-text);
}
.section-title>p {
    font-size: var(--description-font-size);
    /* font-family: var(--font-prata); */
    line-height: 25px;
    color: var(--description-text);
    font-weight: 300;
}
.slide-item{
  background-color: #F5F5F5;
  padding: 15px;
  border-radius: 20px;
}
.slide-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.slide-text {
    width: 100%;
}
.slide-text>h3{
	text-transform: capitalize;
  font-size: 22px;
  /*font-family: var(--font-prata);*/
  line-height: 25px;
  color: var(--dark-text);
}
.slide-text p{
    color: var(--description-text);
    font-size: var(--description-font-size);
	font-weight:300;
}
.btn-dropdown {
    background-color: #f5f5f5;
    border: 1px solid #fff;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    padding: 0px 0px 0px 20px;
    align-items: center;
}
.btn-dropdown select  {
    background-color: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}
.btn-dropdown select>option{
  color: var(--dark-text);
}
.btn-dropdown>a {
    background-color: var(--bs-white);
    color: var(--dark-text);
    border-radius: 50px;
    padding: 15px 17px;
}
.services-slider .owl-item{
margin-bottom: 50px;
}
/*
.services-slider .owl-item.active.center .slide-item {
    background-color: var(--primary-color);
    box-shadow: 3px 9px 20px 0px #0000003b;
    transition: 0.4s;
}
.services-slider .owl-item.active.center .slide-item .btn-dropdown>a{
  background-color: var(--secondary-color);
  color: var(--bs-white);
}
.services-slider .owl-item.active.center .slide-item .slide-text>h3{
  color: var(--bs-white);
}
.services-slider .owl-item.active.center .slide-item .slide-text p{
    color: var(--bs-white);
}
*/
.services-slider .owl-item .slide-item:hover {
    background-color: var(--dark-text);
    box-shadow: 3px 9px 20px 0px #0000003b;
    transition: 0.4s;
}
.services-slider .owl-item .slide-item:hover .btn-dropdown>a{
  background-color: var(--secondary-color);
  color: var(--bs-white);
}
.services-slider .owl-item .slide-item:hover .slide-text>h3{
  color: var(--bs-white);
}
.services-slider .owl-item .slide-item:hover .slide-text p{
    color: var(--bs-white);
	font-weight:300;
}
/*=====================
 Appointments Section 
 ======================*/
 .bg-appointments{

 }
.bg-dark-area {
    background: #013540;
    background: linear-gradient(180deg, rgba(1, 53, 64, 1) 0%, rgba(4, 82, 99, 1) 100%);
    padding: 50px;
    border-radius: 20px;
}
.form-label{
  /*color:#7E7E7E;*/
  color:var(--bs-white);
  font-size: 14px;

}
.form-label-dark{
  color:#7E7E7E;
  font-size: 14px;

}
.btn-submit {
    background-color: var(--bs-dark);
    border: 1px solid var(--bs-white);
    color: var(--bs-white);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    align-items: center;
    padding: 0px 0px 0px 25px;
    box-shadow: 12px 5px 9px 0px #0000001c;
}
.btn-submit>span {
    color: var(--bs-dark);
    background-color: var(--bs-white);
    border-radius: 50%;
    padding: 15px 17px;
}
.img-round{
border-radius: 20px;
}
/*=====================
 Clinic Section 
 ======================*/
  .bg-clinic{
    padding: 50px 20px;
  }

 /* london */
 .bg-clinic.london{

 }
.clinic-tag {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
  .clinic-tag>a{
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--bs-white);
    padding: 5px 16px;
    border-radius: 25px;
    font-size: 12px;
    transition: 0.3s;
	  text-transform: capitalize;
 }
 .clinic-tag>a:hover{
    background-color: var(--secondary-color);
 }
 .btn-lg-50{
  max-width: 100%;
  width: 250px;
 }
.btn-submit.light {
    position: relative;
    display: flex;
    padding: 0px 0px 0px 20px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark-text);
    border: 2px solid var(--dark-text);
    background: transparent;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    justify-content: space-between;
}

.btn-submit.light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--dark-text);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-submit.light:hover::before {
  left: 0;
}

.btn-submit.light:hover {
  color: #fff;
}
.btn-submit-clinic.light {
    position: relative;
    display: flex;
    padding: 10px 10px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
    background: transparent;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    justify-content: center;
}
.services-slider .btn-submit-clinic.light {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-submit-clinic.light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: left 0.3s ease;
  z-index: -1;
}
.btn-submit-clinic.light:hover::before {
  left: 0;
}
.btn-submit-clinic.light:hover {
  color: #fff;
	border: 1px solid var(--secondary-color);
}
.london-map{
  width: 100%;
  height: 215px;
  border-radius: 25px;
/*   filter: grayscale(1); */
}
.bg-clinic.canary{
  background-color: #F5F5F5;
}
/*=====================
 extanded slider Section 
 ======================*/
.carousel-accordion.owl-carousel {
}
.carousel-accordion.owl-carousel .owl-stage {
  display: flex;
}
.carousel-accordion.owl-carousel {}

.carousel-accordion .owl-item a {
  text-decoration: none;
  color: inherit;
}
.carousel-accordion .accordion_li .bg-image {
  /* height: 70vh; */
  display: flex;
  /* max-height: 400px; */
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.carousel-accordion .accordion_li img {
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    width: inherit;
    /* transform: translate(-50%, -50%); */
    object-fit: cover;
}
.accordion_li{
  position: relative;
}
.pv-content {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: row;
    /* transition: width 500ms 
cubic-bezier(0.4, 0, 0.2, 1); */
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    /* min-height: 550px; */
    /* max-height: 550px; */
    height: 100%;
    cursor: pointer;
    align-items: flex-end;
}

.empowering-icon {
  width: 50px;
  height: 50px;
  background: #f5f8ff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  z-index: 1;
  padding: 17px;
}
.pv-content h4 {
    max-width: 400px;
    font-weight: 300;
    color: var(--bs-white);
    position: absolute;
    bottom: 50px;
}
.pv-content p {
  margin-bottom: 0px;
  color: var(--bs-white);
  font-weight: 400;
}
.bg-image{position: relative;}
.bg-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 26.5%, #000000 100%);
    left: 0;
    top: 0;
    transition: all 300ms 
cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 300ms;
    pointer-events: none;
}
.pv-content .empowering-dtls {
  opacity: 0;
  transition-delay: 0ms;
}
.pv-content .btn {
  pointer-events: none;
}

.pv-content.active {
  width: 60% !important;
}
.pv-content.active .empowering-dtls {
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 300ms;
  opacity: 1;
  position: relative;
  z-index: 1;
}
/* .empowering_cell.active:before { opacity: 1; transition-delay: 300ms; background: linear-gradient(180deg, rgba(4, 22, 56, 0.5) 21%, rgba(0, 0, 0, 0) 82.5%); } */
.pv-content.active:before {
  opacity: 1;
  transition-delay: 0.3s;
  background: linear-gradient(
    180deg,
    rgb(4 22 56 / 80%) 21%,
    rgb(0 0 0 / 40%) 82.5%
  );
}
.pv-content.active .btn {
  pointer-events: inherit;
}
.owl-item .pv-content p,
.owl-item .pv-content .empowering-icon {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
	font-weight:300;
}
.owl-item.expanded .pv-content p,
.owl-item.expanded .pv-content .empowering-icon {
  visibility: visible;
  animation: fadeInUp 3s ease forwards;
	font-weight:300;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.owl-item.expanded .pv-content p, .owl-item.expanded .pv-content h4 {
    position: unset;
    bottom: auto;
}
img.empowering_bg-image {
  object-fit: cover;
  position: absolute;
  z-index: -1;
  min-width: 730px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0px;
  top: 0;
  height: 101%;
  object-position: left;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 300ms;
}

/*--------------*/
.carousel-container-slide {
    position: relative;
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    overflow: hidden;
    padding: 18px 0;
    box-sizing: border-box;
  }
  .carousel-track {
    display: flex;
    align-items: stretch;
    gap: var(--gap);
    transition: transform 0.6s ease;
    will-change: transform;
    padding: 0 10px; /* small breathing room for first/last */
    box-sizing: content-box;
  }
  .carousel-item-slide {
    flex: 1 0 300px;
    height: 260px;
    border-radius: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 6px;
    box-sizing: border-box;
    transition: flex 450ms cubic-bezier(.4,0,.2,1), background 300ms, color 300ms;
    cursor: pointer;
    color: #111827;
    font-weight: 700;
    font-size: 18px;
  }
  .carousel-item-slide.active {
    flex: 1 0 600px;
    color: #fff;
    z-index: 2;
  }
  /* nav buttons */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
  }
  .carousel-btn:active { transform: translateY(-50%) scale(.98); }
  .carousel-btn.prev { left: 8px; }
  .carousel-btn.next { right: 8px; }

  /* subtle responsive */
  @media (max-width: 720px) {
    .carousel-item-slide { flex: 1 0 260px; height: 220px; font-size: 16px; }
    .carousel-item-slide.active { flex: 1 0 420px; }
  }
/*--------------*/

/*=====================
 Team Section 
 ======================*/
.bg-team {
    padding: 50px 20px;
}
.clinic-tag.gray>a {
  background-color: #E2E2E2;
  color: var(--dark-text);
}
.team-card {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.team-card .card {
    width: 100%;
    background-color: transparent;
    transition: all 0.3s ease;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    flex: 1 1 calc(20% - 15px);
    box-sizing: border-box;
}
.img-team {
    width: 100%;
    object-fit: cover;
    height: 200px;
    border-radius: 20px;
    border: 1px solid #fff;
}
.team_member-template-default .img-team{
    height: auto;
}
.team-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0px 0px 0px;
}
.team-content h4 {
    margin: 0;
    font-size: 18px;
    color: var(--dark-text);
    /*font-family: var(--font-prata);*/
}
.team-content p {
    margin: 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*=====================
 FAQ Section 
 ======================*/
.bg-faq{
background-color: #F5F5F5;
padding: 50px 20px;
}
.faq-section .accordion-item{
    border-radius: 18px;
    border: none;
    margin-bottom: 20px;
}
.faq-section .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: var(--bs-white);
    color: var(--dark-text);
    border-radius: 15px 15px 15px 15px;
}
.faq-section .accordion-item .accordion-header .accordion-button {
    background-color: var(--secondary-color);
    color: var(--bs-white);
    border-radius: 15px 15px 0px 0px;
}
.faq-section .accordion-item .accordion-header .accordion-button:focus, .faq-section .accordion-item .accordion-header .accordion-button:focus-visible{
    outline: none;
    border: none;
    box-shadow: none;
}
/*=====================
 Feature  Section 
 ======================*/
.bg-feature-product{
  padding: 50px 20px;
}
.feature-option {
    margin-bottom: 35px;
}
.feature-option>h4 {
    font-size: 18px;
    /*font-family: var(--font-prata);*/
    color: var(--dark-text);
}
.feature-option>p{
    font-size: 14px;
    font-family: var(--font-outfit);
    color: var(--description-text);
}
.img-feature{
    padding-left: 200px;
}
.img-feature>img {
    width: 100%;
    border-radius: 20px;
}
/*=====================
 Loder  Section 
 ======================*/
.bg-loader{
  padding: 50px 20px;
  background-color: var(--primary-color);
  position: relative;
}
.bg-loader.curv {
    padding: 250px 20px 20px 50px;
}
.curv-shape {
    width: 100%;
    position: absolute;
    top: -3px;
    left: 0;
}
.counter{
list-style: none;
padding: 15px;
display: flex;

}
.counter li{
  text-align: center;
  color: var(--bs-white);
}
.counter li>h4{font-size: 45px;}
.counter li>p{
  font-size: var(--description-font-size);
}
/*=====================
 Footer  Section 
 ======================*/
.bg-footer {
    background-color: var(--dark-text);
    padding: 50px 20px 0px 20px;
    position: relative;
}
 .quick-link-title{
    color: #909C9F;
    font-size: var(--description-font-size);
 }
.quick-links {
    padding-left: 0;
    list-style: none;
}
.quick-links>li{
    text-decoration: none;
    color: var(--bs-white);
    font-size: var(--description-font-size);
    font-weight: 400;
    line-height: 30px;
}
.quick-links>li>a {
    text-decoration: none;
    color: var(--bs-white);
    font-size: var(--description-font-size);
    font-weight: 400;
    line-height: 30px;
}
.quick-links.dark>li{
    text-decoration: none;
    color: var(--bs-black);
    font-size: var(--description-font-size);
    font-weight: 400;
    line-height: 30px;
}

.quick-links.dark>li a {
    text-decoration: none;
    color: var(--bs-black);
    font-size: var(--description-font-size);
    font-weight: 400;
    line-height: 30px;
}
.quick-links.dark>li small, .quick-links.dark>li small a{
    color:#838383;
}
.copy-right {
    margin: 0px;
    color: var(--bs-white);
    text-align: center;
    border-top: 1px solid #ffffff40;
    padding: 20px 0px;
    font-size: 14px;
    font-weight: 300;
}
.icon-bg{
    position: absolute;
    bottom: 100px;
    right: 26px;
    background-color: #F41C5E;
    border-radius: 50px;
    padding: 17px;
}
.phone-bg{
    position: fixed;
    bottom: 23px;
    right: 26px;
    background-color: #0073DE;
    border-radius: 50px;
    padding: 17px; 
}
/*===============
Google review
==============*/
.review-section{
    padding-top:50px;
}
.ti-widget.ti-goog .ti-fade-container:nth-child(1) {
    display: flex !important;
    width: 190px;
    flex-wrap: wrap;
}
.ti-widget.ti-goog .star-lg .ti-star {
    width: 16px !important;
    height: 16px !important;
}

/*===================== ================================
===================== Page 2 style =====================
 ====================== ================================*/
 .bg-common{
    padding: 50px 20px;
 }
.flex-grid {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}
.flex-grid .flex-img {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}
.flex-grid .flex-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flex-grid .flex-content{
    padding-left: 80px;
    width:100%;
}
.only-services .flex-grid .flex-img {
    width: 300px;
    height: 500px;
}
.bg-primery-area{
    background: var(--primary-color);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}
.bg-clinic.primary{
  background-color: var(--primary-color);
}
.btn-theme-blue{
    
}
.bg-related-services{
    background-color:#013540;
    padding:50px 20px;
}
.related-services-card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.btn-blue {
    font-size: var(--description-font-size);
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--bs-white);
    padding: 11px 40px;
    border-radius: 50px;
    display: inline-block;
}
.related-services-card .card-item {
    border-radius: 20px;
    transition: 0.3s;
}
.related-services-card .card-item:hover{
    background-color: var(--dark-text);
    border: 1px solid #E6E6E6;
}
.related-services-card .card-item .card-body {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.related-services-card .card-item .card-body img {
    border-radius: 20px;
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.related-services-card .card-item .card-body h4 {
    font-size:24px;
    color: var(--dark-text);

    margin: 0;
    transition: 0.3s;
}
.related-services-card .card-item:hover .card-body h4 {
    color: var(--bs-white);
}
.related-services-card .card-item .card-body p{
    font-size: var(--description-font-size);
    color: var(--dark-text);
    margin: 0;
    transition: 0.3s;
	    font-weight: 300;
}
.related-services-card .card-item:hover .card-body p{
    color: var(--bs-white);
}
.related-services-card .card-item .card-body .btn-blue {
    visibility: hidden;
    opacity: 0;
}
.related-services-card .card-item:hover .card-body .btn-blue {
    visibility: visible;
    opacity: 1;
}
/*===================== ================================
===================== Issue details style =====================
 ====================== ================================*/
 .overlay-image{
     
 }
.overlay-content {
    position: absolute;
    top: 0;
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 100px;
}
.img-hero-w-100{
    width:100%;
    border-radius: 20px;
}
.overlay-content h1, .overlay-content p {
    color: var(--bs-white);
    text-align: center;
}
.user-box {
    display: flex;
    gap: 15px;
    align-items: center;
}
.user-profile {
    border-radius: 50px;
    width:50px;
}
.user-box img{
    
}
.user-box div>p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 26px;
    
    font-size: var(--description-font-size);
}
.user-box div>p>span{
    font-size: 12px;
}
.flex-grid.box-flex-grid .flex-img {
    width: 200%;
    height: 380px;
    overflow: hidden;
    border-radius: 20px;
}
.flex-grid.box-flex-grid .flex-content {
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.issue-template-default .flex-grid.box-flex-grid .flex-img {
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
}
.issue-template-default .flex-grid.box-flex-grid .flex-content{
    width:100%;
    padding-left: 50px;
}
.bg-appointments.red{
    
}
.bg-appointments.red.center .section-title{
    text-align:center;
}
.bg-appointments.red .bg-dark-area {
    background: #013540;
    background: linear-gradient(180deg, #F41C5E 0%, #F41C5E 100%);
    padding: 50px;
    border-radius: 20px;
}
.bg-appointments.red .btn-submit {
    background-color: var(--secondary-color);
    border: 1px solid var(--bs-white);
    color: var(--bs-white);
    margin-top: 25px;
}
.bg-appointments.red .form-label {
    color: var(--bs-white);
}

.bg-team.primary {
    background-color: var(--primary-color);
    padding: 50px 20px;
}
.btn-dark-theme {
    background-color: var(--dark-text);
    color: var(--bs-white);
    padding: 11px 16px;
    text-align: center;
    text-decoration: none;
    font-size: var(--description-font-size);
    border-radius: 50px;
}
.team-card .card:hover {
    border: 1px solid var(--dark-text);
}
.team-card .card .team-content .btn-dark-theme {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.team-card .card:hover .team-content .btn-dark-theme {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/*=====================
Clinic Details
=====================*/
.section-title.sm-title>h2 {
    font-size: 30px;
}
.contact-info {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
}
.contact-info>li{
    
}
.contact-info>li>a {
    display: flex;
    text-decoration: none;
    color: var(--dark-text);
    align-items: center;
    gap: 11px;
}
.contact-info>li>a>i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.contact-info.blue>li>a>i {
    background-color: var(--primary-color);
    color: var(--bs-white);
}
.contact-info.red>li>a>i {
    background-color: var(--secondary-color);
    color: var(--bs-white);
}

.btn-blue-theme {
    background-color: var(--primary-color);
    color: var(--bs-white);
    padding: 11px 16px;
    text-align: center;
    text-decoration: none;
    font-size: var(--description-font-size);
    border-radius: 50px;
}
.team-card .card:hover {
    border: 1px solid var(--dark-text);
}
.team-card .card .team-content .btn-blue-theme {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.team-card .card:hover .team-content .btn-blue-theme {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.related-services-card.services-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-services-card.services-card .card-item{
    flex: 1 1 calc(33% - 15px);
    box-sizing: border-box;
}

/*=====================
Team details style
=====================*/
.hero-content.profile{
    gap:10px;
    padding-right:100px;
}
.hero-content.profile h1{
    color: var(--primary-color);
    font-size:40px;
}
.hero-content.profile h2 {
    color: var(--dark-text);
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 25px;
    margin-bottom: 0px;
}
.hero-content.profile h3 {
    color: var(--dark-text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
}
.hero-content.profile ul {
    padding-left: 17px;
}
.hero-content.profile ul>li {
    color: #000000;
    font-weight: 300;
    font-size: var(--description-font-size);
}
.btn-location>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;

    color: var(--dark-text);
    font-weight: 600;
}
.btn-location>a>i {
    background-color: var(--secondary-color);
    color: var(--bs-white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.member-socil-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: -67px;
    background-color: var(--bs-white);
    position: relative;
    width: 80%;
    left: 10%;
    padding: 20px;
    border-radius: 15px;
}
.member-socil-info ul li a{
        text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
  
    color: var(--dark-text);
    font-weight: 600;
}
.member-socil-info ul li a i{
        background-color: var(--secondary-color);
    color: var(--bs-white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.about-member {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0px 80px 0px;
}
.about-member h3 {
    font-size: 30px;
   
}
.about-member p{
    color:#000000;
   
}
/*=======================
Booking page style
=======================*/
.sub-page-hero-section.center .hero-content {
    text-align: center;
    align-items: center;
    gap: 15px;
}
.btn-group-flex {
    display: flex;
    gap: 35px;
    padding: 20px 0px 0px 0px;
}
.btn-gray {
    background-color: #EBECF0;
    color: #8D8D8D;

    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-gray:hover{
    background-color: var(--primary-color);
    color: var(--bs-white);
}
.btn-gray.active{
    background-color: var(--primary-color);
    color: var(--bs-white);
}
.services-slider.serviced-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center; /* center align last row */
}
.services-slider.serviced-grid .slide-item {
    flex: 1 1 calc(33% - 15px); /* 3 cards per row */
    max-width: calc(33% - 15px); /* prevents stretching */
    box-sizing: border-box;
}
.services-slider.serviced-grid .slide-item:hover {
    background-color: var(--primary-color);
    box-shadow: 3px 9px 20px 0px #0000003b;
    transition: 0.4s;
}
.img-slider{
   border-radius: 20px;
}
.services-slider.serviced-grid .slide-item:hover .slide-text>h3{
    color: var(--bs-white);
}
.services-slider.serviced-grid .slide-item:hover .slide-text p{
    color: var(--bs-white);
	font-weight:300;
}
.services-slider.serviced-grid .slide-item:hover .btn-dropdown>a{
    background-color: var(--secondary-color);
    color: var(--bs-white);
}
/*new add css*/
.services-hero-banner{
    padding: 50px 0;
}

/*after development team and team details style update*/
.team-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    justify-items: start;
}
.btn-location{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.width-sm-slide {
    width: 100px !important;
    border-radius: 10px;
}
/*material style*/
.select2-container--default .select2-selection--single {
    background-color: #00aeef;
    border: none;
    border-radius: 50%;
    height: 100%;
    color: #fff;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #ffffff transparent transparent transparent;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #ffffff;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff;
    line-height: 47px;
}
.select2-container--open .select2-dropdown {
    left: 0;
    top: 28px;
}
.wrape-text p {
  display: -webkit-box;       
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;     
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;           
  max-height: calc(1.4em * 3);
  white-space: normal;
}
.img-sm-contact {
    height: 150px;
    object-fit: cover;
}
.select2-container {
    width: 100% !important;
    min-width: 190px !important;
}
.tag2 {
    font-size: 12px;
    background-color: #0000004a;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    line-height: 0;
    /* position: absolute; */
    top: 0;
    right: 0;
    box-shadow: -12px 10px 20px 0px #00000008;
    font-weight: 300;
}
.services-custom-btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 equal columns */
  gap: 10px; /* space between buttons */
}

.services-custom-btn-group .btn-submit {
  width: 100%;
  text-align: center;
}
.serviced-grid .img-slider{
    border-radius: 20px;
    width: 166px;
    height: 170px;
    object-fit: cover;

}
.hero-content h1.custom-title-size {
    font-size: 42px;
}