.footer-main {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
}

.footer{
  background: #BEBEBE3D;
}

.footer-main .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 40px 0px;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-wrapper .title {
  font-size: 16px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
  
}

#footer-bottom {
  width: 100%;
  position: fixed;              /* was: absolute — must be fixed to overlay viewport */
  bottom: -450px;               /* starts off screen, GSAP animates to 0 */
  left: 0;
  color: white;
  opacity: 0;
  z-index: 9000;
  background: rgba(0, 1, 2, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.25),
    inset 0 0 0 rgba(0, 0, 0, 0.15);
}

.footer-bottom .ft-logo {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}

.footer-bottom .foot-links {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
}

.footer-bottom .foot-links ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-bottom .foot-links .title {
  font-weight: bold;
}

.footer-bottom .foot-links a {
  text-decoration: none;
  color: #359cff;
  font-weight: 500;
}

.footer-wrapper .social-icons {
  display: flex;
  gap: 24px;
}

@media (max-width: 760px) {
  .footer-wrapper {
    padding: 40px 0;
  }

  .footer-wrapper .social-icons {
    gap: 12px;
  }
}