* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #0A2540;
  --navy-light: #143a66;
  --navy-dark: #061a30;
  --saffron: #FF6B1A;
  --saffron-dark: #e55a0e;
  --saffron-light: #ff8a47;
  --gold: #D4AF37;
  --gold-light: #f4d35e;
  --green: #138808;
  --green-light: #1ca80c;
  --bg-light: #f7f9fc;
  --bg-cream: #fef9f3;
  --text-dark: #1a1a1a;
  --text-gray: #5a6877;
  --border: #e4e9f0;
  --shadow-sm: 0 2px 8px rgba(10,37,64,0.06);
  --shadow-md: 0 10px 30px rgba(10,37,64,0.1);
  --shadow-lg: 0 20px 50px rgba(10,37,64,0.15);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* TOP STRIP */
.top-strip {
  background: var(--navy-dark);
  color: #fff;
  padding: 7px 60px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-strip .left { display: flex; gap: 20px; align-items: center; }
.top-strip .tricolor {
  display: inline-flex;
  border-radius: 2px;
  overflow: hidden;
}
.top-strip .tricolor span { width: 16px; height: 11px; display: inline-block; }
.top-strip .tricolor .s { background: #FF9933; }
.top-strip .tricolor .w { background: #fff; }
.top-strip .tricolor .g { background: #138808; }
.top-strip .right { display: flex; gap: 18px; align-items: center; }
.top-strip a { color: #fff; text-decoration: none; opacity: 0.85; transition: 0.2s; display: inline-flex; align-items: center; gap: 5px; }
.top-strip a:hover { opacity: 1; color: var(--saffron-light); }
.text-size-controls { display: flex; gap: 5px; padding-left: 15px; border-left: 1px solid rgba(255,255,255,0.15); }
.text-size-controls button {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  width: 22px; height: 22px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.text-size-controls button:hover { background: var(--saffron); }

/* NOTICE BAR */
.notice-bar {
  background: linear-gradient(90deg, #fff3e0 0%, #fef9f3 100%);
  border-bottom: 1px solid #ffd9b3;
  padding: 8px 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}
.notice-label {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.marquee-wrapper { flex: 1; overflow: hidden; }
.marquee-content {
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}
.marquee-content span { margin: 0 30px; }
.marquee-content i { color: var(--saffron); margin-right: 5px; }
@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* HEADER */
.top-header {
  background: #fff;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #FF9933 33%, #fff 33%, #fff 66%, #138808 66%) 1;
}
.logo-section { display: flex; align-items: center; gap: 16px; }
.logo-emblem {
  width: 62px; height: 62px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  box-shadow: 0 4px 15px rgba(0,0,128,0.15);
  position: relative;
}
.logo-emblem::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0.6;
}
.logo-emblem img {
  border-radius: 50%;
  object-fit: contain;
}
.logo-text-block { line-height: 1.25; }
.logo-text-block .hi { font-weight: 800; font-size: 17px; color: var(--navy); display: block; }
.logo-text-block .en { font-family: 'Poppins', sans-serif; font-size: 11px; color: var(--text-gray); letter-spacing: 0.6px; text-transform: uppercase; margin-top: 3px; display: block; font-weight: 500; }
.logo-text-block .tagline { font-size: 10px; color: var(--saffron); font-weight: 600; margin-top: 2px; display: block; }

nav.main-nav { display: flex; gap: 30px; }
nav.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding: 8px 0;
  transition: 0.3s;
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-dark));
  transition: width 0.3s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--saffron); }
nav.main-nav a:hover::after, nav.main-nav a.active::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 18px; }
.helpline {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy);
  padding: 6px 14px;
  background: var(--bg-light);
  border-radius: 30px;
  border: 1px solid var(--border);
}
.helpline-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,26,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,107,26,0); }
}
.helpline .num { font-weight: 800; font-size: 14px; color: var(--navy); }
.helpline .lbl { color: var(--text-gray); font-size: 10px; text-transform: uppercase; }
.lang-toggle {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  border: none;
  transition: 0.3s;
  display: flex; align-items: center; gap: 8px;
  font-family: inherit;
}
.lang-toggle:hover { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); transform: translateY(-2px); }

/* HERO */
.hero {
  background: linear-gradient(135deg, #0A2540 0%, #143a66 60%, #1a4880 100%);
  padding: 80px 60px 140px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}
.hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,26,0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero-deco {
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(19,136,8,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,107,26,0.15);
  color: var(--saffron-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid rgba(255,107,26,0.3);
}
.hero-badge i { font-size: 8px; animation: blink 1.5s infinite; }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-text h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}
.hero-text h1 .highlight {
  color: var(--saffron);
  position: relative;
  display: inline-block;
}
.hero-text h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 0;
  width: 100%; height: 8px;
  background: rgba(255,107,26,0.25);
  z-index: -1;
  border-radius: 4px;
}
.hero-text p {
  color: #c5d2e0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 92%;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btn {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  padding: 16px 34px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255,107,26,0.4);
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255,107,26,0.5); }
.cta-btn-outline {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
}
.cta-btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.hero-stats {
  display: flex;
  gap: 35px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat .num { color: #fff; font-size: 32px; font-weight: 800; display: block; line-height: 1; margin-bottom: 4px; }
.stat .num span { color: var(--saffron); }
.stat .lbl { color: #a8b8cc; font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }

.hero-right { position: relative; }
.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  border: 4px solid rgba(255,255,255,0.1);
}
.hero-image { width: 100%; height: 460px; object-fit: cover; display: block; transition: 0.6s; }
.hero-image-wrapper:hover .hero-image { transform: scale(1.05); }
.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.5) 0%, transparent 50%);
}
.floating-card {
  position: absolute;
  bottom: -70px;
  left: -50px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  width: 320px;
  border-top: 4px solid var(--saffron);
  z-index: 3;
}
.floating-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.floating-card h4 i { color: var(--saffron); background: rgba(255,107,26,0.1); width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.floating-card label { font-size: 12px; color: var(--text-gray); display: block; margin-bottom: 6px; font-weight: 600; }
.floating-card select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 13px;
  background: var(--bg-light);
  cursor: pointer;
}
.floating-card select:focus { outline: none; border-color: var(--saffron); background: #fff; }
.floating-card .mini-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  transition: 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.floating-card .mini-btn:hover { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); }
.trust-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.95);
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.trust-badge i { color: var(--green); }
.floating-stat {
  position: absolute;
  top: 40px; left: -30px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatY 3s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-stat .icon-box {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
}
.floating-stat .stat-info { line-height: 1.2; }
.floating-stat .stat-info .val { font-size: 18px; font-weight: 800; color: var(--navy); }
.floating-stat .stat-info .lbl { font-size: 11px; color: var(--text-gray); }

/* QUICK STATS */
.quick-stats-banner {
  background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  padding: 25px 60px;
  display: flex;
  justify-content: space-around;
  color: #fff;
  flex-wrap: wrap;
  gap: 20px;
}
.qs-item { display: flex; align-items: center; gap: 14px; }
.qs-item .icon-wrap {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.qs-item .num { font-size: 22px; font-weight: 800; display: block; line-height: 1; }
.qs-item .lbl { font-size: 12px; opacity: 0.95; margin-top: 3px; display: block; }

/* HOW IT WORKS */
.how-it-works { padding: 130px 60px 90px; background: var(--bg-light); text-align: center; }
.section-head { max-width: 1320px; margin: 0 auto 50px; text-align: center; }
.section-tag {
  color: var(--saffron);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  padding: 5px 16px;
  background: rgba(255,107,26,0.1);
  border-radius: 20px;
}
.section-title { font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.section-subtitle { color: var(--text-gray); font-size: 15px; max-width: 600px; margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.step {
  background: #fff;
  padding: 32px 26px;
  border-radius: 18px;
  text-align: left;
  transition: 0.4s;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-dark));
  transition: width 0.4s;
}
.step:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.step:hover::before { width: 100%; }
.step-num {
  position: absolute;
  top: 22px; right: 26px;
  font-size: 52px;
  font-weight: 900;
  color: var(--bg-light);
  line-height: 1;
}
.step:hover .step-num { color: rgba(255,107,26,0.1); }
.step-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
  transition: 0.4s;
}
.step:hover .step-icon { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); transform: rotate(-5deg) scale(1.05); }
.step h3 { color: var(--navy); font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.step p { color: var(--text-gray); font-size: 14px; line-height: 1.6; }

/* DEPARTMENTS */
.departments { padding: 90px 60px; max-width: 1320px; margin: 0 auto; }
.dept-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; margin-top: 45px; }
.dept-item {
  cursor: pointer;
  transition: 0.4s;
  padding: 24px 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}
.dept-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(255,107,26,0.3); }
.dept-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, #eef3fa, #f7f9fc);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 14px;
  transition: 0.4s;
}
.dept-item:hover .dept-icon { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); color: #fff; transform: scale(1.1) rotate(5deg); }
.dept-item p { font-size: 13px; color: var(--navy); font-weight: 600; }
.dept-item .count { font-size: 10px; color: var(--text-gray); display: block; margin-top: 3px; }

/* TRACK */
.track-section { background: linear-gradient(135deg, #f7f9fc 0%, #eef3fa 100%); padding: 90px 60px; }
.track-box {
  max-width: 720px;
  margin: 45px auto 0;
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 5px solid var(--saffron);
}
.track-icon-big {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 32px;
  margin: -65px auto 20px;
  box-shadow: 0 15px 35px rgba(255,107,26,0.35);
}
.track-box h3 { color: var(--navy); margin-bottom: 8px; font-size: 24px; font-weight: 800; }
.track-box > p { color: var(--text-gray); font-size: 14px; }
.track-input-group { display: flex; gap: 12px; margin-top: 25px; }
.track-input-group input {
  flex: 1;
  padding: 16px 22px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg-light);
}
.track-input-group input:focus { outline: none; border-color: var(--saffron); background: #fff; }
.track-input-group button {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex; align-items: center; gap: 8px;
}
.track-input-group button:hover { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); }
.track-help { margin-top: 18px; font-size: 12px; color: var(--text-gray); }
.track-help a { color: var(--saffron); font-weight: 600; text-decoration: none; }

/* TESTIMONIALS */
.testimonials { padding: 90px 60px; background: #fff; }
.testimonial-grid {
  max-width: 1320px;
  margin: 45px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 18px;
  border-left: 4px solid var(--saffron);
  position: relative;
  transition: 0.4s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.testimonial-card .quote-icon { position: absolute; top: 18px; right: 22px; font-size: 44px; color: var(--saffron); opacity: 0.15; }
.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; font-size: 13px; }
.testimonial-card p { color: var(--text-dark); font-size: 14px; margin-bottom: 22px; font-style: italic; line-height: 1.7; }
.testimonial-user { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.user-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--saffron));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.user-info .name { font-weight: 700; color: var(--navy); font-size: 14px; }
.user-info .loc { color: var(--text-gray); font-size: 12px; display: flex; align-items: center; gap: 5px; }
.user-info .loc i { color: var(--saffron); font-size: 10px; }

/* TRUST */
.trust-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 60px;
  color: #fff;
}
.trust-grid { 
  max-width: 1100px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px; 
  text-align: center; 
}
.trust-item { padding: 25px 15px; transition: 0.3s; border-radius: 16px; }
.trust-item:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); }
.trust-item .icon-box {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255,107,26,0.3);
}
.trust-item h4 { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.trust-item p { font-size: 13px; color: #c5d2e0; line-height: 1.6; }

/* CTA */
.cta-section { padding: 80px 60px; background: linear-gradient(135deg, #fff3e0 0%, #fef9f3 100%); }
.cta-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 24px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 30px 60px rgba(10,37,64,0.25);
  position: relative;
  overflow: hidden;
}
.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,107,26,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 2; flex: 1; }
.cta-content h2 { color: #fff; font-size: 30px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.cta-content p { color: #c5d2e0; font-size: 15px; max-width: 500px; }
.cta-action { position: relative; z-index: 2; }

/* FOOTER */
footer { background: var(--navy-dark); color: #c5d2e0; padding: 60px 60px 20px; position: relative; }
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF9933 33%, #fff 33%, #fff 66%, #138808 66%);
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 45px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-section { margin-bottom: 18px; }
.footer-brand .logo-text-block .hi { color: #fff; }
.footer-brand .logo-text-block .en { color: #8a9bb0; }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 95%; margin-bottom: 18px; }
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35px; height: 2px;
  background: var(--saffron);
}
.footer-col a {
  color: #c5d2e0;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  transition: 0.3s;
}
.footer-col a:hover { color: var(--saffron); padding-left: 6px; }
.footer-col a i { font-size: 11px; color: var(--saffron); }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  padding: 0;
}
.footer-socials a:hover { background: var(--saffron); padding: 0; transform: translateY(-3px); }
.newsletter { margin-top: 18px; }
.newsletter-input {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 11px 14px;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
}
.newsletter-input input::placeholder { color: #8a9bb0; }
.newsletter-input input:focus { outline: none; }
.newsletter-input button {
  background: var(--saffron);
  border: none;
  color: #fff;
  padding: 0 16px;
  cursor: pointer;
}
.newsletter-input button:hover { background: var(--saffron-dark); }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom a { color: #c5d2e0; text-decoration: none; margin-left: 20px; }
.footer-bottom a:hover { color: var(--saffron); }
.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  padding: 5px 12px;
  border-radius: 20px;
  margin-left: 15px;
}
.visitor-counter i { color: var(--saffron); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav.main-nav { display: none; }
  .hero-text h1 { font-size: 38px; }
  .dept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1300px;
    text-align: center;
    margin-top: 40px;
}
}
@media (max-width: 1100px) and (min-width: 769px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  .trust-section { padding: 60px 30px; }
}@media (max-width: 768px) {
  .top-strip, .top-header, .hero, .how-it-works, .departments, .trust-section, .track-section, .testimonials, .cta-section, footer, .quick-stats-banner, .notice-bar { padding-left: 20px; padding-right: 20px; }
  .hero-container, .steps, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(1, 1fr); gap: 15px; }
  .hero-text h1 { font-size: 28px; }
  .floating-card { position: static; margin-top: 30px; width: 100%; left: 0; }
  .floating-stat { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .top-strip { font-size: 10px; flex-direction: column; gap: 5px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-wrapper { flex-direction: column; text-align: center; padding: 40px 25px; }
  .helpline { display: none; }
  .track-input-group { flex-direction: column; }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeUp 0.8s ease backwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }
.hero-text > *:nth-child(5) { animation-delay: 0.5s; }
.hero-right { animation: fadeUp 0.8s ease 0.6s backwards; }

/* Screen reader only - for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 10px;
    background: #FF6B00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 99999;
    transition: top 0.3s;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
}