* {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;

}


.navbar {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 0 0 15px 15px;
  top: 0;

}

.container-fluid {
  display: flex;
  margin-right: 300px;
}

.navbar-brand {
  display: flex;
  flex-direction:row;
  gap:10px;

}

.navbar-brand img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
  border-radius: 10px;
  margin-left: 0px;
}

.navbar-brand img:hover {
  transform: scale(1.03);
  cursor: pointer;
}


.brand-text {
  display: flex;
  align-items: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.3rem;
}




/* Navbar links */
.navbar-nav .nav-link {
  margin: 0;
  color: #004f8b;
  font-weight: bold;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;

}

.navbar-nav.me-auto {
  margin: 0 !important;
}

/* Hover / active link effects */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #00a0e9;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}