/* =========================================================

   REGIBLOOM WELLNESS CENTRE — MAIN STYLESHEET

   ========================================================= */



:root{

  --rb-primary: #2f7b62;

  --rb-primary-dark: #235f4c;

  --rb-primary-light: #e8f4f2;

  --rb-secondary: #e8f4f2;

  --rb-white: #ffffff;

  --rb-text: #1f2937;

  --rb-text-soft: #5b6b68;

  --rb-bg-light: #f8fbfa;

  --rb-gold: #c8a96a;



  --rb-font-display: 'Playfair Display', serif;

  --rb-font-body: 'Poppins', sans-serif;



  --rb-radius-lg: 28px;

  --rb-radius-md: 18px;

  --rb-radius-sm: 12px;



  --rb-shadow-soft: 0 20px 50px -20px rgba(31, 41, 37, 0.18);

  --rb-shadow-card: 0 12px 30px -12px rgba(31, 41, 37, 0.15);

  --rb-transition: all 0.35s cubic-bezier(.25,.8,.25,1);

}



*{ box-sizing: border-box; }

.main{

    position: relative;

    z-index: 9999;

    overflow-x: hidden;

}

.rb-footer-contact h5{ color: #fff; font-size: 16px; margin-bottom: 10px;}

.rb-footer-contact span{ border: solid 1px #c8a96a; padding: 5px 15px; border-radius: 50px; font-size: 14px; margin-bottom: 10px; display: inline-block; color: #c8a96a;}



html{ scroll-behavior: smooth; }



body{

  font-family: var(--rb-font-body);

  color: var(--rb-text);

  background: var(--rb-white);

  overflow-x: hidden;

  font-weight: 400;

  line-height: 1.7;

}



h1, h2, h3, h4, h5, h6{

  font-family: var(--rb-font-display);

  font-weight: 600;

  color: var(--rb-text);

  margin: 0;

}



p{ margin: 0; color: var(--rb-text-soft); }



a{ text-decoration: none; color: inherit; }



img{ max-width: 100%; display: block; }



::selection{ background: var(--rb-primary); color: #fff; }



/* Focus visibility for accessibility */

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{

  outline: 2px solid var(--rb-primary);

  outline-offset: 3px;

}



@media (prefers-reduced-motion: reduce){

  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }

}



/* =========================================================

   PRELOADER

   ========================================================= */

.rb-preloader{

  position: fixed; inset: 0; z-index: 9999;

  background: var(--rb-white);

  display: flex; align-items: center; justify-content: center;

  transition: opacity 0.6s ease, visibility 0.6s ease;

}

.rb-preloader.rb-hide{ opacity: 0; visibility: hidden; }

.rb-preloader-mark span{

  font-family: var(--rb-font-display);

  font-size: 3rem;

  color: var(--rb-primary);

  display: inline-block;

  animation: rbPulse 1.1s ease-in-out infinite;

}

@keyframes rbPulse{

  0%, 100%{ transform: scale(1); opacity: 0.6; }

  50%{ transform: scale(1.25); opacity: 1; }

}



/* =========================================================

   UTILITIES

   ========================================================= */

.rb-eyebrow{

  display: inline-block;

  font-size: 0.78rem;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  font-weight: 600;

  color: var(--rb-primary);

  background: var(--rb-primary-light);

  padding: 7px 16px;

  border-radius: 50px;

  margin-bottom: 18px;

}

.rb-eyebrow-light{ background: rgba(255,255,255,0.14); color: #fff; }



.rb-section-title{

  font-size: clamp(1.9rem, 3vw, 2.7rem);

  line-height: 1.2;

  margin-bottom: 20px;

}

.rb-title-light{ color: #fff; }



.rb-section-text{ font-size: 1rem; max-width: 640px; }

.rb-section-head{ max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 55px; }



.rb-glass{

  background: rgba(255,255,255,0.72);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.5);

}



section{ padding: 60px 0; position: relative;}

@media (max-width: 768px){ section{ padding: 70px 0; } }



/* Buttons */

.rb-btn{

  display: inline-flex; align-items: center; justify-content: center; gap: 10px;

  font-family: var(--rb-font-body);

  font-weight: 600;

  font-size: 0.95rem;

  padding: 15px 32px;

  border-radius: 50px;

  border: 2px solid transparent;

  cursor: pointer;

  transition: var(--rb-transition);

  position: relative;

  overflow: hidden;

  white-space: nowrap;

}

.rb-btn-primary{ background: var(--rb-primary); color: #fff; box-shadow: 0 14px 30px -10px rgba(47,123,98,0.55); }

.rb-btn-primary:hover{ background: var(--rb-primary-dark); transform: translateY(-3px); color: #fff; }

.rb-btn-outline{ border-color: rgba(255,255,255,0.6); color: #fff; }

.rb-btn-outline:hover{ background: #fff; color: var(--rb-primary); border-color: #fff; }

.rb-btn-ghost{ border-color: var(--rb-primary); color: var(--rb-primary); }

.rb-btn-ghost:hover{ background: var(--rb-primary); color: #fff; }

.rb-btn-light{ background: #fff; color: var(--rb-primary); }

.rb-btn-light:hover{ background: var(--rb-primary-light); transform: translateY(-3px); }

.rb-btn-outline-light{ border-color: rgba(255,255,255,0.5); color: #fff; }

.rb-btn-outline-light:hover{ background: rgba(255,255,255,0.14); }

.rb-btn-whatsapp{ background: #25D366; color: #fff; }

.rb-btn-whatsapp:hover{ background: #1ebd59; color: #fff; transform: translateY(-3px); }



.rb-hero-btns{ display: flex; flex-wrap: wrap; gap: 16px; margin: 34px 0; }

.rb-cta-btns{ display: flex; flex-wrap: wrap; gap: 14px; }



/* Ripple */

.rb-ripple{ position: relative; overflow: hidden; }

.rb-ripple-effect{

  position: absolute; border-radius: 50%; transform: scale(0);

  background: rgba(255,255,255,0.6); animation: rbRipple 0.6s linear; pointer-events: none;

}

@keyframes rbRipple{ to{ transform: scale(3); opacity: 0; } }



.rb-btn-sm{

  font-size: 0.8rem; font-weight: 600; padding: 9px 16px; border-radius: 50px;

  display: inline-flex; align-items: center; justify-content: center; gap: 6px;

  transition: var(--rb-transition);

}

.rb-btn-sm-primary{ background: var(--rb-primary); color: #fff; flex: 1; }

.rb-btn-sm-primary:hover{ background: var(--rb-primary-dark); color: #fff; }

.rb-btn-sm-outline{ border: 2px solid var(--rb-primary-light); color: var(--rb-primary); width: 40px; height: 40px; padding: 0; }

.rb-btn-sm-outline:hover{ background: var(--rb-primary); color: #fff; border-color: var(--rb-primary); }



/* =========================================================

   HEADER

   ========================================================= */

.rb-header{

  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;

  background: transparent;

  transition: var(--rb-transition);

  padding: 14px 0;

}

.rb-header.rb-scrolled{

  background: #fff;

  backdrop-filter: blur(14px);

  box-shadow: 0 8px 30px -15px rgba(0,0,0,0.15);

  padding: 8px 0;

}

.rb-navbar{ padding: 0; }



.rb-logo{

  font-family: var(--rb-font-display);

  font-size: 1.6rem;

  font-weight: 700;

  color: #fff;

  line-height: 1;

  display: flex; flex-direction: column;

  transition: var(--rb-transition);

}

.rb-logo:hover{ color: #fff;}

.rb-header.rb-scrolled .rb-logo{ color: var(--rb-text); }

.rb-logo span{ color: var(--rb-gold); }

.rb-logo small{

  font-family: var(--rb-font-body);

  font-size: 12px;

  

  font-weight: 500;

  color: rgba(255,255,255,0.75);

  margin-top: 5px;

}

.navbar-nav .nav-link.active{ color: #fff;}

.rb-header.rb-scrolled .rb-logo small{ color: var(--rb-text-soft); }

.rb-logo-footer{ color: var(--rb-text); margin-bottom: 18px; display: inline-flex; }

.rb-logo-footer small{ color: var(--rb-text-soft); }



.rb-nav .nav-link{

  color: rgba(255,255,255,0.9);

  font-weight: 500;

  font-size: 0.92rem;

  margin: 0 14px;

  position: relative;

  padding: 8px 0 !important;

  transition: var(--rb-transition);

}

.rb-header.rb-scrolled .rb-nav .nav-link{ color: var(--rb-text); }

.rb-nav .nav-link::after{

  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;

  background: var(--rb-primary); transition: var(--rb-transition);

}

.rb-header.rb-scrolled .rb-nav .nav-link::after{ background: var(--rb-primary); }

.rb-nav .nav-link:hover::after, .rb-nav .nav-link.active::after{ width: 100%; }

.rb-nav .nav-link:hover{ color: #fff; }

.rb-header.rb-scrolled .rb-nav .nav-link:hover{ color: var(--rb-primary); }



.rb-header-actions{ display: flex; gap: 12px; margin-left: 20px; }

.rb-icon-btn{

  display: flex; align-items: center; gap: 8px;

  font-size: 0.85rem; font-weight: 600;

  padding: 10px 18px; border-radius: 50px;

  border: 1.5px solid rgba(255,255,255,0.5);

  color: #fff;

  transition: var(--rb-transition);

}

.rb-header.rb-scrolled .rb-icon-btn{ border-color: var(--rb-primary-light); color: #079b78; }

.rb-header.rb-scrolled .rb-icon-btn:hover{  color: #fff; }

.rb-icon-btn:hover{ background: var(--rb-primary); border-color: #fff; color: #fff; }

.rb-whatsapp-btn{ background: #25D366; border-color: #25D366; color: #fff; }

.rb-whatsapp-btn:hover{ background: #1ebd59; }



.navbar-toggler{ border: none; box-shadow: none !important; color: #fff; }

.rb-header.rb-scrolled .navbar-toggler{ color: var(--rb-text); }

.rb-toggler-icon{ font-size: 1.4rem; }



@media (max-width: 991px){

  .rb-nav{ background: #fff; border-radius: var(--rb-radius-md); padding: 16px; margin-top: 14px; box-shadow: var(--rb-shadow-card); }

  .rb-nav .nav-link{ color: var(--rb-text) !important; margin: 4px 0; }

  .rb-header-actions{ flex-direction: column; margin: 12px 0 0; }

  .rb-icon-btn{ border-color: var(--rb-primary-light); color: var(--rb-primary); justify-content: center; }

}



/* =========================================================

   HERO

   ========================================================= */

.rb-hero{

  position: relative;

  min-height: 100vh;

  display: flex; align-items: center;

  overflow: hidden;

  padding-top: 140px;

  padding-bottom: 60px;

}

.rb-hero-bg{

  position: absolute; inset: 0;

  background-size: cover; background-position: center;

  transform: scale(1.05);

}

.rb-hero-overlay{

  position: absolute; inset: 0;

  background: linear-gradient(120deg, rgba(21,40,33,0.88) 10%, rgba(31,58,49,0.55) 55%, rgba(47,123,98,0.35) 100%);

}

.rb-hero .container{ position: relative; z-index: 2; }



.rb-floating-el{

  position: absolute; z-index: 1;

  color: rgba(255,255,255,0.16);

  font-size: 3.5rem;

  animation: rbFloat 6s ease-in-out infinite;

}

.rb-float-1{ top: 18%; left: 6%; animation-delay: 0s; }

.rb-float-2{ top: 65%; left: 12%; font-size: 2.4rem; animation-delay: 1.2s; }

.rb-float-3{ top: 25%; right: 8%; animation-delay: 2s; }

.rb-float-4{ top: 70%; right: 14%; font-size: 2.8rem; animation-delay: 0.6s; }

@keyframes rbFloat{

  0%, 100%{ transform: translateY(0) rotate(0deg); }

  50%{ transform: translateY(-24px) rotate(8deg); }

}

@media (max-width: 767px){ 

    .rb-floating-el{ display: none; }

    .rb-appointment-card{ margin-top: 50px;}

}



.rb-hero-title{

  color: #fff;

  font-size: 40px;

  line-height: 1.15;

  margin-bottom: 22px;

}

.rb-hero-text{ color: #fff; font-size: 16px; max-width: 560px; line-height: 24px; }



.rb-hero-counters{

  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;

  margin-top: 20px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2);

}

.rb-counter-item h3{ color: #fff; font-size: 1.9rem; margin-bottom: 4px; }

.rb-counter-item p{ color: rgba(255,255,255,0.7); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 576px){

  .rb-hero-counters{ grid-template-columns: repeat(2, 1fr); }

}



/* Appointment Card */

.rb-appointment-card{

  border-radius: var(--rb-radius-lg);

  padding: 36px;

  box-shadow: var(--rb-shadow-soft);

}

.rb-appointment-card h4{ font-size: 1.5rem; margin-bottom: 6px; }

.rb-appointment-card > p{ margin-bottom: 22px; font-size: 0.9rem; }



.rb-form .form-label{ font-size: 0.85rem; font-weight: 600; color: var(--rb-text); margin-bottom: 6px; }

.rb-form .form-control, .rb-form .form-select{

  border-radius: var(--rb-radius-sm);

  border: 1.5px solid #e3ece9;

  padding: 12px 16px;

  font-size: 0.92rem;

  background: #fff;

}

.rb-form .form-control:focus, .rb-form .form-select:focus{

  border-color: var(--rb-primary);

  box-shadow: 0 0 0 4px rgba(47,123,98,0.12);

}

.rb-form-success{

  display: none;

  margin-top: 16px;

  padding: 12px 16px;

  border-radius: var(--rb-radius-sm);

  background: var(--rb-primary-light);

  color: var(--rb-primary-dark);

  font-size: 0.88rem;

  font-weight: 500;

  text-align: center;

}

.rb-form-success.rb-show{ display: block; animation: rbFadeUp 0.5s ease; }

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



/* =========================================================

   ABOUT

   ========================================================= */

.rb-about{ background: var(--rb-bg-light); }

.rb-about-img-wrap{ position: relative; }

.rb-about-img{ border-radius: var(--rb-radius-lg); box-shadow: var(--rb-shadow-soft); width: 100%; height: 520px; object-fit: cover; }

.rb-about-badge{

  position: absolute; bottom: -24px; left: -24px;

  background: #fff; border-radius: var(--rb-radius-md);

  padding: 18px 22px; box-shadow: var(--rb-shadow-card);

  display: flex; align-items: center; gap: 14px;

}

.rb-about-badge i{ font-size: 1.7rem; color: var(--rb-gold); }

.rb-about-badge strong{ display: block; font-family: var(--rb-font-display); font-size: 1rem; color: var(--rb-text); }

.rb-about-badge span{ font-size: 0.78rem; color: var(--rb-text-soft); }

@media (max-width: 576px){ .rb-about-badge{ left: 8px; bottom: -16px; padding: 12px 16px; } .rb-about-img{ height: 380px; } }



.rb-about-points{ margin-top: 10px; }

.rb-about-point{ display: flex; gap: 18px; margin-bottom: 24px; }

.rb-about-point i{

  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;

  background: var(--rb-primary-light); color: var(--rb-primary);

  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;

}

.rb-about-point h5{ font-size: 1.08rem; margin-bottom: 6px; }

.rb-about-point p{ font-size: 0.92rem; }



/* =========================================================

   SERVICES

   ========================================================= */

.rb-services{ background: #fff; }

.rb-service-card{

  background: #fff;

  border-radius: var(--rb-radius-md);

  overflow: hidden;

  box-shadow: var(--rb-shadow-card);

  transition: var(--rb-transition);

  height: 100%;

  border: 1px solid #f0f4f2;

}

.rb-service-card:hover{ transform: translateY(-10px); box-shadow: var(--rb-shadow-soft); }

.rb-service-img{ position: relative; height: 190px; overflow: hidden; }

.rb-service-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }

.rb-service-card:hover .rb-service-img img{ transform: scale(1.12); }

.rb-service-icon{

  position: absolute; top: 14px; right: 14px;

  width: 44px; height: 44px; border-radius: 50%;

  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);

  color: var(--rb-primary);

  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;

}

.rb-service-body{ padding: 22px; }

.rb-service-body h5{ font-size: 1.05rem; margin-bottom: 10px; }

.rb-service-body p{ font-size: 0.85rem; margin-bottom: 18px; line-height: 19px; }

.rb-service-actions{ display: flex; gap: 8px; }



/* =========================================================

   WHY CHOOSE US

   ========================================================= */

.rb-why-us{ background: linear-gradient(180deg, var(--rb-bg-light) 0%, #fff 100%); }

.rb-why-card{

  background: #fff; border-radius: var(--rb-radius-md);

  padding: 34px 28px; height: 100%;

  box-shadow: var(--rb-shadow-card);

  transition: var(--rb-transition);

  border-bottom: 3px solid transparent;

}

.rb-why-card:hover{ border-bottom-color: var(--rb-primary); transform: translateY(-8px); }

.rb-why-icon{

  width: 60px; height: 60px; border-radius: 18px;

  background: var(--rb-primary-light); color: var(--rb-primary);

  display: flex; align-items: center; justify-content: center;

  font-size: 1.5rem; margin-bottom: 20px;

}

.rb-why-card h5{ font-size: 1.1rem; margin-bottom: 10px; }

.rb-why-card p{ font-size: 0.9rem; }



/* =========================================================

   PROCESS / TIMELINE

   ========================================================= */

.rb-process{ background: var(--rb-primary); position: relative; overflow: hidden; }

.rb-process::before{

  content: ''; position: absolute; inset: 0;

  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 45%);

}

.rb-process .rb-eyebrow{ background: rgba(255,255,255,0.14); color: #fff; }

.rb-process .rb-section-title{ color: #fff; }

.rb-timeline{

  display: flex; justify-content: space-between; gap: 20px;

  position: relative; z-index: 1; flex-wrap: wrap;

}

.rb-timeline-item{

  flex: 1; min-width: 180px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.15);

  border-radius: var(--rb-radius-md);

  padding: 30px 22px; text-align: center;

  transition: var(--rb-transition);

}

.rb-timeline-item:hover{ background: rgba(255,255,255,0.16); transform: translateY(-6px); }

.rb-timeline-num{

  font-family: var(--rb-font-display); font-size: 2.2rem; color: var(--rb-gold);

  margin-bottom: 12px;

}

.rb-timeline-item h5{ color: #fff; font-size: 1.05rem; margin-bottom: 10px; }

.rb-timeline-item p{ color: rgba(255,255,255,0.75); font-size: 0.85rem; }



/* =========================================================

   BENEFITS

   ========================================================= */

.rb-benefits{ background: #fff; }

.rb-benefit-card{

  background: var(--rb-bg-light);

  border-radius: var(--rb-radius-md);

  padding: 34px 20px; text-align: center;

  transition: var(--rb-transition);

  height: 100%;

    border: solid 1px #2f7b6229;

}

.rb-benefit-card:hover{ background: var(--rb-primary); transform: scale(1.05); }

.rb-benefit-card i{ font-size: 2rem; color: var(--rb-primary); margin-bottom: 16px; transition: var(--rb-transition); }

.rb-benefit-card:hover i{ color: #fff; }

.rb-benefit-card h6{ font-size: 0.95rem; transition: var(--rb-transition); }

.rb-benefit-card:hover h6{ color: #fff; }



/* =========================================================

   TESTIMONIALS

   ========================================================= */

.rb-testimonials{ background: var(--rb-bg-light); }

.rb-testimonial-card{

  background: #fff; border-radius: var(--rb-radius-md);

  padding: 36px 30px; margin: 10px 14px 30px;

  box-shadow: var(--rb-shadow-card);

  min-height: 260px;

}

.rb-stars{ color: var(--rb-gold); font-size: 0.9rem; margin-bottom: 16px; }

.rb-testimonial-card p{ font-size: 0.95rem; font-style: italic; color: var(--rb-text); margin-bottom: 22px; }

.rb-testimonial-person{ display: flex; align-items: center; gap: 14px; }

.rb-testimonial-person img{ width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }

.rb-testimonial-person h6{ font-size: 0.95rem; margin-bottom: 2px; }

.rb-testimonial-person span{ font-size: 0.78rem; color: var(--rb-text-soft); }

.owl-carousel .owl-dots{ text-align: center; margin-top: 10px; }

.owl-carousel .owl-dot span{ background: #d6e5e1 !important; width: 10px !important; height: 10px !important; margin: 4px !important; }

.owl-carousel .owl-dot.active span{ background: var(--rb-primary) !important; }

.owl-carousel .owl-nav{ display: none; }



/* =========================================================

   EXPERT / DOCTOR

   ========================================================= */

.rb-expert{ background: #fff; }

.rb-expert-img-wrap{ position: relative; }

.rb-expert-img{ border-radius: var(--rb-radius-lg); box-shadow: var(--rb-shadow-soft); width: 100%; height: 480px; object-fit: cover; }

.rb-expert-name{ font-size: 1.4rem; margin-top: -4px; margin-bottom: 4px; }

.rb-expert-role{ color: var(--rb-primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 18px; }



/* =========================================================

   GALLERY

   ========================================================= */

.rb-gallery{ background: var(--rb-bg-light); }

.rb-masonry{

  column-count: 3; column-gap: 18px;

}

.rb-masonry-item{

  margin-bottom: 18px; border-radius: var(--rb-radius-md); overflow: hidden;

  break-inside: avoid; box-shadow: var(--rb-shadow-card);

}

.rb-masonry-item img{ width: 100%; display: block; transition: transform 0.6s ease; height: 260px; object-fit: cover; }

.rb-masonry-item.rb-tall img{ height: 380px; }

.rb-masonry-item:hover img{ transform: scale(1.14); }

@media (max-width: 768px){ .rb-masonry{ column-count: 2; } }

@media (max-width: 480px){ .rb-masonry{ column-count: 1; } }



/* =========================================================

   FAQ

   ========================================================= */

.rb-faq{ background: #fff; }

.rb-accordion .accordion-item{

  border: none; margin-bottom: 14px; border-radius: var(--rb-radius-sm) !important; overflow: hidden;

  box-shadow: var(--rb-shadow-card);

}

.rb-accordion .accordion-button{

  font-family: var(--rb-font-body); font-weight: 600; font-size: 0.96rem;

  padding: 18px 22px; color: var(--rb-text); background: #fff;

  box-shadow: none !important;

}

.rb-accordion .accordion-button:not(.collapsed){ color: var(--rb-primary); background: var(--rb-primary-light); }

.rb-accordion .accordion-button::after{ flex-shrink: 0; }

.rb-accordion .accordion-body{ font-size: 0.9rem; padding: 4px 22px 22px; color: var(--rb-text-soft); }



/* =========================================================

   ENQUIRY

   ========================================================= */

.rb-enquiry{ position: relative; overflow: hidden; }

.rb-enquiry-bg{ position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }

.rb-enquiry-overlay{ position: absolute; inset: 0; background: linear-gradient(160deg, rgba(21,40,33,0.92), rgba(47,123,98,0.82)); }

.rb-enquiry .container{ position: relative; z-index: 1; }

.rb-enquiry-form{ border-radius: var(--rb-radius-lg); padding: 40px; box-shadow: var(--rb-shadow-soft); }



/* =========================================================

   CTA

   ========================================================= */

.rb-cta{

  background: linear-gradient(120deg, var(--rb-primary-dark), var(--rb-primary));

  padding: 70px 0;

}

.rb-cta-title{ color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }

.rb-cta-text{ color: rgba(255,255,255,0.82); }



/* =========================================================

   FOOTER

   ========================================================= */

.rb-footer{ background: #16302a; color: rgba(255,255,255,0.75); padding-top: 90px; }

.rb-footer .rb-logo-footer{ color: #fff; }

.rb-footer .rb-logo-footer small{ color: rgba(255,255,255,0.55); }

.rb-footer-text{ color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 16px 0 22px; max-width: 320px; }

.rb-footer-heading{ color: #fff; font-family: var(--rb-font-display); font-size: 1.05rem; margin-bottom: 20px; }

.rb-footer-links{ list-style: none; padding: 0; margin: 0; }

.rb-footer-links li{ margin-bottom: 12px; }

.rb-footer-links a{ color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--rb-transition); }

.rb-footer-links a:hover{ color: var(--rb-gold); padding-left: 4px; }

.rb-footer-contact{ list-style: none; padding: 0; margin: 0 0 18px; }

.rb-footer-contact li{ margin-bottom: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.rb-footer-contact i{ width: 22px; color: var(--rb-gold); }

.rb-map-placeholder{

  border: 1px dashed rgba(255,255,255,0.25); border-radius: var(--rb-radius-sm);

  padding: 20px; display: flex; align-items: center; gap: 10px;

  color: rgba(255,255,255,0.6); font-size: 0.85rem;

}

.rb-map-placeholder i{ color: var(--rb-gold); font-size: 1.1rem; }

.rb-social-icons{ display: flex; gap: 10px; }

.rb-social-icons a{

  width: 38px; height: 38px; border-radius: 50%;

  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;

  color: #fff; transition: var(--rb-transition);

}

.rb-social-icons a:hover{ background: var(--rb-primary); transform: translateY(-3px); }

.rb-footer-bottom{ border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; padding: 22px 0; text-align: center; }

.rb-footer-bottom p{ color: rgba(255,255,255,0.5); font-size: 0.82rem; margin: 0; }



/* =========================================================

   FLOATING BUTTONS

   ========================================================= */

.rb-float-btn{

  position: fixed; z-index: 998;

  width: 56px; height: 56px; border-radius: 50%;

  display: flex; align-items: center; justify-content: center;

  font-size: 1.5rem; color: #fff;

  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.35);

  transition: var(--rb-transition);

}

.rb-float-whatsapp{ background: #25D366; bottom: 28px; left: 28px; }

.rb-float-whatsapp:hover{ background: #1ebd59; transform: scale(1.1); }

.rb-float-call{ background: var(--rb-primary); bottom: 96px; left: 28px; }

.rb-float-call:hover{ background: var(--rb-primary-dark); transform: scale(1.1); }



.rb-back-top{

  position: fixed; z-index: 998; bottom: 28px; right: 28px;

  width: 50px; height: 50px; border-radius: 50%;

  background: var(--rb-text); color: #fff; border: none;

  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;

  opacity: 0; visibility: hidden; transform: translateY(20px);

  transition: var(--rb-transition);

  cursor: pointer;

}

.rb-back-top.rb-show{ opacity: 1; visibility: visible; transform: translateY(0); }

.rb-back-top:hover{ background: var(--rb-primary); }



@media (max-width: 576px){

  .rb-float-btn{ width: 48px; height: 48px; font-size: 1.3rem; }

  .rb-float-whatsapp{ bottom: 20px; left: 20px; }

  .rb-float-call{ bottom: 78px; left: 20px; }

  .rb-back-top{ bottom: 20px; right: 20px; width: 44px; height: 44px; }

}



/* AOS init helper - avoid FOUC */

[data-aos]{ pointer-events: auto; }



/**********new css***********/




/* =========================================================
   GLOBAL
========================================================= */



.section-padding {
    padding: 60px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #e5f8f2;
    color: #079b78;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
    margin-bottom: 18px;
}

.section-title {
  
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
    font-weight: 800;
    color: #123d40;
    margin-bottom: 20px; font-size: 36px;
}

.section-title span {
    color: #079b78;
}

.section-text {
    font-size: 15px;
    line-height: 1.85;
    color: #66797b;
}

.gradient-text {
    background: linear-gradient(90deg, #078f72, #38b87d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================================
   NAVBAR
========================================================= */




a.nav-link.inner {
    color: #365355;
    
   
}

a.nav-link.inner:hover { color: #000;}




/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 25%, rgba(63,194,133,.20), transparent 25%),
        radial-gradient(circle at 10% 80%, rgba(21,159,133,.12), transparent 30%),
        linear-gradient(135deg,#f4fffb 0%,#ffffff 55%,#eefaf6 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    top: -180px;
    border: 1px solid rgba(7,155,120,.12);
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -280px;
    top: -280px;
    border: 1px solid rgba(7,155,120,.08);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-title {
  
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: 1.06;
    font-weight: 800;
    color: #103c3f;
    margin-bottom: 25px;
}

.hero-title span {
    color: #079b78;
}

.hero-description {
    max-width: 720px;
    color: #65787a;
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 27px;
    border-radius: 50px;
    background: linear-gradient(135deg,#078f72,#39bb7f);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(7,155,120,.25);
    transition: .35s ease;
}

.btn-main:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(7,155,120,.35);
}

.btn-outline-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 50px;
    border: 1.5px solid #b9ddd3;
    color: #087d67;
    font-weight: 700;
    transition: .35s ease;
}

.btn-outline-main:hover {
    color: #fff;
    background: #087d67;
    border-color: #087d67;
    transform: translateY(-4px);
}


/* =========================================================
   FLOATING CELL DESIGN
========================================================= */

.hero-visual {
    position: relative;
    min-height: 520px;
}

.cell {
    position: absolute;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%,
        #ffffff 0%,
        #91e4c4 22%,
        #23ae80 58%,
        #087b65 100%);
    box-shadow:
        inset -15px -18px 25px rgba(0,60,45,.18),
        0 25px 50px rgba(7,145,111,.22);
    animation: floatCell 6s ease-in-out infinite;
}

.cell::before {
    content: "";
    position: absolute;
    width: 35%;
    height: 35%;
    background: rgba(255,255,255,.35);
    border-radius: 50%;
    top: 18%;
    left: 20%;
}

.cell-1 {
    width: 170px;
    height: 170px;
    right: 18%;
    top: 18%;
}

.cell-2 {
    width: 95px;
    height: 95px;
    right: 60%;
    top: 10%;
    animation-delay: -2s;
}

.cell-3 {
    width: 125px;
    height: 125px;
    right: 4%;
    bottom: 18%;
    animation-delay: -4s;
}

.cell-4 {
    width: 65px;
    height: 65px;
    right: 48%;
    bottom: 8%;
    animation-delay: -1s;
}

@keyframes floatCell {
    0%,100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(8deg);
    }
}

.dna-ring {
    position: absolute;
    width: 330px;
    height: 330px;
    right: 12%;
    top: 17%;
    border: 2px dashed rgba(7,155,120,.28);
    border-radius: 50%;
    animation: rotateRing 25s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-badge {
    position: absolute;
    z-index: 10;
    padding: 15px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(27,91,78,.14);
    font-weight: 700;
    color: #174b4b;
}

.hero-badge i {
    color: #079b78;
    margin-right: 7px;
}

.badge-one {
    left: 5%;
    top: 28%;
}

.badge-two {
    right: 2%;
    bottom: 7%;
}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.trust-box {
    background: #fff;
    border-radius: 25px;
    padding: 28px 35px;
    box-shadow: 0 20px 60px rgba(19,76,68,.10);
    border: 1px solid #e5f1ee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #e6f8f2;
    color: #079b78;
    font-size: 21px;
}

.trust-item h6 {
    margin: 0;
    font-weight: 800;
    color: #173f41;
}

.trust-item p {
    margin: 3px 0 0;
    color: #7b8c8e;
    font-size: 13px;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    background: #fff;
}

.intro-card {
    background: linear-gradient(145deg,#f0fbf7,#ffffff);
    border-radius: 30px;
    padding: 45px;
    border: 1px solid #e1f0eb;
    transition: .4s ease;
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(17,83,69,.10);
}

.quote-box {
    position: relative;
    padding: 35px;
    border-radius: 25px;
    background: #123f42;
    color: #fff;
    overflow: hidden;
}

.quote-box::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 5px;
    font-size: 100px;
    opacity: .05;
}

.quote-box p {
    position: relative;
    z-index: 2;
    font-size: 19px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================================
   WHAT IS SECTION
========================================================= */

.what-section {
    background: #f5fbf9;
}

.info-card {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e3efeb;
    box-shadow: 0 12px 35px rgba(23,83,71,.06);
    transition: all .4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(16,94,75,.14);
}

.info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg,#e4faf2,#d4f3e8);
    color: #078f72;
    font-size: 24px;
    margin-bottom: 20px;
    transition: .4s ease;
}

.info-card:hover .info-icon {
    transform: rotateY(180deg);
}

.info-card h5 {
  
    color: #153f42;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
}

.info-card p {
    color: #708284;
    line-height: 1.75;
}


/* =========================================================
   STEPS
========================================================= */

.steps-section {
    background: #ffffff;
}

.step-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    background: #fff;
    border-radius: 25px;
    border: 1px solid #e2efeb;
    box-shadow: 0 12px 35px rgba(23,83,71,.06);
    transition: .4s ease;
}

.step-card:hover {
    transform: translateY(-12px);
    border-color: #a9decf;
    box-shadow: 0 25px 55px rgba(16,94,75,.13);
}

.step-number {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 30px;
    font-weight: 800;
    color: #eff9f6;
}
p.section-text.outcome {
    /* padding: 0px; */
    margin: 3px;
}
.step-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: linear-gradient(135deg,#078f72,#40bd82);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 22px;
    box-shadow: 0 12px 25px rgba(7,155,120,.20);
}

.step-card h4 {
    position: relative;
    font-weight: 800;
    color: #163e41;
}

.step-card p {
    position: relative;
    color: #708284;
    line-height: 1.75;
}


/* =========================================================
   APPLICATIONS
========================================================= */

.application-section {
    background:
        radial-gradient(circle at 10% 10%,rgba(52,184,126,.12),transparent 25%),
        #f3fbf8;
}

.application-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    height: 100%;
    padding: 25px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e2eee9;
    transition: .35s ease;
}

.application-card:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 45px rgba(21,92,76,.10);
}

.application-card i {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #e3f8f1;
    color: #078f72;
}

.application-card h5 {
    font-weight: 800;
    color: #193f42;
    margin-bottom: 7px;
}

.application-card p {
    color: #738486;
    margin: 0;
    line-height: 1.6;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefit-section {
    background: #123f42;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.benefit-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    top: -200px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}

.benefit-section .section-title {
    color: #fff;
}

.benefit-section .section-text {
    color: rgba(255,255,255,.68);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.benefit-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 18px;
    color: rgba(255,255,255,.84);
    font-size: 16px;
    line-height: 1.6;
}

.benefit-list i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #31b97e;
    color: #fff;
    font-size: 12px;
}

.outcome-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 28px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: .4s ease;
}

.outcome-card:hover {
    background: rgba(255,255,255,.11);
    transform: translateY(-8px);
}

.outcome-card h4 {
    font-weight: 800;
    margin-bottom: 15px;
}


/* =========================================================
   CENTRE
========================================================= */

.centre-section {
    background: #fff;
}

.centre-card {
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(145deg,#f2fbf8,#ffffff);
    border: 1px solid #e1eee9;
    box-shadow: 0 20px 55px rgba(18,80,68,.08);
}

.centre-content {
    padding: 45px;
}

.centre-point {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.centre-point i {
    color: #079b78;
    font-size: 19px;
    margin-top: 4px;
}

.centre-point strong {
    color: #173f41;
}

.centre-point p {
    color: #718284;
    margin: 4px 0 0;
    line-height: 1.65;
}


/* =========================================================
   COST
========================================================= */

.cost-section {
    background: #f5fbf9;
}

.price-card {
    max-width: 550px;
    margin: auto;
    position: relative;
    text-align: center;
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    border: 2px solid #c9eadf;
    box-shadow: 0 25px 65px rgba(18,88,72,.12);
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: #e4f9f1;
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.price-label {
    color: #078f72;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price {
  
    font-size: 52px;
    font-weight: 800;
    color: #123f42;
    margin: 10px 0;
}

.price-card p {
    color: #758688;
    line-height: 1.7;
}

.price-note {
    margin-top: 20px;
    padding: 15px;
    border-radius: 14px;
    background: #f0faf7;
    color: #52706d;
    font-size: 14px;
}


/* =========================================================
   RISKS
========================================================= */

.risk-section {
    background: #fff;
}

.risk-box {
    padding: 40px;
    border-radius: 28px;
    background: #fff8f4;
    border: 1px solid #f4ddd0;
}

.risk-item {
    display: flex;
    gap: 14px;
    margin-bottom: 17px;
}

.risk-item i {
    color: #e48651;
    margin-top: 5px;
}

.risk-item p {
    color: #765f55;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   DR RAJPUT
========================================================= */

.doctor-section {
    background: #f3fbf8;
}

.doctor-card {
    background: #fff;
    border-radius: 30px;
    padding: 45px;
    border: 1px solid #e0eee9;
    box-shadow: 0 20px 55px rgba(18,82,69,.08);
}

.doctor-icon {
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,#078f72,#40bd82);
    color: #fff;
    font-size: 38px;
    box-shadow: 0 15px 35px rgba(7,155,120,.25);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: #fff;
}

.accordion-item {
    border: 1px solid #e1ece9 !important;
    border-radius: 17px !important;
    overflow: hidden;
    margin-bottom: 15px;
}

.accordion-button {
    font-weight: 700;
    color: #173f41;
    padding: 22px;
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #078f72;
    background: #f1faf7;
}

.accordion-body {
    color: #6e8082;
    line-height: 1.8;
    padding: 0 22px 22px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg,#078f72,#123f42);
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
}

.cta-section::before {
    width: 400px;
    height: 400px;
    right: -150px;
    top: -180px;
}

.cta-section::after {
    width: 250px;
    height: 250px;
    left: -100px;
    bottom: -120px;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-family: "Manrope",sans-serif;
    font-size: clamp(32px,4vw,52px);
    font-weight: 800;
}

.cta-content p {
    max-width: 760px;
    margin: 15px auto 30px;
    color: rgba(255,255,255,.76);
    font-size: 17px;
    line-height: 1.8;
}

.cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    background: #fff;
    color: #087d67;
    font-weight: 800;
    transition: .35s ease;
}

.cta-white:hover {
    color: #087d67;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 35px rgba(0,0,0,.20);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #0d3032;
    padding: 35px 0;
    color: rgba(255,255,255,.65);
}

.footer-logo {
    color: #fff;
    font-family: "Manrope",sans-serif;
    font-weight: 800;
    font-size: 24px;
}

.footer-logo span {
    color: #39bd83;
}

.footer-disclaimer {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 10px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all .8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all .8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   FLOATING CONTACT BUTTON
========================================================= */

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
}

.floating-contact a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #078f72;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 12px 30px rgba(7,143,114,.35);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(7,143,114,.45);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(7,143,114,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(7,143,114,0);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .section-padding {
        padding: 75px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0 70px;
    }

    .hero-visual {
        min-height: 430px;
        margin-top: 40px;
    }

    .navbar-nav {
        padding-top: 15px;
    }

    .nav-btn {
        display: inline-block;
        margin-top: 10px;
    }

    .trust-bar {
        margin-top: 0;
        padding: 25px 0;
    }
}

@media(max-width:767px) {

    .section-padding {
        padding: 60px 0;
    }

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

    .hero-description {
        font-size: 16px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .dna-ring {
        width: 230px;
        height: 230px;
        right: 10%;
        top: 20%;
    }

    .cell-1 {
        width: 120px;
        height: 120px;
    }

    .cell-2 {
        width: 65px;
        height: 65px;
    }

    .cell-3 {
        width: 90px;
        height: 90px;
    }

    .cell-4 {
        width: 50px;
        height: 50px;
    }

    .badge-one {
        left: 0;
        top: 30%;
        font-size: 13px;
    }

    .badge-two {
        right: 0;
        bottom: 5%;
        font-size: 13px;
    }

    .intro-card,
    .centre-content,
    .doctor-card {
        padding: 28px;
    }

    .price-card {
        padding: 35px 25px;
    }

    .price {
        font-size: 43px;
    }
}

.rb-page-banner{
  position: relative;
  padding: 170px 0 90px;
  background: linear-gradient(180deg, rgba(31,41,37,.72), rgba(31,41,37,.72)), var(--rb-page-banner-img, none);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
.rb-page-banner .rb-eyebrow{ color: var(--rb-gold); }
.rb-page-banner h1{
  font-family: var(--rb-font-display);
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  margin: 10px 0 14px;
}
.rb-page-banner .rb-breadcrumb{
  font-family: var(--rb-font-body);
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.rb-page-banner .rb-breadcrumb a{ color: #fff; text-decoration: none; }
.rb-page-banner .rb-breadcrumb a:hover{ color: var(--rb-gold); }
.rb-page-banner .rb-breadcrumb i{ font-size: 10px; margin: 0 8px; opacity: .7; }

.rb-service-detail{ padding: 60px 0; background: var(--rb-bg-light); }
.rb-service-detail-img{
  width: 100%;
  border-radius: var(--rb-radius-lg);
  box-shadow: var(--rb-shadow-soft);
  object-fit: cover;
  max-height: 460px;
}
.rb-service-detail-icon{
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--rb-primary-light);
  color: var(--rb-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.rb-service-detail h2{
  font-family: var(--rb-font-display);
  color: var(--rb-text);
  font-weight: 700;
  margin: 15px 0px;
}
.rb-service-detail p{ color: var(--rb-text-soft); line-height: 25px; padding: 10px 0px;}

.rb-service-points{ list-style: none; padding: 0; margin: 26px 0; }
.rb-service-points li{
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: var(--rb-text); font-size: 15px;
}
.rb-service-points li i{ color: var(--rb-primary); margin-top: 4px; }

.rb-service-sidebar{
  background: var(--rb-white);
  border-radius: var(--rb-radius-lg);
  padding: 34px 28px;
  box-shadow: var(--rb-shadow-card);
}
.rb-service-sidebar h4{
  font-family: var(--rb-font-display);
  margin-bottom: 8px;
}
.rb-related-list{ list-style: none; padding: 0; margin: 20px 0 0; }
.rb-related-list li{ border-bottom: 1px solid #eef2f1; }
.rb-related-list li:last-child{ border-bottom: none; }
.rb-related-list a{
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  color: var(--rb-text);
  text-decoration: none;
  font-size: 14.5px;
  transition: var(--rb-transition);
}
.rb-related-list a:hover{ color: var(--rb-primary); padding-left: 6px; }
.rb-related-list a img{
  width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
}

.rb-btn-sm-view{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  border: 1px solid var(--rb-primary);
  color: var(--rb-primary);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--rb-transition);
}
.rb-btn-sm-view:hover{ background: var(--rb-primary); color: #fff; }

@media (max-width: 991px){
  .rb-page-banner{ padding: 140px 0 70px; }
  .rb-page-banner h1{ font-size: 30px; }
}


section.intro-section.section-padding h3 {
    font-size: 24px;
    padding: 10px 0px;
}

a.navbar-brand.rb-logo {
    width: 240px;
}

@media screen and (min-width: 320px) and (max-width: 480px){
   a.navbar-brand.rb-logo {
    width: 140px;
}
.navbar-collapse { background: #fff;} 
}