/* ---------- Colors & Fonts (from your spec) ---------- */
:root {
  --saffron: #C77B30;
  /* H1, buttons */
  --olive: #2E2E1F;
  /* Subtext, headings */
  --herbal: #4B6043;
  /* optional accents */
  --text: #333333;
}

/* Global */
* {
  box-sizing: border-box
}

body {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--text);
  margin: 0;
  padding: 0;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navbar */
.navbar-brand .brand-text {
  font-family: 'Playfair Display', serif;
  color: var(--saffron);
  font-size: 1.15rem;
}

.logo {
  height: 48px;
  width: auto;
}

/* Hero */
/* ---------- Base Styles ---------- */
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  background-color: #faf9f5;
  overflow-x: hidden;
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(to right, rgba(199, 123, 48, 0.4), rgba(245, 222, 179, 0.2)),
    url('/images/hero-bg-ayurveda.jpg') center/cover no-repeat;
  color: #2E2E1F;
  padding: 80px 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 700;
  color: #C77B30;
  line-height: 1.3;
}

.hero .subtext {
  font-size: 19px;
  color: #2E2E1F;
  margin-top: 15px;
}

.cta-buttons .btn {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  border-radius: 30px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background-color: #C77B30;
  border: none;
}

.cta-buttons .btn-primary:hover {
  background-color: #a86222;
}

.cta-buttons .btn-outline-light {
  border: 1.5px solid #C77B30;
  color: #C77B30;
}

.cta-buttons .btn-outline-light:hover {
  background-color: #C77B30;
  color: white;
}

.trust-badge {
  margin-top: 20px;
  font-size: 15px;
  color: #2E2E1F;
  background-color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding: 8px 15px;
  border-radius: 25px;
  backdrop-filter: blur(6px);
}

.hero-image img {
  max-width: 85%;
  border: 4px solid #f1e0c6;
  border-radius: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero .subtext {
    font-size: 17px;
  }
}

/* Buttons */
.btn-saffron {
  background: var(--saffron);
  border: 0.1rem solid var(--saffron);
  color: #fff;
  font-size: medium;

}

.btn-outline-saffron {
  color: var(--saffron);
  border: 2px solid var(--saffron);
  background: transparent;
}

.btn-outline-success {
  color: var(--saffron);
  border: 2px solid var(--saffron);
  background: transparent;
  font-size: medium;
}

.btn-outline-dark {
  color: var(--saffron);
  border: 2px solid var(--saffron);
  background: transparent;
  font-size: medium;
}

.btn-outline-saffron:hover {
  background: var(--saffron);
  color: #fff;
}

/* ---------- success stories ---------- */
.testimonials-section {
  background: linear-gradient(180deg, #fff9f4 0%, #f9f3ee 100%);
}

.section-heading {
  color: #2a2a2a;
  font-weight: 700;
}

.section-subtext {
  color: #555;
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.testimonial-text {
  font-style: italic;
  color: #333;
  font-size: 1rem;
}

.testimonial-name {
  color: #c77b30;
  font-weight: 600;
}

.btn-accent {
  background: #c77b30;
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  border: none;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background: #b06926;
  color: #fff;
}

.video-box iframe {
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.seo-text {
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-img {
    width: 80px;
    height: 80px;
  }

  .section-subtext {
    font-size: 0.95rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}


/* Sections */
.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--olive);
  font-size: 32px;
  /* H2 size per spec */
  font-weight: 600;
  margin-bottom: 1rem;
}

/* About content */
.about-section {
  position: relative;
  background: linear-gradient(to bottom, #fffaf4, #f8f3e9);
  padding: 90px 10%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* 🌿 Soft Mandala / Herb background */
.about-overlay {
  background: url("/images/hero-bg-ayurveda.jpg") center/cover no-repeat;
  opacity: 0.08;
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Content container */
.about-container {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: auto;
  animation: fadeIn 1.2s ease-in-out;
}

/* Title */
.about-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  color: #7a4b18;
  line-height: 1.3;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(199, 123, 48, 0.25);
}

.underline {
  width: 80px;
  height: 4px;
  background: #c77b30;
  margin: 10px auto 25px;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(199, 123, 48, 0.6);
}

/* Text */
.about-section p {
  color: #4a4033;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

.highlight {
  color: #c77b30;
  font-weight: 600;
}

/* CTA Button */
.about-btn {
  display: inline-block;
  margin-top: 25px;
  background: linear-gradient(90deg, #c77b30, #a86522);
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(199, 123, 48, 0.4);
  transition: all 0.35s ease;
}

.about-btn:hover {
  background: #8b5215;
  box-shadow: 0 6px 18px rgba(199, 123, 48, 0.6);
  transform: translateY(-3px);
}

/* 🌸 Floating glow */
.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 100, 0.25), transparent 70%);
  width: 200px;
  height: 200px;
  z-index: 1;
  animation: floatGlow 6s ease-in-out infinite alternate;
}

.about-section::before {
  top: 10%;
  left: 5%;
}

.about-section::after {
  bottom: 10%;
  right: 8%;
}

/* Responsive */
@media (max-width: 900px) {
  .about-section {
    padding: 60px 7%;
  }

  .about-section h2 {
    font-size: 26px;
  }

  .about-section p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .about-btn {
    padding: 10px 26px;
    font-size: 15px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(12px);
  }
}

.about-container {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.about-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* end About Section */


/* Cards */
.card-title {
  font-family: 'Playfair Display', serif;
  color: var(--olive);
  font-size: 20px;
}

/* Founder */
.founder-section {
  background: linear-gradient(180deg, #fbfaf8 0%, #f6f3ef 100%);
}

.founder-title {
  font-weight: 700;
  color: #2a2a2a;
}

.founder-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.founder-img-wrapper img {
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-img-wrapper img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(40, 40, 40, 0.15);
}

.btn-accent {
  background: #c77b30;
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 1.05rem;
  box-shadow: 0 6px 18px rgba(199, 123, 48, 0.18);
  border: 0;
}

.btn-accent:hover {
  background: #b06926;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .founder-title {
    font-size: 1.25rem;
    text-align: center;
  }

  .founder-text {
    text-align: center;
  }

  .voice-query {
    text-align: center;
  }

  .btn-accent {
    display: block;
    margin: 0 auto;
  }
}



/* Utilities / responsiveness */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 70px 0 40px;
  }

  .hero-title {
    font-size: 28px;
  }

  .logo {
    height: 42px;
  }
}

.treatments-section {
  background: linear-gradient(180deg, #fffdf5 0%, #fffaf2 100%);
  padding: 80px 0;
  font-family: "Lato", sans-serif;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  color: #2e2e1f;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #6b614a;
  margin-bottom: 50px;
  font-size: 18px;
}

.treatment-card {
  background: #fffdf9;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  padding: 28px 22px;
  transition: all 0.4s ease;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.treatment-card.show {
  opacity: 1;
  transform: translateY(0);
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 26px rgba(199, 123, 48, 0.25);
}

.card-icon {
  font-size: 36px;
  color: #c77b30;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.treatment-card:hover .card-icon {
  transform: rotate(8deg) scale(1.1);
}

.treatment-card h4 {
  color: #c77b30;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 12px;
}

.treatment-card p {
  color: #333;
  font-size: 15px;
  min-height: 80px;
}

.know-more {
  color: #c77b30;
  font-weight: 600;
  text-decoration: none;
}

.know-more:hover {
  text-decoration: underline;
  color: #9b5b1f;
}

.seo-tag {
  display: block;
  color: #7a7568;
  font-size: 13px;
  margin-top: 8px;
  font-style: italic;
}

.btn-view-all {
  background-color: #c77b30;
  color: #fff;
  border-radius: 30px;
  padding: 12px 36px;
  margin-top: 45px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-view-all:hover {
  background-color: #9b5b1f;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .treatment-card p {
    font-size: 14px;
  }

  .btn-view-all {
    margin-top: 25px;
  }
}

.seo-copy {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0;
}

.cta-mid {
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
}

.btn-accent {
  background: #c77b30;
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 1.05rem;
  box-shadow: 0 6px 18px rgba(199, 123, 48, 0.18);
  border: 0;
}

.btn-accent:hover {
  background: #b06926;
  color: #fff;
}

.sep {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, rgba(199, 123, 48, 0.85), rgba(199, 123, 48, 0.28));
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 575.98px) {
  .treatments-title {
    font-size: 1.25rem;
  }

  .treatment-card {
    padding: 1.2rem;
  }
}


.btn-outline-dark {
  border-color: #C77B30;
  color: #C77B30;
}

.btn-outline-dark:hover {
  background-color: #C77B30;
  color: #fff;
}

/* Section styling */
:root {
  --accent: #c77b30;
  /* saffron-like accent */
  --muted: #6c757d;
  --card-bg: #fffaf4;
}

.why-section {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #fbfaf8 0%, #f6f3ef 100%);
}

.why-title {
  font-weight: 700;
  color: #2a2a2a;
}

.card-why {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(40, 40, 40, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 244, 0.95));
  padding: 1.25rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  height: 100%;
}

.card-why:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(40, 40, 40, 0.12);
}

.why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(199, 123, 48, 0.12), rgba(199, 123, 48, 0.06));
  color: var(--accent);
  font-size: 1.45rem;
}

.why-heading {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.why-text {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-mid {
  margin-top: 2.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 1.05rem;
  box-shadow: 0 6px 18px rgba(199, 123, 48, 0.18);
  border: 0;
}

.btn-accent:hover {
  background: #b06926;
  color: #fff;
}

.sep {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, rgba(199, 123, 48, 0.85), rgba(199, 123, 48, 0.28));
  border-radius: 4px;
}

.seo-phrase {
  font-size: 0.92rem;
  color: #2b2b2b;
  opacity: 0.9;
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 575.98px) {
  .why-title {
    font-size: 1.25rem;
  }

  .why-heading {
    font-size: 1rem;
  }

  .why-icon {
    width: 48px;
    height: 48px;
  }
}

/* ---------- Visit Clinic Section ---------- */

/* Section styling */
#visit-clinic {
  background-color: #FAFAF8;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #2E2E1F;
  font-weight: 600;
  position: relative;
}

.section-title .highlight {
  color: #C77B30;
  /* saffron tone */
}

.section-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #C77B30;
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

/* Map box */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: scale(1.02);
}

/* Button */
.btn-custom {
  background-color: #C77B30;
  color: #fff;
  border-radius: 8px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #A55D1A;
  color: #fff;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  iframe {
    height: 300px;
  }
}

/* ---------- Booking Section ---------- */
.consultation-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #fdf6ee, #fffaf4);
  font-family: "Poppins", sans-serif;
}

.consultation-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.consultation-left,
.consultation-right {
  flex: 1 1 45%;
  background: #fffdf9;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(199, 123, 48, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.consultation-left:hover,
.consultation-right:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(199, 123, 48, 0.25);
}

.consultation-left h2 {
  font-size: 30px;
  color: #7a4b18;
  font-weight: 700;
  margin-bottom: 12px;
}

.consultation-left h2 span {
  color: #c77b30;
  margin-right: 8px;
}

.consultation-left p {
  font-size: 16px;
  color: #4a4033;
  margin-bottom: 25px;
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

input,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0d6c7;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fffaf4;
}

input:focus,
select:focus {
  border-color: #c77b30;
  box-shadow: 0 0 8px rgba(199, 123, 48, 0.3);
  outline: none;
}

.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.btn-primary {
  background: linear-gradient(90deg, #c77b30, #b06a25);
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #b06a25, #8d581e);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1da851;
}

/* RIGHT SIDE */
.consultation-right h3 {
  font-size: 24px;
  color: #4a2b0e;
  font-weight: 700;
  margin-bottom: 20px;
}

.steps-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
}

.step {
  background: #fff8ef;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #f1dfca;
  transition: 0.3s;
}

.step:hover {
  background: #ffe8c7;
  border-color: #c77b30;
}

.arrow {
  color: #c77b30;
  font-weight: bold;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #c77b30, #a86522);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.cta-btn:hover {
  background: #8b5215;
  transform: translateY(-3px);
}

.voice-search {
  margin-top: 25px;
  background: #fffaf3;
  padding: 18px;
  border-left: 5px solid #c77b30;
  border-radius: 12px;
}

.voice-search ul {
  list-style: "🎤 ";
  padding-left: 25px;
  margin-top: 10px;
  color: #5c4a3a;
}

@media (max-width: 900px) {
  .consultation-container {
    flex-direction: column;
  }

  .consultation-left,
  .consultation-right {
    flex: 1 1 100%;
  }
}

/* Online Consultation Steps */
.steps-row {
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1rem;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.arrow {
  color: #c77b30;
  font-weight: bold;
  font-size: 1.2rem;
}

.voice-query {
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .section-heading {
    font-size: 24px;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .arrow {
    display: none;
  }

  .btn-accent,
  .btn-outline-accent {
    display: block;
    margin: 0.5rem auto;
  }
}

/* Shared styling */
.section-title {
  font-size: 30px;
  font-weight: 600;
  color: #a45c26;
}

.section-subtext {
  color: #555;
  font-size: 18px;
  margin-top: 10px;
}

/* Blog Section */
/* 🌿 General Styling */
.section-title {
  font-size: 30px;
  font-weight: 600;
  color: #a45c26;
  text-shadow: 0 1px 2px rgba(180, 120, 50, 0.2);
}

.section-subtext {
  color: #5c4735;
  font-size: 18px;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

/* 🌿 Blog Section */
.blog-section {
  background: radial-gradient(circle at top, #fffaf0, #ffe8cc);
  padding: 80px 20px;
  font-family: 'Lato', sans-serif;
}

.section-title {
  color: #7b4b00;
  font-weight: 700;
  font-size: 2.3rem;
}

.section-subtext {
  color: #6b4b20;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  border: 1px solid #f2d9b3;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(200, 150, 80, 0.25);
}

.read-more {
  color: #a66b00;
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  color: #6c4400;
}

/* 🌿 FAQ Section */
.faq-section {
  margin-top: 60px;
  background: #fff9ef;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 6px 25px rgba(180, 130, 60, 0.15);
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #7b4b00;
  margin-bottom: 35px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.faq-item {
  background: #fff;
  border: 1px solid #f1d3a5;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 25px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #5a3e1b;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 25px;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  color: #b57700;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fffdf8;
  color: #4d3319;
  padding: 0 25px;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 25px 25px;
  opacity: 1;
}

/* ✨ More Questions CTA */
.more-questions {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: #5c3a10;
}

.more-questions .btn {
  margin-top: 10px;
  background: linear-gradient(45deg, #a6781b, #d2a25e);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.more-questions .btn:hover {
  background: linear-gradient(45deg, #8d5c00, #c48f3c);
  transform: scale(1.05);
}

/* 🌾 Responsive */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


/* FAQ Text Styling ends */

.faq-section h4 {
  font-size: 22px;
  color: #704214;
  margin-bottom: 10px;
}

.faq-section li {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

/* 🌞 Clinic Section */
.clinic-section {
  background: linear-gradient(180deg, #ffe8c9 0%, #fff9ef 100%);
  color: #444;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.clinic-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 140, 0.2), transparent 70%);
  animation: softLight 15s infinite alternate ease-in-out;
}

@keyframes softLight {
  0% {
    transform: translate(0, 0);
    opacity: 0.8;
  }

  50% {
    transform: translate(-5%, 5%);
    opacity: 1;
  }

  100% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
}

.contact-details {
  max-width: 700px;
  margin: 0 auto 40px auto;
  text-align: left;
  line-height: 1.8;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(199, 123, 48, 0.1);
}

.contact-details a {
  color: #a45c26;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.qr-container img {
  width: 130px;
  height: 130px;
  border: 3px solid #c77b30;
  border-radius: 10px;
  padding: 5px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(199, 123, 48, 0.3);
}

.qr-container p {
  font-size: 15px;
  margin-top: 8px;
  color: #704214;
  font-weight: 500;
}

/* ✨ Scroll-triggered Fade Animations */
.fade-section,
.fade-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.fade-section.visible,
.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .contact-details {
    font-size: 16px;
  }

  .qr-container img {
    width: 100px;
    height: 100px;
  }
}

/* 🌟 Golden Shimmer Divider Between Sections in the blog and address*/
.section-divider {
  width: 200px;
  height: 3px;
  margin: 50px auto;
  border-radius: 3px;
  background: linear-gradient(90deg,
      rgba(199, 123, 48, 0) 0%,
      rgba(199, 123, 48, 0.8) 50%,
      rgba(199, 123, 48, 0) 100%);
  position: relative;
  overflow: hidden;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 230, 150, 0.9),
      transparent);
  animation: shimmerMove 3s infinite linear;
}

@keyframes shimmerMove {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}


/* for hidden aeo*/

.visually-hidden {
  position: absolute !important;
  height: 1px; 
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}


/* for hidden seo*/
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* seo end */
