



.navbar {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  gap: 1rem;
}

.ham-btn {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.mobile-links {
  display: none;
}
@media (max-width: 768px) {
  .ham-btn {
    display: block;
  }
  .nav-links {
    display: none !important;
  }
  .nav-links a {
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
  }
  .navbar {
    justify-content: space-between;
  }
  .mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: fixed;
    top: 0;
    right: -250px;
    height: 100vh;
    width: 200px;
    transform: translateX(0);
    transition: right 0.3s ease-in-out;
    background-color: #ffffff;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding-top: 40px;
    z-index: 1000;
  }
  .mobile-links a {
    text-decoration: none !important;
    text-align: center;
    justify-content: start;
    align-items: center;
    font-size: 1.3rem;
    color: #000;
    /* background-color: #f0f0f0;
    padding: 8px 0px;
    border-radius: 10px; */
  }
  .mobile-links.active {
    right: 0;
  }
}
