.bg-lcdc{
    background-color: #007210;
    color: #fff;
}
.border-b{
    border-bottom: 1px solid #007210;
}
 /* Normal header behavior */
.header-nav {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
}

/* When scrolled down enough — becomes fixed */
.header-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease forwards;
}
.hero .carousel-indicators [data-bs-target] {
  cursor: pointer;
  width: 10px;
  height: 10px;
  background-color: #15296B;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .mega-menu {
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
  }
}
.bg-lcdc .nav-item{
  padding: 8px 13px;
}
.bg-lcdc .nav-item.active,
.bg-lcdc .nav-item:hover{
  background-color: #15296B;
}
.bg-lcdc .dropdown-menu{
  left: 0px;
  border-radius: 0px;
  top: 60px;
}

    .navbar-nav .nav-link {
      font-weight: 500;
      padding: 10px 15px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #eaf5ec;
    }

    .mega-menu h6 {
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
    }

    .dropdown-menu .dropdown-item:hover {
      color: #15296B;
    }

    /* Align toggler in top bar */
    .header-top .navbar-toggler {
      display: none;
      border: none;
      background: transparent;
    }

    .humburgermenu {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #fff; 
  border-radius: 2px;
  margin: 2px 0; 
  transition: all 0.3s ease;
}

.m-mobile:hover .humburgermenu {
  background-color: #fff;
}

.m-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}


    @media (max-width: 1199.98px) {
      .header-top .navbar-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
    }

    /* Make mega menu responsive */
    @media (max-width: 991.98px) {
      .mega-menu {
        width: 100%;
        position: static;
        box-shadow: none;
        padding: 0;
      }

      .mega-menu .container {
        padding: 0 1rem;
      }

      .mega-menu h6 {
        margin-top: 1rem;
      }
    }

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
}
.navbar-nav .nav-link:hover {
  color: #fff;
}

/* Smooth slide-down animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
img{
  height: auto;
  max-width: 100%;
}
/* Prevent content from being hidden behind fixed header */
body.has-fixed-header {
  padding-top: 90px; /* adjust height of your nav */
}
.language-switch a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}
.language-switch a:hover,
.language-switch a.active{
    background-color: #007210;
    border-radius: 5px;
    color: #fff;
}

@media (max-width: 767.98px) {
  .bg-lcdc {
    background-color: #eee; /* your mobile color (example: blue) */
    color: #000; /* optional, keep white text */
  }
  .bg-lcdc .nav-item:hover{
    background-color: #eee;
  }
  .navbar-nav .nav-link {
    color: #15296B;
    font-weight: 500;
  }
  .navbar-nav .nav-link:hover {
    color: #15296B;
  }
  .bg-lcdc .nav-item.active, .bg-lcdc .nav-item:hover{
    background-color: #eee;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active{
    color: #15296B;
  }
}