footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ccc;
  box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 60px;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100%;
}

.footer-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #077A7D ;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

/* Only icon and text move up on hover */
.footer-menu a:hover {
  transform: translateY(-7px);
  color: #077A7D;
}

.footer-menu a i {
  font-size: 20px;
  margin-bottom: 3px;
}
.footer-menu a.menu-icon svg circle {
  fill: #077A7D;
}
.footer-menu a.menu-icon:hover svg circle {
  fill: #077A7D !important;
}

/* Dark Mode */
html.dark-mode footer {
  background: #1e293b;
  border-top: 1px solid #333;
}
html.dark-mode .footer-menu a.menu-icon svg circle {
  fill: #ffffff;
}