.bottom-nav {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    height: 60px;
    padding:  5px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100000;

    /* Light glass effect */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid rgba(200, 200, 200, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.bottom-nav .nav-item {
        width: 16.5%;

        margin: 5px 2px;
    flex: 1;
    text-align: center;
    color: #555;
    text-decoration: none;
    font-size: 9px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8px  ;
    transition: all 0.3s ease;
}

.bottom-nav .nav-item .icon {
    --tblr-icon-size: 1.2rem;
    margin-bottom: 2px;
    opacity: 0.8;
}

/* Active tab styling */
.bottom-nav .nav-item.active {
    color: #fff; /* text color on active */
}

 .nav-active  { 
    color: white !important;
    background: var(--app-color3); /* active tab color */
    border-radius: 10px;
    z-index: -1; /* behind icon and text */
    transition: all 0.3s ease;
}

.bottom-nav .nav-item.active .icon {
    
    transform: scale(1.2);
    opacity: 1;
}
/* Hover effect for all tabs */
.bottom-nav .nav-item:hover {
      border-radius: 10px !important;
    color: #ffffffff; /* text highlight on hover */
    background: var(--app-color4);  
    transition: all 0.3s ease;
    opacity: 1;
}

/* Optional: icon scale on hover */
.bottom-nav .nav-item:hover .icon {
   
    transform: scale(1.15);
    opacity: 1;
}

/* Keep active tab color intact */
.bottom-nav .nav-item.active:hover {
    background: var(--app-color3);
    transform: scale(1.1); /* slightly larger than other hover */
}
.desktop_active_nav{
      background: #168aad1f;
    border-bottom: 3px solid var(--app-color3) !important;
    margin: 0px 5px;
}
 .nav-link:hover{
           background: #16ad2a1f;
    border-bottom: 3px solid var(--app-color4) !important;
    }
    header{
       
    /* Light glass effect */
    background: #fffffff0 !important;
    backdrop-filter: blur(10px) saturate(150%)!important;
    -webkit-backdrop-filter: blur(10px) saturate(150%)!important; 
    }