.afacad-flux-light {
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 100;
    font-variation-settings: "slnt" 0;
}
.afacad-flux-reg {
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-variation-settings: "slnt" 0;

}
.afacad-flux-semib {
    font-family: "Afacad Flux", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-variation-settings: "slnt" 0;

}
.header_banner {
    position: relative;
    background-color: #0a0a1a; /* dark base the gradients glow against */
    background-image:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(120, 80, 255, .75), transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(0, 200, 255, .55), transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 90%, rgba(255, 60, 180, .5), transparent 60%);
    background-size: 200% 200%;
    animation: aurora 9s ease-in-out infinite;
}
@keyframes aurora {
    0%   { background-position: 0% 50%, 100% 50%, 50% 100%; }
    50%  { background-position: 100% 50%, 0% 0%, 0% 50%; }
    100% { background-position: 0% 50%, 100% 50%, 50% 100%; }
}
.carousel {
    overflow: hidden;
}
.track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: scroll 20s linear infinite;
}
@keyframes scroll {
    to {transform: translateX(-50%);
    }
}
.itm {
    width: 735px;
    height: 33px;
    flex-shrink: 0;
    margin-right: 15px;
}
.itm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.link {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.underline {
  position: relative;
  text-decoration: none !important;
  color: inherit;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.underline:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

img.lightbox {
  cursor: zoom-in;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: default;
}

  /* Mobile menu animation */
  @media (max-width: 1023px) {
    #navbar-default {
      display: grid;
      grid-template-rows: 0fr;
      opacity: 0;
      transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
    }
    #navbar-default.open {
      grid-template-rows: 1fr;
      opacity: 1;
    }
    #navbar-default > ul {
      overflow: hidden;
      min-height: 0;
    }
  }