.footer-links li {
  margin-bottom: 6px;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover {
  color: #0099e6;
}

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #0099e6; /* default background */
  color: #fff; /* default icon color */
  font-size: 18px;
  margin-right: 10px;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration:none;
}
.social-icon:hover {
  background: #012641; /* hover background */
  color: #fff; /* hover icon color */
  text-decoration:none;
}

@media (max-width: 767px) {
  footer {
    text-align: left;
  }
  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
    margin-right: 8px;
  }
}

