/* ==========================================================================
   CareHelp NPCI - Transparent Header on Top, Dark Background on Scroll
   Domain: carehelpnpci.in | Toll-Free Helpline: 1800-105-2121
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Outfit:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  --primary-dark: #070c18;
  --primary-base: #1d4ed8;
  --primary-light: #2563eb;
  --primary-accent: #3b82f6;
  --primary-subtle: #eff6ff;
  
  --gold-accent: #d97706;
  --gold-light: #fef3c7;
  --amber-dark: #b45309;

  --navy-dark: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  
  --surface-card: #ffffff;
  --surface-alt: #f0f7ff;
  
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 14px rgba(29, 78, 216, 0.08);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.18);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--slate-50);
  color: var(--navy-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  line-height: 1.25;
  font-weight: 700;
  word-wrap: break-word;
}

a {
  color: var(--primary-base);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ==========================================================================
   1. TRANSPARENT HEADER ON TOP, SOLID DARK BACKGROUND ON SCROLL
   ========================================================================== */
.main-header {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.main-header.scrolled {
  background: rgba(9, 19, 38, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.npci-style-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.header-left-brand-group {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Hamburger Toggle Button on Left (NO BACKGROUND) */
.hamburger-left-toggle {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.hamburger-left-toggle:hover {
  opacity: 0.8;
}

/* Company Name Text Block (Thin & Tilted / Italic) */
.brand-text-block {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.company-brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

@media (min-width: 640px) {
  .company-brand-title {
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
  }
}

.brand-highlight {
  color: #60a5fa;
  font-weight: 400;
  font-style: italic;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.2rem;
}

.nav-link:hover {
  color: #60a5fa;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-call-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(191, 219, 254, 0.45) !important;
  padding: 0.45rem 0.95rem !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  border-radius: 7px !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-call-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: headerBtnShine 2.8s infinite ease-in-out;
  pointer-events: none;
}

@keyframes headerBtnShine {
  0% {
    left: -60%;
  }
  30% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

.header-call-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.55);
}

.header-call-btn svg {
  color: #ffffff !important;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

@media (max-width: 480px) {
  .header-call-btn {
    padding: 0.35rem 0.7rem !important;
    font-size: 0.78rem !important;
  }
}

/* Premium Mobile Sidebar Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--surface-card);
  z-index: 2000;
  box-shadow: var(--shadow-xl);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  left: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 12, 24, 0.65);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 1rem;
}

.drawer-header .company-brand-title {
  color: var(--navy-dark);
}

.close-drawer-btn {
  background: var(--slate-100);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mobile-menu-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-800);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.mobile-menu-links a:hover {
  background-color: var(--primary-subtle);
  color: var(--primary-base);
}

.mobile-menu-links a svg {
  color: var(--primary-base);
  flex-shrink: 0;
}

.drawer-highlight-link {
  background: var(--primary-subtle);
  color: var(--primary-base) !important;
  border: 1px solid #bfdbfe;
}

/* ==========================================================================
   2. PURE CINEMATIC VIDEO HERO BANNER (GUARANTEED MP4 VIDEO AUTOPLAY)
   ========================================================================== */
.hero-video-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  padding: 5.5rem 0 4.5rem;
  background-color: #040812 !important;
}

@media (min-width: 768px) {
  .hero-video-section {
    min-height: 560px;
    padding: 6.5rem 0 5.5rem;
  }
}

.hero-cyber-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
  filter: brightness(0.7) contrast(1.2);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 8, 18, 0.75) 0%, rgba(15, 23, 42, 0.65) 50%, rgba(29, 78, 216, 0.5) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-container-inner {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero-text-container {
  text-align: left;
  max-width: 900px;
}

/* Thin Crisp Headline Matching NPCI UI Photo */
.hero-main-heading {
  font-family: var(--font-main);
  font-size: 1.85rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

@media (min-width: 640px) {
  .hero-main-heading {
    font-size: 2.6rem;
    font-weight: 300;
  }
}

@media (min-width: 992px) {
  .hero-main-heading {
    font-size: 3.4rem;
    font-weight: 300;
  }
}

/* Stat Highlight Matching NPCI UI Photo */
.hero-stat-highlight {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

@media (min-width: 640px) {
  .hero-stat-highlight {
    margin-top: 4rem;
  }
}

.stat-number-large {
  font-family: var(--font-main);
  font-size: 2.6rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.2rem;
}

@media (min-width: 640px) {
  .stat-number-large {
    font-size: 3.6rem;
    font-weight: 300;
  }
}

.stat-label-sub {
  font-family: var(--font-main);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

@media (min-width: 640px) {
  .stat-label-sub {
    font-size: 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  text-decoration: none !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-base), #1e40af);
  color: white !important;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-accent), var(--amber-dark));
  color: white !important;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary-base);
  color: var(--primary-base) !important;
}

.btn-secondary {
  background-color: var(--slate-100);
  color: var(--slate-800) !important;
}

/* ==========================================================================
   3. Tracker & Consultation System
   ========================================================================== */
.tracker-section {
  padding: 3.5rem 0;
  background-color: white;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.75rem;
}

.section-tag {
  display: inline-block;
  background-color: var(--primary-subtle);
  color: var(--primary-base);
  font-weight: 800;
  font-size: 0.775rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.45rem;
}

/* ==========================================================================
   SEAMLESS TRANSACTIONS ACROSS EVERYWHERE (EXACT UI MATCH)
   ========================================================================== */
.seamless-section {
  position: relative;
  background-color: #fefdfa;
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid #f1f5f9;
  font-family: var(--font-main), 'Inter', sans-serif;
  overflow: hidden;
}

.seamless-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.seamless-title {
  font-family: var(--font-heading), 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #000000 !important;
  line-height: 1.25;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .seamless-title {
    font-size: 2.3rem;
  }
}

.seamless-badge {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #000000 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: inline-block;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.seamless-showcase-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 420px;
}

.seamless-card-stack.portrait-stack {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 390px;
}

@media (min-width: 640px) {
  .seamless-card-stack.portrait-stack {
    max-width: 330px;
    height: 420px;
  }
}

.seamless-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.seamless-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Caption Overlay for Cinematic Effect */
.card-caption-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 7, 18, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #ffffff;
  pointer-events: none;
}

.card-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fbbf24;
  margin-bottom: 0.2rem;
}

.card-caption-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

/* 3 Stacked Cards Offset */
.seamless-card.card-front {
  z-index: 3;
  transform: translate(0, 0);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.seamless-card.card-middle {
  z-index: 2;
  transform: translate(16px, 12px) scale(0.96);
  opacity: 0.9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.seamless-card.card-back {
  z-index: 1;
  transform: translate(32px, 24px) scale(0.92);
  opacity: 0.75;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Hover Interaction: Spread cards outward */
.seamless-card-stack:hover .card-front {
  transform: translate(-6px, -4px);
}

.seamless-card-stack:hover .card-middle {
  transform: translate(22px, 14px) scale(0.96);
}

.seamless-card-stack:hover .card-back {
  transform: translate(44px, 28px) scale(0.92);
}

/* Right Side Indicator Line with Pin Emblem */
.seamless-timeline-indicator {
  position: absolute;
  right: 15px;
  top: -10px;
  bottom: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.seamless-pin-emblem {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.seamless-vertical-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, #dbeafe 0%, #3b82f6 50%, rgba(59, 130, 246, 0.1) 100%);
  margin-top: -2px;
}

/* Bottom Play Controls */
.seamless-bottom-controls {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}

.seamless-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #374151;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.seamless-play-btn:hover {
  background: #111827;
  transform: scale(1.08);
}

/* ==========================================================================
   ENGINEERED FOR NATIONWIDE ASSISTANCE (EXACT UI MATCH TO REFERENCE PHOTO)
   ========================================================================== */
.engineered-section {
  position: relative;
  background-color: #fefdfa;
  padding: 3.5rem 0 3.5rem;
  border-bottom: 1px solid #f1f5f9;
  font-family: var(--font-main), 'Inter', sans-serif;
  overflow: hidden;
}

.engineered-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.engineered-content-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.engineered-left {
  max-width: 580px;
  width: 100%;
}

.engineered-title {
  font-family: var(--font-heading), 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .engineered-title {
    font-size: 2.3rem;
  }
}

.engineered-image-box {
  width: 100%;
  max-width: 290px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .engineered-image-box {
    max-width: 340px;
    height: 250px;
  }
}

.engineered-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.engineered-bullet-list {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.engineered-bullet-list li {
  font-size: 0.95rem;
  color: #374151;
  font-weight: 500;
  line-height: 1.4;
}

.engineered-stat-block {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.stat-big-num {
  font-family: var(--font-heading), 'Inter', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1;
}

@media (min-width: 640px) {
  .stat-big-num {
    font-size: 4rem;
  }
}

.stat-big-label {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.35;
  font-weight: 500;
}

/* Right Side Indicator Line with Solid Orange Dot (Matches Reference Image) */
.engineered-timeline-indicator {
  position: absolute;
  right: 15px;
  top: 120px;
  bottom: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.engineered-orange-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
  z-index: 2;
}

.engineered-vertical-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, #fdba74 0%, #3b82f6 50%, rgba(59, 130, 246, 0.1) 100%);
  margin-top: -2px;
}

/* ==========================================================================
   Tracker Section Redesign (Thin & Premium Poppins 300 Typography)
   ========================================================================== */
.tracker-section {
  padding: 3.5rem 0;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
}

.tracker-section .section-tag {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--primary-base);
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.tracker-section .section-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 1.85rem;
  color: #0f172a !important;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .tracker-section .section-title {
    font-size: 2.2rem;
  }
}

.tracker-search-box {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 640px) {
  .tracker-search-box {
    flex-direction: row;
  }
}

.tracker-search-box input.form-control {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 0.85rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tracker-search-box input.form-control:focus {
  border-color: var(--primary-base);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.tracker-search-box button.btn {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 0.85rem;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
  transition: opacity 0.2s ease;
}

.tracker-search-box button.btn:hover {
  opacity: 0.92;
}

.tracker-result-card {
  max-width: 780px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.35rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
  .tracker-result-card {
    padding: 1.75rem;
  }
}

.tracker-result-card h3 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.05rem;
  color: #0f172a !important;
}

.tracker-result-card p {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 0.8rem;
  color: #64748b !important;
}

.tracker-result-card strong {
  font-weight: 500 !important;
  color: #334155;
}

.timeline {
  position: relative;
  margin-top: 1.35rem;
  padding-left: 1.35rem;
  font-family: 'Poppins', sans-serif !important;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background-color: #cbd5e1;
}

.timeline-node {
  position: relative;
  margin-bottom: 1.25rem;
}

.timeline-node::before {
  content: '';
  position: absolute;
  left: -1.35rem;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #cbd5e1;
}

.timeline-node.done::before {
  background-color: #10b981;
  border-color: #10b981;
}

.timeline-node.active::before {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.timeline-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 0.875rem;
  color: #0f172a;
}

.timeline-desc {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300 !important;
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.1rem;
}

/* ==========================================================================
   Dual Language Assistance Container (White & Royal Blue Premium Gradient)
   ========================================================================== */
.dual-lang-section {
  position: relative;
  padding: 3.5rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(239, 246, 255, 0.93) 100%),
              url('../assets/payment_successful.jpg') center/cover no-repeat;
  border-top: none !important;
  border-bottom: 1px solid #cbd5e1 !important;
  margin-top: 0 !important;
  width: 100%;
  overflow: hidden;
}

.dual-lang-card {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  background: transparent !important;
  padding: 1.5rem 1rem !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dual-lang-text-wrapper {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.dual-lang-title {
  font-family: var(--font-heading), 'Inter', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a !important;
  text-shadow: none !important;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (min-width: 640px) {
  .dual-lang-title {
    font-size: 2.4rem;
  }
}

.dual-lang-title.active {
  opacity: 1;
  transform: translateY(0);
  color: #0f172a !important;
}

.dual-lang-subtitle {
  font-size: 0.92rem;
  color: #334155 !important;
  text-shadow: none !important;
  line-height: 1.5;
  margin: 0 auto 1.5rem;
  max-width: 500px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (min-width: 640px) {
  .dual-lang-subtitle {
    font-size: 1.05rem;
  }
}

.dual-lang-subtitle.active {
  opacity: 1;
  transform: translateY(0);
  color: #334155 !important;
}

/* Specific Hindi Text Sizing & Height Adjustments */
.dual-lang-title.hindi-text {
  font-size: 1.45rem !important;
  line-height: 1.45 !important;
  letter-spacing: 0.01em;
}

@media (min-width: 640px) {
  .dual-lang-title.hindi-text {
    font-size: 2.05rem !important;
    line-height: 1.45 !important;
  }
}

.dual-lang-subtitle.hindi-text {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  letter-spacing: 0.01em;
}

@media (min-width: 640px) {
  .dual-lang-subtitle.hindi-text {
    font-size: 1.12rem !important;
    line-height: 1.6 !important;
  }
}

.dual-lang-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.dual-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffcc00;
  color: #1d4ed8 !important;
  font-family: var(--font-main), sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1rem 3rem;
  border-radius: 4px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(255, 204, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  min-width: 260px;
}

.dual-lang-btn:hover {
  background: #f5b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.55);
}


.process-section {
  padding: 3.5rem 0;
  background-color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.1rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  position: relative;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(29, 78, 216, 0.15);
  position: absolute;
  top: 0.4rem;
  right: 0.75rem;
}

.compliance-section {
  padding: 3.5rem 0;
  background-color: #f0f7ff;
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
}

.compliance-box {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .compliance-box {
    grid-template-columns: 1.2fr 1fr;
    padding: 2.25rem;
  }
}

.compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.compliance-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
  font-weight: 600;
}

.faq-section {
  padding: 3.5rem 0;
  background-color: white;
}

.accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.accordion-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: white;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.accordion-item.open .accordion-body {
  max-height: 300px;
  padding: 0 1.25rem 1.1rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 12, 24, 0.7);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: white;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  padding: 0.85rem 1.1rem;
  background-color: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-tabs {
  display: flex;
  background-color: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
  overflow-x: auto;
}

.modal-tab-btn {
  padding: 0.65rem 0.85rem;
  border: none;
  background: none;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--slate-600);
  cursor: pointer;
  white-space: nowrap;
}

.modal-tab-btn.active {
  background-color: white;
  color: var(--primary-base);
  border-bottom: 2px solid var(--primary-base);
}

.modal-body {
  padding: 1.1rem;
  overflow-y: auto;
  font-size: 0.85rem;
  color: var(--slate-700);
  line-height: 1.6;
}

.modal-footer {
  padding: 0.75rem 1.1rem;
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-footer {
  background-color: #070c18;
  color: white;
  padding: 3.5rem 0 2rem;
  font-size: 0.825rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--slate-300);
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.775rem;
  color: var(--slate-300);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: var(--slate-400);
}

.toast-container {
  position: fixed;
  bottom: 20px;
  right: 15px;
  left: 15px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .toast-container {
    left: auto;
    right: 20px;
    max-width: 400px;
  }
}

.toast {
  background-color: #070c18;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-left: 4px solid var(--primary-base);
}

/* ==========================================================================
   OFFICIAL NPCI ACCORDION FOOTER STYLES (EXACT UI MATCH)
   ========================================================================== */
.npci-accordion-footer {
  background-color: #121418;
  color: #ffffff;
  padding: 3rem 0 5.5rem;
  font-family: var(--font-main), 'Inter', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.npci-footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.npci-footer-brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0.5rem;
}

.npci-footer-helpline {
  font-size: 0.88rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.npci-footer-helpline a {
  color: #fbbf24;
  font-weight: 800;
  font-size: 1rem;
}

.npci-footer-menu-stack {
  display: flex;
  flex-direction: column;
}

.npci-menu-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.npci-menu-trigger {
  width: 100%;
  padding: 1.2rem 0.2rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.npci-menu-trigger:hover {
  color: #60a5fa;
}

.npci-chevron {
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.accordion-item-row.open .npci-chevron {
  transform: rotate(180deg);
  color: #60a5fa;
}

.npci-menu-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 0.5rem;
}

.accordion-item-row.open .npci-menu-panel {
  max-height: 320px;
  padding: 0.25rem 0.5rem 1.25rem;
}

.npci-sub-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.npci-sub-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.npci-sub-links a:hover {
  color: #ffffff;
}

.npci-direct-link {
  display: block;
  padding: 1.2rem 0.2rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.npci-direct-link:hover {
  color: #60a5fa;
}

.npci-footer-disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  font-size: 0.775rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 2.5rem 0 2rem;
}

.npci-bottom-nav {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 1rem;
}

.npci-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.npci-bottom-links a {
  color: #94a3b8;
  font-size: 0.825rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.npci-bottom-links a:hover {
  color: #ffffff;
}

.npci-bottom-copy {
  font-size: 0.8rem;
  color: #64748b;
}
