.footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
    text-align: center;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .contact-info {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 70px;
    text-align: left;
    width: 100%;
  }

  .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
  }

  .contact-info li .icon {
    font-size: 18px;
    color: #f96d00;
  }

  .social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: x-large;
    padding-top: 10px;
    width: 100%;
  }

  .footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
  }

  @media (min-width: 768px) {
    .contact-info {
      flex-direction: row;
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .contact-info {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
   .navbar-brand-bold{
    font-weight:600 !important;
   }

   .flash-container {
    position: fixed;
    top: 70px; /* adjust to navbar height */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 2000; /* above navbar */
  }

  /* Hide Colorlib credit */
.opacity-low {
  opacity: 0.02;            /* almost invisible */
  pointer-events: none;      /* make it unclickable */
  user-select: none;         /* prevent text selection */
}

/* Hide Admin link until hover */
.transparent-link {
  opacity: 0;                /* fully hidden by default */
  transition: opacity 0.3s ease, color 0.3s ease;
  pointer-events: visiblePainted;      /* disabled by default */
}

.transparent-link:hover {
  opacity: 1;                /* visible only on hover */
  pointer-events: auto;      /* clickable only on hover */
  color: yellow !important;  /* turns yellow on hover */
}

  