/* =======================
   HERO SECTION
======================= */
.ayur-hero {
  background: linear-gradient(120deg, #723421, #3d2b26);
  padding: 160px 0px 80px 0px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Decorative Floating Shape */
.ayur-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  animation: float 9s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(30px); }
  100% { transform: translateY(0); }
}

/* Animations */
.fade-slide {
  animation: fadeSlide 1.2s ease forwards;
}

.fade-slide-delay {
  animation: fadeSlide 1.2s ease forwards;
  animation-delay: .4s;
  opacity: 0;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Headings */
.ayur-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
    color: #fff;
}

.ayur-subtitle {
  font-size: 1.15rem;
  letter-spacing: .5px;
  opacity: .95;
    color: #fff;
}

/* Trust Strip */
.trust-strip {
  background: rgba(255,255,255,0.12);
  border-left: 4px solid #e7c9a9;
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-block;
  margin: 22px 0;
  font-size: 0.95rem;
}

/* CTA Buttons */
.hero-btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: all .35s ease;
  border: none;
}

.call-btn {
  background: #f5e6d3;
  color: #3d2b26;
}

.call-btn:hover {
  background: #ecd5b7;
  transform: translateY(-2px);
    color: #000;
}

.whatsapp-btn {
  background: #8a4a2f;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #723421;
  transform: translateY(-2px);
}

/* Image Styling */
.hero-img {
  border-radius: 10px;
    animation:hero 5s infinite ease-in-out;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.35));
}
@keyframes hero {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-15px)}
}

/* Responsive */
@media(max-width: 768px) {
  .ayur-title {
    font-size: 1.7rem;
  }
    .ayur-hero{
        padding: 100px 0px 80px 0px;
    }
    .whatsapp-btn{ margin-top: 10px;}
}
/*===============Feature area-----------*/
/* ======================
   SECTION BASE
====================== */
.pe-section {
  position: relative;
  padding: 100px 0;
  background: #f8f4f1;
  overflow: hidden;
}

/* Floating Background Orb */
.pe-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(114,52,33,0.15), transparent 70%);
  top: -120px;
  left: -120px;
  animation: floatBg 10s infinite alternate ease-in-out;
}

@keyframes floatBg {
  from { transform: translate(0,0); }
  to { transform: translate(40px, 50px); }
}

/* ======================
   TEXT CONTENT
====================== */
.pe-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #3d2b26;
  line-height: 1.3;
  animation: textReveal 1.2s ease forwards;
}

.pe-desc {
  font-size: 1.05rem;
  color: #4b3a34;
  margin-top: 18px;
  animation: textReveal 1.4s ease forwards;
}

@keyframes textReveal {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================
   HELP MESSAGE
====================== */
.help-box {
  background: linear-gradient(135deg, #723421, #3d2b26);
  color: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  margin-top: 30px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 0 rgba(114,52,33,.4); }
  50% { box-shadow: 0 0 35px rgba(114,52,33,.6); }
  100% { box-shadow: 0 0 0 rgba(114,52,33,.4); }
}

/* ======================
   SYMPTOM CARDS
====================== */
.symptom-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  opacity: 0;
  animation: cardUp 0.9s ease forwards;
}

.symptom-card:nth-child(1) { animation-delay: .2s; }
.symptom-card:nth-child(2) { animation-delay: .4s; }
.symptom-card:nth-child(3) { animation-delay: .6s; }
.symptom-card:nth-child(4) { animation-delay: .8s; }

@keyframes cardUp {
  from { opacity: 0; transform: translateY(40px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.symptom-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Icon Animation */
.symptom-icon {
  width: 58px;
  height: 58px;
  background: #f3e4dc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #723421;
  font-size: 24px;
  animation: iconPulse 2.5s infinite;
}

@keyframes iconPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ======================
   RESPONSIVE
====================== */
@media(max-width: 768px) {
  .pe-title {
    font-size: 2rem;
  }
    
    .pe-section{ padding: 60px 0px;}
}
/*--------------About Section-------------*/
/* ======================
   EXPERT SECTION
====================== */
.expert-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f2ee, #efe6e0);
  overflow: hidden;
}

/* Decorative Accent */
.expert-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(114,52,33,0.12), transparent 70%);
  right: -120px;
  top: -100px;
  animation: floatAccent 10s infinite alternate ease-in-out;
}

@keyframes floatAccent {
  from { transform: translate(0,0); }
  to { transform: translate(-40px, 40px); }
}

/* ======================
   DOCTOR CARD
====================== */
.expert-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  animation: cardReveal 1.1s ease forwards;
}

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(45px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Profile Image */
.expert-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #723421;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  animation: imgPop 1.2s ease forwards;
}

@keyframes imgPop {
  from { opacity: 0; transform: scale(.85); }
  to { opacity: 1; transform: scale(1); }
}

/* Text */
.expert-title {
  font-size: 2rem;
  font-weight: 700;
  color: #3d2b26;
}

.expert-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #723421;
  margin-top: 10px;
}

/* Credentials */
.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-weight: 600;
  color: #4b3a34;
}

.credential i {
  color: #723421;
}

/* Stats */
.stat-box {
  background: linear-gradient(135deg, #723421, #3d2b26);
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
    font-size: 20px;
  animation: pulseStat 3s infinite;
}

@keyframes pulseStat {
  0% { box-shadow: 0 0 0 rgba(114,52,33,.4); }
  50% { box-shadow: 0 0 30px rgba(114,52,33,.6); }
  100% { box-shadow: 0 0 0 rgba(114,52,33,.4); }
}

/* Privacy Box */
.privacy-box1 {
  background: #f5ebe4;
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  color: #3d2b26;
  border-left: 5px solid #723421;
  animation: slideIn 1.2s ease forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media(max-width: 768px) {
  .expert-title {
    font-size: 1.9rem;
  }
}
/*------------Why-----------*/
/* =====================
   BASE
===================== */
.pe-cause-section {
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

/* =====================
   LEFT TEXT
===================== */
.cause-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3d2b26;
  position: relative;
  animation: fadeUp 1s ease forwards;
}

.cause-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #723421;
  display: block;
  margin-top: 14px;
  animation: lineGrow 1.3s ease forwards;
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 80px; }
}

.cause-desc {
  margin-top: 22px;
  color: #4f3a33;
  font-size: 1.05rem;
  animation: fadeUp 1.2s ease forwards;
}

.cause-list {
  margin-top: 28px;
}

.cause-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 5px;
  animation: slideLeft 1s ease forwards;
}

.cause-item i {
  color: #723421;
  margin-top: 4px;
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-35px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Warning */
.cause-warning {
  margin-top: 30px;
  background: #faf4f1;
  border-left: 5px solid #723421;
  padding: 18px 22px;
  border-radius: 12px;
  font-weight: 600;
  color: #3d2b26;
  animation: fadeUp 1.4s ease forwards;
}

/* =====================
   RIGHT IMAGE
===================== */
.image-wrap {
  position: relative;
  animation: fadeIn 1.3s ease forwards;
}

.pe-image {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  
  animation: floatImg 6s infinite ease-in-out;
}

@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width: 992px) {
  .pe-cause-section {
    padding: 80px 0;
  }
  .pe-image {
    margin-top: 40px;
  }
}


/*----------Treatment section------*/
/* =====================
   TREATMENT SECTION
===================== */
/* =====================
   BASE SECTION
===================== */
   .treatment-section {
  position: relative;
  padding: 80px 0;
  background: #f8f4f1;
  overflow: hidden;
}

/* Floating Background Orb */
.treatment-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(114,52,33,0.15), transparent 70%);
  top: -120px;
  left: -120px;
  animation: floatBg 10s infinite alternate ease-in-out;
}

@keyframes floatBg {
  from { transform: translate(0,0); }
  to { transform: translate(40px, 50px); }
}
/* =====================
   LEFT CONTENT
===================== */
.treat-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3d2b26;
}

.treat-subtext {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #4f3a33;
  max-width: 540px;
}

/* Trust bullets */
.trust-points {
  margin-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3d2b26;
}

.trust-item i {
  color: #723421;
}

/* =====================
   RIGHT PROCESS (DESKTOP)
===================== */
.process-wrap {
  position: relative;
  padding-left: 50px;
}

.process-wrap::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #723421, transparent);
}

.process-step {
  position: relative;
  padding-left: 60px;
  margin-bottom: 36px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #723421, #3d2b26);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-text {
  font-weight: 600;
  color: #4b342e;
}

/* =====================
   MOBILE FIXES
===================== */
@media (max-width: 768px) {

  .treatment-section {
    padding: 70px 0;
  }

  .treat-title {
    font-size: 2rem;
  }

  /* Force vertical stacking */
  .process-step {
    display: block;
  }

  .step-number {
    
    margin-bottom: 8px;
  }

  .step-text {
    display: block;
    width: 100%;
  }
}
/*----------Benefits section--------*/

/* =====================
   Benefits 
===================== */
.benefit-pill-section {
  background: #ffffff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}


/* =====================
   CONTENT
===================== */
.benefit-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.benefit-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #3d2b26;
  animation: fadeDown 1s ease forwards;
}

.benefit-subtext {
  max-width: 640px;
  margin: 18px auto 40px;
  color: #4f3a33;
  font-size: 1.05rem;
  animation: fadeDown 1.2s ease forwards;
}

/* =====================
   PILLS
===================== */
.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.benefit-pill {
  background: #ffffff;
  border: 2px solid #723421;
  color: #3d2b26;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  animation: pillPop .9s ease forwards;
  opacity: 0;
}

.benefit-pill:nth-child(1){animation-delay:.2s;}
.benefit-pill:nth-child(2){animation-delay:.4s;}
.benefit-pill:nth-child(3){animation-delay:.6s;}
.benefit-pill:nth-child(4){animation-delay:.8s;}
.benefit-pill:nth-child(5){animation-delay:1s;}

@keyframes pillPop {
  from { opacity:0; transform: scale(.85); }
  to { opacity:1; transform: scale(1); }
}

.benefit-pill i {
  color: #723421;
}

/* =====================
   FOOTNOTE
===================== */
.benefit-footnote {
  margin-top: 40px;
  background: #faf4f1;
  border-left: 5px solid #723421;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #3d2b26;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1.3s ease forwards;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeDown {
  from { opacity:0; transform: translateY(-25px); }
  to { opacity:1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(25px); }
  to { opacity:1; transform: translateY(0); }
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width: 576px) {
  .benefit-title {
    font-size: 2rem;
  }
  .benefit-pill {
    font-size: .9rem;
    padding: 12px 18px;
  }
}
/*-------------consult Section-----------*/
/* ======================
   BASE
====================== */
.app-consult-section {
  background: #ffffff;
  padding: 40px 0px 80px 0px;
}

/* ======================
   LEFT CONTENT
====================== */
.app-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3d2b26;
  animation: fadeLeft 1s ease forwards;
}

.app-question {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #5a433b;
  animation: fadeLeft 1.2s ease forwards;
}

/* CTA */
.app-cta {
  margin-top: 28px;
  background: linear-gradient(135deg, #723421, #3d2b26);
  color: #ffffff;
  padding: 16px 26px;
  border-radius: 14px;
  font-weight: 700;
  display: inline-block;
  animation: pulseCTA 3s infinite;
}

@keyframes pulseCTA {
  0% { box-shadow: 0 0 0 rgba(114,52,33,.45); }
  50% { box-shadow: 0 0 35px rgba(114,52,33,.7); }
  100% { box-shadow: 0 0 0 rgba(114,52,33,.45); }
}

/* ======================
   FEATURE RAIL
====================== */
.feature-rail {
  margin-top: 50px;
}

.rail-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-left: 5px solid #723421;
  background: #faf4f1;
  border-radius: 14px;
  margin-bottom: 18px;
  animation: slideUp .9s ease forwards;
  opacity: 0;
}

.rail-item:nth-child(1){animation-delay:.2s;}
.rail-item:nth-child(2){animation-delay:.4s;}
.rail-item:nth-child(3){animation-delay:.6s;}

.rail-icon {
  width: 46px;
  height: 46px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #723421;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}

.rail-text {
  font-weight: 600;
  color: #3d2b26;
}
.consultation-img img{
    border-radius: 10px;
    margin-top: 20px;
}

/* ======================
   ANIMATIONS
====================== */
@keyframes fadeLeft {
  from { opacity:0; transform: translateX(-30px); }
  to { opacity:1; transform: translateX(0); }
}

@keyframes slideUp {
  from { opacity:0; transform: translateY(25px); }
  to { opacity:1; transform: translateY(0); }
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
  .app-consult-section {
    padding: 70px 0;
  }
  .app-title {
    font-size: 2rem;
  }
}

/*================Trust Section-------------*/

/* =====================
   BASE
===================== */
.ptx-section {
  position: relative;
  padding: 70px 0;
  background: #f8f4f1;
  overflow: hidden;
}

/* Floating Background Orb */
.ptx-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(114,52,33,0.15), transparent 70%);
  top: -120px;
  left: -120px;
  animation: ptxFloatBg 10s infinite alternate ease-in-out;
}

@keyframes ptxFloatBg {
  from { transform: translate(0,0); }
  to { transform: translate(40px,40px); }
}

/* =====================
   HEADER
===================== */
.ptx-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #3d2b26;
  animation: ptxFadeDown 1s ease forwards;
}

/* =====================
   TRUST BAR
===================== */
.ptx-bar {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.ptx-item {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 26px 18px;
  border-radius: 18px;
  background: #faf4f1;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  animation: ptxPop .9s ease forwards;
  opacity: 0;
}

.ptx-item:nth-child(1){animation-delay:.2s;}
.ptx-item:nth-child(2){animation-delay:.4s;}
.ptx-item:nth-child(3){animation-delay:.6s;}
.ptx-item:nth-child(4){animation-delay:.8s;}

@keyframes ptxPop {
  from { opacity:0; transform: translateY(30px) scale(.95); }
  to { opacity:1; transform: translateY(0) scale(1); }
}

/* Icon */
.ptx-icon {
  width: 58px;
  height: 58px;
  margin: auto;
  background: linear-gradient(135deg, #723421, #3d2b26);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: ptxIconPulse 3s infinite;
}

@keyframes ptxIconPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.ptx-text {
  margin-top: 16px;
  font-weight: 700;
  color: #3d2b26;
}

/* =====================
   FOOTNOTE
===================== */
.ptx-note {
  margin-top: 45px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border-left: 6px solid #723421;
  padding: 18px 22px;
  border-radius: 14px;
  font-weight: 600;
  color: #4f3a33;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  animation: ptxFadeUp 1.2s ease forwards;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes ptxFadeDown {
  from { opacity:0; transform: translateY(-25px); }
  to { opacity:1; transform: translateY(0); }
}

@keyframes ptxFadeUp {
  from { opacity:0; transform: translateY(25px); }
  to { opacity:1; transform: translateY(0); }
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width: 768px) {
  .ptx-section {
    padding: 70px 0;
  }
  .ptx-title {
    font-size: 2rem;
  }
}

/* =====================
  Faq Section
===================== */
.privacy-faq-section {
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

/* =====================
   LEFT – PRIVACY
===================== */
.privacy-box {
  background: linear-gradient(135deg, #723421, #3d2b26);
  color: #ffffff;
  padding: 40px;
  border-radius: 22px;
  height: 100%;
  animation: fadeLeft 1.1s ease forwards;
}

.privacy-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
    color: #fff;
}

.privacy-desc {
  opacity: 0.95;
  margin-bottom: 24px;
  font-size: 1.05rem;
    color: #fff;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 600;
  animation: slideIn .9s ease forwards;
}

.privacy-list li i {
  color: #f5e6d3;
}

/* =====================
   RIGHT – FAQ
===================== */
.faq-box {
  animation: fadeRight 1.1s ease forwards;
}

.faq-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #3d2b26;
  margin-bottom: 20px;
}

/* FAQ Item */
.faq-item {
  border: 1px solid #eee2db;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  animation: fadeUp .9s ease forwards;
}

.faq-question {
  background: #faf4f1;
  padding: 16px 18px;
  font-weight: 700;
  color: #3d2b26;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: #723421;
  transition: transform .3s ease;
}

.faq-answer {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
  color: #4f3a33;
  background: #ffffff;
}

.faq-item.active .faq-answer {
  padding: 16px 18px;
  max-height: 220px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeLeft {
  from { opacity:0; transform: translateX(-35px); }
  to { opacity:1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity:0; transform: translateX(35px); }
  to { opacity:1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(25px); }
  to { opacity:1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity:0; transform: translateX(-20px); }
  to { opacity:1; transform: translateX(0); }
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width: 992px) {
  .privacy-faq-section {
    padding: 70px 0;
  }
  .privacy-title,
  .faq-title {
    font-size: 1.9rem;
  }
}

/*============Award slider----------*/
/* ===== RENAMED AWARDS SECTION ===== */
.ga-awards-area {
    padding: 60px 0;
    background: linear-gradient(135deg, #f6ebe7, #ffffff);
    position: relative;
    overflow: hidden;
}

/* Heading (renamed) */
.ga-awards-heading {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 1.2s ease-in-out;
}
.ga-awards-heading h4 {
    font-size: 22px;
    color: #222;
}
.ga-awards-heading h2 {
    font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
    color: #3d2b26;
}
/* Image card (renamed) */
.ga-award-card {
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.12);
    transition: 0.4s;
    animation: fadeInUp 1.2s ease-in-out;
}
/* hover effects */
.ga-award-card:hover {
    transform: translateY(-10px) scale(1.02);
}
.ga-award-card img {
    width: 100%;
    border-radius: 10px;
    transition: 0.4s;
}
.ga-award-card:hover img {
    transform: scale(1.05);
}

/* animations */
@keyframes float {
from {
transform: translateY(0px);
}
to {
transform: translateY(25px);
}
}
@keyframes fadeInDown {
from {
opacity:0;
transform:translateY(-30px);
}
to {
opacity:1;
transform:translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity:0;
transform:translateY(40px);
}
to {
opacity:1;
transform:translateY(0);
}
}
/* center carousel images */
.carousel-item img {
    margin: 0 auto;
    max-height: 350px;
    object-fit: contain;
}

/*--------------CTA SECTION---------*/
/* =====================
   BASE
===================== */
.gcta-section {
  background: linear-gradient(135deg, #723421, #3d2b26);
  padding: 60px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Soft floating accent */
.gcta-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  top: -120px;
  right: -120px;
  animation: gctaFloatBg 10s infinite alternate ease-in-out;
}

@keyframes gctaFloatBg {
  from { transform: translate(0,0); }
  to { transform: translate(-40px,40px); }
}

/* =====================
   CONTENT
===================== */
.gcta-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
  animation: gctaFadeUp 1.1s ease forwards;
}

.gcta-title {
  font-size: 2.6rem;
  font-weight: 700;
    color: #fff;
}

.gcta-subtext {
  margin-top: 16px;
  font-size: 1.1rem;
  opacity: 0.95;
    color: #fff;
}

/* =====================
   CTA BUTTONS
===================== */
.gcta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.gcta-btn {
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .35s ease;
}

/* Call Button */
.gcta-call-btn {
  background: #ffffff;
  color: #3d2b26;
}

.gcta-call-btn:hover {
  background: #f3e4dc;
  transform: translateY(-3px);
}

/* WhatsApp Button */
.gcta-whatsapp-btn {
  background: #25D366;
  color: #ffffff;
  animation: gctaPulse 3s infinite;
}

.gcta-whatsapp-btn:hover {
  background: #1ebe5d;
    color: #fff;
  transform: translateY(-3px);
}

@keyframes gctaPulse {
  0% { box-shadow: 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 0 35px rgba(37,211,102,.6); }
  100% { box-shadow: 0 0 0 rgba(37,211,102,.4); }
}

/* =====================
   CLINIC INFO
===================== */
.gcta-clinic {
  margin-top: 50px;
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px;
  animation: gctaFadeUp 1.3s ease forwards;
}

.gcta-clinic p {
  margin-bottom: 8px;
  font-weight: 600;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes gctaFadeUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width: 768px) {
  .gcta-section {
    padding: 80px 0;
  }
  .gcta-title {
    font-size: 2.1rem;
  }
}

/*-----------Contact info------*/
/* ===== RENAMED CONTACT SECTION ===== */
.ga-contact-area {
    padding: 60px 0;
    background: linear-gradient(135deg, #f4f7fc, #ffffff);
    position: relative;
    overflow: hidden;
}

/* FORM CARD (renamed) */
.ga-appointment-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
    animation: fadeInLeft 1.2s ease-in-out;
}
/* HEADING */
.ga-appointment-card h2 {
    color: #3d2b26;
    margin-bottom: 20px;
}
/* INPUTS */
.form-control {
    border-radius: 10px;
}
/* BUTTON (renamed) */
.ga-submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #96513e, #a75f4a);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
}
.ga-submit-btn:hover {
    transform: scale(1.02);
}
/* INFO CARDS (renamed) */
.ga-info-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 8px 18px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInRight 1.2s ease-in-out;
    transition: 0.4s;
}
.ga-info-card:hover {
    transform: translateY(-8px);
}

.ga-info-card h5{
    font-weight: bold;
}
.ga-info-card p{
    color: #000;
    font-size: 17px;
}
/* ICON */
.ga-info-card i {
    font-size: 26px;
    color: #96513e;
}

/* ANIMATIONS */
@keyframes float {
from {
transform:translateY(0);
}
to {
transform:translateY(25px);
}
}
@keyframes fadeInLeft {
from {
opacity:0;
transform:translateX(-60px);
}
to {
opacity:1;
transform:translateX(0);
}
}
@keyframes fadeInRight {
from {
opacity:0;
transform:translateX(60px);
}
to {
opacity:1;
transform:translateX(0);
}
}

/*==============Location section---------------*/
/* ===== RENAMED SECTION ===== */
.ga-centre-area {
    padding: 60px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
/* floating shapes */
/*.ga-centre-area::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(167,95,74,0.12);
    border-radius: 50%;
    top: 5%;
    left: -90px;
    animation: float 6s infinite alternate;
}
.ga-centre-area::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(150,81,62,0.10);
    border-radius: 50%;
    bottom: 5%;
    right: -90px;
    animation: float 7s infinite alternate-reverse;
}*/
/* Heading (renamed) */
.ga-centre-heading {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 1.2s ease-in-out;
}
.ga-centre-heading h4 {
    color: #555;
    font-size: 18px;
}
.ga-centre-heading h2 {
    font-weight: 700;
    color: #723421;
}
/* Clinic Card (renamed) */
.ga-clinic-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    animation: fadeInUp 1.2s ease-in-out;
}
.ga-clinic-card:hover {
    transform: translateY(-10px);
}
/* Image */
.ga-clinic-card img {
    transition: 0.4s;
}
.ga-clinic-card:hover img {
    transform: scale(1.05);
}
/* Info Box (renamed) */
.ga-clinic-info {
    padding: 15px;
}
.ga-clinic-info h4 {
    font-size: 18px;
    color: #723421;
}
/* Rating box (renamed) */
.ga-rating-box {
    display: flex;
    align-items: center;
    gap: 5px;
}
/* Star color (renamed from .checked) */
.ga-star {
    color: #f4b400;
}

/* Animations */
@keyframes float {
from {
transform:translateY(0);
}
to {
transform:translateY(25px);
}
}
@keyframes fadeInDown {
from {
opacity:0;
transform:translateY(-30px);
}
to {
opacity:1;
transform:translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity:0;
transform:translateY(40px);
}
to {
opacity:1;
transform:translateY(0);
}
}
/*---------------*/

.ga-footer {
  background: linear-gradient(135deg, #723421, #3d2b26);
  
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Soft floating accent */
.ga-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  top: -120px;
  right: -120px;
  animation: gctaFloatBg 10s infinite alternate ease-in-out;
}

