:root {
  --bs-primary: #0873b1;
  --bs-primary-rgb: 8, 115, 177;
  --bs-link-color: #0873b1;
  --bs-link-hover-color: #08609a;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: #f7fbff;
}

.navbar-brand img {
  height: 38px;
  border-radius: 8px;
}

.hero-bg {
  background: linear-gradient(180deg, #e3f4ff 0%, #f4faff 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.card-title,
.text-primary {
  color: #238ecb !important;
}

.bg-primary,
.btn-primary,
.badge.bg-primary {
  background-color: #0873b1 !important;
  border-color: #0873b1 !important;
}

.btn-primary:hover {
  background-color: #08609a !important;
  border-color: #08609a !important;
}

.nav-link.active,
.nav-link:focus,
.nav-link:hover {
  color: #fff !important;
  background: #0873b1 !important;
  border-radius: 8px;
}

footer {
  background: #0873b1;
  color: #fff;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  color: #0873b1;
  background: #fff;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


