:root {
  --brand-yellow: #f5a800;
  --brand-blue: #1a4fa0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1a1a2e;
}

/* Navbar */
.navbar-brand img {
  height: 48px;
  width: auto;
}

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

.navbar .btn-primary:hover {
  background-color: #143d80;
  border-color: #143d80;
}

.navbar .btn-outline-secondary {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.navbar .btn-outline-secondary:hover {
  background-color: var(--brand-blue);
  color: #fff;
}

/* Hero */
.hero-section {
  background: linear-gradient(135deg, #0a1d3a 0%, #1a4fa0 50%, #0f2d5e 100%);
  padding: 100px 0 80px;
}

.hero-section .display-4 {
  color: #ffffff;
  font-weight: 700;
}

.hero-section .lead {
  color: #c8d8f0 !important;
}

.hero-section p.text-uppercase {
  color: var(--brand-yellow) !important;
}

.hero-section .btn-warning {
  background-color: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #1a1a2e;
  font-weight: 600;
  padding: 14px 32px;
}

.hero-section .btn-warning:hover {
  background-color: #d9920a;
  border-color: #d9920a;
  color: #fff;
}

/* Services */
.services-section {
  background-color: #f8f9fc;
  padding: 80px 0;
}

.services-section .section-title {
  color: var(--brand-blue);
  font-weight: 700;
}

.service-card {
  border: none;
  border-top: 4px solid var(--brand-blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(26, 79, 160, 0.12) !important;
}

.service-icon {
  font-size: 2.6rem;
  color: var(--brand-yellow);
  margin-bottom: 16px;
}

.service-card .card-title {
  color: var(--brand-blue);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: #0f2850;
  color: #cdd8f0;
}

.site-footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 16px;
}

.site-footer a {
  color: var(--brand-yellow);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-contact li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact .bi {
  color: var(--brand-yellow);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-copyright {
  background-color: #0a1d3a;
  color: #8a9bbf;
  font-size: 0.85rem;
  padding: 14px 0;
}

/* Extracted inline styles */
/* Hero two-column logo card */
.hero-logo-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 380px;
  width: 100%;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-eyebrow {
  color: var(--brand-yellow);
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.hero-tagline {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: #c8d8f0 !important;
}

.services-subtitle {
  max-width: 480px;
  margin: 0 auto;
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-md-name {
  color: #fff;
}