body {
  padding-top: 70px; /* Adjust this value if needed */
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
  padding: 12px 40px;
}

.navbar .container-fluid {
  padding: 0px 40px 0px 5px;
  /* margin-left: 70px; */
  /* position: fixed; */

}

.navbar-brand img {
  width: 150px;
  height: auto;
}

.navbar-toggler {
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #00040c;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.nav-item {
  font-weight: 500;
}

.nav-link {
  color: rgb(21, 1, 1);
  font-weight: 500;
  transition: color 0.3s ease-in-out;
  padding: 10px;
  text-transform: capitalize;
  position: relative;
  font-size: 1.25rem;
}

.nav-link:hover,
.nav-link:focus {
  color: #00040c;
  text-decoration: none;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0%;
  height: 3px;
  background-color: rgb(24, 182, 235);
  transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

.nav-link:hover::before {
  width: 100%;
  left: 0;
}

/* Responsive Navbar */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding-top: 10px;
  }

  .navbar-collapse {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-item {
    margin: 10px 0;
  }

  .nav-link::before {
    width: 0%;
  }
  .navbar-brand img {
    width: 150px;
    height: auto;
    padding-left: 31px;
    margin-left: -72px;
}
}
