/* FSL11 India — Brand stylesheet
   Brand palette: Navy Blue + Neon Green + Yellow accents
   Built 2026-06-28 (initial fleet build)
*/

:root {
  --primary: #0B1E3F;
  --accent: #00E676;
  --highlight: #FFD600;
  --bg: #F5F8FC;
  --text: #0B1E3F;
  --muted: #475467;
  --surface: #FFFFFF;
  --border: #EAECF0;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(11, 30, 63, 0.08);
  --shadow-lg: 0 8px 32px rgba(11, 30, 63, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Noto Sans Devanagari', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; margin-bottom: 16px; color: var(--primary); }
h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 700; margin-bottom: 16px; margin-top: 32px; color: var(--primary); }
h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
p { margin-bottom: 16px; }
ul, ol { margin: 0 0 16px 24px; }
li { margin-bottom: 8px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #1A2F5C; color: #fff; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: #00C764; color: var(--primary); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* Topbar */
.topbar {
  background: var(--primary);
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar .promo { display: flex; align-items: center; gap: 8px; }
.topbar .badge {
  background: var(--highlight);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.topbar .promo strong { color: var(--highlight); }
.topbar .social { display: flex; gap: 12px; }
.topbar .social a {
  color: #fff;
  font-size: 12px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.topbar .social a:hover { background: var(--accent); color: var(--primary); }

/* Header */
header.site {
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 20px;
}
header.site .logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
header.site .logo .mark {
  background: var(--primary);
  color: var(--highlight);
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
header.site .logo .cs { color: var(--accent); }
header.site nav.main { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
header.site nav.main a { color: var(--text); font-weight: 500; font-size: 15px; }
header.site nav.main a:hover { color: var(--accent); }

/* Breadcrumb */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 0; font-size: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb .sep { color: var(--muted); margin: 0 6px; }
.breadcrumb span:last-child { color: var(--text); font-weight: 500; }

/* Hero */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero h1 { color: var(--primary); }
.hero p.lede { font-size: 20px; color: var(--muted); margin-bottom: 24px; max-width: 800px; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* Disclaimer */
.disclaimer {
  background: rgba(11, 30, 63, 0.05);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  margin: 24px auto;
  max-width: var(--container);
  font-size: 14px;
  color: var(--muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.disclaimer strong { color: var(--primary); }

/* Longform content */
.longform { max-width: 800px; }
.longform h2 { margin-top: 40px; }
.longform h2:first-of-type { margin-top: 24px; }
.longform p { margin-bottom: 18px; }
.longform figure { margin: 32px 0; }
.longform figure img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.longform figure figcaption { font-size: 14px; color: var(--muted); margin-top: 8px; text-align: center; }
.longform ul, .longform ol { margin-bottom: 18px; padding-left: 24px; }
.longform li { margin-bottom: 10px; }
.longform a { color: var(--primary); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }
.longform a:hover { color: var(--accent); }
.longform blockquote {
  background: var(--bg);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

/* Section + alt */
section { padding: 48px 0; }
section.alt { background: var(--surface); }
section.dark { background: var(--primary); color: #fff; }
section.dark h2 { color: #fff; }
section.dark p { color: rgba(255,255,255,0.9); }

/* Hub grid */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.hub-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.hub-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--accent); }
.hub-card h3 { font-size: 18px; margin-bottom: 8px; }
.hub-card p { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.hub-card a { color: var(--primary); font-weight: 600; font-size: 14px; }
.hub-card a:hover { color: var(--accent); }

/* News list */
.news-list { display: grid; gap: 20px; }
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  transition: box-shadow 0.2s;
}
.news-card:hover { box-shadow: var(--shadow); }
.news-date {
  background: var(--primary);
  color: #fff;
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
}
.news-date .day { font-size: 32px; font-weight: 800; line-height: 1; }
.news-date .month { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.news-meta { font-size: 12px; color: #888; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.news-card h3 { font-size: 22px; line-height: 1.3; margin: 0 0 12px 0; }
.news-card h3 a { color: inherit; text-decoration: none; }
.news-card h3 a:hover { color: var(--accent); }
.news-card p.excerpt { font-size: 15px; line-height: 1.6; color: #555; margin: 0 0 12px 0; }
.news-card .tag {
  display: inline-block;
  font-size: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  margin-right: 8px;
}
.news-card .read-more { font-size: 14px; color: var(--primary); font-weight: 600; }
.news-card .read-more:hover { color: var(--accent); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
  margin-top: 24px;
}
.stats .stat { padding: 24px 16px; }
.stats .stat .num { font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 8px; color: var(--highlight); }
.stats .stat .label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* FAQ */
.faq-list { max-width: 800px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding: 0 20px 20px 20px; color: var(--muted); }

/* Inline CTA */
.inline-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1A2F5C 100%);
  color: #fff;
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  margin: 48px 0;
  box-shadow: var(--shadow-lg);
}
.inline-cta h3 { color: #fff; font-size: 26px; margin-bottom: 12px; }
.inline-cta p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 20px; }
.inline-cta .cta-pair { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.inline-cta .btn-primary { background: var(--accent); color: var(--primary); }
.inline-cta .btn-primary:hover { background: var(--highlight); }
.inline-cta .btn-outline { background: transparent; color: #fff; border-color: #fff; }
.inline-cta .btn-outline:hover { background: #fff; color: var(--primary); }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-top: 1px solid var(--border);
}
.sticky-cta a { flex: 1; max-width: 240px; text-align: center; padding: 14px 20px; }
@media (min-width: 1024px) {
  .sticky-cta { display: none !important; }
  body.has-sticky { padding-bottom: 0; }
}
body.has-sticky { padding-bottom: 80px; }
@media (min-width: 1024px) { body.has-sticky { padding-bottom: 0; } }

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 64px;
}
footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
footer .footer-brand .logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
footer .footer-brand .logo .mark { background: var(--highlight); color: var(--primary); padding: 6px 10px; border-radius: 8px; }
footer .footer-brand .logo .cs { color: var(--accent); }
footer .footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
footer .footer-brand .cta-row { display: flex; gap: 8px; flex-wrap: wrap; }
footer .footer-brand .cta-row .btn-primary { background: var(--accent); color: var(--primary); }
footer .footer-brand .cta-row .btn-outline { background: transparent; color: #fff; border-color: #fff; }
footer .footer-heading { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--highlight); margin-bottom: 12px; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,0.8); font-size: 14px; }
footer ul li a:hover { color: var(--accent); }
footer .legal-bar {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
footer .legal-bar strong { color: var(--highlight); }

@media (max-width: 768px) {
  header.site .container { flex-direction: column; align-items: stretch; gap: 12px; }
  header.site nav.main { justify-content: center; gap: 12px; font-size: 14px; }
  .hero { padding: 40px 0 24px; }
  .hero p.lede { font-size: 17px; }
  .news-card { grid-template-columns: 1fr; gap: 16px; }
  .news-date { display: inline-block; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  footer .container { grid-template-columns: 1fr 1fr; gap: 20px; }
  section { padding: 32px 0; }
  .inline-cta { padding: 28px 20px; }
  .inline-cta h3 { font-size: 22px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* Banner image */
.banner-img { width: 100%; height: auto; max-height: 500px; object-fit: cover; border-radius: var(--radius); margin: 24px 0; }

/* Section heads */
.section-head { margin-bottom: 24px; }
.section-head.left { text-align: left; }
.section-head.center { text-align: center; }
.section-head h2 { margin-bottom: 8px; }
.section-head p { color: var(--muted); font-size: 16px; max-width: 700px; }
.section-head.center p { margin: 0 auto; }

/* Cards (for blog anchor grid) */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 24px 0; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: block; transition: all 0.2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--accent); }
.card .label { display: inline-block; font-size: 11px; background: var(--accent); color: var(--primary); padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.card h3 { font-size: 18px; margin: 12px 0 8px; }
.card p { font-size: 14px; color: var(--muted); margin: 0; }
