
    .bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F28819;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  width: 320px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  z-index: 999;
}

.bottom-navbar a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  transition: color 0.3s;
}

.bottom-navbar a:hover {
  color: #ffffff;
  
}

.nav-label {
  margin-top: 5px ;
  font-size: 15px;
}

.fa-phone, .fa-whatsapp, .fa-address-book, .fa-home {
  font-size: 28px;
}

