/* ============================================================
   THE FIRST STEP - NASHA MUKTI KENDRA
   Global Styles | Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #1a6b8a;
  --primary-dark: #124d65;
  --primary-light: #2589af;
  --secondary: #27ae60;
  --secondary-dark: #1e8449;
  --accent: #f39c12;
  --accent-light: #fef5e7;
  --bg: #f8fffe;
  --bg-alt: #eef7f5;
  --dark: #1a2332;
  --dark-mid: #2c3e50;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --white: #ffffff;
  --danger: #e74c3c;

  --font-body: 'Inter', sans-serif;
  --font-head: 'Playfair Display', serif;
  --font-hindi: 'Noto Sans Devanagari', 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 107, 138, 0.10);
  --shadow-md: 0 8px 32px rgba(26, 107, 138, 0.15);
  --shadow-lg: 0 20px 60px rgba(26, 107, 138, 0.20);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 80px;

  /* Green gradient used for all "Call" related buttons/CTAs */
  --call-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --call-gradient-hover: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}

.serif {
  font-family: var(--font-head);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ── */
.section {
  padding: 50px 0;
}

.section-sm {
  padding: 36px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 107, 138, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.section-title {
  font-family: var(--font-head);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 107, 138, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 107, 138, 0.45);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.30);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(39, 174, 96, 0.40);
}

/* "Call" style buttons — now green gradient instead of orange */
.btn-accent {
  background: var(--call-gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30, 110, 90, 0.35);
}

.btn-accent:hover {
  background: var(--call-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 110, 90, 0.45);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ── Badge ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: rgba(26, 107, 138, 0.1);
  color: var(--primary);
}

.badge-green {
  background: rgba(39, 174, 96, 0.1);
  color: var(--secondary);
}

.badge-amber {
  background: rgba(243, 156, 18, 0.1);
  color: var(--accent);
}

/* ── Grid ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 4px;
  margin: 16px 0 24px;
}

.divider.center {
  margin: 16px auto 24px;
}

/* ── Gradient BG ── */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.bg-gradient-hero {
  background: linear-gradient(135deg, #0d3d52 0%, #1a6b8a 60%, #1a9b6b 100%);
}

.bg-alt {
  background: var(--bg-alt);
}

.bg-dark {
  background: var(--dark);
}

.bg-white {
  background: var(--white);
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 24px;
}

#navbar.transparent {
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26, 107, 138, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  padding: 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  transform: scale(1.05);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
  outline: none;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  transition: var(--transition);
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-mid);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(26, 107, 138, 0.08);
  font-weight: 600;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* "Call Now" nav button — now green gradient instead of orange */
.nav-call {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--call-gradient);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(30, 110, 90, 0.35);
}

.nav-call:hover {
  background: var(--call-gradient-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-top: 1px solid var(--gray-light);
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 16px;
  font-weight: 500;
  color: var(--dark-mid);
  border-radius: 8px;
  font-size: 1rem;
}

.mobile-menu a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.mobile-menu .mobile-cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.mobile-menu .mobile-cta .btn {
  flex: 1;
  justify-content: center;
}

/* ── EMERGENCY BANNER ── */
.emergency-banner {
  background: linear-gradient(90deg, var(--danger), #c0392b);
  color: white;
  text-align: center;
  padding: 0 24px;
  height: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  white-space: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
}

.emergency-banner a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
}

/* When banner is shown, offset navbar */
body.has-banner {
  --banner-h: 40px;
}

body.has-banner #navbar {
  top: var(--banner-h);
}

/* Single-page: navbar always visible with white background */
#navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26, 107, 138, 0.12);
}

/* ── FLOATING BUTTONS ── */
.float-buttons {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover::before {
  opacity: 1;
}

.float-whatsapp {
  background: #25d366;
}

.float-call {
  background: var(--primary);
}

.float-emergency {
  background: var(--danger);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(231, 76, 60, 0);
  }
}

/* ── STICKY BOTTOM HELPLINE BAR ── */
body.has-sticky-call {
  padding-bottom: 60px;
}

.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 995;
  background: linear-gradient(135deg, rgba(13, 61, 82, 0.97), rgba(22, 122, 85, 0.97));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.35);
  padding: 6px 0;
  transform: translateY(105%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s;
}

.sticky-call-bar.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-call-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-call-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.sticky-pulse {
  width: 10px;
  height: 10px;
  background-color: #2ecc71;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
  }
}

.sticky-call-text {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: white;
  line-height: 1.2;
}

.sticky-subtitle {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
}

.sticky-call-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-call-btn {
  padding: 7px 20px;
  font-size: 0.88rem;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.45);
  animation: gentle-bounce 3s infinite;
}

@keyframes gentle-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

body.has-sticky-call .float-buttons {
  bottom: 72px;
  transition: bottom 0.35s ease;
}

@media (max-width: 768px) {
  .sticky-call-inner {
    justify-content: center;
  }

  .sticky-call-info {
    display: none;
  }

  .sticky-call-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 16px;
    font-size: 0.88rem;
  }

  body.has-sticky-call .float-buttons {
    bottom: 68px;
  }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0d3d52 0%, #1a6b8a 60%, #1a9b6b 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='40' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='80' cy='80' r='60' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") no-repeat center/cover;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: white;
  font-family: var(--font-head);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .nav-logo-name {
  color: white;
  font-size: 1.3rem;
}

.footer-brand .nav-logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.8;
}

.footer-brand .nav-logo-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  padding: 0;
  background: transparent;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.footer-brand .nav-logo-icon img {
  border-radius: 0;
  border: none;
  object-fit: cover;
}


.footer-heading {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-item .info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item .info a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item .info a:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, #0a2e3d 0%, #0d3d52 40%, #105242 100%);
  padding: 0;
  border-top: 3px solid rgba(39, 174, 96, 0.4);
  border-bottom: 3px solid rgba(26, 107, 138, 0.3);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26, 188, 156, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(243, 156, 18, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 36px 24px;
  position: relative;
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(39, 174, 96, 0.4));
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-head);
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, #a8e6cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}


/* ── TESTIMONIAL CARD ── */
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ── FORM STYLES ── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-mid);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 107, 138, 0.1);
}

.form-control::placeholder {
  color: #adb5bd;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  color: #1a1a2e;
  background: #ffffff;
}

select.form-control option {
  color: #1a1a2e;
  background: #ffffff;
  font-size: 0.95rem;
  padding: 8px;
}

select.form-control option:checked,
select.form-control option:hover {
  background: #e8f4f8;
  color: #1a6b8a;
}

/* ── FEATURE CARD ── */
.feature-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* ── ICON COLORS ── */
.icon-primary {
  background: rgba(26, 107, 138, 0.1);
}

.icon-green {
  background: rgba(39, 174, 96, 0.1);
}

.icon-amber {
  background: rgba(243, 156, 18, 0.1);
}

.icon-red {
  background: rgba(231, 76, 60, 0.1);
}

.icon-purple {
  background: rgba(142, 68, 173, 0.1);
}

.icon-teal {
  background: rgba(26, 188, 156, 0.1);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 48px;
  width: 2px;
  bottom: 0;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.process-step:last-child::before {
  display: none;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 107, 138, 0.3);
}

/* ── WHY CHOOSE ── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-text {
  font-size: 0.95rem;
  color: var(--dark-mid);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--secondary);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateX(200px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --banner-h: 44px;
  }

  /* Emergency banner — compact single row on mobile */
  .emergency-banner {
    height: var(--banner-h);
    padding: 0 12px;
    font-size: 0.72rem;
    gap: 8px;
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow: hidden;
    justify-content: center;
  }

  .emergency-banner a {
    font-size: 0.72rem;
  }

  .hide-mobile {
    display: none;
  }

  /* Navbar sits flush below banner */
  body.has-banner #navbar {
    top: var(--banner-h);
  }

  /* Hide desktop nav, show hamburger */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Sections */
  .section {
    padding: 52px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Grids → single column */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Floating buttons */
  .float-buttons {
    bottom: 66px !important;
    right: 16px !important;
    gap: 10px;
    z-index: 1040 !important;
  }

  .float-buttons .float-call {
    display: none !important;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  /* Page hero headers */
  .page-hero {
    padding: calc(var(--banner-h) + var(--nav-h) + 32px) 0 56px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  /* Cards */
  .feature-card,
  .service-card {
    padding: 24px 20px;
  }

  /* Mobile menu top offset */
  .mobile-menu {
    top: calc(var(--banner-h) + var(--nav-h));
  }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  :root {
    --nav-h: 60px;
    --banner-h: 44px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-lg {
    padding: 13px 22px;
    font-size: 0.92rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section {
    padding: 44px 0;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Nav logo smaller */
  .nav-logo-name {
    font-size: 0.95rem;
  }

  .nav-logo-sub {
    display: none;
  }

  /* Hide on very small screens to prevent vertical overflow */
  .nav-logo-icon {
    width: 44px;
    height: 44px;
  }

  /* Emergency banner even more compact */
  .emergency-banner {
    font-size: 0.68rem;
    gap: 6px;
  }

  /* Hero text */
  .section-title {
    font-size: 1.45rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }
}

/* ============================================================
   MEET OUR PARTNERS SECTION
   (New — added for the "Meet Our Partners" block on
   about.html and index.html)

   Design notes:
   - Section sits on --bg-alt (same light mint used elsewhere
     on the site) so it doesn't compete with the dark gradient
     CTA that already appears directly above it.
   - Partner cards: white cards, top accent bar in the primary→
     secondary gradient (same gradient already used on avatars
     and hero orbs elsewhere on the site).
   - Mini-CTA at the end uses a secondary(green)→primary-light
     gradient instead of repeating the page's primary gradient
     CTA — same brand palette, just varied enough to read as a
     distinct closing moment rather than a duplicate block.
   ============================================================ */

.partners-intro {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.partners-intro p {
  margin-bottom: 16px;
}

.partners-intro p:last-child {
  margin-bottom: 0;
}

/* Slightly bolder subtitle, scoped to this section only so it
   doesn't affect .section-subtitle anywhere else on the site */
#partners .section-subtitle {
  font-weight: 600;
}

.partner-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.partner-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.partner-avatar {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(26, 107, 138, 0.25);
}

.partner-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.partner-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(26, 107, 138, 0.08);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.partner-bio {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

.partners-cta {
  margin: 32px auto 0;
  max-width: 900px;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 45%, var(--primary-light) 100%);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.partners-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='15' cy='15' r='35' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='85' cy='85' r='50' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat center/cover;
}

.partners-cta>* {
  position: relative;
  z-index: 1;
}

.partners-cta-text {
  text-align: left;
  flex: 1;
  min-width: 220px;
}

.partners-cta h3 {
  color: white;
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.partners-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  margin: 0;
  max-width: none;
}

.partners-cta .cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.partners-cta .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.partners-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.85);
}

/* Mobile */
@media (max-width: 768px) {
  .partner-card {
    padding: 24px 18px;
  }

  .partners-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
  }

  .partners-cta .cta-buttons {
    width: 100%;
  }

  .partners-cta .btn {
    flex: 1;
    justify-content: center;
  }
}

/* ============================================================
   BILINGUAL (ENGLISH + HINDI) CONTENT SUPPORT
   ============================================================ */

/* Hindi text uses Devanagari font throughout */
.hi,
.lang-hi {
  font-family: var(--font-hindi);
}

/* Small Hindi line under a heading (e.g. H1, section titles) */
.hi-tagline {
  display: block;
  font-family: var(--font-hindi);
  font-weight: 600;
  font-size: 0.42em;
  line-height: 1.5;
  color: inherit;
  margin-top: 10px;
  letter-spacing: 0;
}

.section-title .hi-tagline {
  font-size: 0.45em;
  margin-top: 8px;
}

/* Hindi translation paragraph placed under an English paragraph */
.hi-para {
  display: block;
  font-family: var(--font-hindi);
  color: inherit;
  font-size: 0.97em;
  line-height: 1.8;
  margin-top: 10px;
}

/* Hindi sub-line under card titles / list items / labels */
.hi-sub {
  display: block;
  font-family: var(--font-hindi);
  font-weight: 500;
  font-size: 0.8rem;
  color: inherit;
  margin-top: 3px;
}

.check-text .hi-sub,
.value-item .hi-sub,
.contact-method .hi-sub {
  color: inherit;
  font-weight: 400;
}

/* Bilingual buttons: English line + smaller Hindi line stacked */
.btn-bilingual {
  flex-direction: column;
  gap: 2px !important;
  line-height: 1.3;
  padding-top: 14px;
  padding-bottom: 14px;
}

.btn-bilingual .btn-main {
  font-size: 1em;
}

.btn-bilingual .btn-hi {
  font-family: var(--font-hindi);
  font-size: 0.76em;
  font-weight: 500;
  opacity: 1;
}

/* Hindi micro-label used inline in badges/tags.
   FIX: this was the one bilingual class still missing
   display:block, so its Hindi text was running on the
   same line as the English text before it (e.g. in the
   "Additional Recognitions" card, partner-role tags, and
   the footer brand tagline). Now it drops to its own line
   like .hi-tagline / .hi-para / .hi-sub already did. */
.hi-inline {
  display: block;
  font-family: var(--font-hindi);
  font-weight: 500;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .hi-tagline {
    font-size: 0.5rem;
  }

  .section-title .hi-tagline {
    font-size: 0.95rem;
  }
}

/* ══════════════════════════════════════════
   MOBILE BOTTOM STICKY CALL BAR
   ══════════════════════════════════════════ */
.mobile-bottom-call-bar {
  display: none !important;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px !important;
  }

  .mobile-bottom-call-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1050 !important;
    background: #0f6b5c !important;
    color: #ffffff !important;
    padding: 9px 12px !important;
    text-decoration: none !important;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25) !important;
    line-height: 1.25 !important;
    text-align: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .mobile-bottom-call-bar:hover,
  .mobile-bottom-call-bar:active {
    background: #0a5247 !important;
    color: #ffffff !important;
  }

  .mb-call-main {
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    color: #ffffff !important;
  }

  .mb-call-hi {
    font-family: var(--font-hindi), sans-serif !important;
    font-size: 0.74rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: 2px !important;
  }

  /* Float buttons on mobile */
  .float-buttons {
    position: fixed !important;
    bottom: 68px !important;
    right: 16px !important;
    z-index: 1040 !important;
  }

  .float-buttons .float-call {
    display: none !important;
  }
}