body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
  max-width: 1200px; /* Set a maximum width for your content */
  margin: 0 auto; /* Center the content horizontally */
  padding: 0 20px; /* Add some padding to the sides */
}

/* Navbar Styles */
.navbar-light .navbar-nav .nav-link, 
.navbar-light .navbar-nav .nav-link.show, 
.navbar-light .navbar-nav .show>.nav-link {
  color: black;
  font-size: 16px;
}

.navbar-collapse {
  display: flex;
  justify-content: flex-end; /* Align items to the right */
}

.nav-item {
  margin: 0 10px; /* Adjust margin as needed */
}

.nav-link {
  color: #000; /* Change the color as needed */
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover {
  color: #144e19;
}

.nav-item.active .nav-link {
  font-weight: bold; /* Make the active link bold */
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}



