    /* Custom CSS for dropdown hover */
    .dropdown:hover .dropdown-menu,
    .dropdown-submenu:hover .dropdown-menu {
      display: block;
    }
    /* Custom CSS for navbar */
    .navbar-custom {
	background-color: #FFFFFF;
    }
    .navbar-custom .navbar-brand,
    .navbar-custom .nav-link,
    .navbar-custom .dropdown-toggle,
    .navbar-custom .navbar-nav .nav-item .nav-link {
	color: #000;
    }
    /* Custom CSS for large font text */
    .navbar-brand {
      font-size: 24px; /* Adjust as needed */
      white-space: nowrap;
    }
	 /* Custom CSS for toggler button */
  .navbar-toggler {
    background-color: black;
    border-color: white;
  }

  /* Custom CSS for toggler icon */
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
