body {
    margin: 0;
    padding-bottom: 60px;
    font-family: Arial, sans-serif;
}

.foot_all {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #232F3E;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    color: white;
}

.foot_all a {
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.foot_all a i {
    font-size: 20px;
    display: block;
    margin-bottom: 3px;
}

.foot_all span {
    color: yellow;
}

.foot_all a.active {
    transform: translateY(-10px);
    color: #FFD700;
}

@media (max-width: 768px) {
    .foot_all {
        font-size: 11px;
        height: 60px;
    }

    .foot_all a i {
        font-size: 18px;
    }
}

/* ✅ 975px-এর চেয়ে বড় হলে লুকিয়ে ফেলবে */
@media (min-width: 975px) {
    .foot_all {
        display: ;
    }
}
