
 .nav-right {
  padding-left: 300px;
}
.nav-left {
  padding-right: 300px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  transition: all 0.3s ease;
  z-index: 999;
 background: linear-gradient(to right, #43cea2, #185a9d);
  color: white;
  height: 65px;
}

.navbar .nav-link {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: #ff9900;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 30px;
  transition: all 0.3s ease;
}

.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.logo-icon {
  font-size: 20px;
  transition: all 0.3s ease;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: inherit;
}

/* SCROLL CLASSES */
.navbar.scrolled {
  background-color: #fff;
  height: 50px;
  padding: 5px 25px;
}

.navbar.scrolled .nav-link {
  padding: 5px 0;
  color: black;
}

.navbar.scrolled .logo {
  font-size: 15px;
  color: black;
}

.navbar.scrolled .logo-icon {
  font-size: 17px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-menu.active {
  left: 0;
}

.close-menu {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
}

.mobile-menu .nav-link {
  padding: 10px 0;
  font-size: 18px;
  color: white;
}

@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .logo-container {
    left: 50%;
    transform: translateX(-50%);
  }
}