.custom-mobile-footer {
  font-family: 'Noto Sans Devanagari', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari&display=swap');


.custom-mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #ccc;
  padding: 8px 0;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.custom-mobile-footer a {
  text-align: center;
  font-size: 12px;
  color: #000;
  text-decoration: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-mobile-footer a img {
  display: block;
  margin-bottom: 4px;
  height: 24px;
}

.custom-mobile-footer a span {
  display: block;
  font-size: 12px;
  color: #000;
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap; /* prevent breaking */
}

@media(min-width: 768px) {
  .custom-mobile-footer {
    display: none; /* only for mobile view */
  }
}
