.navbar {
  padding-bottom: 1.2rem;
  padding-right: 1.7rem;
  padding-left: 1.7rem;
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.logo-image {
  height: 120px;
}

.logo-text {
  color: white;
}

.nav-links {
  font-family: 'Poppins';
  font-weight: bold;
  list-style: none;
  display: flex;
  position: relative;
  margin: 0;
}

.nav-links li {
  margin: 0 5px;
}

.nav-links a {
  color: rgb(35, 33, 33);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  padding: 10px 20px;
  transition: color 0.3s ease; 
}

.nav-links a:after,
.nav-links a:before {
  content: "";
  position: absolute;
  display: block;
  border: 0px solid transparent;
  width: 0%;
  height: 0%;
  transition: all 0.5s ease;
}

.nav-links a:after {
  width: 0%;
  height: 0%;
  top: 0;
  left: 0;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
}

.nav-links a:before {
  width: 0%;
  height: 0%;
  right: 0;
  bottom: 0;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
}

.nav-links a:hover::before,
.nav-links a:hover::after {
  width: 98%;
  height: 92%;
  border-color:  #6A5ACD;
}


.menu-toggle {
  display: none;
  background-color: transparent;
  border: none;
  color: rgb(35, 33, 33);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-toggle:hover {
  color: #FF6700;
}

.menu-toggle .icon {
  transition: transform 0.3s ease, fill 0.3s ease;
}

.menu-toggle .icon.open {
  transform: rotate(90deg);
  fill: #FF6700;
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {

  .nav-links {
    flex-direction: column;
    width: 100%;
    background-color: #ffff;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
    display: none;
  }


  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .menu-toggle {
    font-size: 1.5rem;
  }

  .logo-image {
    height: 50px;
  }
}