body {
  margin: 0;
  font-family: 'Albert Sans', 'Space Grotesk', sans-serif;
  background-color: #000;
  color: #fff;
  /* font-size: 16px; */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar.transparent {
  background-color: transparent;
}

.navbar.black {
  background-color: #111;
}

.navbar.black {
  background-color: #111;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #ccc;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  background-color: #ccc;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  transform-origin: center;
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  transform-origin: center;
}

@media (max-width: 850px) {
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background-color: #111;
    padding: 2rem 1.5rem;
    gap: 1rem;
    transition: right 0.4s ease;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    color: white;
    font-size: 0.8rem;
    text-decoration: none;
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
  }

  .hamburger {
    display: flex;
  }
}

.partners-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: white;
  padding: 20px 0;
  position: relative;
}

.partners {
  display: flex;
  animation: scroll 20s linear infinite;
  width: max-content;
}

.partners img {
  height: 50px;
  width: auto;
  margin: 0 40px; 
}


@keyframes scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
footer
{
  background: #111;
  padding: 0rem;
  padding: 0.8rem 0rem;
  text-align: center;
  font-size: 0.75rem;
}

.footer-logos img {
  max-width: 70%;
  height: auto;
  margin-bottom: 0.5rem;
}

footer p {
  font-size: 0.75rem;
  color: white;
  margin: 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
  font-weight: 200;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0;
  border-radius: 1px;
  text-decoration: none;
  transition: all .2s ease;
}

.social-icons a.icon-link {
  background: #fff;
  color: #000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .4);
}

.social-icons a img.social-icon {
  width: 18px;
  height: 18px;
  border-radius: 1px;
  object-fit: cover;
}

.social-icons a:hover {
  /* background: #fff; */
  /* color: #000; */
  transform: scale(1.2);
}
.social-icons a.icon-link:hover {
  background: #fff;
  color: #000;
  transform: scale(1.2);
}

.social-icons i {
  font-size: 12px;
  line-height: 1;
  /* transform: translate(0px, 1.5px); */
}

.bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  z-index: -1;
}





@media (max-width: 600px) {
  body {
    font-size: 14px;
    padding: 0;
  }

  .navbar {
    padding: 1.5rem 1.5rem 1.2rem 1.2rem;
  }

  .logo {
    font-size: 1.2rem;
    /* margin: 0 auto; */
  }

  .nav-links {
    width: 100%;
    max-width: 200px;
    /* padding: 2rem 1rem; */
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 1rem 0;
  }

  .partners-wrapper {
    padding: 10px 0;
  }

  .partners img {
    height: 40px;
    margin: 0 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-content p {
    display: none;
  }

  .footer-logos img {
    max-width: 90%;
  }

  .social-icons a {
    width: 24px;
    height: 24px;
  }

  .social-icons a img.social-icon {
    width: 24px;
    height: 24px;
  }

  .bg-img {
    object-fit: cover;
    opacity: 0.15;
  }
}
