* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  background: #f3f8ff6e;
}
:root {
  --primary: #238c51;
  --secondary: #e7f1ff;
  --dark: #0f172a;
  --gray: #64748b;
}
/* general css */
.text-gradient {
  color: #e44338;
}
h1 {
  font-weight: 600;
  font-size: 55px;
}
.section-padding {
  padding: 70px 0;
}
img {
  max-width: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  color: #070707;
}

a:hover {
  cursor: pointer;
}

a {
  transition: all 0.3s ease-out;
}

.logo {
  width: 200px;
}

.text-white {
  color: white;
}

.about-img {
  display: inline-block;
  animation: moveLeftRight 4s ease-in-out infinite;
}

.about-img img {
  max-width: 100%;
}

/* keyframes */
@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(25px);
  }
  100% {
    transform: translateX(0);
  }
}
/* Navbar */
a.nav-link {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

a.nav-link::after {
  position: absolute;
  width: 0;
  content: "";
  height: 2px;
  background: #145eaf;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  transition: width 0.3s ease;
}

a.nav-link:hover::after {
  width: 100%;
}
.btn:first-child:hover,
:not(.btn-check) + .btn:hover {
  color: #ecf0f3;
  background-color: var(--bs-btn-hover-bg);
  transform: scale(1.09);
  border-color: var(--bs-btn-hover-border-color);
}
/* HEADER */
section.hero .subheading {
  color: white;
}
.navbar-brand {
  font-weight: 700;
  color: var(--primary);
}
li.nav-item {
  padding: 15px;
}
.nav-menu {
  align-items: center;
}
.header-btn {
  background: linear-gradient(1deg, #5fc054, #157a4e);
  padding: 12px 20px;
  color: white;
  border: 2px solid #329550;
  text-decoration: none;
  transform: scale(1);
  transition: all 0.3s;
}
.header-btn:hover{
   transform: scale(1.03);
   color: white;
}
a.outline-btn {
  display: inline-block;
  text-decoration: none;
  border: 2px solid white;
  padding: 12px 20px;
  margin: 0;
  color: white;
  border-radius: 0;
   transform: scale(1);
  transition: all 0.3s;
}
a.outline-btn:hover{
   transform: scale(1.03);
   color: white;
}
/* HERO */
.hero {
  background: linear-gradient(135deg, #0fa0df, #15529d);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* common shape styles */
.shape {
  position: absolute;
  opacity: 0.25;
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
}

/* circles */
.circle {
  border-radius: 50%;
}

.circle.pink {
  width: 320px;
  height: 320px;
  background: #f3a6c8;
  left: -120px;
  bottom: -120px;
  animation-delay: 0s;
}

.circle.purple {
  width: 260px;
  height: 260px;
  background: #cbb8ff;
  right: -100px;
  top: 80px;
  animation-delay: 2s;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid #f5e6a8;
  top: 60px;
  left: 120px;
  opacity: 0.35;

  animation: triangleRotate 18s linear infinite;
  transform-origin: center;
}

/* rotation + float */
@keyframes triangleRotate {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateY(-20px);
  }
  100% {
    transform: rotate(360deg) translateY(0);
  }
}  
.hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

.hero p {
  color: #ffffff;
  font-size: 18px;
}
.hero-svg {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary), transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  /* animation */
  animation: bgScale 4s ease-in-out infinite;
}

/* image stays stable */
.hero-svg img {
  position: relative;
  z-index: 2;
}

/* keyframes */
@keyframes bgScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.subheading {
  color: var(--primary);
}
/* LOGOS */
/* LOGO SLIDER */
.logo-slider {
  position: relative;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 18s linear infinite;
}

.logo-item {
  min-width: 160px;
  text-align: center;
  font-weight: 600;
  color: #64748b;
  font-size: 15px;
  opacity: 0.9;
}
.logo-item img {
  width: 100px;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover (professional touch) */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* ABOUT */
.about {
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

/* STATS */
.stats h3 {
  color: #ffffff;
  font-weight: 700;
}
/* PROGRESS */
.progress {
  height: 6px;
}

/* SERVICES */
/* .services {
  background: #f9fbff;
  padding: 80px 0;
}

.service-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  transition: 0.3s;
}

.service-card.active,
.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.15);
}
 */ /* SERVICES */
.services-section {
  background: linear-gradient(180deg, #f7faff, #ffffff);
  overflow: hidden;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 28px;
  height: 100%;
  border: 1px solid #e6ebf2;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgb(255 16 0 / 5%);
  border-color: var(--primary);
}

.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 14px;
  background: #e7f1ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.service-card:hover .service-icon {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.1),
      transparent 40%
    ),
    linear-gradient(135deg, #289fd0, #106eb3);
  color: #fff;
}
.service-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.7;
}

/* WHY CHOOSE US */
.why-choose-us {
  background: #f9fbff;
  overflow: hidden;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card h5 {
  margin-top: 20px;
  font-weight: 600;
}

.feature-card p {
  font-size: 14px;
  color: #64748b;
  margin-top: 10px;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 25px 55px rgb(255 16 0 / 5%);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: #e7f1ff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/*  */

/* BUSINESS STEPS */
.business-steps {
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  overflow: hidden;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 45px 25px 35px;
  position: relative;
  height: 100%;
  transition: all 0.35s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgb(255 16 0 / 5%);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: #e7f1ff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 20px;
}

.step-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #64748b;
}

/*  */
.company-facts {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.1),
      transparent 40%
    ),
    linear-gradient(135deg, #289fd0, #106eb3);
  color: white;
  overflow: hidden;
}
/* WHO CAN JOIN */
.who-can-join {
  background: linear-gradient(180deg, #ffffff, #f7faff);
  overflow: hidden;
}

.join-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid #e6ebf2;
  position: relative;
  transition: all 0.35s ease;
}

.join-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgb(255 16 0 / 5%);
}
.join-card.highlighted {
  border: 2px solid var(--primary);
  transform: scale(1.03);
}

.join-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.join-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #e7f1ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.join-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.join-card p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.7;
}

.join-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.join-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  margin-bottom: 10px;
}

.join-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/*  */
/* CTA SECTION */
.partner-cta {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.1),
      transparent 40%
    ),
    linear-gradient(135deg, #289fd0, #106eb3);
  color: #fff;
  overflow: hidden;
}
.cta-box {
  max-width: 850px;
  margin: auto;
}

.partner-cta h2 {
  font-weight: 800;
  font-size: 32px;
}

.partner-cta p {
  font-size: 16px;
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.partner-cta .btn-primary {
  background: #fff;
  color: #0d72b8;
  border: none;
  font-weight: 600;
  padding: 14px 30px;
  transition: all 0.3s;
  transform: scale(1);
}

.partner-cta .btn-primary:hover {
  background: #f1f5ff;
  color: #d5050c;
  transform: scale(1.03);
}

.partner-cta .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-weight: 600;
  padding: 14px 30px;
  transition: all 0.3s;
  transform: scale(1);
}

.partner-cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.03);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  flex-wrap: wrap;
  opacity: 0.95;
}

/* FOOTER */
/* FOOTER */
.fintech-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 60px 0 30px;
  overflow: hidden;
}
.foot-logo {
  background: white;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.footer-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14.5px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #0d6efd;
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  align-items: baseline;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 35px 0 25px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-note {
  max-width: 750px;
  margin: 8px auto 0;
  font-size: 12px;
  color: #94a3b8;
}

@media (max-width: 576px) {
  .hero-svg {
    width: 320px;
    height: 320px;
  }
  .about {
    padding: 50px 0;
  }
  .hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: white;
  }
}
