:root {
  --brand-primary: #0b3a63;
  --brand-accent: #1a73b8;
  --brand-light: #f0f6fb;
}

body {
  font-family: "Source Serif 4", "Georgia", serif;
  color: #1e2a36;
}

.hero {
  background: linear-gradient(135deg, #0b3a63 0%, #1a73b8 60%, #3a9ddc 100%);
  position: relative;
  overflow: hidden;
}

.hero-modern {
  background: linear-gradient(135deg, #0b3a63 0%, #114a79 40%, #1a73b8 70%, #3a9ddc 100%);
}

.hero-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.12), transparent 45%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #f5fbff;
  margin-bottom: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.hero-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.section-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a647d;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(9, 35, 64, 0.12);
}

.feature-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7f93;
  margin-bottom: 8px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.glass-card {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.card {
  border-radius: 16px;
}

.navbar {
  background: var(--brand-primary) !important;
}

.list-group-item {
  border-radius: 12px;
  margin-bottom: 10px;
}

.btn-primary {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
}

.footer {
  background: #fff;
}
.hero-media img {
  object-fit: cover;
}
