/* Navbar & Announcement Bar Styling */
.top-announcement-bar {
  background-color: #113a7a;
  color: #ffffff;
  border-bottom: 1px solid #1e40af;
}

.main-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.nav-link {
  position: relative;
  text-transform: uppercase;
  color: #475569;
  font-weight: 700;
  padding: 0.5rem 0.25rem;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: #113a7a;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #113a7a;
  border-radius: 2px;
}

/* Mobile Drawer Overlay */
#mobile-menu {
  transition: all 0.3s ease-in-out;
}
