.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #007bcf; /* Warna biru khas seperti pada gambar */
    display: none; /* Hide by default */
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.footer-menu {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    position: relative;
}


.menu-item {
    flex: 1; /* Setiap menu-item memiliki lebar yang sama */
    display: flex; /* Gunakan Flexbox untuk tata letak vertikal */
    flex-direction: column; /* Ikon dan teks ditampilkan secara vertikal */
    align-items: center; /* Pusatkan ikon dan teks secara horizontal */
    text-align: center; /* Rata tengah teks */
    text-decoration: none; /* Hilangkan garis bawah */
    color: #ffffff; /* Warna teks putih */
    font-size: 12px;
    position: relative;
}

.menu-item i {
    font-size: 24px; /* Ukuran ikon lebih besar */
    margin-bottom: 5px; /* Jarak antara ikon dan teks */
}

/* Garis pemisah */
.menu-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background-color: #ffffff; /* Warna garis */
    opacity: 0.5; /* Transparansi */
}

/* Hover effect */
.menu-item:hover {
    color: #ffdd00; /* Warna kuning pada hover */
  }
  

/* Show footer only on mobile */
@media (max-width: 768px) {
    .footer {
        display: flex;
    }
}