/* ========================
   CSS VARIABLES — edit these to restyle the entire site
   ======================== */
:root {
  --navy:            #1a2e5e;
  --navy-light:      #1a2e5e;
  --teal:            #00b4a0;
  --teal-light:      #00cdb8;
  --teal-pale:       #e6f7f5;
  --bg-light:        #f2fbfa;
  --bg-white:        #ffffff;
  --text-dark:       #1a2e5e;
  --text-gray:       #5a6478;
  --text-light:      #8a94a6;
  --border:          #d4eeeb;
  --shadow-sm:       0 2px 12px rgba(0,180,160,0.08);
  --shadow-md:       0 6px 24px rgba(0,180,160,0.14);
  --shadow-lg:       0 12px 40px rgba(0,180,160,0.18);
  --radius:          14px;
  --radius-lg:       24px;
  --radius-pill:     100px;
  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --gradient-teal:   linear-gradient(135deg, #00b4a0 0%, #00d4c0 100%);
  --gradient-navy:   linear-gradient(135deg, #1a2e5e 0%, #1a2e5e 100%);
  --container:       1200px;
}

/* ========================
   RESET & BASE
   ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #333; background: #fff; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: 'Inter', sans-serif; }

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; color: var(--text-dark); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p { color: var(--text-gray); }

/* ========================
   LAYOUT
   ======================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: none; transition: var(--transition); font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--gradient-teal); color: white; box-shadow: 0 4px 16px rgba(0,180,160,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,180,160,0.45); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-white { background: white; color: var(--teal); font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ========================
   SECTION HEADER
   ======================== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--teal-pale); color: var(--teal);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 12px;
}
.section-title { margin-bottom: 14px; }
.section-sub { max-width: 580px; margin: 0 auto; font-size: 1.02rem; }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.nav-logo { display: flex; align-items: center; padding: 8px 0; }
.nav-logo img { height: 80px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-weight: 500; color: var(--text-dark); font-size: 0.9rem; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: var(--teal-pale); color: var(--teal); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 96px;
  background: linear-gradient(160deg, #ffffff 50%, var(--bg-light) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,180,160,0.07) 0%, transparent 70%);
  top: -150px; right: -150px; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding-top: 40px; padding-bottom: 100px;
}
.hero-hindi { font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--teal); font-weight: 600; margin-bottom: 12px; letter-spacing: 0.3px; }
.hero-title { margin-bottom: 20px; }
.hero-title span { background: var(--gradient-teal); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.05rem; color: var(--text-gray); margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Mockup Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-mockup {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-lg); width: 100%; max-width: 320px;
  border: 1px solid var(--border); position: relative; z-index: 2;
}
.mockup-logo-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mockup-logo-row img { height: 28px; }
.mockup-live { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--teal); font-weight: 600; }
.mockup-live-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.mockup-earnings {
  background: var(--gradient-teal); border-radius: var(--radius); padding: 18px;
  margin-bottom: 18px; color: white; text-align: center;
}
.mockup-earnings .amount { font-size: 1.8rem; font-weight: 800; font-family: 'Poppins', sans-serif; }
.mockup-earnings .label { font-size: 0.75rem; opacity: 0.85; }
.mockup-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.mockup-stat { background: var(--bg-light); border-radius: 10px; padding: 12px; text-align: center; }
.mockup-stat .num { font-size: 1.1rem; font-weight: 700; color: var(--navy); font-family: 'Poppins', sans-serif; }
.mockup-stat .lbl { font-size: 0.68rem; color: var(--text-light); }
.mockup-services-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.mockup-svc {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 2px; background: var(--teal-pale); border-radius: 8px; cursor: pointer; transition: var(--transition);
}
.mockup-svc:hover { background: var(--teal); }
.mockup-svc i { font-size: 0.9rem; color: var(--teal); transition: var(--transition); }
.mockup-svc:hover i { color: white; }
.mockup-svc span { font-size: 0.58rem; font-weight: 600; color: var(--navy); transition: var(--transition); }
.mockup-svc:hover span { color: white; }

/* Floating badges */
.float-badge {
  position: absolute; background: white; border-radius: var(--radius-pill);
  padding: 10px 16px; font-size: 0.78rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); animation: floatAnim 3s ease-in-out infinite; white-space: nowrap;
}
.float-badge i { color: var(--teal); }
.fb-1 { top: 8%; right: -16px; animation-delay: 0s; }
.fb-2 { bottom: 12%; left: -16px; animation-delay: 1.5s; }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Hero wave */
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; display: block; }

/* ========================
   SERVICES
   ======================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(256px, 1fr)); gap: 22px; }
.service-card {
  background: white; border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.service-card.upcoming { opacity: 0.72; }
.sc-icon {
  width: 52px; height: 52px; background: var(--teal-pale); border-radius: 13px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.sc-icon i { font-size: 1.25rem; color: var(--teal); }
.service-card h3 { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.badge-upcoming { font-size: 0.62rem; font-weight: 700; background: #fff3e0; color: #e65100; padding: 3px 8px; border-radius: var(--radius-pill); }
.service-card p { font-size: 0.88rem; line-height: 1.65; }

/* ========================
   WHY DASHPAYY
   ======================== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.why-card {
  display: flex; align-items: flex-start; gap: 18px; padding: 26px;
  border-radius: var(--radius); border: 1px solid var(--border); background: white; transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }
.wc-icon {
  flex-shrink: 0; width: 46px; height: 46px; background: var(--gradient-teal);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.wc-icon i { font-size: 1.05rem; color: white; }
.why-card h4 { margin-bottom: 6px; }
.why-card p { font-size: 0.87rem; }

/* ========================
   STATS
   ======================== */
.stats-section { background: var(--gradient-navy); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { color: white; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: white; }
.stat-plus { font-family: 'Poppins', sans-serif; font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 800; color: var(--teal-light); }
.stat-item p { color: rgba(255,255,255,0.68); font-size: 0.88rem; margin-top: 6px; }

/* ========================
   WHO CAN JOIN
   ======================== */
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.who-card { text-align: center; padding: 28px 14px; border-radius: var(--radius); background: white; border: 1px solid var(--border); transition: var(--transition); cursor: default; }
.who-card:hover { background: var(--teal); border-color: var(--teal); }
.who-card i { font-size: 1.7rem; color: var(--teal); margin-bottom: 12px; display: block; transition: var(--transition); }
.who-card p { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); transition: var(--transition); }
.who-card:hover i, .who-card:hover p { color: white; }

/* ========================
   TESTIMONIALS
   ======================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.testi-stars { margin-bottom: 16px; }
.testi-stars i { color: #f59e0b; font-size: 0.88rem; margin-right: 2px; }
.testi-text { font-style: italic; margin-bottom: 24px; line-height: 1.75; font-size: 0.95rem; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-teal);
  color: white; font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

/* ========================
   CTA BANNER
   ======================== */
.cta-banner { background: var(--gradient-teal); padding: 72px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h2 { color: white; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.85); }

/* ========================
   PAGE BANNER (inner pages)
   ======================== */
.page-banner { background: var(--gradient-navy); padding: 108px 0 64px; text-align: center; }
.page-banner h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,0.72); font-size: 1.02rem; max-width: 540px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 0.82rem; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { color: rgba(255,255,255,0.35); font-size: 0.7rem; }
.breadcrumb .current { color: var(--teal-light); font-weight: 500; }

/* ========================
   FOOTER
   ======================== */
.footer { background: var(--navy); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 64px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.86rem; margin-bottom: 22px; line-height: 1.75; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65); display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; transition: var(--transition);
}
.social-links a:hover { background: var(--teal); color: white; }
.footer h4 { color: white; font-size: 0.92rem; font-weight: 600; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.52); font-size: 0.86rem; transition: var(--transition); }
.footer-links a:hover { color: var(--teal-light); padding-left: 4px; }
.footer-services li { color: rgba(255,255,255,0.52); font-size: 0.86rem; }
.footer-contact p {
  color: rgba(255,255,255,0.55); font-size: 0.86rem;
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; line-height: 1.55;
}
.footer-contact i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact a:hover { color: var(--teal-light); }
.support-hours { color: rgba(255,255,255,0.55) !important; font-weight: 500; }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-bottom a:hover { color: var(--teal-light); }

/* ========================
   ABOUT PAGE
   ======================== */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-block { position: relative; }
.about-visual {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: 30% center; }
.about-badge {
  position: absolute; bottom: -22px; right: -22px; background: white;
  border-radius: var(--radius); padding: 20px 26px; box-shadow: var(--shadow-lg); text-align: center;
}
.about-badge .big { font-size: 2rem; font-weight: 800; color: var(--navy); font-family: 'Poppins', sans-serif; line-height: 1.1; }
.about-badge .small { font-size: 0.75rem; color: var(--text-light); }
.about-text h2 { margin-bottom: 16px; }
.about-text p { margin-bottom: 16px; line-height: 1.82; }
.about-check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }
.about-check-list i { color: var(--teal); font-size: 0.9rem; }

/* Mission & Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { padding: 36px; border-radius: var(--radius-lg); }
.mv-card.mission { background: var(--gradient-navy); }
.mv-card.vision { background: var(--gradient-teal); }
.mv-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mv-icon i { font-size: 1.4rem; color: white; }
.mv-card h3 { color: white; margin-bottom: 12px; font-size: 1.2rem; }
.mv-card p { color: rgba(255,255,255,0.8); line-height: 1.78; }

/* Differentiators */
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.diff-card { padding: 26px; border-radius: var(--radius); background: white; border: 1px solid var(--border); transition: var(--transition); }
.diff-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.diff-icon { width: 44px; height: 44px; background: var(--teal-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.diff-icon i { font-size: 1rem; color: var(--teal); }
.diff-card h4 { margin-bottom: 7px; font-size: 0.93rem; }
.diff-card p { font-size: 0.84rem; }

/* ========================
   FAQ PAGE
   ======================== */
.faq-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.faq-sidebar { position: sticky; top: 96px; }
.faq-sidebar h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 12px; }
.faq-nav { display: flex; flex-direction: column; gap: 4px; }
.faq-nav-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: 10px; font-size: 0.86rem; font-weight: 500; color: var(--text-gray);
  transition: var(--transition); cursor: pointer; border: none; background: none; text-align: left; width: 100%;
}
.faq-nav-link:hover, .faq-nav-link.active { background: var(--teal-pale); color: var(--teal); }
.faq-nav-link i { font-size: 0.85rem; }
.faq-category { margin-bottom: 48px; }
.faq-category-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.faq-category-title .cat-icon { width: 34px; height: 34px; background: var(--gradient-teal); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.faq-category-title h3 { font-size: 1.05rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; text-align: left; background: white; border: none; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-weight: 600; font-size: 0.92rem; color: var(--navy); transition: var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: var(--transition);
}
.faq-item.open .faq-question { background: var(--teal-pale); color: var(--teal); }
.faq-item.open .faq-icon { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 0.88rem; color: var(--text-gray); line-height: 1.78; background: white; }

/* ========================
   CONTACT PAGE
   ======================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.cd-icon { width: 48px; height: 48px; background: var(--gradient-teal); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon i { font-size: 1rem; color: white; }
.cd-text strong { display: block; font-size: 0.78rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 4px; }
.cd-text p, .cd-text a { font-size: 0.95rem; color: var(--navy); font-weight: 600; transition: var(--transition); }
.cd-text a:hover { color: var(--teal); }
.contact-hours { background: var(--teal-pale); border-radius: var(--radius); padding: 18px 22px; margin-top: 8px; border-left: 4px solid var(--teal); }
.contact-hours strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 0.9rem; }
.contact-hours p { color: var(--teal); font-weight: 600; font-size: 0.88rem; }
.contact-form-wrapper { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-form-wrapper h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.88rem;
  color: var(--text-dark); background: #fff; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,160,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--gradient-teal); color: white; border: none;
  border-radius: var(--radius-pill); font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,160,0.38); }
.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success i { font-size: 3.5rem; color: var(--teal); margin-bottom: 14px; display: block; }
.form-success h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.2rem; }
.form-success p { font-size: 0.9rem; }

/* ========================
   MOBILE DRAWER MENU
   ======================== */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: rgba(26, 46, 94, 0.5);
}
.mobile-overlay.open { display: block; }
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 82%; max-width: 340px;
  height: 100%;
  height: 100vh;
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
  z-index: 1201;
}
.mobile-overlay.open .mobile-drawer { transform: translateX(0); }
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid #d4eeeb;
  position: sticky; top: 0; background: #fff; z-index: 2;
  flex-shrink: 0;
}
.mobile-drawer-header img { height: 56px; width: auto; }
.mobile-drawer-close {
  width: 38px; height: 38px; border-radius: 50%;
  background: #f2fbfa; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #1a2e5e; font-size: 1.1rem;
}
.mobile-drawer-nav { flex: 1; display: flex; flex-direction: column; }
.mobile-drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid #d4eeeb;
  font-size: 1rem; font-weight: 500; color: #1a2e5e;
  text-decoration: none;
}
.mobile-drawer-link.active { background: #e6f7f5; color: #00b4a0; }
.mobile-drawer-link i { font-size: 0.7rem; color: #8a94a6; }
.mobile-drawer-cta {
  padding: 22px 20px; border-top: 2px solid #d4eeeb; background: #f2fbfa; flex-shrink: 0;
}
.mobile-drawer-cta p {
  font-size: 0.82rem; font-weight: 600; color: #5a6478;
  text-align: center; margin-bottom: 12px;
}
.mobile-drawer-cta .btn {
  display: flex; width: 100%; justify-content: center;
  background: linear-gradient(135deg, #00b4a0 0%, #00d4c0 100%);
  color: #fff; padding: 14px; border-radius: 100px; font-weight: 700;
  font-size: 0.95rem; gap: 8px; align-items: center; text-decoration: none;
}
@media (min-width: 769px) { .mobile-overlay { display: none !important; } }

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; z-index: 998; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* Hindi Tagline */
.hindi-tagline {
  font-family: 'Poppins', sans-serif; font-size: 1.15rem;
  color: var(--teal); font-weight: 600; text-align: center;
  margin-top: -36px; margin-bottom: 40px; letter-spacing: 0.2px;
}

/* Typewriter cursor */
.type-cursor {
  display: inline-block;
  color: var(--teal);
  font-weight: 300;
  animation: blink-cursor 0.7s step-end infinite;
  margin-left: 1px;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
  .faq-sidebar h4 { display: none; }
  .faq-nav { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; padding-bottom: 80px; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .fb-1, .fb-2 { display: none; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -16px; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-mockup { max-width: 260px; }
  .contact-form-wrapper { padding: 24px 18px; }
  .page-banner { padding: 96px 0 52px; }
}
