* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* background: linear-gradient(135deg, #EDF3F9, #DDE9F3); */
  color: #555555;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding: 60px 0;
  margin-top: -60px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-text {
  flex: 1 1 50%;
  padding-right: 20px;
}

.hero-text h1 {
  font-size: 62px;
  color: #000000;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #555555;
}

.hero-image {
  flex: 1 1 40%;
  text-align: center;
  height: 320px;
  width: 320px;
}

.circle-border {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}

.circle-border img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {

  /* Previous mobile code remains */

  .hero-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: auto;
    gap: 1.5rem;
  }

  .hero-text {
    order: 1;
    width: 100%;
  }

  .hero-image {
    order: 2;
    width: 100%;
  }

  .circle-border {
    width: 250px;
    height: 250px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .health-content {
    /* flex-direction: column; */
    display:flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .health-image img {
    max-width: 80%;
    height: auto;
  }

  .health-card {
    width: 100%;
  }
}
/* @media (max-width: 992px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    padding: 0;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .circle-border {
    width: 260px;
    height: 260px;
  }
} */
/* Top Header Bar */
.topbar {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 100px;
  margin: 0px auto;
  max-height: 100px;
  padding: 10px 30px;
  max-width: 1200px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 18px;
  gap: 100px;
  /* max-height: 100px; */
}

.logo img {
  height: 50px;
}

.book-now {
  background: #9E2A7B; /* Magenta color */
  color: #fff;
  padding: 20px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 30px;
  margin-top: -5px;
}

.book-now:hover {
  background: #7c1f61;
  transform: scale(1.05);
}

@media (max-width: 768px) {

  .topbar {
    padding: 10px 20px;
    border-radius: 50px;
    margin: 20px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 90%;
  }

  .topbar-content {
    align-items: center;
    padding-top: 0;
  }

  .logo img {
    height: 35px;
  }

  .book-now {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
}
/* Feature section */
.features-section {
  background: #EDF3F9;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: -110px;
}

.features-section h2 {
  font-size: 32px;
  color: #000000;
  margin-bottom: 20px;
}

.features-section .sub-text {
  font-size: 18px;
  margin-bottom: 50px;
  color: #000000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* .feature-box {
  max-width: 280px;
  text-align: center;
} */

/* .image-frame {
  border: 5px solid #9E2A7B;
  border-radius: 20px;
  padding: 5px;
  margin-bottom: 20px;
  overflow: hidden;
} */

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.feature-box h3 {
  font-size: 18px;
  color: #2D254C;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 16px;
  color: #000000;
  line-height: 1.4;
}

.final-text {
  margin-top: 50px;
  font-size: 17px;
  color: #000000;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .features-section h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .features-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  
}

/* Health solution section */
.health-solutions-section {
  background: #ffffff;
  padding: 20px 20px;
}

.health-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: -70px;
}

.health-image img {
  width: 500px;
  height: auto;
  border-radius: 20px;
}

.health-card {
  width: 400px;
  height: 630px;
  padding: 40px 30px;
  background: linear-gradient(180deg, #F6F2FF 0%, rgba(246, 242, 255, 0.50) 100%);
  box-shadow: 0px 4px 24px rgba(205, 190, 240, 0.35);
  border-radius: 20px;
  text-align: center;
}

.health-card h2 {
  font-family: 'Heebo', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #373049;
  margin-bottom: 15px;
}

.health-card p {
  font-family: 'Heebo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #373049;
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-inclusions h3 {
  font-size: 18px;
  color: black;
  font-weight: 700;
  margin-bottom: 15px;
  text-decoration: underline;
}

.service-inclusions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-inclusions li {
  background: white;
  border-radius: 50px;
  margin-bottom: 10px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Heebo', sans-serif;
  color: #373049;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {

  .health-content{
    flex-direction: column;
  }
  .health-image{
    order: 2;
  }

  .health-card{
    order: 1;
  }
  .health-image img {
    width: 300px;
  }

  .health-card {
    width: 100%;
    height: auto;
  }
}


/* Twin Journey Section */


/* Book free consultation */
.cta-section {
  background-color: #0B5464;
  padding: 20px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  background-color: #AD2576;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.cta-button:hover {
  background-color: #901e62;
}

/* Publications */
.publications-section {
  background-color: #ffffff;
  padding: 60px 20px;
  color: #212529;
}

.publications-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0B5464;
}

.publications-section p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.6;
}

.publications-button {
  display: inline-block;
  background-color: #901e62;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  border: none;
}

.publications-button:hover {
  background-color: #AD2576;
  color: #ffffff;
  text-decoration: none;
}

/* Responsive Text Adjustments */
@media (max-width: 768px) {
  .publications-section h2 {
    font-size: 28px;
    line-height: 1.1;
  }

  .publications-section p {
    font-size: 18px;
  }

  .publications-button {
    font-size: 16px;
    padding: 12px 28px;
  }
}
/* FAQ section */
.faq-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Heebo', sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-item button {
  width: 100%;
  background-color: #CCDEFE;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: left;
  font-size: 16px;
  font-weight: normal;
  color: #000000;
  cursor: pointer;
  transition: 0.3s;
} 

.faq-answer {
  background-color: #CCDEFE;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 8px;
  display: none;
  font-size: 18px;
  font-weight: 400;
  color: #373049;
}

.faq-item button:hover {
  background-color: #b3c8fd;
}

.faq-close button {
  background-color: #CCDEFE;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 20px;
}

.faq-close button:hover {
  background-color: #b3c8fd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 24px;
  }

  .faq-item button {
    font-size: 16px;
    padding: 12px 16px;
  }

  .faq-close button {
    font-size: 16px;
    padding: 10px 20px;
  }
}
/* Footer section */
.footer-section {
  background-color: #0B5464;
  padding: 30px 20px;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left a {
  color: #ffffff;
  margin-right: 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.footer-left a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.footer-logo img {
  height: 40px;
}

.footer-right {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }
}

/* popup form */
/* Overlay background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup content box */
.popup-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  position: relative;
  width: 400px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}

/* Close button */
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  /* width: auto; */
  background: none;
  border: none;
}
 .popup-content form{
  display: flex;
  flex-direction: column;
  align-items: center;
 }
/* Input fields */
.popup-content input {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 1px solid #333333;
  border-radius: 15px;
  font-size: 16px;
  font-family: 'Heebo', sans-serif;
}

/* Submit button */
.popup-content button {
  background-color: #AD2576;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.popup-content button:hover {
  background-color: #901E62;
}
.popup-content input,
.popup-content select {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 1px solid #333333;
  border-radius: 15px;
  font-size: 16px;
  font-family: 'Heebo', sans-serif;
}

/* Only for select dropdown styling */
.popup-content select {
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 16px;
  padding: 15px 20px;
  font-size: 17px;
  height: auto;
}
/* Mobile responsive */
@media (max-width: 480px) {
  .popup-content {
    width: 90%;
    padding: 30px;
  }
}

.custom-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  padding: 40px 20px;
  animation: fade 0.5s ease-in-out;
}

.carousel-slide.active {
  display: block;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: black;
  border: none;
  font-size: 2rem;
  padding: 5px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.carousel-control.prev {
  left: 10px;
}
.carousel-control.next {
  right: 10px;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Optional: make slides full-height */
.carousel-slide {
  min-height: 80vh;
}

/* ------------------------------------------------------- */
body{
    font-family: "Heebo", sans-serif;
}
@font-face {
    font-family: 'Heebo';
    font-style: normal;
    font-weight: 100 900;
    src: url(../fonts/Heebo-Medium.ttf) format('ttf');
  }
  @font-face {
    font-family: 'Heebo';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../fonts/heebo.woff2) format('woff2');
  }
  /* latin */
  @font-face {
    font-family: 'Heebo';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../fonts/heebo_r.woff2) format('woff2');
  }
  /* hebrew */

  /* latin-ext */
  @font-face {
    font-family: 'Heebo';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../fonts/heebo_v.woff2) format('woff2');
  }
  /* latin */
  @font-face {
    font-family: 'Heebo';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(../fonts/heebo_t.woff2) format('woff2');
  }


  
.header_container{
    background-image: url(../images/BG.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.logo{
    height: 45px;
    margin-top:9px;
}

.fill_btn{
    border: 1px solid #AD2576;
    background-color: #AD2576;
    color: #fff;
    padding: 10px 12px;
}

.fill_round_btn{
    font-size: 20px;
    font-weight: 500;
    border-radius: 20px;
}
.logo_container{
    background-color: #fff;
    padding: 19px 30px;
    border-radius: 100px;
}
.head_text{
    background-color: #fff;
    border-radius: 12px;
    margin-top: 60px;
    padding: 30px;
    box-shadow: 3px 1px 5px #f4f4f4;
    border: 1px solid #f5f5f5;
}
.logo_container .book_btn{
    padding: 14px 28px;
    font-size: 25px;
    border-radius: 70px;
    text-decoration: none !important;
    display: inline-block;
    color:#fff;
    box-shadow: 4px 1px #a7196d inset;
}
.head_text h1{
    font-size: 36px;
    font-weight: 900;
    color: #0B5464;
    line-height: 47px;

}
p{
    font-weight: 400;
    color: #000;
    font-size: 13px;
}
.p_fill_btn{
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
}
.banner_img{
    max-width: 100%;
    padding-top: 30px;
    padding-bottom: 60px;

}

.section_header{
    font-size:32px;
    font-weight:700;
    margin-bottom: 15px;
}
.chronic_section .section_header{
    color:#0B5464;
}
.result_section .section_header{
    color: #fff;
}
p{
    font-size: 18px;
    font-weight: 400;
}
.section_pd{
    padding-top: 60px;
    padding-bottom: 60px;
}
.chronic_div{
    position: relative;
}
.chronic_div p{
    padding:10px 20px 10px;
}
.chronic_div img{
    max-width: 100%;
    margin-top: 20px;

}
.health_div p{
    padding-left: 50px;
}
.chronic_div::before{
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color:#0B5464;
    top: 370px;
    left: 50%;
    transform: translate(-50%,0);
}
.result_section{
    background-color: #0B5464;
}
.section_subheader{
    font-size: 25px;
    color: #fff;
    font-weight: 400;
}
.score_container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 99;
}
.score_div {
    width: 20%;
    text-align: center;
    color: #fff;
}
.score_div h4{
    font-size: 85px;
    font-family: 'HermeneusOneRegular';
    font-weight: 600;

}
.score_div h4 span{
    font-size: 55px;
    display: inline-block;
    margin-left: 5px;
    font-weight: 400;
}
.score_div p{
    color: #fff;
}
.result_section .section_subheader{
    margin-bottom: 40px;
}
.health_section .section_header{
    color:#0B5464;
}
.health_contrainer{
    border-top: 2px solid #0B5464;
    border-bottom: 2px solid #0B5464;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 30px;
}
.health_foot{
    margin-top: 20px;
}
.h_img img{
    width: 100%;
    margin-bottom: 20px;
}
.condition_content h5{
    font-size: 18px;
    box-shadow: 2px 3px 0px #e9e9e9;
    font-weight: 600;
    text-align: center;
    padding: 33px 20px;
    border-radius: 25px;
    border: 1px solid #f5f1f1;
    margin-bottom: 25px;
    background-color: #fff;
}
.condition_content{
    position: relative;
}
.condition_content h5::before{
    content: '';
    top: -6px;
    width: 195px;
    height: 70px;

    position: absolute;
    left: -6px;
    z-index: -7;
}
.condition_content.condition_b h5::before{
    background-image: url(../images/border_blue.png);
}
.condition_content.condition_p h5::before{
    background-image: url(../images/borderp.png);
}
.condition_container .section_header{
    color: #0B5464;
}
.condition_content{
    margin-top:30px;
}
.twin_section .section_header{
    color: #0B5464;
}
.twin_table td{
    text-align: center;
    font-size: 18px;
    color: #8D8D8D;
    vertical-align: middle;
    border: 1px solid #b6b6b6;
}

.twin_table thead th{
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background-color: #F3EEF7;
    color: #495057;
    width: 20%;
    vertical-align: middle;
    border:1px solid #b6b6b6 !important;
}

.twin_table th{
    font-size: 18px; 
    font-weight: 400;
    vertical-align: middle;
}
.tick_icon{
    width: 33px;
    height: 33px;
    margin: 0 6px;
}
.twin_table{
    border: 1px solid #ddd;
    margin-top: 30px;
}
.thead-light thead tr th:first-child{
    border-top-left-radius: 20px;
}
.thead-light thead tr th:last-child{
    border-top-right-radius: 20px;
}
.health_img img{
    width: 100%;
}
.pricing_container{
    background-color: #0B5464;
}
.health_pri h4{
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline;
    color: #fff;
    margin-top: 35px;
}
.health_pri li{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding-left: 30px;
    list-style-type: none;
    position: relative;
    margin-bottom: 5px;
}
.health_pri li::before{
    content: '';
    position: absolute;
    left: 9px;
    top: 11px;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background-color: #fff;
}
.pricing_container .section_header{
    color: #fff;
}
.pricing_container .section_para{
    color: #fff;
}
.pricing_container .price_foot{
    color: #fff;
    font-weight: 300;
    margin-top: 40px;
}
.teate_tabs{
    margin-top: 20px;
    justify-content: center;
}
.teate_tabs li{
    width: 185px;
    margin: 0 10px;
}
.teate_tabs li button.nav-link{
    font-size: 18px;
    font-weight: 500;
    color: #272127;
    background-color: #fff;
    border-radius: 20px;
    padding: 0px 10px;
    width: 100%;
}
.treatment_selection{
    background-color: #0B5464;
    padding-bottom: 60px;
}
.treatment_selection .submit_btn{
    border-radius: 12px;
    padding: 9px 12px;
    margin-top: -9px;
}
.treatment_selection .section_header{
    color: #fff;
}
.teate_tabs .nav-link.active{
    background-color: #0B5464;;
}

.treatment_selection .form-group {
    width: 26%;
    margin: 0 15px;
}
.treatment_selection .tab-content{
    background-color: #fff;
    padding: 22px 50px 10px;
    margin-top: 30px;
}
 .form-group{
    position: relative;
    margin-bottom: 0;
}
form label{
    background-color: #fff;
    font-size: 15px;
    font-weight: 400;
    color: #8D8D8D;
    position: absolute;
    top: -11px;
    left: 30px;
    padding: 0 4px;
}
.submit_btn{
    padding: 6px 10px;

}
.loop_label{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top:20px;
}
.loop_left{
    margin-left: -55px;
}
.loop_r_img{
    width: 100%;
}
.loop_container{
    position: relative;
}
.loop_container::before{
    position: absolute;
    content: '';
    left:0;
    top:0;
    background-image: url('../images/loop_h.png');
    width: 142px;
    height: 178px;
}
.slider_content{
    background-color: #0B5464;
    padding-top:60px;
    /* margin-bottom: -50px; */
}
.transform_container .owl-carousel{
    margin-bottom: -216px;
}
.transform_container{
    padding-bottom: 220px;
    background-color: #F0F0F0;
}
.transform_container .section_header,.transform_container .section_para{
    color: #fff;
}
.step_container .section_header{
    color:#FB5D5D;
}
.step_container .section_para{
    color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
}
.step_container{
    background-color:#373049
}
.faq_header{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}
.faq_header::before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    bottom: 0;
    background-color: #000;
    width: 58px;
    height: 2px;
}
.faq_container .card-header{
    background-color: #CCDEFE;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom: none;
    padding: 0;
}
.faq_container .card-header button{
    font-size: 18px;
    text-decoration: none;
    color: #000;
    box-shadow: none;
    position: relative;
    width: 100%;
    text-align: left;
    padding: 20px 20px;
}
.faq_container .card-header button i{
    width: 30px;
    height: 30px;
    font-size: 36px;
    position: absolute;
    right: 13px;
    font-weight: 600;
    top: 20px;
    transition: 0.5s ease-in-out;
}
.faq_container .card-header button[aria-expanded="true"] i::before{
    content: "\f106";
}
.faq_container .card-header button[aria-expanded="false"] i::before{
    content: "\f107";
}
.faq_container .card{
    border: none;
    margin-bottom: 7px;
}
.faq_container .card-header button:hover{
    text-decoration: none;
    color: #000;
}
.faq_container .card-body{
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 1px solid #CCDEFE;
    font-size: 18px;
    padding: 15px 35px;
    background-color: #CCDEFE;
}
.transform_container .item{
    background-color: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow:2px 3px 5px #bcbbbb;
    margin-top: 30px;
    position: relative;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #0B5464!important;
}
.owl-item.active .item:after{
    content: '';
    position: absolute;
    left:50%;
    bottom: -30px;
    transform: translate(-50%,0);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid #fff;

}
.transform_container .item p{
    color: #0B5464;
    border: 2px solid #ddd;
    padding: 50px 73px 50px 30px;
    border-radius: 20px;
    margin-left: 200px;
    margin-top: 27px;
}
.quote_content{
    position: relative;
}
.quote_content:before{
    position: absolute;
    top: -36px;
    left: 11px;
    content: '';
    background-image: url(../images/quote_up.png);
    width: 82px;
    height: 59px;
    background-size: contain;
}
.quote_content:after{
    position: absolute;
    bottom: -29px;
    right: 19px;
    content: '';
    background-image: url(../images/quote_down.png);
    width: 82px;
    height: 59px;
    background-size: contain;
}
.custom_navbar{
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.10);
}
.logo_container.custom_navbar{
    z-index: 999;
    margin: 0 auto;
}
.logo_container.custom_navbar.sticky {
    position: fixed;
}
.banner_form .form-group{
    margin-bottom: 25px;
}
.head_text p{
    font-size: 13px;
    margin-bottom: 30px;
}
.banner_form{
    border: none;
    padding:0;
    margin-top: -15px;
}
.profile_img{
    position: absolute;
    width: 148px !important;
    top: 50%;
    transform: translate(0, -50%);
}
/* .shadow-effect {
    text-align: center;
border:1px solid #ECECEC;
} */
#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}
.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #3190E7;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}

 .item {
    text-align: center;
    padding: 50px;
        margin-bottom:35px;
    
    filter: blur(2px);
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 10px 10px 10px #ddd;
}
.owl-item.active.center .item{
    filter: none;
}
 .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
    transform-style: preserve-3d;
}
.owl-theme .owl-dots .owl-dot span{
    width: 13px !important;
    height: 13px !important;
    background-color: #D9D9D9 !important;
  
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: none !important;      
  border: none !important;          
  box-shadow: none !important;      
  border-radius: 0 !important;      
  width: auto;                      
  height: auto;
  font-size: 80px !important;       
  color: #000 !important;           
  position: absolute;
  top: 163px;                       /* Adjust as needed */
  transform: none;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  z-index: 2;
}

.owl-carousel .owl-nav button.owl-prev{

    left: 20px;
  
}
.owl-carousel .owl-nav button.owl-next{
    right: 20px;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: #3190E7;
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}
.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
.owl-carousel .owl-dots .owl-dot span {
    background: #3190E7;
    display: inline-block;
    height: 20px;
    margin: 0 2px 5px;
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
    width: 20px;
}
.hide_sm{
    display: none;
}
.hide_xs{
    display: block;
}
.pdl_0{
    padding-left: 0;
}
.pdr_0{
    padding-right: 0;
}
.result_section{
    position: relative;
}
.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  top: 0;
  left: 0;
}
.bubble {
  position: absolute;
  bottom: -140px;
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  border-radius: 50%;
  opacity: 0.3;
  animation: rise 0s infinite ease-in;
}
.bubble:nth-child(1) {
  width: 100px;
  height: 100px;
  left: 10%;
  animation-duration: 2s;
}
.bubble:nth-child(2) {
  width: 130px;
  height: 130px;
  left: 20%;
  animation-duration: 5s;
  animation-delay: 2s;
}
.bubble:nth-child(3) {
  width: 100px;
  height: 100px;
  left: 35%;
  animation-duration: 7s;
  animation-delay: 2s;
}
.bubble:nth-child(4) {
  width: 130px;
  height: 130px;
  left: 50%;
  animation-duration: 11s;
  animation-delay: 2s;
}
.bubble:nth-child(5) {
  width: 130px;
  height: 130px;
  left: 55%;
  animation-duration: 6s;
  animation-delay: 2s;
}
.bubble:nth-child(6) {
  width: 100px;
  height: 100px;
  left: 65%;
  animation-duration: 8s;
  animation-delay: 2s;
}
.bubble:nth-child(7) {
  width: 130px;
  height: 130px;
  left: 70%;
  animation-duration: 12s;
  animation-delay: 2s;
}
.bubble:nth-child(8) {
  width: 130px;
  height: 130px;
  left: 80%;
  animation-duration: 6s;
  animation-delay: 2s;
}
.bubble:nth-child(9) {
  width: 100px;
  height: 100px;
  left: 70%;
  animation-duration: 5s;
  animation-delay: 2s;
}
.bubble:nth-child(10) {
  width: 130px;
  height: 130px;
  left: 25%;
  animation-duration: 10s;
  animation-delay: 2s;
}
.p_fill_btn:hover{
    color: #fff;
    text-decoration: none;
}
@keyframes rise {
  0% {
    bottom: -100px;
    transform: translateX(0);
  }
  50% {
    transform: translate(100px);
  }
  100% {
    bottom: 1080px;
    transform: translateX(-200px);
  }
}
#pills-diabetes form{
    justify-content: center;
}
@media (min-width: 1201px) {
    .logo_container.custom_navbar.sticky {
        width: 1110px;
    }  
}
@media (max-width: 1200px) {
   
    .treatment_selection .tab-content {
        padding: 22px 10px 10px; 
    }
    .health_div p{
        padding-left: 0;
    }
    .logo_container.custom_navbar.sticky {
        width: 930px;
        max-width:90%
    }  
    .logo_container .book_btn {
        padding: 10px 29px;
        font-size: 19px;
    }
    .logo {
        height: 33px;
    }
    .logo_container {
        padding: 14px 30px;
    }
    .head_text h1 {
        font-size: 28px;
        line-height: 40px;
    }
    .p_fill_btn {
        font-size: 17px;
    }
    .section_header {
        font-size: 30px;
    }   
    p {
        font-size: 16px;
    }
    .chronic_div::before {
        top: 352px;
    } 
    .section_subheader {
        font-size: 22px;
    }
    .score_div h4 {
        font-size: 64px;
    }
        .condition_content h5 {
            font-size: 16px;
            padding: 24px 20px;
            margin-bottom: 10px;
        }
        .condition_content h5::before {

            width: 150px;
            height: 55px;
        }
        .twin_table thead th {
            font-size: 15px;
        }
        .twin_table th {
            font-size: 15px;
        }
        .tick_icon {
            width: 27px;
            height: 27px;
        }
        .health_pri li {
            font-size: 17px;
        }
        .teate_tabs li button.nav-link {
            font-size: 16px;
            padding: 3px 10px;
        }
        .loop_logo{
            height: 60px;
        }
        .loop_label {
            font-size: 28px;
        }
        .transform_container .item p {
            padding: 40px 20px;
            margin-left: 163px;
            margin-top: 27px;
        }
        .faq_container .card-header button {
            font-size: 17px;
        }
        .faq_container .card-body {
            font-size: 16px;
            padding: 15px 28px;
        }
        .faq_container .card-header button i {
            font-size: 27px;
        }
    .treatment_selection .form-group {
        width: 23%;
    }
}
@media (max-width: 992px) {
    .treatment_selection .form-group {
        width: 23%;
    }
    .logo_container.custom_navbar.sticky{
        width: 690px;
    }
    .logo_container .book_btn {
        font-size: 16px;
    }
    .logo {
        height: 29px;
    }
    .p_fill_btn {
        font-size: 15px;
    }
    .head_text h1 {
        font-size: 26px;
        line-height: 37px;
    }
    .section_header {
        font-size: 27px;
    }
    p {
        font-size: 14px;
    }
    .section_subheader {
        font-size: 18px;
    }
    .score_div h4 {
        font-size: 48px;
    }
    .score_div h4 span {
        font-size: 30px;
    }
    .condition_content h5 {
        font-size: 15px;
        padding: 19px 20px;
        border-radius: 20px;
    }
    .tick_icon {
        width: 23px;
        height: 23px;
        margin: 0 2px;
    }
    .health_pri{
        padding-left: 0;
    }
    .health_pri h4 {
        font-size: 16px;
        margin-top: 25px;
    }
    .health_pri li {
        font-size: 15px;
    }
    .teate_tabs li button.nav-link {
        font-size: 15px;
    }
    .teate_tabs li {
        width: 150px;
        margin: 0 5px;
    }
    .loop_logo {
        height: 45px;
    }
    .loop_label {
        font-size: 24px;
        margin: 13px 0;
    }
    .loop_left p{
        margin-bottom: 0;
    }
 
    /* .profile_img {
        position: relative;
    }
    .owl-carousel .owl-item img{
        position: relative !important;
        top: 63px;
        left: 50%;
        transform: translate(-50%, -50%);
    } */
    .faq_container .card-header button i {
        font-size: 23px;
        top: 15px;
        right: 0px;
    }
    .faq_container .card-header button {
        font-size: 16px;
        padding: 14px 10px;
    }
    .faq_container .card-body {
        font-size: 15px;
    }
    .chronic_div::before {
        top: 336px;
    }
    .score_div h4 {
        font-size: 44px;
    }
}
@media (max-width: 769px) {
    
    .treatment_selection .form-group {
        width: 22%;
    }
    .logo_container.custom_navbar.sticky {
        width: 100%;
    }
    .banner_img{
        padding: 0;
        max-width: 100%;
    }
    .head_text {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .section_pd {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .chronic_div img{
        width: 36%;
    }
    .score_container{
            flex-wrap: wrap;
    }
    .score_div {
        width: 32%;
        margin-bottom: 20px;
    }
    .score_div h4 {
        font-size: 36px;
    }
    .score_div h4 span {
        font-size: 25px;
    }
    .section_header {
        font-size: 25px;
    }
    .twin_section .section_header{
        margin-bottom: 0;
    }
    .twin_table thead th {
        min-width: 115px;
    }

    .health_pri li{
        list-style-type: disc;
        list-style-position: inside;
        padding-left: 0;
    }
    .health_foot {
      margin-top:0;
    }
    .treatment_selection .section_header,.treatment_selection .teate_tabs{
        display: none;
    }
    .treatment_selection .tab-content {
        border-radius: 12px;
    }
   
    .pricing_container{
        text-align: center;
    }
    
    .health_pri li::before,.health_pri li::marker {
        display: none;
    }
   
    .h_img img {
        width: 100%;
    }
    .condition_content {
        margin-top: 15px;
    }
    .tick_icon {
        margin: 0 1px;
    }
    .twin_table th {
        font-size: 13px;
    }
    .teate_tabs li {
        width: 170px;
        margin: 0 9px 12px;
    }
   
    .submit_btn{
        margin: 0 15px;
    }
    .treatment_selection .tab-content {
        margin-top: 15px;
    }
    .treatment_selection {
        padding-bottom: 40px;
    }
    .loop_left {
        margin-left: 0;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: 0;
        top:110px;
    }
    .owl-carousel .owl-nav button.owl-prev {
        left: 45px;
        top:110px;
    }
    .p_fill_btn {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .treatment_selection .form-group {
        width: 100%;
    }
    form label {
        font-size: 14px;
        left: 6px;
    }

    #pricision-tabContent .form-control{
        margin-bottom: 20px;
    }
    .logo {
        height: 22px;
        margin-top: 7px;
    }
    .journey_head{
        order:2;
    }
    .journey_img{
        order: 1;
    }
    .health_div{
        text-align: center;
    }
    .health_ul{
        order: 3;
    }
    .health_foot{
        order:4;
    }
    .logo_container .book_btn {
        font-size: 14px;
        padding: 6px 16px;
    }
    .logo_container {
        padding: 10px 14px;
    }
    .banner_img {
        max-width: 89%;
    }
    .head_text {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 15px 21px;
        text-align: center;
    }
    .head_text h1 {
        font-size: 23px;
        line-height: 33px;
    }
    .p_fill_btn {
        font-size: 15px;
        padding: 10px 15px;
    }
    .chronic_div::before {
        top: auto;
        bottom: 0;
    }
    .chronic_section{
        padding-bottom: 30px !important;
    }
    .result_section .section_subheader {
        font-size: 16px;
    }
    .result_section .section_header {
        margin-bottom: 5px;
        font-size: 22px;
    }
    .score_div {
        width: 50%;
        margin-bottom: 21px;
    }   
    .score_div h4 {
        font-size: 44px;
    }
    .score_div p {
        margin-bottom: 10px;
    }
    .h_img img {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .health_contrainer {
        padding-bottom: 0;
        padding-top: 0;
        margin-top: 0;
    }
    .condition_content h5::before {
        width: 86px;
        height: 64px;
        left: -5px;
        top: -5px;
        background-repeat: no-repeat;
      
    }
    .pricing_container .section_header {
        color: #fff;
        margin-top: 20px;
    }
    .health_foot {
        margin-top: 20px;
    }
    .condition_content.condition_b h5::before {
        background-image: url(../images/border_blue_xs.png);
    }
    .condition_content.condition_p h5::before {
        background-image: url(../images/borderp_xs.png);
    }
    .condition_content h5 {
        font-size: 12px;
        padding: 13px 4px;
        border-radius: 15px;
    }
    .twin_table td {
        font-size: 14px;
    }
    .health_img{
        text-align: center;
    }
    .health_img img {
        width: 280px;
        height: 280px;
        margin:0 auto;
    }
    .hide_sm{
        display: block;
    }
    .hide_xs{
        display: none;
    }
    .pdl_0{
        padding-left: 15px;
    }
    .pricing_container .price_foot {
        margin-top: 10px;
    }
    .pdr_0{
        padding-right: 15px;
    }
    .loop_r_img {
        width: 300px;
    }
    .section_pd {
        padding-bottom: 0;
    }
    .slider_content {
        padding-top: 30px;
    }
    .slider_content .section_header, .slider_content .section_para{
        display: none;
    }
    .profile_img {
        width: 70px !important;
    }
    .transform_container .item p {
        padding: 15px;
        margin-left: 72px !important;
        background-color: #fff;
    }
    .profile_img{
        width: 60px !important; 
        left:20px;
        margin-bottom: 0;
    }
    .transform_container .item {
        padding: 25px 10px;

    }
    .quote_content:before {
        top: -26px;
    }
    .quote_content:before, .quote_content:after {
        width: 63px;
        height: 40px;
        background-repeat: no-repeat;
    }
    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
        width: 30px;
        height: 30px;
        font-size: 39px !important;
        top: 38%;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: -30px;
    }
    .owl-carousel .owl-nav button.owl-prev {
        left: -30px;
    }
    .owl-item.active .item:after{
        bottom: -21px;
        border-left: 13px solid transparent;
        border-right: 13px solid transparent;
        border-top: 22px solid #fff;
    }
    .transform_container {
        padding-bottom: 220px;
    }
    .step_container.section_pd {
        padding-bottom: 30px;
        padding-top: 20px;
    }
    .section_pd {
        padding-top: 30px;
    }
    .faq_header {
        font-size: 26px;
        margin-bottom: 24px;
    }
    .faq_container .card-header button {
        font-size: 14px;
        padding: 14px 30px 14px 10px;
    }
    .head_text p {
        margin-bottom: 20px;
    }
}

.hidden{
    display: none;
}
