.header-wrapper{
    margin-top: 10px;
    position: fixed;
    z-index: 9999;
    left: 0;
    right: 0;
}
.header-section{
    margin-top: 10px;
    background-color: rgb(4 26 15 / 80%);
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 45px;
    border: 2px solid #0e452a;
    transition: 0.3s;
}
.header-section:hover{
    background-color: rgb(4 26 15 / 95%);
}
.header-logo img{
    width: 180px;
}
.header-menu ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.header-menu ul li{
    float: left;
    margin-left: 10px;
    margin-right: 10px;
}
.header-menu ul li a{
    color: #AEB8B3;
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight:500;
    line-height: 45px;
    transition: 0.3s;
}
.header-menu ul li a:hover{
    color: #e1fe3e;
}
.action-button-wrapper{
    margin-top: 10px;
}
.action-button-wrapper a{
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 18px;
    padding-right: 18px;
    text-decoration: none;
    font-size: 16px;
    font-weight:600;
    background-color: #e1fe3e;
    color: #222;
    border-radius: 45px;
}
.mobile-bottom-nav{
    display: none;
}
 /*Mobile*/
@media screen and (max-width: 767px) {
    .header-logo img {
        width: 145px;
        padding: 5px;
    }
    .header-section, 
    .header-section:hover{
        background-color: rgb(4 26 15 / 100%);
    }
    .header-wrapper .action-button-wrapper a {
        padding-top: 12px;
        padding-bottom: 12px;
        padding-right: 19px;
        padding-left: 19px;
        font-size: 15px;
    }
    .action-button-wrapper {
        margin-top: 6px;
    }
    .header-menu
    {
        display: none;
    }
    .mobile-bottom-nav{
        display: block;
    }
    .mobile-bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background:rgb(4 26 15 / 100%); /* your theme color */
      display: flex;
      justify-content: space-around;
      align-items: center;
      z-index: 9999;
      border-top: 1px solid #0e452a;
    }

    .mobile-bottom-nav .nav-item {
      text-align: center;
      color: #ccc;
      font-size: 12px;
      flex: 1;
      padding-top: 5px;
      text-decoration: none;
    }

    .mobile-bottom-nav .nav-item i {
      font-size: 18px;
      display: block;
      margin-bottom: 3px;
      color: #e1fe3e; /* your highlight color */
    }

    .mobile-bottom-nav .nav-item span {
      display: block;
      font-size: 11px;
      color: #ccc;
    }

    /* Optional: Highlight Active */
    .mobile-bottom-nav .nav-item.active i,
    .mobile-bottom-nav .nav-item.active span {
      color: #e1fe3e;
    }
    .mobile-bottom-nav .nav-item i {
      width: 20px;
      height: 20px;
      margin: 0 auto 3px;
      color: #e1fe3e;
    }
    .mobile-bottom-nav .nav-item {
      text-align: center;
      flex: 1;
      color: #fff;
      font-size: 12px;
    }

    .mobile-bottom-nav .nav-item svg {
      width: 20px;
      height: 20px;
      color: #ccc; /* default color */
      transition: color 0.3s ease;
      margin: 0 auto 3px;
      display: block;
    }

    .mobile-bottom-nav .nav-item.active svg {
      color: #e1fe3e; /* your theme color */
    }

    .mobile-bottom-nav .nav-item.active span {
      color: #e1fe3e;
    }
 }
  