/* Footer Navigation */
.upfooter-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.05);
}

.upfooter-item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #555;
    font-size: 12px;
    transition: color 0.2s ease;
}

.upfooter-item img {
    display: block;
    margin: 0 auto 4px;
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.upfooter-item:hover {
    color: #ff7230;
}

.upfooter-item:hover img {
    transform: scale(1.1);
}

.upfooter-item.active img {
    filter: brightness(1.2);
}
 /* Fixed Back Button */
    .customerservice {
        position: fixed;
        bottom: 90px;
        right: 35px;
        padding: 12px 20px;
        z-index: 1001;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: all 0.3s;
        border-radius: 50px;
        background: none;
    }
    .customerservice img{
        width: 60px;
    }
   /* Mobile Responsive */
    @media (max-width: 768px) {
            .customerservice {
                     bottom: 55px;
        right: 20px;
            }
    
    .customerservice img{
        width: 40px;
    }
    
    }
