.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  /* or your preferred background */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Optional shadow on scroll */
}

.site-menu li.active a {
  font-weight: bold;
  color: #007BFF;

}



.site-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-toggler {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .site-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 1rem;
  }

  .site-menu.show {
    display: flex;
  }
}