:root {
  --theme-color: #cc1939;
  --theme-white: #fff;
  --theme-color-soft: #ffede6;
  --theme-color-light: #ffede6;
  --theme-font-color: #212529;
  --theme-font-liter:#6c757d;
  --theme-footer-background: #1f2933;
  --theme-section-background: #f7f7f7;
}


/* =====================
   Base
===================== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-top: 132px;
  color: var(--theme-font-color);
}

a { text-decoration: none; }

/* =====================
   Header
===================== */
.logo-img {
  height: 100px;
  width: auto;
  transition: height .25s ease;
}


.phone-highlight {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .75rem;
  /* background: var(--theme-white); */
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 999px;
  font-weight: 600;
}

.phone-highlight:hover {
  border: 2px solid var(--theme-color);
}

.phone-highlight a { color: var(--theme-color); }

.header-divider {
  height: 2px;
  background: var(--theme-color);
  opacity: .6;
}

/* Shrink on scroll */
#siteHeader.shrink .logo-img {
  height: 60px;
}

/* =====================
   Navigation
===================== */
.nav-link {
  font-weight: 500;
  color: var(--theme-font-color) !important;
}

.nav-link:hover {
  color: var(--theme-color) !important;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  body { padding-top: 180px; }
  .doctor-info { text-align: center; }
  .phone-highlight { justify-content: center; }
}

/* Navbar Logo */

.navbar-brand img {
  height: 70px;
}

/* Mobile menu box */

@media (max-width: 991px) {

  .navbar-collapse {
    background: var(--theme-white);
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

}




/* ===== Hero Banner ===== */
.hero-section {
  width: 100%;
}

.heroSwiper {
  
  width: 100%;
  height: 70vh;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--theme-white);
  max-width: 800px;
  padding: 0 15px;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-top: 50px;
}
.banner-features {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.banner-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(163, 5, 5, 0.75);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--theme-white);
  font-size: 16px;
  border: 1px solid var(--theme-white);
}

.banner-features .feature i {
  font-size: 20px;
  /* color: var(--theme-white);  */
  /* highlight color */
}

/* Mobile */
@media (max-width: 768px) {
    
.logo-img{
        height: 70px;
}
#siteHeader.shrink .logo-img{
    height: 55px;
    padding-top: 5px;
}


  .heroSwiper {
    height: 60vh;
  }
 

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    display: none;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.2rem;
  }
}

/* ===== Doctor About Section ===== */
.about-section {
  background: var(--theme-color-light);
}

.doctor-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-sign i {
  font-size: 32px;
  color: var(--theme-color);
}





/* ===== Doctor About Enhancements ===== */
.doctor-image-wrapper {
  border-radius: 14px;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.doctor-image-wrapper.in-view {
  transform: translateY(0);
  opacity: 1;
}

.doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Read More */
.read-more-content {
  display: none;
}

.read-more-btn {
  color:var(--theme-color);
  font-weight: 600;
}

/* Signature */
.signature-img {
  height: 50px;
}

/* Awards */
.doctor-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.award-badge {
  background: var(--theme-color-light);
  color:var(--theme-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}




/* ===== CTA Belt ===== */
.cta-belt {
  background: var(--theme-color-soft);  
}

.cta-item {
  padding: 60px 30px;
}

.cta-highlight {
  background: var(--theme-color);
  color: var(--theme-white);
}

/* Icons */
.cta-icon {
  font-size: 38px;
  /* color: var(--theme-color); */
  margin-bottom: 15px;
}

.cta-highlight .cta-icon {
  color: var(--theme-white);
}

/* Buttons */
.btn-outline-theme {
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
}

.btn-outline-theme:hover {
  background: var(--theme-color);
  color: var(--theme-white);
}

.btn-whatsapp {
  background: var(--theme-white);
  color: var(--theme-color);
  border-radius: 50px;
  padding: 12px 26px;
  font-weight: 600;
  border: 1px solid var(--theme-color);
}
.btn-whatsapp:hover {
  border: 2px solid var(--theme-white);
}

/* Pulse Animation */
.pulse-cta {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(167,208,255,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(167,208,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(167,208,255,0); }
}

/* Mobile */
@media (max-width: 991px) {
  .cta-item {
    padding: 40px 20px;
  }
}




/* ===== Clinic Services ===== */
.clinic-services {
  background: var(--theme-white);
}

.section-subtitle {
  color: var(--theme-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--theme-font-color);
}

.section-desc {
  max-width: 650px;
  margin: 12px auto 0;
  color: var(--theme-font-liter);
}

/* Service Card */
.service-card {
  background: var(--theme-color-light);
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* Icon */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--theme-color-soft);
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.service-card h5 {
  font-weight: 600;
  color: var(--theme-font-color);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--theme-font-liter);
}


/* ===== Icon Color Morph on Hover ===== */
.service-card:hover .service-icon {
  background: var(--theme-color);
  color: var(--theme-white);
  transform: scale(1.08);
}

/* Smooth transitions */
.service-icon {
  transition: background-color 0.3s ease,
              color 0.3s ease,
              transform 0.3s ease;
}

.service-card:hover .service-icon {
  box-shadow: 0 0 0 8px rgba(167, 208, 255, 0.15);
}



/* ===== Promise Belt ===== */
.promise-belt {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image: url("../images/promise-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--theme-white);
}

.promise-overlay {
  position: absolute;
  inset: 0;
  background: rgb(157 101 101 / 78%);
  z-index: 1;
}

.promise-belt .container {
  position: relative;
  z-index: 2;
}

/* Title */
.promise-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

/* Signature underline */
.signature-underline {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--theme-white);
  transform: translateX(-50%);
  transition: width 1.2s ease;
}

.fade-in.visible .signature-underline {
  width: 80%;
}

/* Text */
.promise-text {
  font-size: 1.1rem;
  line-height: 1.7;
  /* max-width: 720px; */
  margin: 18px auto 0;
  opacity: 0.95;
}

/* WhatsApp Button */
.btn-whatsapp-lg {
  
  color: var(--theme-white);
  border: 1px solid var(--theme-white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
}

.btn-whatsapp-lg i {
  margin-right: 8px;
}

.btn-whatsapp-lg:hover {
  /* background: var(--theme-color); */
  color: var(--theme-white);
  border: 2px solid var(--theme-white);
}

/* Stats */
.promise-stats h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.promise-stats span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== Fade In Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delays */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1s; }

/* Mobile */
@media (max-width: 991px) {
  .promise-belt {
    background-attachment: scroll;
    padding: 80px 0;
  }
  .btn-whatsapp-lg {  
  padding: 10px;
  font-size: 0.7rem;
 }
 .hero-content{
  padding: 0px;
 }
}





/* ===== Our Team ===== */
.team-section {
  background: var(--theme-color-light); /* same bg as services */
}

.team-card {
  background: var(--theme-white);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--theme-color-light);
  transition: all 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.team-content {
  padding: 22px 20px;
  text-align: center;
}

.team-content h6 {
  font-weight: 600;
  color: var(--theme-font-color);
  margin-bottom: 6px;
}

.team-desc {
  font-size: 0.9rem;
  color: var(--theme-font-liter);
  margin-bottom: 10px;
}

.team-designation {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--theme-color);
  margin-bottom: 8px;
}

.team-rating {
  font-size: 1rem;
  color: #f4c150; /* same star color used earlier */
}

/* Mobile scroll */
@media (max-width: 991px) {
  .team-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .team-row > div {
    min-width: 260px;
    scroll-snap-align: center;
  }
}




.testimonialSwiper {
  padding-bottom: 40px;
}

.testimonial-card {
  background: var(--theme-white);
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.4s ease;
  border: 1px solid #e7eef4;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--theme-font-liter);
  margin-bottom: 12px;
  /* min-height: 220px; */
}

.testimonial-card h6 {
  margin-bottom: 2px;
  font-weight: 600;
  color: var(--theme-font-color);
}

.testimonial-card span {
  font-size: 0.85rem;
  color: var(--theme-color);
}

.stars {
  color: #f4c150;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Center slide focus */
.swiper-slide-active .testimonial-card,
.swiper-slide-next .testimonial-card,
.swiper-slide-prev .testimonial-card {
  opacity: 0.7;
  transform: scale(0.95);
}

.swiper-slide-next .testimonial-card,
.swiper-slide-prev .testimonial-card {
  padding: 20px 15px;
  margin-top: 10px;
}

.swiper-slide-active .testimonial-card {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Mobile */
@media (max-width: 767px) {
  .testimonial-card {
    opacity: 1;
    transform: scale(1);
  }
}


/* ===== Testimonials Theme Polish ===== */

.testimonial-card {
  background: rgba(248, 78, 78, 0.08); /* light theme tint */
  border: 2px solid rgba(216, 71, 71, 0.25); /* dark theme border */
  padding: 32px 26px;
  border-radius: 16px;
  text-align: center;
  opacity: 0.6;
  transform: scale(0.92);
  transition: all 0.4s ease;
}

/* Hover effect */
.testimonial-card:hover {
  background: rgba(190, 82, 82, 0.14);
  transform: translateY(-6px) scale(0.98);
  box-shadow: 0 16px 40px rgba(74, 45, 45, 0.15);
}

.testimonial-card {
  position: relative;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Gentle magnetic pull */
.testimonial-card:hover {
  transform: translateY(-4px) scale(0.985);
  box-shadow: 0 18px 38px rgba(74, 45, 45, 0.16);
}


/* Focused center testimonial */
.swiper-slide-active .testimonial-card {
  background: rgba(247, 209, 209, 0.18);
  border-color: var(--theme-font-color);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 22px 45px rgba(74, 45, 45, 0.2);
}

/* Image */
.testimonial-card img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 3px solid var(--theme-white);
  margin-bottom: 16px;
}

/* Text */
.testimonial-card p {
  font-size: 1.2rem;
  color: var(--theme-font-color);
  margin-bottom: 14px;
  line-height: 1.6;
}

.testimonial-card h6 {
  font-weight: 600;
  color: var(--theme-font-color);
}

.testimonial-card span {
  font-size: 0.85rem;
  color: var(--theme-font-liter);
}

/* Stars */
.stars i.filled {
  color: #f4c150;
}

.testimonial-card:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

@media (max-width: 767px) {
  .testimonial-card {
    opacity: 1;
    transform: scale(1);
  }
}



@keyframes softGlow {
  0% {
    box-shadow: 0 0 0 rgba(143, 181, 95, 0.25);
  }
  50% {
    box-shadow: 0 0 26px rgba(143, 181, 95, 0.35);
  }
  100% {
    box-shadow: 0 0 0 rgba(143, 181, 95, 0.25);
  }
}

.swiper-slide-active .testimonial-card {
  animation: softGlow 4.5s ease-in-out infinite;
}

.testimonial-card {
  opacity: 0.75;
  transform: scale(0.96);
}

.swiper-slide-active .testimonial-card {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card {
  background: linear-gradient(
    180deg,
    rgba(250, 241, 241, 0.1),
    rgba(250, 241, 241, 0.04)
  );
  border: 1.5px solid rgba(74, 45, 45, 0.28);
}

.testimonial-card img {
  transition: transform 0.4s ease;
}

.testimonial-card:hover img {
  transform: scale(1.04);
}

.testimonial-card {
  
  border: 5px solid rgba(237, 69, 69, 0.45) ;
  border-radius: 0px; /* sharp, not round */
  padding: 34px 28px;
  text-align: center;
  opacity: 0.65;
  transform: scale(0.96);
  transition: all 0.45s ease;
}

@keyframes centerAOS {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.swiper-slide-active .testimonial-card {
  opacity: 1;
  transform: scale(1);
  border-color: var(--theme-color);
  box-shadow: 0 18px 42px rgb(84 142 207);
  animation: centerAOS 0.7s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(167, 208, 255, 0.18);
}
.swiper-slide {
  cursor: pointer;
}


/* ===== Footer ===== */
.site-footer {
  background: var(--theme-footer-background);
  padding: 70px 0 30px;
  color: var(--theme-color-light);
}

.footer-title {
  color: var(--theme-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  width: 40px;
  height: 3px;
  background: var(--theme-color);
  display: block;
  margin-top: 8px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--theme-color-light);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--theme-color-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--theme-color);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--theme-white);
  margin-top: 4px;
}

.footer-contact a {
  color: var(--theme-color-light);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--theme-color);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  color: var(--theme-color-light);
}

/* Offset anchor scroll for fixed header */
section {
  scroll-margin-top: 80px; /* adjust to your header height */
}

.contact-section {
  background: var(----theme-section-background);
}

/* Map */
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 14px;
}

/* Card */
.contact-card {
  background: var(--theme-white);
  padding: 30px;
  border-radius: 14px;
  border-left: 6px solid var(--theme-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Title */
.section-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

/* Doctor */
.doctor-name {
  font-weight: 700;
  color: var(--theme-color);
}

.designation {
  color: #64748b;
  margin-bottom: 20px;
}

/* Info */
.contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}

.contact-info i {
  color: var(--theme-color);
  font-size: 18px;
  padding-top: 3px;
}

.contact-info a {
  text-decoration: none;
  color: inherit;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--theme-white);
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(51, 134, 243, 0.6);
}


.map-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.map-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 16px;
  background: linear-gradient(
    120deg,
    var(--theme-color),
    var(--theme-font-liter),
    var(--theme-color)
  );
  animation: glowMove 4s linear infinite;
  -webkit-mask:
    linear-gradient(var(--theme-white) 0 0) content-box,
    linear-gradient(var(--theme-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes glowMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--theme-color);
  color: var(--theme-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 0 0 rgba(167,208,255,0.6);
  animation: pulseGlow 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(5deg);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(167,208,255,0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(167,208,255,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(167,208,255,0);
  }
}


.section-heading {
  margin-bottom: 48px;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--theme-color);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #1f2937; /* dark gray, eye-friendly */
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

/* Hide top header row on mobile */
@media (max-width: 991px) {
  .header-row-1 {
    display: none;
  }

  section {
  scroll-margin-top: 50px; /* adjust to your header height */
}

  .mobile-logo {
    height: 55px;
  }

  body {
    padding-top: 90px; /* adjust for smaller header */
  }
}

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 25px; /* stacked above WhatsApp */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--theme-white);
  border: none;
  box-shadow: 0 10px 25px rgb(66 154 245 / 56%);  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
  z-index: 9999;
}

/* Show state */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */
.back-to-top:hover {
  /* background: #6eaffa; */
  box-shadow: 0 15px 35px rgb(66 154 245 / 56%);
  transform: translateY(-4px);
}

/* Mobile fine-tune */
@media (max-width: 768px) {
  .back-to-top {
    left: 14px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}



/* FAQ Section */
.faq-section {
  background: var(--theme-color-light);
}

.faq-accordion .accordion-item {
  background: var(--theme-white);
  border: 1px solid rgba(47, 191, 113, 0.2);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--theme-font-color);
  background: var(--theme-white);
  padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--theme-color);
  color: var(--theme-white);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--theme-color);
}

.faq-accordion .accordion-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  padding: 20px 22px;
}



/* ================= GALLERY ================= */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay icon */
.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(165, 72, 72, 0.8);
  color: var(--theme-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;

  /* IMPORTANT */
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}


/* ================= LIGHTBOX ================= */

#galleryLightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

#galleryLightbox.show {
  opacity: 1;
  visibility: visible;
}

#galleryLightbox img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Close button */
.close-lightbox {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: var(--theme-white);
  cursor: pointer;
}


/* ===== Top Bar ===== */
#topBar {
  background: var(--theme-color);
  color: var(--theme-white);
  font-size: 14px;
  padding: 6px 0;
  /* position: fixed; */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: transform 0.4s ease;
}

/* Hide on scroll */
#topBar.hide {
  transform: translateY(-100%);
}

#topBar a {
  color: var(--theme-white);
  text-decoration: none;
  margin-right: 12px;
  transition: 0.3s;
}

#topBar a:hover {
  color: var(--theme-color-soft);
}

.top-right a {
  margin-left: 12px;
  font-size: 15px;
}

#siteHeader.shrink > #topBar {    
    display: none;
  }

/* Mobile Adjust */
@media (max-width: 768px) {
  #topBar {
    font-size: 12px;
    display: none;
  }

  .top-left span {
    display: none;
  }
}


/* ===== Dental Focus Section ===== */

.dental-focus-section {
  background: var(--theme-color-light);
  padding: 80px 0;
}

.dental-focus-section .section-title h2 {
  font-weight: 700;
  color: var(--theme-color);
}

.dental-focus-section .section-title p {
  color: #555;
  max-width: 600px;
  margin: auto;
}

/* Center Image */

.focus-image {
  width: 350px;
  height: 350px;
  margin: auto;
  background: var(--theme-white);
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.focus-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Points */

.focus-point {
  background: var(--theme-white);
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.focus-point:hover {
  transform: translateY(-5px);
}

.focus-point i {
  font-size: 26px;
  color: var(--theme-color);
  margin-bottom: 8px;
}

.focus-point h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--theme-color);
}

.focus-point p {
  font-size: 14px;
  margin: 0;
  color: #666;
}

/* Alignments */

.focus-point.left {
  text-align: right;
}

.focus-point.right {
  text-align: left;
}

/* Mobile */

@media (max-width: 768px) {

  .focus-point.left,
  .focus-point.right {
    text-align: center;
  }

  .focus-image {
    width: 220px;
    height: 220px;
    margin: 40px auto;
  }

}



/* ------------------------------------------------- */
/* =========================
   BENEFITS SECTION
========================= */

.benefits-section{
padding:80px 0;
background:var(--theme-section-background);
}

.section-head{
margin-bottom:50px;
}

.section-subtitle{
color:var(--theme-color);
font-weight:600;
letter-spacing:1px;
margin-bottom:10px;
}

.section-title{
font-size:36px;
font-weight:700;
color:var(--theme-font-color);
}

/* card */

.benefit-card{

height:260px;
border-radius:14px;

background-size:cover;
background-position:center;
background-repeat:no-repeat;

position:relative;
overflow:hidden;

display:flex;
align-items:flex-end;

transition:.4s;

opacity:0;
transform:translateY(40px);

}

/* scroll animation */

.benefit-card.show{
opacity:1;
transform:translateY(0);
}

/* overlay */

.benefit-overlay{

width:100%;
padding:20px;

background:linear-gradient(
to top,
rgba(0,0,0,0.7),
rgba(0,0,0,0)
);

color:var(--theme-white);
}

/* title */

.benefit-overlay h4{
margin:0;
font-size:22px;
font-weight:600;
}

/* hover */

.benefit-card:hover{
transform:scale(1.05);
}

/* responsive */

@media(max-width:768px){

.section-title{
font-size:28px;
}

.benefit-card{
height:220px;
}

}