.footer {
  background-image: none !important;
  background: linear-gradient(
    180deg,
    #15467b 0%,
    #0e345e 50%,
    #031931 100%
  ) !important;
  /* padding: 3rem 1rem; */
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.partnerLogo {
  max-width: 140px;
  height: auto;
  margin: auto;
  filter: brightness(0) invert(1);
}

.plane {
  background: url("../assets/images/footerPlane.png") no-repeat center;
  background-size: contain;
  width: 100%;
  height: 476px;
  margin-block: 4em;
}

.partnerLogo {
  height: 60px; /* same height for all logos */
  width: auto; /* keep ratio */
  object-fit: contain; /* avoid distortion */
  margin: auto; /* center inside slide */
}

.partnerGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin: 2rem 0;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marqueeContent {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.reverse .marqueeContent {
  animation: marqueeReverse 25s linear infinite;
}

.footerHeading {
  font-family: raleway-extra-bold;
  font-size: 48px;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.partnerLogo {
  height: 60px;
  width: auto;
  margin: 0 40px;
  filter: brightness(0) invert(1);
}

/* ✅ Breakpoints for responsiveness */
@media (max-width: 1200px) {
  .plane {
    height: 400px;
    margin-block: 3em;
  }
}

@media (max-width: 992px) {
  .plane {
    height: 320px;
    margin-block: 3em;
  }
}

@media (max-width: 768px) {
  .plane {
    height: 250px;
    margin-block: 2em;
  }
}

@media (max-width: 576px) {
  .plane {
    height: 180px;
    margin-block: 2em;
  }

  .footerNav .navItem {
    position: relative;
    white-space: nowrap;
  }

  /* Vertical divider between items */
  .footerNav .navItem:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: white;
  }
}
