/* Desktop mode: show nav inline */
@media (min-width: 768px) {
nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
nav ul {
    display: flex;          /
    flex-direction: row;
    gap: 8px;       
  }
  
nav ul li {
    border: none;
  }
  
nav a {
    gap: 3px;
    color: #ffffff;
    font-size: 14px;
}  
  
.feather {
    height: 14px;
    width: 14px;
}  

nav ul li a:hover {
    background: none; 
    color: #007BFF;   
  }

  /* hide hamburger in desktop */
.hamburger-btn {
    display: none;
  }
  
  
nav a.active {
    color: #ffff00;
    border-right: none;
    border-bottom: 2px solid #ffff00;
}  
  
.search-input:focus{
    width: 600px;
    transition: 0.3s linear;
}  
}