.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); /* adjust to match your theme */
  color: #ffffff; /* adjust to match your theme */
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}

.social-links a:hover {
  background: #e63a27; /* Yoddha red */
  transform: translateY(-3px);
}
.footer-logo {
    padding-bottom: 10px;
}