

.navbar li{
    list-style: none;
  }
  
.navbar a{
    text-decoration: none;
    color:#fff;
    font-size: 1rem;
  }
  
.navbar a:hover {
    color: orange;
  }
  
  header {
    position: relative;
    padding: 2rem;
  }
  
  
  .navbar{
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
  }
  
  .navbar .logo a{
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    margin: 0 15px;
  }
  
  .navbar .links{
    display: flex;
    gap: 2rem;
  }
  
  
  .navbar .toggle_btn {
    color:
    #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
  }
  
  .action_btn {
    background-color: orange;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
  }
  
  
  .action_btn:hover {
    scale: 1.05;
    color: #fff;
  }
  
  .action_btn:active {
    scale: 0.95;
  }
  
  .dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    width: 300px;
    top: 80px;
    height: 0;
    background:rgba(255, 255, 255, 0.1);
    backdrop-filter: blur (15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .dropdown_menu.open{
    height: 180px;
  }
  
  .dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .toggle_img {
    width: 21px;
    height: 24px;
  }

  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .logo h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
  }

@media (max-width :992px){
    .navbar .links,
    .navbar .action_btn{
        display: none;
    }
  
    .navbar .toggle_btn{
        display: block;
    }
  
    .dropdown_menu{
        display: block;
    }
    
  }
  
  @media (max-width :576px){
    .dropdown_menu{
      left: 2rem;
      width: unset;
    }
  }