/* ─── BMIET Global Design Tokens ───────────── */
:root {
  --bm-primary: #003366;
  --bm-secondary: #0055a5;
  --bm-accent: #ffc107;
  --bm-light-bg: #f8f9fb;
  --bm-card-radius: 0.75rem;
  --bm-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bm-font: 'Segoe UI', system-ui, sans-serif;
}

/* ─── Typography & Body Reset ──────────────── */
body {
  font-family: var(--bm-font);
  background: var(--bm-light-bg);
  color: #333;
  margin: 0;
}

h1, h2, h3, h4 {
  color: var(--bm-primary);
  font-weight: 600;
}

.text-bm-primary {
  color: var(--bm-primary) !important;
}

.bg-bm-primary {
  background-color: var(--bm-primary) !important;
  color: #fff !important;
}

.btn-warning {
  background-color: var(--bm-accent);
  border: none;
  font-weight: 600;
}

.btn-warning:hover {
  background-color: #e0a800;
}

/* ─── Hero Section ─────────────────────────── */
.hero {
  background: var(--bm-primary);
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

/* ─── Recruiter Logo Grid ──────────────────── */
.recruiter-logo img {
  max-height: 60px;
  width: auto;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease;
  opacity: 0.9;
}
.recruiter-logo img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ─── Testimonials Card Styling ────────────── */
.card blockquote,
.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.blockquote-footer {
  font-size: 0.85rem;
  color: #777;
}

/* ─── Nav Pills (Section Scroll) ───────────── */
.nav-pills .nav-link.active {
  background-color: var(--bm-primary);
  color: #fff;
}

.nav-pills .nav-link {
  font-weight: 500;
}

/* ─── CTA Section ──────────────────────────── */
.bg-bm-primary h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bg-bm-primary p {
  font-size: 1.05rem;
}

/* ─── Tables ───────────────────────────────── */
.table th, .table td {
  vertical-align: middle;
  font-size: 0.95rem;
}

/* ─── Responsive Fixes ─────────────────────── */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p,
  .bg-bm-primary p {
    font-size: 0.95rem;
  }

  .nav-pills {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    font-size: 0.95rem;
  }
}