@import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/*==BASIC-SETUP==*/
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
}

.scraped-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;

}

a,
a:hover,
a:active {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin-bottom: 0;
}


/*==THIS IS START==*/
.header-area {
   padding: 20px 0;
   border: 1px solid #ECECEC;
}

.logo-item img {
   max-width: 145px;
   margin: auto;
   display: block;
}

.banner-area {
   background: #ffffff;
   padding: 75px 0 110px 1px;
}

.banner-main {
   display: grid;
   grid-template-columns: 50% auto;
   column-gap: 60px;
}

/*====thump-css====*/
.slider-container {
   display: grid;
   grid-template-columns: auto 83%;
   column-gap: 10px;
}

.main-img-title {
   border-radius: 15px 15px 0 0;
   border: 2px solid #000000;
   border-bottom: 0;
   padding: 8px;
}

.main-img-title h4 {
   font-weight: 600;
   font-size: 14px;
   color: #000000;
   text-align: center;
}

.main-image {
   height: 465px;
   overflow: hidden;
   position: relative;
}

.main-image-container {
   display: flex;
   width: 100%;
   height: 100%;
   transition: transform 0.5s ease-in-out;
}

.main-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   flex-shrink: 0;
}

.thumbnail-container {
   max-height: 465px;
   overflow-y: auto;
   user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   scrollbar-width: none;
   scroll-behavior: smooth;
}

.thumbnail-container::-webkit-scrollbar {
   display: none;
}

.thumbnail {
   width: 100%;
   cursor: pointer;
   border: 1px solid transparent;
   transition: border 0.3s ease;
   align-self: center;
}

.thumbnail.active {
   border-color: #000;
}

/* Main image navigation buttons */
.nav-button {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   border: none;
   cursor: pointer;
   opacity: 1;
   z-index: 10;
   display: none;
   width: 20px;
   height: 20px;
   background: none;
   border-radius: 50%;
}

.nav-button svg {
  width: 25px;
  height: 25px;
}

.prev-button {
   left: 17px;
   transform: rotate(190deg);
}

.next-button {
   right: 19px;
}

/* Thumbnail navigation buttons */
.thumb-nav-button {
   position: absolute;
   background: teal;
   color: #fff;
   border: none;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   cursor: pointer;
   font-size: 16px;
   z-index: 20;
   transition: background 0.3s ease;
   display: none;
}

.thmp-inner {
   position: relative;
}

.thumb-prev-button {
   top: 0;
   left: 50%;
   transform: translateX(-50%);
}

.thumb-next-button {
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
}

.thumb-nav-button:hover {
   background: rgba(0, 0, 0, 0.8);
}

.image-counter {
   position: absolute;
   bottom: 10px;
   left: 50%;
   transform: translateX(-50%);
   background: rgba(0, 0, 0, 0.5);
   color: white;
   padding: 5px 10px;
   border-radius: 5px;
   font-size: 14px;
   z-index: 10;
   display: none;
}

.hero-left-inner {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 10px;
  margin-top: 30px;
}

.hero-inner-item {
  background: #FAF8F6;
   text-align: center;
}

.hero-inner-item h4 {
  font-weight: 400;
  font-size: 16px;
  color: #003C79;
  line-height: 20px;
}

.hero-inner-item img {
  width: 100%;
}

/*hero-left-css*/
.plan {
    border: 1px solid rgba(38, 82, 255, 0.3);
    padding: 10px 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;   /* CENTER ALIGN FIX */
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(38, 82, 255, 0.1);
}

.plan.active {
    border-color: #2f67ff; /* ACTIVE BLUE BORDER */
    background: #ffffff;
}

/* ===== LEFT SECTION ===== */
.plan-left {
    display: grid;
    align-items: center; 
    gap: 10px;
    grid-template-columns: 30px auto;
}

.plan-left strong {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}

.plan-left span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  background: #EEEEEE;
  display: inline-block;
  padding: 5px 8px;
  margin-left: 5px;
}

.sub {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-top: 5px;
}

.plan input[type="radio"] {
    position: absolute;
    left: -9999px;
}

.price {
    text-align: right;
}

.price-main {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}

.old {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  text-decoration: line-through;
  margin-top: 5px;
}

/* ===== CUSTOM RADIO OUTER CIRCLE ===== */
.plan input[type="radio"] + .radio-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid rgba(38, 82, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center; /* PERFECT CENTER */
    transition: all 0.25s ease;
}

/* ===== INNER DOT ===== */
.plan input[type="radio"] + .radio-circle::after {
    content: "";
    width: 15px;
    height: 15px;
    background: #2f67ff;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.2s ease;
}

/* ===== WHEN CHECKED ===== */
.plan input[type="radio"]:checked + .radio-circle {
    border-color: #2f67ff;
}

.plan input[type="radio"]:checked + .radio-circle::after {
    transform: scale(1);
}

/* ===== PRICE SECTION ===== */
.doctor-box {
  display: grid;
  grid-template-columns: auto 110px;
  background: #FAF8F6;
  padding: 20px;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
  column-gap: 19px;
  margin-top: 10px;
  overflow: hidden;
}

.doctor-title h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 33px;
  color: #121212;
}

.doctor-title h2 span {
   font-family: "Averia Serif Libre", serif;
   font-weight: 400;
   font-size: 19px;
   font-style: italic;

}

.doctor-box h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #121212;
}

.doctor-box p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #121212;
  margin-top: 3px;
}

.doctor-box-right img {
  max-width: 110px;
  position: relative;
  bottom: -28px;
}

.submit-btn button {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  width: 100%;
  text-transform: uppercase;
  border-radius: 6px;
  background: #FF9900;
  padding: 15px 24px;
  border: none;
  margin-top: 30px;
  cursor: pointer;
}

.submit-btn button:hover {
  opacity: 0.9;
}

.submit-btn h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #17433C;
  text-align: center;
  margin-top: 30px;
}

.book-item-wrap {
  display: grid;
  grid-template-columns: 69% auto;
  justify-content: space-between;
  background: #F1F1F1;
  align-items: center;
  margin-top: 20px;
}

.book-item-left {
  padding: 20px;
}

.book-item-left h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #121212;
}

.book-item-left p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #121212;
  margin-top: 5px;
}

.book-item-right img {
  max-width: 150px;
}

.accordion-box-wrap {
  background: #F8F8F8;
  margin-top: 25px;
}

.ac-trigger {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #161723;
  padding: 16px 24px;
  cursor: pointer;
  position: relative;
}

.ac-trigger::after {
  content: "\2b";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
}

.ac.is-active .ac-trigger::after {
  content: "\f068";
}

.ac-panel {
  overflow: hidden;
  transition: height 0.3s ease;
}

.ac-panel .ac-panel-cnt {
  padding: 10px 24px;
  color: #fff;
}

.ac-panel .ac-panel-cnt h4 {
  font-weight: 700;
  font-size: 16px;
  color: #424153;
  margin-top: 30px;
}

.ac-panel-cnt h4:first-child {
  margin-top: 0;
}

.ac-panel-cnt p {
  font-weight: 400;
  font-size: 16px;
  color: #424153;
  margin-top: 5px;
}

.ac-panel-cnt ul li {
  font-weight: 400;
  font-size: 16px;
  color: #424153;
  margin-top: 5px;
}

.ac-pg {
  margin-top: 30px !important;
}

.hero-inner-title {
    display: none;
}

.hero-left-inner2 {
    display: none;
}

/*==health-section==*/

.health-area {
  background: #FAF8F6;
  padding: 80px 0;
}

.health-title h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #161723;
  text-align: center;
}

.health-main {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 50px;
  max-width: 1150px;
  margin: auto;
  margin-top: 30px;
}

.health-item {
  box-shadow: 0.6560590289905073px 0.754709580222772px 10px 2px rgba(18, 18, 18, 0.7);
   padding: 10px;
   border: 1px solid #121212;
  background: #ffffff;
}

.health-item img {
  width: 100%;
}

.health-item h2 {
  font-weight: 700;
  font-size: 42px;
  color: #003C79;
  line-height: 25px;
  margin-top: 10px;
}

.health-item h4 {
  font-weight: 700;
  font-size: 18px;
  color: #121212;
  margin-top: 30px;
}

.health-item p {
  font-weight: 400;
  font-size: 16px;
  color: #121212;
  margin-top: 10px;
}

/*==why-section==*/

.why-area {
  background: #ffffff;
  padding: 45px 0;
}

.why-title {
  text-align: center;
}

.why-title h2 {
  font-weight: 700;
  font-size: 25px;
  color: #161723;
}

.why-title h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #161723;
  margin-top: 10px;
}

.why-main {
  max-width: 890px;
  margin: auto;
  column-gap: 80px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  margin-top: 40px;
}

.why-item {
  text-align: center;
  box-shadow: 0.6560590289905073px 0.754709580222772px 10px 2px rgba(18, 18, 18, 0.7);
  border: 1px solid #121212;
  background: #ffffff;
  padding-bottom: 10px;
}

.why-img {
  padding-top: 10px;
}

.why-cnt {
  padding: 10px;
}

.why-item h4 {
  font-weight: 700;
  font-size: 21px;
  color: #003C79;
  margin-top: 10px;
}

.why-item p {
  font-weight: 400;
  font-size: 16px;
  color: #121212;
  margin-top: 20px;
  padding: 0 36px;
}

.why-item img {
  width: 100%;
  border-radius: 5px;
}

/* progress-section */
.progress-area {
  background: #FAF8F6;
  padding: 40px 0;
}

.progress-title h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 44px;
  text-align: center;
  color: #161723;
}

.progress-main {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 20px;
  margin-top: 30px;
  padding-bottom: 140px;
}

.progress-item img {
  width: 100%;
}

.progress-item-wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 60px;
  align-items: center;
}

.progress-item-left img {
  width: 100%;
  border-radius: 5px;
}

.progress-item-right h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: #161723;
  margin-bottom: 15px;
}

.progress-item-right h4 {
  font-weight: 700;
  font-size: 16px;
  color: #121212;
  
}

.progress-item-right p {
  font-weight: 400;
  font-size: 16px;
  color: #121212;
}

.prog-cnt {
  margin-top: 30px;
}

.progress-item-wrap2 {
  margin-top: 160px;
}

.progress-item-right ul li {
  display: grid;
  grid-template-columns: 45px auto;
  column-gap: 20px;
  align-items: center;
}

.prog-list-img img {
  width: 45px;
}

.progress-item-right ul {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin-top: 35px;
}

.progress-item-right ul li h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}

.progress-item-right ul li p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-top: 10px;
  line-height: 27px;
}

/*==quality-section==*/
.quality-area {
  background: #ffffff;
  padding: 35px 0;
}

.quality-title h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #161723;
   text-align: center;
}

.quality-main {
  margin-top: 70px;
}

.main-content1 {
    position: relative;
}

.main-content1 .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
}

.main-content1 .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 10px 5px;
  background: #E2E2E2;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
  border: none;
}

.main-content1 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #121212;
}

.main-content1 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content1 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content1 .owl-theme .custom-nav {
    position: absolute;
    top: 46%;
    left: 0;
    right: 0;
}
.main-content1 .owl-theme .custom-nav .owl-prev, .main-content1 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content1 .owl-theme .custom-nav .owl-prev i, .main-content1 .owl-theme .custom-nav .owl-next i {
    font-size: 16px;
    color: #3B3B3B;
    background: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
}

.main-content1 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content1 .owl-theme .custom-nav .owl-next {
    right: 0;
}

.main-content2 {
    position: relative;
}

.main-content2 .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
}

.main-content2 .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 10px 5px;
  background: #E2E2E2;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
  border: none;
}

.main-content2 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #121212;
}

.main-content2 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content2 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content2 .owl-theme .custom-nav {
    position: absolute;
    top: 46%;
    left: 0;
    right: 0;
}
.main-content2 .owl-theme .custom-nav .owl-prev, .main-content2 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content2 .owl-theme .custom-nav .owl-prev i, .main-content2 .owl-theme .custom-nav .owl-next i {
    font-size: 16px;
    color: #3B3B3B;
    background: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
}

.main-content2 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content2 .owl-theme .custom-nav .owl-next {
    right: 0;
}

.main-content2 {
    display: none;
} 

.slider-item h4 {
  font-weight: 700;
  font-size: 40px;
  color: #121212;
}

.slider-item p {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.slider-item h5 {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin-top: 20px;
}

.accordion-area {
  background: #FCFBFA;
  padding: 100px 0 80px 0;
}

.accordion-title {
  text-align: center;
}

.accordion-title h2 {
  font-weight: 400;
  font-size: 40px;
  color: #242424;
}

.accordion-title p {
  font-weight: 400;
  font-size: 16px;
  color: #121212;
  margin-top: 35px;
  line-height: 28px;
}

.accordion-main {
  max-width: 770px;
  margin: auto;
  margin-top: 30px;
}

.ac2 {
  border: 1px solid #E0E0E0;
  margin-top: 15px;
  background: #ffffff;
  border-radius: 6px;
}

.accordion-container2 .ac-trigger2 {
  font-weight: 700;
  font-size: 16px;
  color: #242424;
  padding: 16px;
}

.accordion-container2 .ac-panel-cnt2 {
  padding: 0 16px 16px 16px;
}

.accordion-container2 .ac-panel-cnt2 p {
  font-weight: 400;
  font-size: 16px;
  color: #242424;
  margin-top: 0;
}

/* footer-section */
.footer-area {
  background: #ffffff;
  padding: 70px 0;
}

.footer-main ul {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-top: 40px;
}

.footer-main ul li {
  font-weight: 400;
  font-size: 11px;
  color: #121212;
}

.footer-main ul li a {
  font-weight: 400;
  font-size: 11px;
  color: #121212;
}

.footer-main ul li a:hover {
  text-decoration: underline;
}

.brand-img1 img {
  display: block;
  margin-left: auto;
  max-width: 533px;
  width: 100%;
}

.brand-img2 img {
  max-width: 282px;
  display: block;
  margin: auto;
  display: none;
}

.main-content3 {
    position: relative;
}

.main-content3 .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
    display: none;
}

.main-content3 .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 10px 5px;
  background: #E2E2E2;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
  border: none;
}

.main-content3 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #121212;
}

.main-content3 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content3 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content3 .owl-theme .custom-nav {
    position: absolute;
    top: -82%;
    left: 0;
    right: 0;
}
.main-content3 .owl-theme .custom-nav .owl-prev, .main-content3 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content3 .owl-theme .custom-nav .owl-prev i, .main-content3 .owl-theme .custom-nav .owl-next i {
    font-size: 14px;
    color: #fff;
    background: none;
     width: 30px; 
     height: 30px; 
    border-radius: 50%; 
     line-height: 30px; 
    text-align: center;
}

.main-content3 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content3 .owl-theme .custom-nav .owl-next {
    right: 0;
}

.top-slider {
  background: #0B2249;
  padding: 10px 0;
}

.slider-top {
  text-align: center;
}

.slider-top h4 {
  font-weight: 500;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
}
