/* navbar css */
nav li {
    list-style: none;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    position: relative;
  }
  
  nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background-color: #000000;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
    border-radius: 10px;
  }
  
  nav ul li a:hover::after{
    width: 100%;
  }
  
  nav {
    z-index: 7;
    position: fixed;
    width: 100%;
    height: 60px;
    /* background-color: #3c6255cc; */
    background-color: #90d359;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
  }
  
  nav .logo a{
    text-decoration: none;
    
  }
  
  nav .links{
    display: flex;
    gap: 2rem;
  }
  
  nav .toggle_btn {
   
    cursor: pointer;
    display: none;
  }
  
  /* Dropdown Menu */
  .dropdown_menu{
    display: none;
    position: fixed;
    right: 3rem;
    top: 4.2rem;
    height: 0;
    width: 30rem;
    background: #E9C8C4;
  background: radial-gradient(circle, rgba(203,230,132,0.8632703081232493) 0%, rgba(148,233,155,1) 100%);
    backdrop-filter: blur(15px);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 7;
  }
  
  .dropdown_menu.open{
    height:11rem;
  }
  
  .dropdown_menu li{
    list-style: none;
    
  }
  
  .dropdown_menu li a{
    text-decoration: none;
    font-weight: 600;
    color: rgb(11, 62, 12);
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* For smaller screens */
  @media (max-width: 992px) {
    nav .links {
        display: none;
    }
    nav .toggle_btn{
        display: block;
    }
  
    .dropdown_menu{
        display: block;
    }
  }
  
  @media (max-width: 576px) {
    .dropdown_menu{
        width: unset;
    }
  }