

body {
  font-family: "Poppins", sans-serif;
  background: #f3f8ff6e;
}
:root {
  --red: #ED232A;
  --blue: #004C8F;
  --dark: #0b1220;
  --text-light: #f8fafc;
  --text-muted: #cbd5e1;
}
/* 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 img {
  max-width: 100%;
}

/* Navbar */
a.nav-link {
  font-size: 18px;
  font-weight: 500;
}
.btn:first-child:hover, :not(.btn-check)+.btn:hover {
    color: #225697;
    background-color: #ffffff;
    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, #e44136, #e24239);
  padding: 12px 20px;
  color: white;
  border: 2px solid #e24238;
  text-decoration: none;
}
a.outline-btn {
  display: inline-block;
  text-decoration: none;
  border: 2px solid white;
  padding: 12px 20px;
  margin: 0;
  color: white;
  border-radius: 0;
}
/* HERO */
/* HOME HERO */
.home-hero {
    background: linear-gradient(135deg, var(--blue), #021d38);
    color: var(--text-light);
    padding: 90px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: rgb(255 255 255);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.home-hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
}

.home-hero h1 span {
  color: var(--red);
}

.home-hero p {
  margin-top: 18px;
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 520px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  border: none;
  font-weight: 600;
  padding: 14px 30px;
}

.btn-primary:hover {
  background: #c81d23;
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 600;
  padding: 14px 30px;
}

.hero-stats {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stats h4 {
  font-weight: 800;
  color: #ffffff;
}

.hero-stats span {
  font-size: 13px;
  color: #dbeafe;
}

/* VISUAL */
.hero-visual {
  position: relative;
 
}

.glow-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(237,35,42,0.4), transparent 70%);
  border-radius: 50%;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(50px);
}

.visual-card {
  position: absolute;
  width: 300px;
  height: 180px;
  background: linear-gradient(135deg, #0b1220, #020617);
  border-radius: 20px;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.1);
}

.visual-card.small {
  width: 220px;
  height: 140px;
  top: 40px;
  left: 60%;
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 991px) {
  .home-hero h1 {
    font-size: 34px;
  }

  .hero-visual {
    height: 300px;
  }
  .nav-menu {
    align-items: start;
}
}


.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 SECTION */
.about-section {
  padding: 90px 0;
  background: #f8fafc;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 76, 143, 0.1);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.about-section h2 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.3;
}

.about-section h2 span {
  color: var(--red);
}

.about-text {
  margin-top: 18px;
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
  max-width: 520px;
}

.about-points {
  margin-top: 25px;
}

.about-points div {
  margin-bottom: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: #0f172a;
}

/* VISUAL */
.about-visual {
  position: relative;
  height: 360px;
}

.about-card {
  position: absolute;
  width: 280px;
  height: 170px;
  background: linear-gradient(135deg, var(--blue), #012f5b);
  border-radius: 18px;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}

.about-card.small {
  width: 220px;
  height: 140px;
  top: 40px;
  left: 60%;
  background: linear-gradient(135deg, var(--red), #b81b20);
}

.about-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(237,35,42,0.25);
  border-radius: 50%;
  top: 100px;
  left: 20%;
  filter: blur(50px);
}

/* MOBILE */
@media (max-width: 991px) {
  .about-section h2 {
    font-size: 30px;
  }

  .about-visual {
    height: 260px;
  }
}


/* 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 */
.fintech-services {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

.section-title {
  font-size: 38px;
  font-weight: 800;
}

.section-title span {
  color: var(--blue);
}

.section-subtitle {
  max-width: 650px;
  margin: 15px auto 0;
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
}

/* SERVICE CARD */
/* SERVICES SECTION */
.fintech-services {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

/* CARD */
.fintech-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 30px;
  border: 1px solid #e5e7eb;
  height: 100%;
  text-align: center;
  transition: all 0.35s ease;
}

.fintech-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 76, 143, 0.18);
  border-color: #004C8F;
}

/* ICON BOX */

.icon-box img {
    width: 50px;
    filter: invert(1);
}
.icon-box {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, #ED232A, #004C8F);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.icon-box svg {
  width: 34px;
  height: 34px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
}

/* ICON HOVER */
.fintech-card:hover .icon-box {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 10px 30px rgba(237, 35, 42, 0.45);
}

/* TEXT */
.fintech-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.fintech-card p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.7;
}

/* FEATURED */
.fintech-card.highlight {
  border: 2px solid #ED232A;
  background: linear-gradient(135deg, #fff5f5, #ffffff);
}

/* WHY CHOOSE US */
.why-choose-pro {
  background: radial-gradient(circle at top, #f2f7ff, #ffffff);
  position: relative;
}

.section-badge {
  display: inline-block;
  background: rgba(237, 35, 42, 0.1);
  color: #ED232A;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-heading {
  font-size: 38px;
  font-weight: 700;
  color: #004C8F;
}

.section-heading span {
  color: #ED232A;
}

.section-subtext {
  font-size: 16px;
  color: #555;
  margin-top: 12px;
}

/* Card */
.pro-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(0, 76, 143, 0.08);
  box-shadow: 0 15px 40px rgba(0, 76, 143, 0.12);
  transition: all 0.4s ease;
  position: relative;
}

.pro-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #004C8F, #ED232A);
  transform: scaleX(0);
  transition: 0.4s;
}

.pro-card:hover::after {
  transform: scaleX(1);
}

.pro-card:hover {
  transform: translateY(-12px);
}

/* Icon */
.icon-circle {
  width: 75px;
  height: 75px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #004C8F, #ED232A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(237, 35, 42, 0.3);
}
.icon-circle img {
    width: 50px;
    filter: invert(1);
}
.icon-circle i {
  font-size: 30px;
  color: #fff;
}

.pro-card h5 {
  font-size: 19px;
  font-weight: 600;
  color: #004C8F;
  margin-bottom: 10px;
}

.pro-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
  }
}

.business-steps {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.step-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 30px;
  text-align: center;
  position: relative;
  height: 100%;
  border: 1px solid rgba(0, 76, 143, 0.08);
  box-shadow: 0 15px 45px rgba(0, 76, 143, 0.12);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* .step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #004C8F, #ED232A);
  opacity: 0;
  transition: 0.4s;
} */

.step-card:hover::before {
  opacity: 0.05;
}

.step-card:hover {
  transform: translateY(-12px);
}

/* Highlight middle step */
.step-card.active {
  border: none;
  background: linear-gradient(135deg, #004C8F, #ED232A);
  color: #ffffff;
}

.step-card.active h5,
.step-card.active p {
  color: #ffffff;
}

.step-card.active .step-icon {
  background: #ffffff;
}

.step-card.active .step-icon i {
  color: #004C8F;
}

/* Step number */
.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 76, 143, 0.08);
}

.step-card.active .step-number {
  color: rgba(255, 255, 255, 0.3);
}

/* Icon */
.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #004C8F, #ED232A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon img {
    width: 40px;
    filter: invert(1);
}
.step-card.active .step-icon img {
   filter: invert(0);
}
.step-card h5 {
  font-size: 20px;
  font-weight: 600;
  color: #004C8F;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .step-number {
    font-size: 36px;
  }
}


/*  */
.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, #2682b7, #205695);
    color: white;
}
.who-join-alt {
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
}

/* Timeline layout */
.join-timeline {
  position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 30px;
    padding: 35px 0;
    position: relative;
    text-align: left;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 80px);
  background: rgba(0, 76, 143, 0.15);
}

/* Center line */
.timeline-center {
  display: flex;
  justify-content: center;
}

.timeline-center .circle {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #004C8F, #ED232A);
  border-radius: 50%;
  margin-top: 10px;
}

/* Left content */
.timeline-left h4 {
  font-size: 22px;
  font-weight: 600;
  color: #004C8F;
  margin-bottom: 10px;
}

.timeline-left p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Right content */
.timeline-right ul {
  list-style: none;
  padding: 0;
}

.timeline-right li {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.timeline-right li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ED232A;
  font-weight: 600;
}

/* Role tags */
.role-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.role-tag.blue {
  background: rgba(0, 76, 143, 0.1);
  color: #004C8F;
}

.role-tag.red {
  background: rgba(237, 35, 42, 0.12);
  color: #ED232A;
}

/* Highlight middle */
.timeline-item.highlight h4 {
  color: #ED232A;
}

/* Mobile */
@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item::after {
    display: none;
  }

  .timeline-center {
    display: none;
  }
}

/*  */
/* CTA SECTION */
.fintech-cta {
  background: linear-gradient(135deg, #004C8F, #ED232A);
  padding: 70px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle background lines */
.fintech-cta::before,
.fintech-cta::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.fintech-cta::before {
  top: -80px;
  left: -80px;
}

.fintech-cta::after {
  bottom: -80px;
  right: -80px;
}

.fintech-cta h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
}

.fintech-cta h2 span {
  color: #FFD6D8;
}

.fintech-cta p {
  font-size: 16px;
  margin: 15px 0 20px;
  max-width: 650px;
}

/* Points */
.cta-pro {
    padding: 0 0 80px 0;
    background: linear-gradient(180deg, #f5f9ff, #ffffff);
}
.cta-wrapper {
  background: linear-gradient(135deg, #004C8F, #ED232A);
  border-radius: 28px;
  padding: 60px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Glass circles */
.cta-wrapper::before,
.cta-wrapper::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-wrapper::before {
  top: -120px;
  left: -120px;
}

.cta-wrapper::after {
  bottom: -120px;
  right: -120px;
}

/* Content */
.cta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cta-pro h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.cta-pro h2 span {
  color: #FFD6D8;
}

.cta-pro p {
  font-size: 16px;
  margin: 18px 0 25px;
  max-width: 520px;
}

/* Features */
.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.cta-features div {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-features i {
  color: #ffffff;
}

/* Actions */
.cta-actions {
  background: rgba(255, 255, 255, 0.12);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: inline-block;
  text-align: center;
}

.btn-primary-cta {
  display: block;
  background: #ffffff;
  color: #004C8F;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.35s ease;
}

.btn-primary-cta:hover {
  transform: translateY(-4px);
}

.btn-outline-cta {
  display: block;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.btn-outline-cta:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cta-note {
  font-size: 13px;
  margin-top: 10px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-wrapper {
    padding: 35px;
  }

  .cta-pro h2 {
    font-size: 28px;
  }

  .cta-features {
    flex-direction: column;
  }
}


.fintech-footer {
  background: linear-gradient(180deg, #031b36, #04162b);
  color: #cfd8e3;
  padding: 80px 0 25px;
}

/* Brand */
.footer-brand {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}

.footer-brand::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #ED232A;
  display: block;
  margin-top: 8px;
}

.footer-desc {
  font-size: 15px;
  margin: 18px 0 22px;
  line-height: 1.7;
  color: #cfd8e3;
}

/* Info */
.footer-info span {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Headings */
.footer-heading {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
}

.footer-heading::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #ED232A;
  position: absolute;
  bottom: -6px;
  left: 0;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfd8e3;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ED232A;
  padding-left: 6px;
}

/* Trust Badges */
.trust-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.trust-row span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: #94a3b8;
}

/* Social */
.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 14px;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ED232A;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
