/* Sticky menu container */
.sticky-menu {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #d88012;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border-radius: 5px;  
}

.sticky-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.sticky-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  line-height: normal;
}

.sticky-menu a:hover {
  background: #c1710e;  
}

@media (max-width: 767px) {
  .sticky-menu{
    display: none;
  }
}