.navbar-glass{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Footer */
  .footer {
    background-color: #111;
    color: #fff;
  }

  .footer-logo {
    /* filter: brightness(0); */
    transition: transform 0.3s ease;
  }

  .footer-logo:hover {
    transform: scale(1.05);
  }

  .footer a:hover {
    color: #0d6efd;
  }

  @media (max-width: 768px) {
    .footer .col-md-4 {
      text-align: center;
    }
  }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center; /* or flex-start if you want left-aligned */
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  /* padding: 1rem; */
  /* font-size: 2rem; */
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-link svg {
  stroke: #fff;
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-link:hover svg {
  transform: scale(1.1);
}
