@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #195888; /* Change background to dark so white text is visible */
  padding: 8px 0;
  z-index: 9999;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.mobile-sticky-bar .sticky-btn {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: #fff; /* White text */
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-sticky-bar .sticky-btn img {
  filter: brightness(0) invert(1); /* Make icon white */
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
  
}

.mobile-sticky-bar p{
    font-family: "Poppins", sans-serif;
    margin: 0px;
}

/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}
