.footer-static-icon {
  width: 20px;
  height: auto;
}
.footer-animated-icon {
  width: 22px;
  height: auto;
}

.mobile-btm-menu {
  display: none; /* Hidden by default */
  overflow: hidden;
  background-color: #fff;
  position: fixed;
  bottom: env(safe-area-inset-bottom, 0px); /* ✅ Key fix */
  width: 100%;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  z-index: 10;
}

.mobile-btm-menu a {
  flex: 1; /* Makes the buttons equally spaced */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #6a6a6a;
  text-align: center;
  padding: 15px 5px 15px 5px;
  text-decoration: none;
  font-family: futura;
  font-size: 14px;
  /* border: 1px solid #000; */
}

.mobile-btm-menu a i {
  font-size: 25px; /* Icon size */
  margin-bottom: 4px; /* Adjust spacing between icon and text */
  color: inherit; /* Inherit color from parent */
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

.mobile-btm-menu a:hover {
  background: #f1f1f1;
  color: black;
}

.mobile-btm-menu a.active {
  background-color: #fff;
  color: #D2DF57;
  font-weight: 550;
}

/* Show the menu only on mobile devices */
@media (max-width: 768px) {
  .mobile-btm-menu {
    display: flex; /* Make it visible */
  }
  .home-video-player {
    display: none;
  }
}
@media (max-width: 550px) {
  .mobile-btm-menu a {
    padding: 5px 5px 5px 5px;
  }
  .mobile-btm-menu a i {
    font-size: 25px; /* Icon size */
    margin-bottom: 4px; /* Adjust spacing between icon and text */
    color: inherit; /* Inherit color from parent */
    transition: color 0.3s ease; /* Smooth color transition on hover */
    font-family: "DM Sans", sans-serif;
  }

  .mobile-btm-menu a span {
    font-size: 11px; /* Adjust font size for the label text */
    color: inherit; /* Inherit color from parent */
    transition: color 0.3s ease; /* Smooth color transition on hover */
    margin-top: -8px;
    font-family: "DM Sans", sans-serif;
  }

  .mobile-btm-menu a:hover {
    background: #f1f1f1;
    color: black;
    font-family: "DM Sans", sans-serif;
  }

  .mobile-btm-menu a.active {
    background-color: #fff;
    color: #425997;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
  }
  .new-message-indicator {
    top: -15px !important;
    right: 4px !important;
  }
}
.messages-count-container {
  position: relative;
  margin: 0;
}
.new-message-indicator {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #ef4444;
  border-radius: 50%;
  color: white;
  top: -25px;
  right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
