/* =======================
   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);
}

/* FORM CARD */
.consult-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(61,43,38,0.25);
  border-top: 5px solid #723421;
}

.consult-form h4 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #3d2b26;
}

.form-control {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #e0d6d2;
}

.form-control:focus {
  border-color: #723421;
  box-shadow: 0 0 0 0.15rem rgba(114,52,33,0.25);
}

/* SUBMIT */
.submit-btn {
  background: #723421;
  color: #fff;
  border-radius: 30px;
  padding: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #3d2b26;
}
@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-----------*/
:root{
  --primary:#723421;
  --secondary:#3d2b26;
  --soft:#f8f3f1;
}

/* SECTION */
.sexologist-info {
  padding: 60px 0;
  background: var(--soft);
  overflow: hidden;
}

/* LEFT CONTENT */
.info-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary);
}

.info-title span {
  color: var(--primary);
}

.info-text {
  font-size: 18px;
  margin-top: 15px;
  color: #555;
  line-height: 1.7;
}

/* RIGHT BOX */
.info-box {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.info-box:hover {
  transform: translateY(-6px);
}

/* ICON */
.info-icon {
  width: 55px;
  height: 55px;
  background: rgba(114,52,33,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* TEXT */
.info-box h6 {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--secondary);
}

/* ANIMATION */
.fade-left {
  animation: fadeLeft 1s ease forwards;
}

.fade-right {
  animation: fadeRight 1s ease forwards;
}

.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
.delay-4 { animation-delay: .8s; }

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* MOBILE */
@media(max-width:768px){
  .info-title { font-size: 28px; }
}

/*------------Service area------------*/
/* SECTION */
.treat-section{
  padding:60px 0;
  background:#ffffff;
}

/* HEADER */
.section-title{
  font-size:38px;
  font-weight:800;
  color:var(--secondary);
}

.section-sub{
  font-size:18px;
  color:#666;
  margin-top:10px;
}

/* CARD */
.modern-card{
  background:#ffffff;
  border-radius:22px;
  padding:32px 28px;
  height:100%;
  box-shadow:
    0 25px 50px rgba(0,0,0,0.08),
    0 8px 16px rgba(0,0,0,0.04);
  transition:all 0.35s ease;
  position:relative;
  overflow:hidden;
}

/* Accent glow */
.modern-card::after{
  content:"";
  position:absolute;
  inset:auto -60% -60% auto;
  width:200px;
  height:200px;
  background:radial-gradient(circle, rgba(114,52,33,0.25), transparent 70%);
  opacity:0;
  transition:0.4s;
}

.modern-card:hover::after{
  opacity:1;
}

.modern-card:hover{
  transform:translateY(-10px);
}

/* ICON */
.icon-wrap{
  width:62px;
  height:62px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:26px;
  box-shadow:0 12px 25px rgba(114,52,33,0.35);
  margin-bottom:18px;
}

/* TITLE */
.problem-title{
  font-size:22px;
  font-weight:700;
  color:var(--secondary);
  margin-bottom:10px;
}

/* LIST */
.modern-card ul{
  padding-left:18px;
  margin-bottom:0;
}

.modern-card ul li{
  margin-bottom: 0px;
    color: #555;
    
}

/* NOTE */
.treat-note{
  margin-top:45px;
  font-size:18px;
  font-weight:600;
  color:var(--primary);
  text-align:center;
}

/* ANIMATION */
.fade-up{
  animation:fadeUp 1s ease forwards;
}

.delay-1{animation-delay:.15s;}
.delay-2{animation-delay:.35s;}
.delay-3{animation-delay:.55s;}
.delay-4{animation-delay:.75s;}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(40px);}
  to{opacity:1; transform:translateY(0);}
}

/* MOBILE */
@media(max-width:768px){
  .section-title{font-size:28px;}
}
/*--------------About Section-------------*/
/* ======================
   EXPERT SECTION
====================== */
.expert-section {
  position: relative;
  padding: 60px 0;
  background: #f8f3f1;
  overflow: hidden;
}



/* ======================
   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%;
 
  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: #f8f3f1;
  overflow: hidden;
}


/* =====================
   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%;
  }
}

/*-------Online Consultation --------------*/
/* =====================
   BASE
===================== */
.online-verdict-section {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

/* =====================
   LEFT QUESTION
===================== */
.verdict-question {
  background: #faf4f1;
  border-left: 6px solid #723421;
  padding: 40px 34px;
  border-radius: 22px;
  height: 100%;
  animation: fadeLeft 1s ease forwards;
}

.verdict-question h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #3d2b26;
}

.verdict-question p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #4f3a33;
}

/* =====================
   RIGHT VERDICT
===================== */
.verdict-box {
  padding: 30px;
  animation: fadeRight 1s ease forwards;
}

.verdict-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #3d2b26;
  margin-bottom: 24px;
}

/* Checklist */
.verdict-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verdict-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-weight: 600;
  color: #3d2b26;
  animation: checkIn .9s ease forwards;
}

.verdict-list li:nth-child(1){animation-delay:.2s;}
.verdict-list li:nth-child(2){animation-delay:.4s;}
.verdict-list li:nth-child(3){animation-delay:.6s;}

.verdict-list i {
  color: #723421;
  margin-top: 3px;
}

/* Note */
.verdict-note {
  margin-top: 28px;
  background: #ffffff;
  border-left: 5px solid #723421;
  padding: 18px 22px;
  border-radius: 14px;
  font-weight: 600;
  color: #4f3a33;
  animation: fadeUp 1.2s ease forwards;
}

/* =====================
   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 checkIn {
  from { opacity:0; transform: translateX(-20px); }
  to { opacity:1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(25px); }
  to { opacity:1; transform: translateY(0); }
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width: 992px) {
  .online-verdict-section {
    padding: 70px 0;
  }
  .verdict-question h2 {
    font-size: 2rem;
  }
}


/* =====================
  Faq Section
===================== */
.privacy-faq-section {
  background: #ffffff;
  padding: 60px 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;
}

/*---------------------*/

/* LEFT CONTENT */

.left-content{
   
    position:relative;
    z-index:2;
}

.top-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(114,52,33,0.1);
    color:#723421;
    padding:8px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:30px;
}

.top-badge i{
    color:#723421;
}

.main-heading{
    font-size:38px;
    line-height:44px;
    font-weight:800;
    color:#3d2b26;
    margin-bottom:28px;
}

.main-heading span{
    color:#723421;
    position:relative;
}

.main-heading span::after{
    content:'';
    position:absolute;
    left:0;
    bottom:6px;
    width:100%;
    height:14px;
    background:rgba(114,52,33,0.15);
    z-index:-1;
    border-radius:50px;
}

.description{
    font-size:18px;
    line-height:24px;
    color:#5f5957;
    margin-bottom:45px;
    max-width:95%;
}

/* FEATURES */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature-card{
    background:#fff;
    border-radius:24px;
    padding:25px;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(61,43,38,0.12);
}

.feature-card::before{
    content:'';
    position:absolute;
    width:90px;
    height:90px;
    background:rgba(114,52,33,0.05);
    border-radius:50%;
    top:-30px;
    right:-30px;
}

.feature-icon{
    width:60px;

    height:60px;
    border-radius:20px;
    background:linear-gradient(135deg,#3d2b26,#723421);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    margin-bottom:20px;
}

.feature-card h5{
    font-size:17px;
    line-height:1.7;
    color:#2d2d2d;
    font-weight:600;
    margin:0;
}

/* BUTTON */

.action-area{
    margin-top:45px;
    display:flex;
    align-items:center;
    gap:20px;
}

.main-btn{
    display:inline-block;
    background:linear-gradient(135deg,#3d2b26,#723421);
    color:#fff;
    text-decoration:none;
    padding:12px 36px;
    border-radius:60px;
    font-size:16px;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 15px 35px rgba(114,52,33,0.22);
}

.main-btn:hover{
    color:#fff;
    transform:translateY(-4px);
}

.support-box{
    display:flex;
    align-items:center;
    gap:15px;
}

.support-box i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#723421;
    font-size:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.support-box span{
    font-size:13px;
    color:#888;
}

.support-box h6{
    margin:0;
    color:#3d2b26;
    font-size:18px;
    font-weight:700;
}

/* RIGHT SIDE */

.right-side{
    position:relative;
    background:linear-gradient(135deg,#3d2b26,#723421);
    min-height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

/* DECORATION */

.right-side::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:50%;
}

.right-side::after{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    bottom:-90px;
    right:-70px;
}

/* DOCTOR CARD */

.doctor-card{
    position:relative;
    z-index:2;
    width:90%;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    border-radius:32px;
    padding:45px 35px;
    text-align:center;
    color:#fff;
}

.doctor-icon{
    width:120px;
    height:120px;
    border-radius:30px;
    background:rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:30px;
}

.doctor-icon i{
    font-size:55px;
}

.doctor-card h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:18px;
    color: #fff;
}

.doctor-card p{
    font-size:16px;
    line-height:24px;
    color: #fff;
}

.small-badge{
    display:inline-block;
    margin-top:28px;
    background:#fff;
    color:#723421;
    padding:12px 30px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .main-heading{
        font-size:46px;
    }

   
}

@media(max-width:991px){
    .small-badge{ line-height: 19px;}
    
    .doctor-card h2{ font-size: 32px;}
    .main-heading{
        font-size:38px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .description{
        max-width:100%;
    }

    .right-side{
        min-height:500px;
        margin-top: 30px;
    }

    .action-area{
        flex-direction:column;
        text-align: center;
    }
}


/* =========================
           CUSTOM CTA SECTION
        ========================= */

        .ga-cta-section{
            position:relative;
            overflow:hidden;
            background:linear-gradient(135deg,#3d2b26 0%, #723421 100%);
            padding:60px 20px;
        }

        /* BACKGROUND EFFECTS */

        .ga-cta-section::before{
            content:'';
            position:absolute;
            width:600px;
            height:600px;
            background:rgba(255,255,255,0.05);
            border-radius:50%;
            top:-250px;
            right:-180px;
        }

        .ga-cta-section::after{
            content:'';
            position:absolute;
            width:400px;
            height:400px;
            background:rgba(255,255,255,0.04);
            border-radius:50%;
            bottom:-180px;
            left:-120px;
        }

        /* CONTENT */

        .ga-cta-content{
            position:relative;
            z-index:2;
            max-width:1100px;
            margin:auto;
            text-align:center;
        }

        /* BADGE */

        .ga-cta-badge{
            display:inline-flex;
            align-items:center;
            gap:10px;
            background:rgba(255,255,255,0.12);
            color:#fff;
            padding:12px 28px;
            border-radius:60px;
            font-size:14px;
            font-weight:600;
            margin-bottom:35px;
            backdrop-filter:blur(8px);
        }

        .ga-cta-badge i{
            color:#ffd7c9;
        }

        /* HEADING */

        .ga-cta-heading{
            font-size:38px;
            line-height:36px;
            font-weight:800;
            color:#fff;
            margin-bottom:20px;
        }

        .ga-cta-heading span{
            color:#ddd;
            position:relative;
        }

        .ga-cta-heading span::after{
            content:'';
            position:absolute;
            left:0;
            bottom:10px;
            width:100%;
            height:18px;
            background:rgba(255,255,255,0.12);
            border-radius:50px;
            z-index:-1;
        }

        /* DESCRIPTION */

        .ga-cta-description{
            font-size:20px;
            line-height:26px;
            color:rgba(255,255,255,0.88);
            max-width:900px;
            margin:auto auto 30px;
        }

        /* CALL BUTTON */

        .ga-call-btn{
            display:inline-flex;
            align-items:center;
            gap:10px;
            background:#fff;
            color:#723421;
            text-decoration:none;
            padding:10px 10px;
            border-radius:80px;
            font-size:20px;
            font-weight:700;
            transition:0.4s;
            box-shadow:0 20px 45px rgba(0,0,0,0.20);
        }

        .ga-call-btn:hover{
            transform:translateY(-5px);
            color:#3d2b26;
        }

        .ga-call-btn i{
            width:40px;
            height:40px;
            border-radius:50%;
            background:linear-gradient(135deg,#3d2b26,#723421);
            color:#fff;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:16px;
        }

        /* TRUST TEXT */

        .ga-trust-text{
            margin-top:35px;
            color:rgba(255,255,255,0.75);
            font-size:16px;
            letter-spacing:0.5px;
        }

        /* RESPONSIVE */

        @media(max-width:991px){

            .ga-cta-section{
                padding:90px 20px;
            }

            .ga-cta-heading{
                font-size:52px;
            }

            .ga-cta-description{
                font-size:18px;
                line-height:1.8;
            }

            .ga-call-btn{
                font-size:18px;
                padding:18px 28px;
            }
        }

        @media(max-width:576px){

            .ga-cta-heading{
                font-size:36px;
                line-height: 44px;
            }

            .ga-cta-description{
                font-size:16px;
            }

            .ga-call-btn{
                width:100%;
                justify-content:center;
                font-size:15px;
                padding:10px 10px;
            }

            .ga-call-btn i{
                width:52px;
                height:52px;
                font-size:16px;
            }
        }

/* ===================================
   HERO SECTION
=================================== */

.ga-hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:120px 0;
    background:url('assets/img/bg.jpg') center center/cover no-repeat;
}

/* OVERLAY */

.ga-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
    rgba(0,0,0,0.82),
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.78));
}

/* CONTENT */

.ga-content{
    position:relative;
    z-index:2;
    color:#fff;
}

/* BADGE */

.ga-top-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.10);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
    padding:12px 22px;
    border-radius:60px;
    font-size:14px;
    font-weight:600;
    margin-bottom:30px;
}

.ga-top-badge i{
    color:#f7bb36;
}

/* BLINK EFFECT */

.ga-blink-text{
    animation:softBlink 1.5s infinite;
}

@keyframes softBlink{

    0%{
        opacity:1;
    }

    50%{
        opacity:0.4;
    }

    100%{
        opacity:1;
    }
}

/* TITLE */

.ga-title{
    font-size:45px;
    line-height:60px;
    font-weight:800;
    margin-bottom:25px;
    color:#fff;
}

/* SMOOTH TYPING EFFECT */

.ga-typing-text{
    color:#f7bb36;
    overflow:hidden;
    white-space:nowrap;
    border-right:3px solid #f7bb36;
    display:inline-block;
    width:0;
    vertical-align:bottom;
    animation:
    typing 4s steps(22,end) infinite,
    cursorBlink 0.8s infinite;
}

/* TYPING */

@keyframes typing{

    0%{
        width:0;
    }

    40%{
        width:55%;
    }

    80%{
        width:55%;
    }

    100%{
        width:0;
    }
}

/* CURSOR */

@keyframes cursorBlink{

    0%,50%{
        border-color:#f7bb36;
    }

    51%,100%{
        border-color:transparent;
    }
}

/* SUBTITLE */

.ga-subtitle{
    font-size:20px;
    line-height:26px;
    color:#fff;
    margin-bottom:35px;
}

/* BENEFITS */

.ga-benefits{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:40px;
}

.ga-benefit-box{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.12);
    padding:5px 10px;
    border-radius:30px;
    color:#fff;
    font-size:14px;
    font-weight:500;
}

.ga-benefit-box i{
    color:#fff;
    margin-right:8px;
}

/* BUTTONS */

.ga-btn-group{
    gap:18px;
    flex-wrap:wrap;
}

.ga-call-btn{
    background:linear-gradient(135deg,#482318,#a14e2f);
    color:#fff;
    padding:10px 25px;
    border-radius:60px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 12px 30px rgba(114,52,33,0.30);
}

.ga-call-btn:hover{
    background:#8f452b;
    color:#fff;
    transform:translateY(-4px);
}

.ga-whatsapp-btn{
    background:#fff;
    color:#3d2b26;
    padding:18px 34px;
    border-radius:60px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.4s;
}

.ga-whatsapp-btn:hover{
    color:#3d2b26;
    transform:translateY(-4px);
}

/* FORM BOX */

.ga-form-box{
    position:relative;
    z-index:2;
    background:rgb(0 0 0 / 9%);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:30px;
    padding:20px;
    box-shadow:0 25px 50px rgba(0,0,0,0.35);
    text-align:center;
}

.ga-form-box h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

/* FORM INPUTS */

.ga-form-box .form-control{
    height:45px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.08);
    color:#fff;
    padding:15px 20px;
    font-size:15px;
}

.ga-form-box textarea.form-control{
    height:100px;
    resize:none;
}

.ga-form-box .form-control::placeholder{
    color:rgba(255,255,255,0.65);
}

.ga-form-box .form-control:focus{
    box-shadow:none;
    border-color:#ddd;
    background:rgba(255,255,255,0.10);
    color:#fff;
}

/* SUBMIT BUTTON */

.ga-submit-btn{
    width:100%;
    border:none;
    background:linear-gradient(135deg,#482318,#a14e2f);
    color:#fff;
    padding:15px;
    border-radius:30px;
    font-size:16px;
    font-weight:700;
    transition:0.4s;
}

.ga-submit-btn:hover{
    transform:translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:991px){
    
    @keyframes typing{

    0%{
        width:0;
    }

    40%{
        width:90%;
    }

    80%{
        width:90%;
    }

    100%{
        width:0;
    }
}

    .ga-hero{
        padding:90px 0;
    }

    .ga-title{
        font-size:48px;
        line-height:58px;
    }

    .ga-subtitle{
        font-size:18px;
        line-height:1.8;
    }

    .ga-form-box{
        margin-top:20px;
    }
}

@media(max-width:576px){
    .problem-title{ margin-top: 10px;}
    .icon-wrap{ margin: auto;}
    .modern-card{ text-align: center;}
    
    .feature-card h5{ margin-top: 10px; line-height: 24px;}
    
    .feature-card{ text-align:center;}
    .feature-icon{ margin: auto;}

    .ga-call-btn{
        margin:auto;
        max-width:200px;
    }

    .ga-whatsapp-btn{
        margin:auto;
        max-width:300px;
    }

    .ga-title{
        font-size:34px;
        line-height:46px;
    }

    .ga-typing-text{
        display:block;
        margin-top:8px;
    }

    .ga-subtitle{
        font-size:20px;
        line-height:30px;
    }

    .ga-btn-group{
        flex-direction:column;
        display:flex;
    }

    .ga-call-btn,
    .ga-whatsapp-btn{
        width:100%;
        text-align:center;
    }

    .ga-form-box{
        padding:30px 20px;
    }
}
