.hamburger {
    display: none;
    cursor: pointer;
    font-size: 25px;
    color: #333;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    color: #fff;
    background: rgb(0 93 72 / 62%);
    text-align: center;
    z-index: 10;
    border-radius: 20px;
}

.nav-links {
    display: flex;
    transition: all 0.3s ease 0s;
}

.nav-links a {
    margin: 10px 0;
    padding: 10px;
    display: block;
}


    
/* Hide the menu by default on larger screens */

.menu-links {
    display: none;
    position: absolute;
    top: 120px;
    right: 0;
    left: 0;
    background-color: #5d9440;
    width: 200px;
    padding: 10px;
    border-radius: 5px;
    flex-direction: column;
}

.menu-links a {
  color: white;
  text-decoration: none;
   
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease 0s;
  padding: 10px;
}

/* Show menu when active */
.menu-links.active {
    display: flex;
}

/* Show the hamburger icon only on mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.logo {
    width: 80px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure responsiveness */
}


    @media (max-width:820px) {
        .nav-links {
            display: none; 
        }
    
        .hamburger {
            display: block; 
            font-size: 19px;
        }
    
        .search {
            display: none;
        }
        
          .logo {
        width: 60px; /* Smaller size for mobile */
    }
    
    }
    
@media (max-width: 767px) {
    
    .nav-desktop{
     display: none;
  }

    .hamburger {
        display: block;
    }
    
    .menu-links {
        display: none;
        width: 100%;
        text-align: center;
    }

    .menu-links.active {
        display: flex;
    }
    
      .logo {
        width: 60px; /* Smaller size for mobile */
    }
    
}


@media (max-width:560px) {
   
    .container  {
        width: 98%;
    }
    .section-title {
        display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
    }
    .section-title a {
        margin-top: 10px;
    }
    .search {
        display: none;
    }
     .currency {
        display: block;
      }
    
       .nav-desktop{
         display: none;
      }

    .hamburger {
        display: block;
    }
    
    .menu-links {
        display: none;
        width: 100%;
        text-align: center;
    }
    
    .menu-links.active {
        display: flex;
    }
    
      .logo {
        width: 60px; /* Smaller size for mobile */
    }
    
}
