:root {
  --primary: #0e8a7d;
  --primary-dark: #0a6e64;
  --accent: #f0a500;
  --dark: #1a1a2e;
  --gray: #6c757d;
  --light: #f8f9fa;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --call: #0e8a7d;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.lang-hi {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

a { color: var(--primary); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--primary-dark); text-decoration: none; }

.text-accent { color: var(--accent); }

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

.section-heading h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================
   NAVBAR
   ============================ */
#mainNav {
  padding: 10px 0;
  transition: all 0.3s ease;
  z-index: 9999;
}
#mainNav.scrolled {
  padding: 5px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-container {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
@media (max-width: 767px) {
  .nav-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  #mainNav { padding: 8px 0; }
}

.nav-right-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-lang-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-right-mobile .lang-toggle { display: none; }
  .nav-lang-desktop { display: block; }
}

.nav-logo {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

#mainNav .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  font-size: 0.95rem;
}
#mainNav .nav-link:hover {
  color: var(--primary) !important;
}
#mainNav .nav-item.active .nav-link {
  color: var(--primary) !important;
  font-weight: 600;
}

.lang-toggle {
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 14px;
  cursor: pointer;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white) !important;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}
.btn-whatsapp i {
  font-size: 1.1rem;
}

/* ============================
   HERO
   ============================ */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,28,0.85) 0%, rgba(10,30,28,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.hero-subtitle {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.hero-title {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero-hindi-name {
  color: rgba(255,255,255,0.7);
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.hero-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-call {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 30px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,138,125,0.3);
}
.btn-whatsapp-hero {
  background: var(--whatsapp);
  color: var(--white) !important;
  border-radius: 30px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.btn-whatsapp-hero:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.hero-hours {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.hero-hours i {
  color: var(--accent);
  margin-right: 6px;
}

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
}
.stat-item {
  padding: 10px;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 4px;
}

/* ============================
   WHY DIFFERENT
   ============================ */
.diff-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 24px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  height: 100%;
}
.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.diff-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.diff-icon i {
  font-size: 1.6rem;
  color: var(--white);
}
.diff-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.diff-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================
   SERVICES
   ============================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 16px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-bottom: 3px solid var(--primary);
}
.service-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.service-card h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0;
}

/* ============================
   BEFORE & AFTER
   ============================ */
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
  position: relative;
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.ba-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.ba-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  padding: 40px 16px 14px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============================
   CLINIC GALLERY
   ============================ */
.clinic-gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
  position: relative;
}
.clinic-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.clinic-gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s;
}
.clinic-gallery-card:hover img {
  transform: scale(1.05);
}
.clinic-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  padding: 40px 16px 14px;
  font-weight: 600;
  font-size: 0.92rem;
}

/* ============================
   REVIEWS
   ============================ */
.review-carousel .owl-stage-outer { padding: 10px 0 30px; }
.review-carousel .owl-nav {
  text-align: center;
  margin-top: 20px;
}
.review-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: var(--primary) !important;
  color: var(--white) !important;
  margin: 0 6px;
  font-size: 1rem !important;
  transition: 0.3s;
}
.review-carousel .owl-nav button:hover {
  background: var(--primary-dark) !important;
}
.review-carousel .owl-dots { margin-top: 16px; text-align: center; }
.review-carousel .owl-dot span {
  width: 10px; height: 10px;
  background: #ccc !important;
  border-radius: 50%;
}
.review-carousel .owl-dot.active span {
  background: var(--primary) !important;
  width: 28px;
  border-radius: 10px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  height: 100%;
}
.review-card:hover {
  box-shadow: var(--shadow-hover);
}
.review-stars {
  margin-bottom: 14px;
}
.review-stars i {
  color: #f5b100;
  font-size: 0.9rem;
}
.review-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
  min-height: 100px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-author strong {
  font-size: 0.9rem;
  color: var(--dark);
}

/* ============================
   CONTACT STRIP
   ============================ */
.contact-strip {
  background: var(--dark);
  padding: 40px 0;
}
.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--white);
}
.cs-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.cs-item strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}
.cs-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}
.cs-item a { color: rgba(255,255,255,0.85); }
.cs-item a:hover { color: var(--accent); }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: #111122;
  color: rgba(255,255,255,0.8);
  padding: 50px 0 20px;
}
.footer-logo {
  height: 40px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.site-footer p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: 0.3s;
  font-size: 0.95rem;
}
.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.site-footer h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: 0.3s;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: var(--radius);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 30px;
}
.footer-bottom p {
  font-size: 0.8rem;
  margin: 0;
}

/* ============================
   FLOATING BUTTONS
   ============================ */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: 0.3s;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
}
.float-call {
  background: var(--primary);
}
.float-whatsapp {
  background: var(--whatsapp);
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================
   ABOUT PAGE
   ============================ */
.page-header {
  background-size: cover;
  background-position: center;
  padding: 160px 0 80px;
  position: relative;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,28,0.88), rgba(10,30,28,0.6));
}
.page-header-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
}
.page-breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.page-breadcrumb a {
  color: var(--accent);
}

.legacy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.legacy-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.legacy-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.timeline-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.timeline-text p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.social-light {
  display: flex;
  gap: 10px;
}
.social-light a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: 0.3s;
  font-size: 1rem;
}
.social-light a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--white);
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  transition: 0.3s;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.contact-info-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.contact-info-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.contact-info-card p {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}
.contact-info-card a {
  color: var(--primary);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: 0.3s;
}
.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,138,125,0.1);
}
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 12px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,138,125,0.3);
  color: var(--white);
}

.hours-table {
  width: 100%;
}
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--primary);
  font-weight: 600;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 991px) {
  .hero-title { font-size: 2.4rem; }
  .section-heading h2 { font-size: 1.8rem; }
  .navbar-collapse {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    margin-top: 10px;
  }
  .navbar-collapse .nav-item { margin-bottom: 4px; }
  .navbar-collapse .btn-whatsapp { margin-top: 10px; display: inline-flex; }
  .navbar-collapse .lang-toggle { margin-top: 8px; margin-left: 0 !important; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 1.9rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-btns .btn { padding: 12px 22px; font-size: 0.9rem; }
  .stat-number { font-size: 2rem; }
  .section-padding { padding: 50px 0; }
  .section-heading h2 { font-size: 1.6rem; }
  .page-header h1 { font-size: 1.8rem; }
  .contact-form { padding: 24px; }
  .floating-btns { bottom: 16px; right: 16px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .nav-logo { width: 40px; height: 40px; }
}
