body {
  padding-top: 115px; /* Adjust based on combined height of top bar + navbar */
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.navbar .btn-primary {
  white-space: nowrap;
}

.navbar.fixed-top {
  top: 30px; /* height of top info bar; adjust if needed */
  z-index: 1030; /* default Bootstrap z-index */
}
/* smoot scroolling */
html {
  scroll-behavior: smooth;
}

.navbar-nav .nav-link.active {
  font-weight: 600;
  color: #550404 !important;
}

/* Top info bar */
.top-info-bar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1050; /* higher than navbar (default Bootstrap navbar z-index is 1030) */
   font-size: 0.9rem;
}

.top-info-bar a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-info-bar a:hover {
  color: #fd0d0d;
}

