.footer {
  background-color: #f1f1f1;
  color: #000000;
  padding: 30px 5%;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.footer-divider {
  display: flex;
  justify-content: space-between;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-content h5 {
  font-size: 0.8rem;
  font-weight: normal;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 10px;
}

.footer-left2 {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}

.logo2 img {
  display: flex;
  height: 35px;
}

.footer-links {
  display: flex;
  gap: 20px;
  padding: 0 20px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #313131;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  background-color: #34495e;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #bdc3c7;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #4a5f7a;
  color: #ffffff;
}

.footer-bottom {
  padding-top: 15px;
  margin-top: 30px;
  border-top: 1px solid #adacac8c;
  color: #000000;
  font-size: 0.75rem;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 5px;
  display: block;
  clear: both;
}

.up-arrow {
  position: fixed;
  background-color: #747474;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  top: 90%;
  right: 3%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
}

.up-arrow.show {
  opacity: 1;
  visibility: visible;
}

.up-arrow:hover {
  /* color: white; */
  background-color: #f58220;
}

.up-arrow::before {
  content: "TOP";
  font-size: 1rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .footer {
    padding: 25px 5% 15px 5%;
  }

  .footer-bottom {
    margin-top: 0px;
  }

  .footer-divider {
    flex-direction: column;
  }

  .footer-right {
    align-self: flex-start;
    margin: 20px;
  }

  .footer-left {
    gap: 0px;
  }

  .logo2 img {
    height: 30px;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

  .up-arrow {
    right: 10px;
    top: -10px;
  }
}

.bounce2 {
  animation: bounce2 2s ease infinite;
}
@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-2px);
  }
}
