.navbar .navbar-nav .nav-item .nav-link{
font-family: "Roboto", sans-serif;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  letter-spacing:2px;
  text-transform: uppercase;
}
.navbar-bg-body{
    background: #091135;
}
/* CSS for enlarging the logo without overlap */
.navbar-brand .large-logo {
  max-width: 70px; /* or your desired size */
  height: auto;
  -webkit-box-shadow: 0px 0px 68px 0px rgba(66, 68, 90, 1);
-moz-box-shadow: 0px 0px 68px 0px rgba(66, 68, 90, 1);
box-shadow: 0px 0px 68px 0px rgba(66, 68, 90, 1);
}
@media (max-width: 992px) {
  /* Adjust logo size for smaller screens if needed */
  .navbar-brand .large-logo {
    max-width: 70px;
    -webkit-box-shadow: 0px 0px 68px 0px rgba(66, 68, 90, 1);
-moz-box-shadow: 0px 0px 68px 0px rgba(66, 68, 90, 1);
box-shadow: 0px 0px 68px 0px rgba(66, 68, 90, 1);
  }
}
@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0;
    }
}
/* Custom CSS to position toggler on the right */
.navbar .navbar-toggler {
  margin-left: auto; /* or margin-right if needed in RTL */
}
.navbar .navbar-toggler {
  background-color: #007bff; /* your desired background color */
  border-color: #0056b3;     /* optional border color */
  border-radius: 0px;
}
/* Override the default toggler icon with a white hamburger icon */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
#myNavbar {
  position: sticky;
  top: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1050;
   background: linear-gradient(135deg, #0d2b4f, #091135); /* optional */
}
/* When fixed-top class is added, make sure to set position and other styles */
.fixed-top-custom {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1050;
  /* You can add background or shadow if needed */
  /* Example: */
  /* background-color: #fff; */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 992px) { /* Bootstrap lg breakpoint */
  #myNavbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #myNavbar .large-logo {
    max-height: 40px; /* limit logo size */
  }
}
