
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    .containerBox {
    background-color: #0b0b0f;
    font-family: "Poppins", sans-serif;
    color:#fff;
  }
 .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative; 
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.navbar-logo img {
  width: 80px;
  height: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #000;
  padding: 12px 36px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
  padding: 8px 0; 
}

.navbar-menu a:hover {
  color: #fff;
}

.dropdown {
  position: relative;
  padding: 8px 0; 
}

.dropdown-toggle::after {
   content: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; 
  left: 0;
  background: #000;
  border-radius: 8px;
  min-width: 140px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  flex-direction: column;

}

.dropdown::before {
  content: "";
  position: absolute;
  bottom: -5px; 
  left: 0;
  width: 100%;
  height: 15px; 
  opacity: 0; 
  pointer-events: none;
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu li {
  border-bottom: 1px solid #222;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px; 
  color: #fff;
  text-decoration: none;
  text-align: left;
  font-size: 15px;
  transition: background 0.3s;
  border-bottom: none; 
}

.dropdown-menu li a:hover {
  background: #222;
}

@media (min-width: 901px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .dropdown {
    transition: all 0.1s ease;
  }
  .dropdown-menu {
    transition: display 0.1s ease;
  }
}

.menu-toggle {
  display: none;
  background: #000; 
  border: none;
  color: white;
  font-size: 26px;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 900px) {
  .navbar {
    padding: 12px 15px;
  }

  .navbar-menu {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 0;
    background: #000;
    width: calc(100vw - 30px);
    max-width: 480px;
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .navbar-menu.active {
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-menu a {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #222;
  }

  .navbar-menu a:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    display: none;
    flex-direction: column;
    width: 100%;
    background: #111; 
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown-menu li a {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #222;
  }
}