* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  background: #f3f8ff6e;
}
:root {
  --primary: #cc0707;
  --secondary: #ffdddd;
  --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;
  color: #0000008c;
}

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: #000000;
}
.navbar-brand {
  font-weight: 700;
  color: var(--primary);
}
li.nav-item {
  padding: 15px;
}
.nav-menu {
    align-items: start;
}
.header-btn {
  background: linear-gradient(
1deg, #ff0202, #8a0101);
  padding: 12px 20px;
  color: white;
  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 {
  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: #000000;
}

.hero p {
  color: #000000;
  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);
  font-weight: 600;
}
/* 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-section {
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

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

/* Headings */
.about-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
}

.about-title span {
  color: #9b0101;
}

/* Text */
.about-text {
  font-size: 16px;
  color: #64748b;
}

/* Features */
.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

/* Stats */
.about-stat {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-stat h3 {
  font-size: 32px;
  font-weight: 800;
  color: #9b0101;
}

.about-stat p {
  margin-top: 5px;
  font-size: 14px;
  color: #64748b;
}
 */ /* SERVICES */
.services-pro {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Header */
.section-tag {
}

.section-title {
  font-size: 38px;
  font-weight: 800;
}

.section-title span {
  color: #0ea5e9;
}

.section-desc {
  font-size: 16px;
  color: #64748b;
  max-width: 650px;
  margin: auto;
}

/* Card */
.service-pro-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 36px 28px;
  /* border: 1px solid rgba(14, 165, 233, 0.15); */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Gradient border on hover */
.service-pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #f83838, #e90e0e);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s ease;
}

.service-pro-card:hover::before {
  opacity: 0.08;
}

.service-pro-card:hover {
  transform: translateY(-10px);
}

/* Icon */
.icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #9b0101;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
  /* box-shadow: 0 10px 30px rgba(56, 189, 248, 0.5); */
}

.icon-wrap img {
    width: 40px;
}

/* Text */
.service-pro-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}


/* WHY CHOOSE US */
.why-pro {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

/* Header */


.section-title {
  font-size: 38px;
  font-weight: 800;
}

.section-title span {
  color: #9b0101;
}

.section-desc {
  font-size: 16px;
  color: #64748b;
  max-width: 720px;
}

/* Card */
.why-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 40px 26px;
  border: 1px solid rgba(14, 165, 233, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-10px);
}

/* Icon */
.why-icon {
  width: 64px;
  height: 64px;
  margin: auto;
  border-radius: 18px;
  background: #9b0101;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* box-shadow: 0 12px 30px rgba(56, 189, 248, 0.5); */
  margin-bottom: 20px;
}

.why-icon img {
    filter: invert(1);
    width: 40px;
}

/* Text */
.why-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}


/*  */

/* BUSINESS STEPS */
.start-business {
  padding: 130px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* Header */
.section-head .section-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(14,165,233,0.12);
  color: #0ea5e9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.section-head h2 {
  font-size: 40px;
  font-weight: 900;
  margin-top: 16px;
}

.section-head h2 span {
  color: #9b0101;
}

.section-head p {
  max-width: 680px;
  margin: 14px auto 0;
  color: #64748b;
  font-size: 16px;
}

/* Steps Layout */
.steps-wrapper {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Step Card */
.step-box {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  position: relative;
}

.step-box:hover {
  transform: translateY(-12px);
}

/* Highlight (Middle Step) */
.step-box.highlight {
  background: #9b0101;
  color: #ffffff;
}

.step-box.highlight p {
  color: #e0f2fe;
}

/* Top */
.step-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.step-count {
  font-size: 32px;
  font-weight: 900;
  color: #cbd5e1;
}

.step-box.highlight .step-count {
  color: rgba(255,255,255,0.7);
}

/* Icon */
/* .step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(14,165,233,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
} */

.step-box.highlight .step-icon {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
}

/* Text */
.step-box h5 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.step-box p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
  }
}


/*  */
.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, #f70202, #930101);
  color: white;
  overflow: hidden;
}
/* WHO CAN JOIN */
.who-can-join {
  padding: 130px 0;
  background: #f8fafc;
}

/* Header */
.join-head .section-pill {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(14,165,233,0.12);
  color: #0ea5e9;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.join-head h2 {
  font-size: 40px;
  font-weight: 900;
  margin-top: 16px;
}

.join-head h2 span {
  color: #9b0101;
}

.join-head p {
  max-width: 680px;
  margin: 14px auto 0;
  color: #64748b;
}

/* Card */
.join-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 42px 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
}

.join-card:hover {
  transform: translateY(-12px);
}

/* Featured Card */
.join-card.featured {
  background: #9b0101;
  color: #ffffff;
}
.join-card.featured .join-icon img {
    filter: invert(1);
}

.join-card.featured p,
.join-card.featured li {
  color: #e0f2fe;
}

/* Tags */
.join-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
}

.join-tag.starter {
  background: #e2e8f0;
  color: #334155;
}

.join-tag.popular {
  background: #ffffff;
  color: #9b0101;
}

.join-tag.advanced {
  background: #1e293b;
  color: #ffffff;
}

/* Icon */
.join-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--secondary);
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.join-icon img {
    width: 40px;
}
.join-card.featured .join-icon {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
}

/* Text */
.join-card h5 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.join-desc {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #64748b;
}

/* List */
.join-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

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

.join-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #0ea5e9;
  font-weight: 700;
}

/* Button */
.join-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: #9b0101;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.join-btn.light {
  background: #ffffff;
  color: #9b0101;
}

/* Responsive */
@media (max-width: 992px) {
  .join-head h2 {
    font-size: 32px;
  }
}


/*  */
/* 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, #f70202, #930101);
  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;
  }
}
