/* ONLY this specific button */
.API {
  background: linear-gradient(135deg, #053f2a, #065f33, #027a3f);
  /* dark green gradient */
  padding: 10px 30px;
  border-radius: 50px;
  /* capsule / 50% look */
  color: #fff !important;

  /* Glass effect */
  background-color: rgba(5, 63, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 2px solid rgba(0, 255, 130, 0.45);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Stronger border glow */
.API:hover {
  border-color: rgba(0, 255, 130, 0.9);
  box-shadow: 0 0 12px rgba(0, 255, 130, 0.6), 0 0 25px rgba(0, 255, 130, 0.5);
  transform: translateY(-2px) scale(1.03);
}

/* Soft glass highlight */
.API::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.18),
    transparent 70%
  );
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 400px) {
  .API {
    padding: 7px 18px !important;
    border-radius: 30px;
    border-width: 1.5px;
  }
}

.ww {
  font-weight: 400 !important;
  font-size: 15px !important;
}

/* CLIENT SLIDER STYLES */
.clients-slider {
  margin: 40px 0;
  text-align: center;
}

.clients-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
}

.clients-title span {
  background: linear-gradient(90deg, #b3422b, #a52323, #842626);
  -webkit-background-clip: text;
  color: transparent;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.slider-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.slider-track img {
  height: 60px;
  width: auto;
  opacity: 0.7;
  transition: 0.3s ease;
}

.slider-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* COMMON BUTTON STYLE */
.navbar__main-menu-link {
  font-size: 11px !important;
  position: relative;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

/* exclude .API from underline animation */
.navbar__main-menu-link:not(.API)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #00ff66, #70ffb0, #00ff66);
  border-radius: 50px;
  transition: width 0.35s ease;
}


.navbar__main-menu-link:not(.API):hover::after,
.navbar__main-menu-item.active .navbar__main-menu-link:not(.API)::after {
  width: 100%;
  color: #c9f73a;
}

/* LIGHT MODE – Hover */
.navbar__main-menu-link:not(.API):hover {
  color: #28c522 !important; 
}

/* LIGHT MODE – Active */
.navbar__main-menu-item.active .navbar__main-menu-link:not(.API) {
  color:  #28c522 !important; 
}


/* DARK MODE – Hover */
[theme="dark"] .navbar__main-menu-link:not(.API):hover {
  color: #c9f73a !important;
}

/* DARK MODE – Active */
[theme="dark"] .navbar__main-menu-item.active .navbar__main-menu-link:not(.API) {
  color: #c9f73a !important;
}



/* =========================
   MOBILE MENU BASE
========================= */
.navbar__mobile-menu-container {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  z-index: 9999;
  display: none;
  overflow-y: auto;
}

.navbar__mobile-menu-container_showed {
  display: block;
  scrollbar-width: none;
}

/* =========================
   HEADER
========================= */
.mobile-navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.mobile-navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.mobile-navbar-logo img {
  height: 32px;
}

/* =========================
   MAIN MENU
========================= */
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-nav-list a,
.mobile-submenu-btn {
  width: 100%;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* =========================
   SUBMENU
========================= */
.mobile-submenu {
  display: none;
  padding-left: 12px;
}

.mobile-has-submenu.open .mobile-submenu {
  display: block;
}

.mobile-submenu li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* SUBMENU LINK */
.mobile-submenu a {
  position: relative;
  display: block;
  padding: 12px 0 12px 18px; /* arrow space */
  color: #bfbfbf;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* ARROW BEFORE SUBMENU TEXT */
.mobile-submenu a::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #bfbfbf;
  transition: all 0.25s ease;
}

/* =========================
   HOVER EFFECTS
========================= */
.mobile-nav-list a:hover,
.mobile-submenu-btn:hover {
  color: #4fffa7;
  padding-left: 6px;
}

.mobile-submenu a:hover {
  color: #4fffa7;
  padding-left: 24px;
}

.mobile-submenu a:hover::before {
  color: #4fffa7;
  left: 6px;
}

.mobile-nav-actions {
  padding: 20px;
}

.navbar__main-menu-item.active .menu-chevron {
  transform: rotate(225deg);
}



.card-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  /* filter: drop-shadow(0 0 12px rgba(0, 255, 170, 0.4)); */
  z-index: 2;
}

/* CHEVRON ICON FOR "SOLUTIONS" */
.menu-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: 0.3s ease;
  margin-top: -2px;
}

/* ROTATE ON HOVER */
.has-chevron:hover .menu-chevron {
  transform: rotate(225deg); 
}

/* ACTIVE ROTATION */
.navbar__main-menu-item.active .menu-chevron {
  transform: rotate(225deg);
}

/* Dark Mode Better Color */
[theme="dark"] .navbar__main-menu-link {
  color: #fff;
}

.pp-who-we-are-for__cards-title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-weight: 700;
}

.pp-who-we-are-for__cards-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, #19b683, #319fc6, #13a676);
  background-size: 260% 100%;
  animation: glassSlideGB 7s linear infinite;
}

@keyframes glassSlideGB {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 260% 50%;
  }
}

.fintech-video-section {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-top: 30px;
}

.fintech-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media (min-width: 540px) and (max-width: 768px) {
  .fintech-video {
    object-fit: contain;
  }
}


/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .fintech-video-section {
    height: 100px;
  }
}

.get-started {
  width: 100%;
  background: black;
}

.get-started__container {
  position: relative;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

/* ✅ Image Perfect Desktop */
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ✅ Overlay */
.get-started__container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
  z-index: 2;
}

/* ✅ Center Content */
.fintech-banner__content {
  position: relative;
  z-index: 3;
  /* max-width: 600px; */
  margin: auto;
  margin-top: -5px;
  text-align: center;
  padding: 32px;
}

@media (max-width: 600px) {
  .fintech-banner__content {
    padding: 20px;
    margin-top: 150px;
  }
}

/* ✅ Smaller Balanced Text */
.fintech-banner__content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.fintech-banner__content p {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  opacity: 0.9;
  margin-bottom: 16px;
  color: wheat;
}

.fintech-btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* ✅ SHINE EFFECT */
.fintech-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transition: all 0.6s ease;
}

/* ✅ GLOW BORDER RING */
.fintech-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(135deg, #20c997, #28a745);
  opacity: 0;
  z-index: -1;
  transition: 0.4s ease;
}

.fintech-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 22px rgba(40, 167, 69, 0.45);
}

.fintech-btn:hover::before {
  left: 120%;
}

.fintech-btn:hover::after {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal h2 {
  transition-delay: 0.1s;
}

.reveal p {
  transition-delay: 0.25s;
}

.reveal .fintech-btn {
  transition-delay: 0.4s;
}

@media (max-width: 1024px) {
  .get-started__container {
    min-height: 260px;
  }

  .banner-img {
    object-fit: fill;
  }

  .fintech-banner__content {
    max-width: 500px;
    padding: 26px;
  }
}

/* ✅ ✅ MOBILE FIX */
@media (max-width: 768px) {
  .get-started__container {
    min-height: 300px;
  }

  .fintech-banner__content {
    padding: 22px;
  }
}

/* .pp-dashboards__content {
  width: 100%;
  height: 650px;
  overflow: hidden;
  border-radius: 26px;
} */

/* ✅ SLIDER */
.custom-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.custom-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

/* ✅ EACH SLIDE */
.custom-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.custom-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (width: 1024px) {
  .custom-slide img {
    object-fit: fill;
  }
}

.overlay-text {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  color: #fff;
  animation: fadeUp 0.7s ease;
}

.hw__title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}


.hw__title_highlighter {
  color: #5eda0b;
}

.gc__content {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* ✅ DOTS */
.custom-dots {
  position: absolute;
  bottom: 18px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.custom-dots .dot {
  width: 9px;
  height: 9px;
  background: #aaa;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}

.custom-dots .dot.active {
  background: #5eda0b;
}

/* ✅ ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 500px) {
  .pp-dashboards__content .hw__title {
    font-size: 12px;
    line-height: 1.3;
  }

  .pp-dashboards__content .gc__content {
    font-size: 9px;
  }

  .pp-dashboards__content .overlay-text {
    left: 15px;
    right: 15px;
    max-width: 100%;
  }
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 992px) {
  /* .pp-dashboards__content {
    height: 400px;
  } */

  .overlay-text {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .hw__title {
    font-size: 24px;
  }

  .gc__content {
    font-size: 14px;
  }
}
