.footer {
  background: #070d1d5d;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 4rem 0;
}

.footer-logo {
  width: 80px;
  height: auto;
}

.footer h4, .footer h5 {
  color: #ffffff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffffff;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.356);
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.footer .text-white-50 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
}

