  /* ===== NAV BAR ===== */
  .navbar {
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    position: relative;
  }
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo-area { display: flex; align-items: center; gap: 8px; text-decoration: none; cursor: pointer; }
  .logo-badge {
    width: 46px; height: 46px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2b6fc9, #123a63);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: bold; font-size: 11px;
  }
  .logo-text { font-size: 26px; font-weight: bold; color: #123a63; letter-spacing: 1px; }

  .nav-links { display: flex; }
  .nav-links a {
    background: #4fa8de;
    padding: 22px 22px;
    font-weight: bold;
    color: #fff;
    font-size: 15px;
    border-right: 1px solid rgba(255,255,255,0.25);
  }
  .nav-links a.active { background: #3d95cc; }
  .nav-links a:hover { background: #3d95cc; }

  /* ===== MEGA MENU (About Us / Services / Procurement) ===== */
  .nav-item { display: flex; position: relative; }
  .nav-item > a.dropdown-trigger { display: flex; align-items: center; }
  .mega-menu {
    display: none;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    z-index: 700;
    padding: 30px 50px 40px;
    text-align: left;
  }
  .mega-cols { display: flex; gap: 40px; flex-wrap: wrap; }
  .mega-cols-2 { gap: 60px; }
  .mega-col { flex: 0 0 auto; width: 220px; }
  .mega-cols-2 .mega-col { width: 320px; }
  .mega-cols-5 .mega-col { width: 185px; }
  .mega-col-title-bold {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    color: #1e2b3d;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
  }
  .mega-col-title {
    font-weight: 400;
    font-size: 17px;
    color: #1e2b3d;
    margin-bottom: 16px;
  }
  .mega-item-bold, .mega-item-plain {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid #eee;
    color: #222;
    text-decoration: none;
    font-size: 15px;
  }
  .mega-item-arrow {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 14px;
  }
  /* Higher specificity overrides to defeat the generic .nav-links a button styling */
  .mega-menu .mega-item-bold,
  .mega-menu .mega-item-plain {
    background: none;
    border-right: none;
    font-weight: 400;
    padding: 11px 0;
    color: #222;
    font-size: 15px;
  }
  .mega-menu .mega-item-arrow {
    background: none;
    border-right: none;
    font-weight: 400;
    padding: 9px 0;
    color: #333;
    font-size: 14px;
  }
  .mega-menu .mega-item-bold { font-weight: 700; }
  .mega-item-arrow::before { content: "\25B8"; color: #666; margin-right: 6px; }
  .mega-menu .mega-item-bold:hover,
  .mega-menu .mega-item-plain:hover,
  .mega-menu .mega-item-arrow:hover {
    color: #4fa8de;
    background: none;
  }

  @media (min-width: 901px) {
    .mega-menu {
      position: absolute;
      top: 100%;
      margin-top: -20px;
      padding-top: 50px;
      left: 0;
      width: max-content;
      max-width: min(calc(100vw - 40px), 1300px);
    }
    .nav-item:hover .mega-menu,
    .nav-item.open .mega-menu {
      display: block;
    }
    .nav-item.force-hide .mega-menu {
      display: none !important;
    }
  }

  /* ===== HAMBURGER (mobile only) ===== */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: #4fa8de;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background: #fff;
    margin: 0 auto;
    border-radius: 2px;
  }
