.about-us-slide-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color: var(--dark-black-color);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}
.about-us-slide-container-title {
    display: flex;
    width: 100%;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-black-color);
    flex: 1;
}
.about-us-slide-container-title p{
    color: var(--white-color);
    font-family: var(--font-main);
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
.footer-swiper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 20px auto;
  position: relative;
}
.footer-arrow {
  background: var(--pink-light-color);
  color: var(--white-color);
  border: none;
  font-size: 22px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.footer-arrow:hover {
  background: #555;
}
.footer-main {
  flex: 1;
  overflow: hidden;
}
.footer-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 20px;
}
.footer-item {
  flex: 0 0 calc((100% - 40px) / 3); /* 3 items visible + 2 gaps (2×20px) */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-item-text{
  font-size: 16px;
  font-family: var(--font-main);
  align-self: center;
  text-align: center;
  color: var(--white-color);
}
.footer-item-source-text{
  font-size: 14px;
  font-family: var(--font-main);
  align-self: center;
  text-align: center;
  margin-top: 20px;
  color: var(--pink-light-color);
  margin-bottom: 20px;
}
.footer-item-image{
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

/* Collaborators */
.logo-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    background-color: var(--white-color);
}
.logo-marquee-track {
    display: flex;
    width: 100%;
    animation: scroll-logos 30s linear infinite;
    gap: 40px;
}
.logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
}
/* Animation */
@keyframes scroll-logos {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}
.logo-marquee-wrapper:hover .logo-marquee-track {
    animation-play-state: paused;
}
.bottom_footer_line{
    background-color: var(--red-color);
    width: 100%;
    height: 50px;
    background-color: var(--dark-black-color);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}