
/* Sticky Footer */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #0183C1;
  color: #fff;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.footer-item {
  text-align: center;
  text-decoration: none; /* Remove underline for normal state */
  color: #fff;
  font-size: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-item i {
  font-size: 20px;
  margin-bottom: 5px;
}

.footer-item:hover {
  background-color: #035277;
  color: #fff;
  transition: background-color 0.3s ease;
  text-decoration: none; /* Ensure underline is removed on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .sticky-footer {
    padding: 8px 0;
  }
  .footer-item {
    font-size: 12px;
  }
  .footer-item i {
    font-size: 18px;
  }
}

