/* ====================================================
   🎨 DESIGN TOKENS
==================================================== */

:root {
  --blue-primary: #0d6efd;
  --blue-dark: #0b5ed7;
  --blue-light: #e7f1ff;

  --text-dark: #0b2e59;
  --text-muted: #6c757d;

  --bg-light: #f8fafc;
  --border-light: #cfe2ff;

  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
}


/* ====================================================
   🌍 BASE LAYOUT
==================================================== */

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background: var(--bg-light);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.content-wrapper {
  flex: 1;
}

.container {
  max-width: 1200px;
}

/* ====================================================
   🧭 HEADER / NAVIGATION
==================================================== */

.navbar {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-primary)) !important;
}

.navbar-brand {
  color: white !important;
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
}

.navbar-nav .nav-link:hover {
  color: white !important;
}


/* ====================================================
   🧱 HERO
==================================================== */

.hero {
  padding: 50px 20px 30px;
  text-align: center;
}

.hero h1 {
  color: var(--text-dark);
  font-weight: 700;
}

.hero p {
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto;
}


/* ====================================================
   📌 SECTION TITLES
==================================================== */

.section-title {
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--blue-primary);
  color: var(--text-dark);
}


/* ====================================================
   🧱 CARDS
==================================================== */

.card-box {
  border: none;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-soft);
  padding: 20px;

  height: 100%;
  display: flex;
  flex-direction: column;

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.08);
}

.card-box a {
  margin-top: auto;
  align-self: flex-start;
}

.card-box h6 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
}

.card-box h4 {
  margin-bottom: 10px;
}


/* ====================================================
   🔵 BUTTONS
==================================================== */

.btn-blue {
  background: var(--blue-primary);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
}

.btn-blue:hover {
  background: var(--blue-dark);
  color: white;
}


/* ====================================================
   🔗 LINKS
==================================================== */

.back-link {
  margin-top: 20px;
  display: inline-block;
  color: var(--blue-primary);
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}


/* ====================================================
   📦 CONTENT BLOCKS
==================================================== */

.content-box {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 30px;
}


/* ====================================================
   📣 CALLOUTS
==================================================== */

.callout {
  background: var(--blue-light);
  border-left: 4px solid var(--blue-primary);
  padding: 15px;
  border-radius: var(--radius-md);
  margin: 15px 0;
}


/* ====================================================
   📊 TABLES
==================================================== */

.table {
  margin-top: 15px;
}

.table th {
  color: var(--text-dark);
}


/* ====================================================
   📄 LISTS
==================================================== */

ul {
  margin-bottom: 15px;
}

ol {
  margin-bottom: 15px;
}


/* ====================================================
   📏 SPACING (HELPERS)
==================================================== */

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}


/* ====================================================
   🧩 FOOTER
==================================================== */

footer {
  background: var(--blue-light);
  text-align: center;
  padding: 15px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}