/* General Navbar Styles */
.navbar-toggler {
    border: none;
    background: transparent;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;base64,..."); /* Replace with actual SVG data or an image URL for the hamburger icon */
    width: 30px;
    height: 30px;
  }
  
  .navbar-collapse {
    display: flex;
    justify-content: flex-end;
  }
  
  /* Ensure the menu is hidden by default on mobile and only show when toggled */
  @media (max-width: 992px) { /* Adjust breakpoint as necessary */
    .navbar-collapse {
      display: none;
      width: 100%;
    }
  
    .navbar-collapse.show {
      display: block;
    }
  
    .navbar-nav {
      text-align: center;
      width: 100%;
    }
  
    .navbar-nav .nav-item {
      margin: 0;
    }
  
    .dropdown-menu {
      position: static;
      background-color: rgba(52, 86, 139, 0.7); /* Blue with 70% opacity */
      color: #fad8d8;
      box-shadow: none;
    }
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(52, 86, 139, 0.7); /* Blue with 70% opacity */
    color: #fad8d8;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(250, 216, 216, 0.7); /* Adjust shadow color to match transparency */
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu a.dropdown-item {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: #fad8d8; /* Ensure text color is readable */
  }
  
  .dropdown-menu a.dropdown-item:hover {
    background-color: rgba(52, 86, 139, 0.7); /* Slightly more transparent on hover */
  }
  
  .bg-dark {
    background-color: #34568b !important;
  }
  
  /* Change text color of menu bar links */ 
  .navbar-nav .nav-link {
    color: #fad8d8; /* Your desired color */
  }
  
  a {
    font-family: 'Avenir', 'Century Gothic', sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    max-width: 100%; /* Ensure full width */
    color: #fad8d8;
  }
  