body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* .wrapper {
    display: flex;
    flex: 1;
} */
.content {
  flex: 1;
}
.logo_text{
  text-align: center;
  font-size: 28px;
}

.loan{
    right: 260px; position: relative;
}

.social-icons a {
  margin-right: 10px;
  color: white;
  font-size: 18px;
}

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4f46e5;
  border: none;
  border-radius: 6px;
  padding: 10px 12px;
  color: white;
  font-size: 18px;
  cursor: pointer;
}
.scroll-top-btn:hover {
  background-color: #4338ca;
}

.site-footer {
  background: #0a062d;
  position: relative;
  height: 100%;
  /* top: -31px; */
  color: #fff;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  top: 25px;
  position: relative;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h3, .footer-col h4 {
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.whatsapp-icon img {
  margin-top: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
}

.scroll-top-btn {
  width: 45px;
  height: 45px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes slideInLeftToRight {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animated-link {
  animation: slideInLeftToRight 0.6s ease-out forwards;
  opacity: 0; /* Start invisible */
}

/* Delay each link slightly for a staggered effect */
.animated-link:nth-child(1) { animation-delay: 0.1s; }
.animated-link:nth-child(2) { animation-delay: 0.2s; }
.animated-link:nth-child(3) { animation-delay: 0.3s; }
.animated-link:nth-child(4) { animation-delay: 0.4s; }


