/* Add these styles to your existing CSS */

/* Mega Menu Styles */
.dropdown-menu {
  background-color: #082A71ff;
}

.mega-menu-title {
  color: #000;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}

.dropdown-item {
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #f8f9fa;
}

/* Mega Menu Company Policies */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

.navbar .dropdown-menu {
  display: none;
}

.navbar .nav-item.dropdown.active:hover .dropdown-menu {
  display: block;
}

/* Make the mega menu transparent in mobile view */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
      background-color: transparent;
  }
}
