.footer {
  background-color: var(--bg-dark);
}
.footer-link {
  color: var(--color-white);
  text-decoration: none;
  display: inline-block;
}
.footer-logo {
  width: 80px;
  height: auto;
}
.footer-link:hover {
  color: var(--color-light-blue);
}

/* Social Icons */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff22;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease;
}

.social-icon:hover {
  background: var(--color-white);
  color: var(--bg-dark);
  transform: rotate(360deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.footer-icon {
  width: 20px;
  height: 20px;
  filter: invert(1) brightness(100); /* Convert to white */
  transition: 0.3s ease;
}



