/***************************/
/* Stylish Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 80px;
    display: none;
    z-index: 999;
    overflow: hidden;
}

.nav-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7b733 0%, #fff 100%);
    clip-path: ellipse(100% 80% at 50% 100%);
    box-shadow: 0 -5px 15px rgba(247, 183, 51, 0.3);
}

.nav-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(12px);
}



.logo-circle .logo-text {
    width: 37px;

}

.logo-main {
    height: 30px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-items {
    display: flex;
    gap: 25px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    transform: translateY(10px);
    margin-bottom: 13px;
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: orange;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.2); /* orange-tinted shadow */

}

.nav-item:hover i {
    background: white;
    transform: translateY(-5px);
}

.nav-item span {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}
.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #FFE8D6; /* light orange background */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.2); /* orange-tinted shadow */
    margin-bottom: 8px;
    transition: box-shadow 0.3s ease;
}

.icon-circle i {
    color: #800020; /* dark red or any brand color */
    font-size: 1.2rem;
}

/* Optional hover effect */
.nav-item:hover .icon-circle {
    box-shadow: 0 6px 12px rgba(255, 87, 34, 0.3);
}

/* Active State */
.nav-item.active i {
    color: white;
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bottom-nav {
        display: block;
    }

    .nav-items {
        gap: 15px;
    }

    .logo-main {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .bottom-nav-logo {
        transform: translateY(12px);
    }

    .logo-circle {
        width: 40px;
        height: 40px;
    }

    .nav-item i {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .nav-item span {
        font-size: 0.7rem;
    }
}
.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #800020;
    background: #FFE8D6;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.25); /* stronger orange shadow */
    transition: all 0.3s ease;
}
.nav-item:hover i {
    background: orange;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 87, 34, 0.3);
}
