/* Global styles & theme */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #e0ecff;
  --accent: #f97316;
  --bg-light-alt: #f3f4f6;
  --text-main: #111827;
  --text-muted: #6b7280;
  --section-radius: 1.5rem;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background-color: #f9fafb;
}
/* Navbar */
.main-navbar {
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.9) !important;
}
.navbar-brand span {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
.navbar-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  opacity: 0.8;
}
.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 500;
}
.nav-link:hover,
.nav-link:focus {
  color: #e5e7eb !important;
}
/* Hero */
.hero-section {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.35), transparent 55%),
    linear-gradient(135deg, #020617, #0f172a 40%, #1e3a8a);
  color: #fff;
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: url("https://via.placeholder.com/1600x700?text=Inclusive+Society")
    center/cover no-repeat;
  mix-blend-mode: screen;
}
.hero-section > .container {
  position: relative;
  z-index: 1;
}
.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.2;
}
.hero-section p.lead {
  font-size: 1.1rem;
  max-width: 700px;
  color: #e5e7eb;
}
.btn-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
}
.btn-hero:hover {
  background: linear-gradient(135deg, var(--primary-dark), #1e40af);
}
/* Generic sections */
.section-padding {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.bg-light-alt {
  background-color: var(--bg-light-alt) !important;
}
.section-title {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
.section-subtitle {
  color: var(--text-muted);
  max-width: 700px;
}
.highlight-heading {
  font-weight: 600;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
/* Cards & features */
.feature-card {
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background-color 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.55);
  background-color: #ffffff;
}
.feature-card .card-title {
  font-weight: 600;
}
/* Icon circle */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  background: #eff6ff;
}
/* Lists */
.list-check {
  list-style-type: disc;
}
.list-check li {
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}
.list-check li::marker {
  color: var(--primary);
}
/* Board table */
.board-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-color: transparent;
}
.board-table td,
.board-table th {
  vertical-align: middle;
}
.board-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}
/* Badges, stats */
.badge-pill {
  border-radius: 50rem;
}
.stat-card {
  border-left: 4px solid var(--accent);
  border-radius: 1.1rem;
}
/* CTA ribbon */
.cta-ribbon {
  border-radius: var(--section-radius);
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
  color: #fff;
  box-shadow: 0 20px 40px rgba(55, 65, 81, 0.35);
}
.cta-ribbon h4 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
/* Forms */
.form-control,
.form-select {
  border-radius: 0.7rem;
  border-color: #d1d5db;
}
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.2);
  border-color: var(--primary);
}
/* Map placeholder */
.map-placeholder {
  border-style: dashed !important;
  border-color: #cbd5f5 !important;
}
/* Footer */
.site-footer {
  background-color: #020617;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}
.site-footer a {
  color: #e5e7eb;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1030;
  display: none;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.4);
}
/* Small utilities */
.small,
.small.text-muted {
  font-size: 0.84rem;
}
/* Responsive tweaks */
@media (min-width: 992px) {
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
  .hero-section h1 {
    font-size: 2.8rem;
  }
}
/* mouni */
html, body {
  overflow-x: hidden;
}
/* header-logo */
.header-logo {
  max-width: 100px; 
}
body{
  font-family: serif;
}
.navbar{
  font-style: normal;
}
/* header */
html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 90px; 
}
 .section-title{
  letter-spacing: 0.3px !important;
 }
   .social-text {
  color: #dcdcdc;
}