/* ============================================
   Adhi Agathiyar Healthcare - Premium Styles
   ============================================ */

/* :root {
  --primary: #6DBE45;
  --secondary: #2E7D32;
  --accent: #D4AF37;
  --bg: #F8FFF6;
  --white: #FFFFFF;
  --text: #222222;
  --light-gray: #F5F5F5;
  --border: #E5E5E5;
  --hover: #4CAF50;
  --shadow-sm: 0 2px 8px rgba(46, 125, 50, .08);
  --shadow-md: 0 8px 24px rgba(46, 125, 50, .12);
  --shadow-lg: 0 16px 48px rgba(46, 125, 50, .18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-gold: linear-gradient(135deg, #D4AF37, #b8941f);
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-serif: 'Lora', serif;
} */

:root {

  /* Green + Blue Healthcare Theme */

  --primary: #2E8B57;
  /* Natural Green */
  --secondary: #013c81;
  /* Medical Blue */

  --accent: #00A8A8;
  /* Teal Accent */

  --bg: #F4FBFF;
  /* Light Blue Background */

  --white: #FFFFFF;

  --text: #1F2937;

  --light-gray: #F1F5F9;

  --border: #D9E7F2;


  /* Hover */

  --hover: #1B6B93;


  /* Shadows */

  --shadow-sm: 0 2px 8px rgba(21, 101, 192, .08);

  --shadow-md: 0 8px 24px rgba(21, 101, 192, .12);

  --shadow-lg: 0 16px 48px rgba(21, 101, 192, .18);



  /* Border Radius */

  --radius-sm: 8px;

  --radius-md: 16px;

  --radius-lg: 24px;



  /* Gradients */

  --gradient: linear-gradient(135deg,
      #2E8B57,
      #013c81);


  --gradient-gold: linear-gradient(135deg,
      #D4AF37,
      #B8860B);


  --transition: .35s cubic-bezier(.4, 0, .2, 1);


  /* Fonts */

  /* --font-head: 'Poppins', sans-serif;

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

  --font-serif: 'Lora', serif; */

  /* Fonts */

  --font-head: 'Montserrat', sans-serif;

  --font-body: 'Open Sans', sans-serif;

  --font-serif: 'Cormorant Garamond', serif;

  /* Tamil Fonts */

  --font-tamil-head: 'Anek Tamil', sans-serif;
  --font-tamil-body: 'Mukta Malar', sans-serif;

}

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

}


body {

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

}


/* Tamil Content */

html[lang="ta"] body {

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

}


html[lang="ta"] h1,
html[lang="ta"] h2,
html[lang="ta"] h3,
html[lang="ta"] h4 {

  font-family: var(--font-tamil-head);

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

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

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gradient);
  z-index: 9999;
  transition: width .1s;
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .6s, visibility .6s;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-leaf {
  width: 60px;
  height: 60px;
  position: relative;
  animation: spinLeaf 1.5s linear infinite;
}

.loader-leaf::before {
  content: '\f06c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--primary);
}

.loader-text {
  margin-top: 20px;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 2px;
}

@keyframes spinLeaf {
  to {
    transform: rotate(360deg);
  }
}

/* ===== Emergency Banner ===== */
.emergency-banner {
  background: var(--gradient);
  color: #fff;
  padding: 8px 0;
  font-size: .85rem;
  overflow: hidden;
  position: relative;
}

.emergency-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.emergency-banner .marquee {
  display: flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.emergency-banner a {
  color: #fff;
  font-weight: 600;
}

.emergency-banner i {
  margin-right: 6px;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary);
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.logo-text small {
  display: block;
  font-size: .65rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: .85rem;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width .3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--secondary);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border-radius: 30px;
  padding: 4px;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  margin-left: 13px;
}

.lang-toggle span {
  padding: 4px 12px;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition);
  z-index: 1;
  color: var(--text);
}

.lang-toggle span.active {
  background: var(--gradient);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-family: var(--font-head);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #fff;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent !important;
  border: 2px solid var(--primary) !important;
  color: var(--secondary) !important;
}

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

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

.btn-whatsapp:hover {
  background: #1da851 !important;
  transform: translateY(-3px) !important;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  transform: scale(0);
  animation: ripple .6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero ===== */
.hero {
  height: fit-content;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(109, 190, 69, .12), rgba(46, 125, 50, .08)), var(--bg);
  padding-bottom: 0px !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .4;
  animation: floatBlob 8s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  bottom: -80px;
  left: -80px;
  animation-delay: 2s;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: var(--secondary);
  top: 40%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes floatBlob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.floating-leaf {
  position: absolute;
  color: var(--primary);
  opacity: .5;
  font-size: 2rem;
  animation: floatLeaf 6s ease-in-out infinite;
}

@keyframes floatLeaf {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-30px) rotate(15deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--primary);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(212, 175, 55, .3);
  z-index: -1;
}

.hero p {
  font-size: 1.1rem;
  color: black;
  margin-bottom: 30px;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}

.hero-stat .label {
  font-size: .85rem;
  color: black;
}

/* ===== Section Title ===== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .sub {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 10px;
}

.section-title h2 {
  margin-bottom: 14px;
}

.section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.section-title .divider {
  width: 70px;
  height: 4px;
  background: var(--gradient);
  margin: 16px auto;
  border-radius: 2px;
}

/* ===== Why Choose Us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(109, 190, 69, .15), rgba(46, 125, 50, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gradient);
  color: #fff;
  transform: rotate(360deg);
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  font-size: .95rem;
}

/* ===== About Clinic ===== */
.about-clinic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-img .exp-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-img .exp-badge .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}

.about-img .exp-badge .txt {
  font-size: .8rem;
  color: #666;
}

.about-content .sub {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .85rem;
}

.about-content h2 {
  margin: 10px 0 18px;
}

.about-content .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--secondary);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 20px 0;
}

.counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.counter-card {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.counter-card .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.counter-card .label {
  font-size: .85rem;
  color: #666;
}

/* ===== Treatments Grid ===== */
.treatments-grid {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
  /* gap: 25px; */

}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 3px -3px 9px #2e8b57a6;
  transition: var(--transition);
  border: 2px solid var(--primary);
  position: relative;
  margin: 20px;

}

.treatment-card:hover {
  transform: translateY(-8px);
  /* box-shadow: var(--shadow-lg); */
  box-shadow: inset 3px -3px 9px #013c81a1;
  border: 2px solid #013d81;


}

.treatment-card .t-icon {
  /* padding: 30px; */
  text-align: center;
  background: linear-gradient(135deg, rgba(109, 190, 69, .12), rgba(46, 125, 50, .08));
}

.treatment-card .t-icon i {
  font-size: 2.5rem;
  color: var(--secondary);
  transition: var(--transition);
}

.treatment-card:hover .t-icon i {
  color: var(--primary);
  transform: scale(1.1);
}

.treatment-card .t-body {
  padding: 24px;
}

.treatment-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #c59400;
}

.treatment-card p {
  color: #666;
  font-size: .92rem;
  margin-bottom: 16px;
}

.treatment-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary) !important;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}

.treatment-card .learn-more:hover {
  gap: 12px;
  color: var(--primary);
}

/* ===== Medicines ===== */
.medicines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.medicine-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.medicine-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.medicine-card .m-img {
  height: 200px;
  overflow: hidden;
}

.medicine-card .m-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.medicine-card:hover .m-img img {
  transform: scale(1.1);
}

.medicine-card .m-body {
  padding: 20px;
}

.medicine-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.medicine-card .benefits {
  color: #666;
  font-size: .88rem;
  margin-bottom: 14px;
}

/* ===== Appointment ===== */
.appointment {
  background: linear-gradient(135deg, rgba(46, 125, 50, .95), rgba(109, 190, 69, .9)), url('../images/hero.webp?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  position: relative;
}

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

.appointment-form {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .88rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  transition: var(--transition);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, .7);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, .18);
}

.form-group select option {
  color: #222;
}

.form-group .err {
  color: rgb(197, 0, 0) !important;
  font-size: .8rem;
  margin-top: 4px;
  display: none;
}

.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea {
  border-color: #ff6b6b !important;
}

.form-group.invalid .err {
  display: block;
}


/*  */

/*  */

.appointment-form .btn {
  width: 100%;
  justify-content: center;
}

/* ===== Testimonials ===== */
.testimonials-slider {
  position: relative;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin: 10px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 2rem;
  color: var(--accent);
  opacity: .4;
}

.testimonial-card .stars {
  color: #FFD700;
  margin: 10px 0;
}

.testimonial-card p {
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .patient {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .patient img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-card .patient .name {
  font-weight: 600;
}

.testimonial-card .patient .role {
  font-size: .82rem;
  color: #888;
}

/* ===== Gallery ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 22px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: .9rem;
  transition: var(--transition);
  font-family: var(--font-head);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 125, 50, .8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay .cat {
  color: #fff;
  font-weight: 600;
}

.gallery-item .overlay i {
  color: #fff;
  font-size: 1.5rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: #666;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-info-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: #666;
  font-size: .92rem;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-form .form-group input, .contact-form .form-group textarea {
  background: var(--light-gray);
  color: var(--text);
  border-color: var(--border);
}

.contact-form .form-group input::placeholder, .contact-form .form-group textarea::placeholder {
  color: #999;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* ===== Doctor Profile ===== */
.doctor-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  align-items: center;
}

.doctor-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.doctor-card h3 {
  color: var(--secondary);
  margin-bottom: 6px;
}

.doctor-card .deg {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.doctor-card p {
  color: #666;
  margin-bottom: 16px;
}

.doctor-card .specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.doctor-card .specs span {
  background: rgba(109, 190, 69, .12);
  color: var(--secondary);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 500;
}

/* ===== Awards ===== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.award-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.award-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.award-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.award-card p {
  font-size: .85rem;
  color: #666;
}

/* ===== Health Tips ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tip-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

/* .tip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
} */

/* .tip-card .tip-img {
  height: 180px;
  overflow: hidden;
} */

/* .tip-card .tip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
} */

/* .tip-card:hover .tip-img img {
  transform: scale(1.08);
} */

/* .tip-card .tip-body {
  padding: 20px;
} */

.tip-card .date {
  font-size: .8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.tip-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.tip-card p {
  font-size: .9rem;
  color: #666;
}

/* ===== Newsletter ===== */
.newsletter {
  /* background: var(--gradient); */
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background: linear-gradient(135deg, black, rgb(109 190 69 / 64%)), url("../images/siddhaFlower2.png");
  color: #fff;
  text-align: center;
  position: relative;
}

.newsletter h2 {
  margin-bottom: 14px;
}

.newsletter p {
  margin-bottom: 24px;
  opacity: .9;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
}

.newsletter-form .btn {
  background: var(--accent);
  color: #fff;
}

.newsletter-form .btn:hover {
  background: #b8941f;
}

/* ===== Footer ===== */
.footer {
  background: #1a3d1a;
  color: #cfd8c7;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.footer-col p {
  font-size: .9rem;
  margin-bottom: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: .9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-col .social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-col .social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9rem;
}

.footer-contact-item i {
  color: #ccb66d;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
}

.footer-bottom .links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

/* ===== Floating Buttons ===== */
.floating-btns {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.whatsapp {
  background: #25D366;
  animation: pulse 2s infinite;
}

.float-btn.call {
  background: var(--gradient);
}

.float-btn.appointment {
  background: var(--gradient-gold);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

/* ===== Appointment Popup ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay.show {
  display: flex;
}

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 40px;
  position: relative;
  animation: popIn .4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes popIn {
  from {
    transform: scale(.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-box .close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.popup-box h3 {
  color: var(--secondary);
  margin-bottom: 6px;
  text-align: center;
}

.popup-box .sub-text {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
  font-size: .92rem;
}

.popup-box .form-group input, .popup-box .form-group select, .popup-box .form-group textarea {
  background: var(--light-gray);
  color: var(--text);
  border-color: var(--border);
}

.popup-box .form-group input::placeholder, .popup-box .form-group textarea::placeholder {
  color: #999;
}

.bookingBtn.response {
  display: none;
}

/* ===== Page Banner ===== */
.page-banner {
  padding: 200px 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, .92), rgba(109, 190, 69, .88)), url('../images/?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  margin-bottom: 10px;
}

.page-banner .breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: .9rem;
}

.page-banner .breadcrumb a {
  color: rgba(255, 255, 255, .85);
}

.page-banner .breadcrumb a:hover {
  color: #fff;
}

.page-banner .breadcrumb .sep {
  opacity: .6;
}

/* ===== Treatment Detail ===== */
.treatment-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.treatment-detail .td-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.treatment-detail .td-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.treatment-detail h2 {
  color: var(--secondary);
  margin-bottom: 14px;
}

.treatment-detail .td-content p {
  color: #555;
  margin-bottom: 16px;
}

.benefits-list {
  list-style: none;
  margin: 20px 0;
}

.benefits-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #555;
}

.benefits-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
}

.td-sidebar {
  background: var(--white);
  padding: 28px 37px !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.td-sidebar h3 {
  margin-bottom: 16px;
  color: var(--secondary);
}

.td-sidebar .info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}

.td-sidebar .info-row:last-child {
  border: none;
}

/* ===== Sticky Contact Bar (mobile) ===== */
.sticky-contact-bar {
  display: none;
}

/* ===== AOS-like reveal (fallback) ===== */
[data-aos] {
  opacity: 0;
  transition: opacity .8s, transform .8s;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

.bookingBtn {
  padding: 10px 10px !important;
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
}

.addSpan {
  color: #1a3d1a;
  font-weight: 600;
}

.contDetP:hover {
  color: #ccb66d !important;
}

.brand {
  font-weight: 700;
}



.achiveImg img {
  position: absolute;
  right: -35px;
  height: 500px;
  bottom: 0;

}

/* .bookingBtn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
} */

.newsBookingBtn {
  background: var(--gradient-gold);
  color: #fff;
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .85rem;
  gap: 6px;
}

.achiveDetail p b {
  /* border: 1px solid #f6ed6b;
  border-radius: 8px;
  padding: 5px 11px;
  box-shadow: inset -4px -3px 3px #ffc107; */
  color: #f6e462;
}

.heroBannerSideImg {
  position: absolute;
  bottom: 0;
}

/* Sticky Social Media */

.social-sticky {

  position: fixed;

  left: 0;
  top: 35%;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 6px;

  z-index: 9999;

  background: #fff;

  padding: 15px 2px;

  border-radius: 0 20px 20px 0;

  box-shadow:
    0 5px 20px rgba(0, 0, 0, .08);

}



.social-sticky a {

  width: 30px;
  height: 30px;

  display: flex;

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

  font-size: 18px;

  transition: .3s ease;

}



/* Facebook */

.social-sticky a:nth-child(1) {

  color: #1877f2 !important;

}


/* Instagram */

.social-sticky a:nth-child(2) {

  color: #e1306c !important;

}


/* Youtube */

.social-sticky a:nth-child(3) {

  color: #ff0000 !important;

}


/* WhatsApp */

.social-sticky a:nth-child(4) {

  color: #25d366 !important;

}



.social-sticky a:hover {

  transform: translateX(5px) scale(1.2);

}



.follow-text {

  writing-mode: vertical-rl;

  transform: rotate(180deg);

  font-size: 13px;

  letter-spacing: 2px;

  color: #555;

  margin-top: 10px;

}

@media screen and (max-width:768px) {

  .achiveImg {
    display: none;
  }

  .newsletter {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background: linear-gradient(135deg, rgba(46, 125, 50, .92), rgb(109 190 69 / 64%)), url("../images/siddhaFlower2.png")
  }

  .heroBannerSideImg {
    display: none;
  }

  .hero {
    height: auto !important;
  }

}

@media(max-width:768px) {

  .social-sticky {

    left: 0px;

    top: auto;

    bottom: 0px;

    flex-direction: row;

    /* border-radius: 30px; */

    /* padding: 10px 15px; */
    padding: 3px 0px;
    border: 1px solid #14aeaf;
    border-left: 0px;
    background: #979da391;

  }


  .follow-text {

    display: none;

  }


  .social-sticky a:hover {

    transform: translateY(-5px);

  }

}

.health-tips-section {

  padding: 100px 0;

  background: #f7fbff;

}

.tip-card {

  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

  transition: .4s;

  height: 100%;

}

.tip-card:hover {

  transform: translateY(-12px);

}

.tip-img {

  position: relative;

  overflow: hidden;

  height: 250px;

}

.tip-img img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .6s;

}

.tip-card:hover img {

  transform: scale(1.12);

}

.tip-overlay {

  position: absolute;

  left: 15px;

  top: 15px;

  background: linear-gradient(135deg, #2E8B57, #1565C0);

  color: #fff;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 13px;

  font-weight: 600;

}

.tip-body {

  padding: 25px;

}

.tip-body h3 {

  font-size: 24px;

  margin-bottom: 15px;

}

.tip-body p {

  color: #666;

  line-height: 1.8;

  margin-bottom: 20px;

}

.learn-more {

  color: var(--primary);

  font-weight: 600;

  text-decoration: none;

}

.learn-more:hover {

  color: var(--secondary);

}

.tipsSwiper {

  padding-bottom: 60px;

}

.swiper-button-next,

.swiper-button-prev {

  width: 48px;

  height: 48px;

  /* background: #fff; */

  border-radius: 50%;

  /* box-shadow: 0 10px 25px rgba(0, 0, 0, .12); */

}

.swiper-button-next::after,

.swiper-button-prev::after {

  font-size: 18px;

  font-weight: bold;

  color: var(--primary);

}

.swiper-pagination-bullet {

  width: 12px;

  height: 12px;

}

.swiper-pagination-bullet-active {

  background: var(--primary);

}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary) !important;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  /* background: linear-gradient(135deg, #2E8B57, #1E88E5); */
  color: var(--accent);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.highlight-badge i {
  font-size: 18px;
}

.branch-info-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
  border: 1px solid rgba(109, 190, 69, .15);
  position: relative;
  overflow: hidden;
  transition: .4s;
}

.branch-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #43a047, #1e88e5);
}

.branch-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.branch-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.branch-header i {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, #43a047, #1e88e5);
  animation: pulse 2s infinite;
}

.branch-header h4 {
  margin: 0;
  font-size: 24px;
}

.branch-header p {
  margin: 5px 0 0;
  color: #666;
}

.branch-item {
  display: flex;
  gap: 18px;
  padding: 18px 30px;
  border-right: 1px dashed #ddd;
}

.branch-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.branch-item:last-child {
  border: none;
}

.branch-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #eef8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #43a047;
  font-size: 22px;
}

.branch-content h5 {
  margin: 0 0 8px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.status.open {
  background: #eaf8ea;
  color: #2e7d32;
}

.status.appointment {
  background: #e9f4ff;
  color: #1565c0;
}

.branch-info-card .btn {
  margin-top: 25px;
  width: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}