header.navigation {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 999;
  background-color: white;
  transition: background-color 0.3s ease-in-out;
}

/* Contact Info Styling */
.header-top {
  background-color: #209350;
  padding: 5px 0;
}

.header-top-socials a {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  padding: 5px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.header-top-info a {
  color: white;
  margin-left: 15px;
  font-weight: 500;
}

.header-top-info span,
.header-top-info i,
.header-top-socials i {
  color: #CCFF00; /* high-contrast light tone for label visibility */
}

.header-top-info {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Logo Section Styling */
.logo-section {
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  height: auto;
  padding: 10px 0;
}

/* Center the content inside logo section */
.logo-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; /* optional spacing between logos */
}

.logo-section .navbar-brand img {
  height: 80px;
}

#logoBar {
  transition: all 0.4s ease;
}

/* On scroll: hide logo section completely */
.scroll-active .logo-section {
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
}

/* Navbar Styling */
#navbar {
  background-color: white;
}

.navbar-nav .nav-link {
  color: black;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #209350;
}

.navbar-toggler {
  color: black;
  border-color: black;
}

/* Button Styling */
.btn-solid-border {
  color: black;
  border: 2px solid black;
}

.btn-solid-border:hover {
  background-color: #209350;
  color: white;
  border-color: #209350;
}
