*{margin:0;padding:0;box-sizing:border-box}
.hero{display:grid;grid-template-columns:1fr 1fr;min-height:92vh;background:#0a0e1a;overflow:hidden;position:relative}
.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 20% 50%,rgba(0,80,200,0.13) 0%,transparent 70%);pointer-events:none;z-index:0}
.left{display:flex;flex-direction:column;justify-content:center;padding:60px 48px 60px 52px;position:relative;z-index:2}
.badge{display:inline-flex;align-items:center;gap:8px;background:rgba(30,100,220,0.13);border:0.5px solid rgba(30,120,255,0.28);border-radius:20px;padding:6px 16px;margin-bottom:28px;width:fit-content;opacity:0;transform:translateY(16px);animation:fadeUp 0.7s 0.1s forwards}
.badge-dot{width:7px;height:7px;border-radius:50%;background:#3b82f6;animation:pulse 1.8s infinite}
.badge span{font-size:12px;color:#93b8f7;letter-spacing:0.06em;text-transform:uppercase}
h1{font-size:clamp(28px,3.4vw,46px);font-weight:700;line-height:1.15;color:#fff;margin-bottom:20px;opacity:0;transform:translateY(20px);animation:fadeUp 0.75s 0.28s forwards}
h1 .accent{color:#3b82f6;display:inline}
.desc{font-size:15px;line-height:1.75;color:#94a3b8;margin-bottom:36px;max-width:480px;opacity:0;transform:translateY(20px);animation:fadeUp 0.75s 0.46s forwards}
.tags{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:40px;opacity:0;transform:translateY(16px);animation:fadeUp 0.75s 0.6s forwards}
.tag{display:flex;align-items:center;gap:6px;background:rgba(255,255,255,0.04);border:0.5px solid rgba(255,255,255,0.1);border-radius:6px;padding:6px 13px;font-size:12.5px;color:#cbd5e1}
.tag i{font-size:14px;color:#3b82f6}
.cta-area{display:flex;flex-direction:column;gap:10px;opacity:0;transform:translateY(18px);animation:fadeUp 0.75s 0.76s forwards}
.cta-headline{font-size:13.5px;color:#64748b;line-height:1.5;max-width:380px}
.btn-primary{display:inline-flex;align-items:center;gap:10px;background:linear-gradient(135deg,#1d4ed8,#2563eb);border:none;border-radius:8px;padding:14px 28px;font-size:14.5px;font-weight:600;color:#fff;cursor:pointer;width:fit-content;transition:transform 0.18s,box-shadow 0.18s;box-shadow:0 0 0 0 rgba(59,130,246,0)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(37,99,235,0.38)}
.btn-primary i{font-size:17px}
.right{position:relative;z-index:2;overflow:hidden}
.right video{width:100%;height:100%;object-fit:cover;display:block;filter:brightness(0.82) saturate(1.1)}
.right::after{content:'';position:absolute;inset:0;background:linear-gradient(to right,#0a0e1a 0%,transparent 30%),linear-gradient(to top,#0a0e1a 0%,transparent 25%);pointer-events:none}
.scanline{position:absolute;bottom:0;left:0;right:0;height:2px;background:linear-gradient(to right,transparent,#3b82f6,transparent);animation:scan 3s linear infinite;z-index:3}
.corner{position:absolute;width:18px;height:18px;z-index:4}
.corner.tl{top:16px;left:16px;border-top:2px solid #3b82f6;border-left:2px solid #3b82f6}
.corner.tr{top:16px;right:16px;border-top:2px solid #3b82f6;border-right:2px solid #3b82f6}
.corner.bl{bottom:16px;left:16px;border-bottom:2px solid #3b82f6;border-left:2px solid #3b82f6}
.corner.br{bottom:16px;right:16px;border-bottom:2px solid #3b82f6;border-right:2px solid #3b82f6}
.stats{position:absolute;bottom:28px;left:24px;right:24px;display:flex;gap:12px;z-index:5;opacity:0;animation:fadeUp 0.8s 1.2s forwards}
.stat{flex:1;background:rgba(10,14,26,0.82);border:0.5px solid rgba(59,130,246,0.25);border-radius:8px;padding:10px 14px;backdrop-filter:blur(8px)}
.stat-val{font-size:18px;font-weight:700;color:#fff;line-height:1}
.stat-lbl{font-size:11px;color:#64748b;margin-top:4px}
@keyframes fadeUp{to{opacity:1;transform:translateY(0)}}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.4}}
@keyframes scan{0%{bottom:0;opacity:0}10%{opacity:1}90%{opacity:1}100%{bottom:100%;opacity:0}}
@media(max-width:700px){.hero{grid-template-columns:1fr;min-height:auto}.left{padding:40px 24px 32px}.right{height:240px}.stats{flex-wrap:wrap}}


/* =========================================================
   SECTION 2 — LOGOS
========================================================= */
.logos-marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.logos-inner {
    display: flex;
    flex-shrink: 0;
    animation: logos-scroll 14s linear infinite;
}

@keyframes logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Yeh sab SAME raha — kuch change nahi hua */
.logos-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 40px;
}

.logo-item img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

@keyframes logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Tablet */
@media (max-width: 768px) {
    .logo-item img {
        max-height: 35px;
    }
    .logos-inner {
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-item img {
        max-height: 25px;
    }
    .logos-inner {
        gap: 20px;
    }
}

/* =========================================================
   SECTION 3 — TRUST / INTRO
========================================================= */
.ftd-trust {
  background: #060912;
  padding: 30px 0;
}

.ftd-trust-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
}

.ftd-trust-text {
  color: #a9b4c9;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.ftd-trust-grid {
  margin-top: 50px;
}

.ftd-trust-card-col {
  margin-bottom: 24px;
}

.ftd-trust-card {
  background: #0e1426;
  border: 1px solid #1c2740;
  border-radius: 14px;
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ftd-trust-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.25);
}

.ftd-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2563eb, #38bdf8);
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 18px;
}

.ftd-trust-card-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ftd-trust-card-text {
  color: #92a0ba;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================================================
   SECTION 4 — STATS
========================================================= */
.ftd-stats {
  background: #ffffff;
  padding: 30px 0;
}

.ftd-stats-title {
  color: #0a0e1a;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.ftd-stats-text {
  color: #5b6678;
  font-size: 16px;
  line-height: 1.8;
}

.ftd-stats-subtitle {
  color: #2563eb;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 22px;
  margin-bottom: 0;
}

.ftd-stats-grid {
  margin-top: 36px;
}

.ftd-stats-col {
  margin-bottom: 24px;
}

.ftd-stats-card {
  background: #f4f7fc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 14px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ftd-stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.15);
}

.ftd-stats-number {
  display: block;
  color: #0a0e1a;
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, #0a0e1a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ftd-stats-label {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 0;
}

/* =========================================================
   SECTION 5 — SERVICES
========================================================= */
.ftd-services {
  background: #060912;
  padding: 30px 0;
}

.ftd-services-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.ftd-services-text {
  color: #a9b4c9;
  font-size: 16px;
  line-height: 1.8;
}

.ftd-services-grid {
  margin-top: 40px;
}

.ftd-services-col {
  margin-bottom: 26px;
  display: flex;
}

.ftd-services-col-center {
  margin-left: auto;
  margin-right: auto;
}

.ftd-services-card {
  background: #0e1426;
  border: 1px solid #1c2740;
  border-radius: 16px;
  padding: 32px 26px;
  width: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ftd-services-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 20px 36px rgba(37, 99, 235, 0.25);
}

.ftd-services-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.15);
  color: #38bdf8;
  font-size: 20px;
  margin-bottom: 18px;
}

.ftd-services-card-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ftd-services-card-text {
  color: #92a0ba;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ftd-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftd-services-list li {
  color: #c3cce0;
  font-size: 13.5px;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.ftd-services-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #38bdf8;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 11px;
}

/* =========================================================
   SECTION 6 — TESTIMONIALS
========================================================= */
.ftd-testimonials {
  background: #ffffff;
  padding: 30px 0;
}

.ftd-testimonials-title {
  color: #0a0e1a;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.ftd-testimonials-text {
  color: #5b6678;
  font-size: 16px;
  line-height: 1.8;
}

.ftd-testimonials-grid {
  margin-top: 36px;
}

.ftd-testimonials-col {
  margin-bottom: 26px;
  display: flex;
}

.ftd-testimonials-card {
  background: #f4f7fc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 26px;
  width: 100%;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ftd-testimonials-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.14);
}

.ftd-testimonials-quote-icon {
  display: inline-flex;
  color: #2563eb;
  font-size: 22px;
  opacity: 0.55;
  margin-bottom: 14px;
}

.ftd-testimonials-card-title {
  color: #0a0e1a;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ftd-testimonials-card-text {
  color: #5b6678;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ftd-testimonials-author {
  color: #2563eb;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 0;
}

/* =========================================================
   SECTION 7 — FEATURES
========================================================= */
.ftd-features {
  background: #060912;
  padding: 30px 0; 
}

.ftd-features-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.ftd-features-text {
  color: #a9b4c9;
  font-size: 16px;
  line-height: 1.8;
}

.ftd-features-grid {
  margin-top: 40px;
}

.ftd-features-extra-row {
  margin-top: 0;
}

.ftd-features-col {
  margin-bottom: 26px;
  display: flex;
}

.ftd-features-col-center {
  margin-left: auto;
  margin-right: auto;
}

.ftd-features-card {
  background: #0e1426;
  border: 1px solid #1c2740;
  border-radius: 16px;
  padding: 32px 26px;
  width: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ftd-features-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 20px 36px rgba(37, 99, 235, 0.25);
}

.ftd-features-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.15);
  color: #38bdf8;
  font-size: 20px;
  margin-bottom: 18px;
}

.ftd-features-card-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ftd-features-card-text {
  color: #92a0ba;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ftd-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ftd-features-list li {
  color: #c3cce0;
  font-size: 13.5px;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.ftd-features-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #38bdf8;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 11px;
}

/* =========================================================
   SECTION 8 — INDUSTRIES
========================================================= */
.ftd-industries {
  background: #ffffff;
  padding: 30px 0;
}

.ftd-industries-title {
  color: #0a0e1a;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 0;
}

.ftd-industries-grid {
  margin-top: 40px;
}

.ftd-industries-col {
  margin-bottom: 26px;
  display: flex;
}

.ftd-industries-col-center,
.ftd-industries-col-last {
  margin-left: auto;
  margin-right: auto;
}

.ftd-industries-card {
  background: #f4f7fc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 26px;
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ftd-industries-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.14);
}

.ftd-industries-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 20px;
  margin-bottom: 18px;
}

.ftd-industries-card-title {
  color: #0a0e1a;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.ftd-industries-card-text {
  color: #5b6678;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================================================
   MID CTA
========================================================= */
.ftd-cta-mid {
  background: linear-gradient(120deg, #0a0e1a 0%, #15234a 55%, #0a0e1a 100%);
  padding: 30px 0;
}

.ftd-cta-mid-title {
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.ftd-cta-mid-text {
  color: #b9c2d6;
  font-size: 16px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 28px;
}

.ftd-cta-mid-badges {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.ftd-cta-mid-badges li {
  color: #e2e8f0;
  font-size: 13.5px;
  font-weight: 600;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 30px;
  padding: 9px 18px;
}

.ftd-cta-mid-badges li i {
  color: #38bdf8;
  margin-right: 6px;
}

.ftd-cta-mid-btn {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.ftd-cta-mid-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.6);
}

/* =========================================================
   SECTION 9 — COMPLIANCE
========================================================= */
/* ===================================================================
   FinTech Compliance Section — Tabbed redesign
   Same theme as before (white bg, navy heading, slate text, blue
   accent) — no CSS root variables used, every value written directly.
   =================================================================== */

.ftd-compliance{
  background:#ffffff;
  padding:80px 0 64px;
}

.ftd-compliance-title{
  color:#0a0e1a;
  font-size:32px;
  font-weight:800;
  margin-bottom:16px;
}

.ftd-compliance-text{
  color:#5b6678;
  font-size:16px;
  line-height:1.8;
}

/* ---------- tabs shell ---------- */
.compliance-tabs{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:32px;
  align-items:stretch;
}

.compliance-tabs__nav{
  height:100%;
  max-height:360px;
  overflow-y:auto;
   scrollbar-width:none;    
  -ms-overflow-style:none; 
}
.compliance-tabs__nav::-webkit-scrollbar{
  display:none;             
}

.compliance-tab{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  text-align:left;
  background:transparent;
  border:1px solid transparent;
  border-radius:12px;
  padding:12px 14px;
  cursor:pointer;
  transition:background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.compliance-tab:hover{
  background:#ffffff;
  border-color:#e2e8f0;
}

.compliance-tab.is-active{
  background:#ffffff;
  border-color:#2563eb;
  box-shadow:0 10px 22px rgba(37,99,235,0.12);
}

.compliance-tab__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  flex-shrink:0;
  border-radius:10px;
  background:rgba(37,99,235,0.1);
  color:#2563eb;
  font-size:15px;
  transition:background 0.25s ease, color 0.25s ease;
}

.compliance-tab.is-active .compliance-tab__icon{
  background:#2563eb;
  color:#ffffff;
}

.compliance-tab__label{
  display:flex;
  flex-direction:column;
  gap:2px;
  font-size:14px;
  font-weight:600;
  color:#5b6678;
  line-height:1.3;
}

.compliance-tab.is-active .compliance-tab__label{
  color:#0a0e1a;
}

.compliance-tab__num{
  font-size:11px;
  font-weight:800;
  letter-spacing:0.04em;
  color:#2563eb;
  opacity:0.8;
}

/* ---------- right: content panel ---------- */
.compliance-tabs__panel{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:32px;
  align-items:center;
  background:#f4f7fc;
  border:1px solid #e2e8f0;
  border-radius:18px;
  padding:28px;
  min-height:360px;
}

.compliance-panel__media{
  position:relative;
  width:100%;
  aspect-ratio:4/3;
  border-radius:14px;
  overflow:hidden;
  background:#0a0e1a;
}

.compliance-panel__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(0.85);
  transition:opacity 0.3s ease;
}

.compliance-panel__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(160deg, rgba(37,99,235,0.32), rgba(10,14,26,0.18) 60%, rgba(10,14,26,0.4));
  mix-blend-mode:multiply;
  pointer-events:none;
}

.compliance-panel__body{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.compliance-panel__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  border-radius:12px;
  background:rgba(37,99,235,0.1);
  color:#2563eb;
  font-size:19px;
}

.compliance-panel__title{
  color:#0a0e1a;
  font-size:22px;
  font-weight:700;
  line-height:1.35;
  margin:0;
}

.compliance-panel__text{
  color:#5b6678;
  font-size:15px;
  line-height:1.75;
  margin:0;
}

.compliance-tabs__panel.is-changing .compliance-panel__media,
.compliance-tabs__panel.is-changing .compliance-panel__body{
  opacity:0;
  transition:opacity 0.18s ease;
}

.compliance-panel__media,
.compliance-panel__body{
  opacity:1;
  transition:opacity 0.25s ease;
}

/* ---------- responsive ---------- */
@media (max-width: 991px){

  .compliance-tabs{
    display:block;
  }

  .compliance-tabs__nav{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    height:auto !important;
    max-height:none !important;
    margin-bottom:20px;
    padding:10px;

    scrollbar-width:none;
    -ms-overflow-style:none;
  }

  .compliance-tabs__nav::-webkit-scrollbar{
    display:none;
  }

  .compliance-tab{
    flex:0 0 auto;
    min-width:220px;
  }

  .compliance-tabs__panel{
    grid-template-columns:1fr;
    gap:20px;
    padding:20px;
    min-height:auto;
  }

  .compliance-panel__media{
    width:100%;
    aspect-ratio:16/9;
  }

  .compliance-panel__img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
}

@media (max-width: 576px){

  .ftd-compliance{
    padding:40px 0;
  }

  .ftd-compliance-title{
    font-size:24px;
    line-height:1.3;
  }

  .ftd-compliance-text{
    font-size:14px;
  }

  .compliance-tab{
    min-width:180px;
    padding:10px;
  }

  .compliance-tab__label{
    font-size:13px;
    white-space:normal;
  }

  .compliance-panel__title{
    font-size:18px;
  }

  .compliance-panel__text{
    font-size:14px;
    line-height:1.7;
  }
}
/* ---------- accessibility ---------- */
.compliance-tab:focus-visible{
  outline:2px solid #2563eb;
  outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
  .compliance-tab,
  .compliance-tab__icon,
  .compliance-panel__media,
  .compliance-panel__body,
  .compliance-panel__img{
    transition:none !important;
  }
}
/* =========================================================
   SECTION 10 — CYBERSECURITY
========================================================= */
.ftd-cybersecurity {
  background: #060912;
  padding: 30px 0;
}

.ftd-cybersecurity-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 0;
}

.ftd-cybersecurity-grid {
  margin-top: 40px;
}

.ftd-cybersecurity-col {
  margin-bottom: 26px;
  display: flex;
}

.ftd-cybersecurity-col-last {
  margin-left: auto;
  margin-right: auto;
}

.ftd-cybersecurity-card {
  background: #0e1426;
  border: 1px solid #1c2740;
  border-radius: 16px;
  padding: 30px 24px;
  width: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ftd-cybersecurity-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 20px 36px rgba(37, 99, 235, 0.25);
}

.ftd-cybersecurity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.15);
  color: #38bdf8;
  font-size: 19px;
  margin-bottom: 16px;
}

.ftd-cybersecurity-card-title {
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.ftd-cybersecurity-card-text {
  color: #92a0ba;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================================================
   SECTION 11 — WHY CHOOSE US
========================================================= */
.ftd-whyus {
  background: #ffffff;
  padding: 30px 0;
}

.ftd-whyus-title {
  color: #0a0e1a;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.ftd-whyus-text {
  color: #5b6678;
  font-size: 16px;
  line-height: 1.8;
}

.ftd-whyus-grid {
  margin-top: 40px;
}

.ftd-whyus-col {
  margin-bottom: 26px;
  display: flex;
}

.ftd-whyus-col-last {
  margin-left: auto;
  margin-right: auto;
}

.ftd-whyus-card {
  background: #f4f7fc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ftd-whyus-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.14);
}

.ftd-whyus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 19px;
  margin-bottom: 16px;
}

.ftd-whyus-card-title {
  color: #0a0e1a;
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.ftd-whyus-card-text {
  color: #5b6678;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================================================
   SECTION 13 — CASE STUDIES
========================================================= */
   
/* Case study */
@media (max-width: 480px){

    .casestudies_sec .client-title{
        font-size: 28px !important;
        line-height: 1.15;
    }

}
.casestudies_sec {
 background: #080f1f;
  position: relative;
}
.casestudies_sec > h2{
  padding: 30px 0;
  font-size: 2.65rem;
  font-weight: 800;
  color: #fff;

}
.viewCaseStudies {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 10px;
  padding: 10px 1.5rem;
  text-decoration: none;
  /* display: inline-block; */
  width: auto;
  transition: background 0.3s ease, color 0.3s ease;
}
.viewCaseStudies {
  width: fit-content;
}

.viewCaseStudies:hover {
  background-color: #fff;
  color: #132948;
  text-decoration: none;
}
.casestudies_sec > h2{
    text-align: center;
}
.casestudies_sec > h3 {
  text-align: center;
  line-height: normal;
  font-size: 2.7rem;
  color: #132948;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.caseStudiesSliderBox h4 {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
}

/* ── Slider wrapper ── */
.casestudies_slider {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.slider-casestudies {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* Desktop: 2 cards per view */
.caseStudiesSliderBox {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

/* ── Card box ── */
.case_box {
  padding: 24px 20px 20px;
  border-radius: 20px;
  height: 380px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Row inside card — fill full height */
.case_box .row {
  flex: 1;
  min-height: 0;
  height: 100%;
}

/* Text column */
.case_box .col-lg-6:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  height: 100%;
}

.case_box p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: start;
  color: #fff;
  margin-bottom: 1rem;
  flex-shrink: 1;
}

.case_logo img {
  margin-bottom: 1rem;
  height: auto;
  width: 100px;
}

.case_img img {
  float: right;
  width: 100%;
  height: auto;
  text-align: center;
}

/* ── img-wrapper base ── */
.img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ── Landscape images ── */
.img-landscape {
  padding: 10px 6px 0 0;
  align-items: center;
  justify-content: center;
  max-height: 340px;
}

.img-landscape img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  opacity: 0.95;
  display: block;
}

/* ── Portrait images ── */
.img-portrait {
  align-items: flex-end;
  padding-top: 10px;
  max-height: 360px;
}

.img-portrait img {
  padding-bottom: 15px;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  object-position: bottom;
  border-radius: 12px 12px 0 0;
  filter: drop-shadow(0 -8px 24px rgba(0, 0, 0, 0.4));
  display: block;
  margin: 0 auto;
}

/* ── Arrow buttons ── */
.caseStudiesBottomArrows {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 40;
  width: fit-content;
  margin: 16px;
  padding-bottom: 1rem;
}

.caseStudiesBottomArrows button {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: none;
  padding: 8px;
  background-color: #0b79be;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.caseStudiesBottomArrows button:hover {
  background-color: transparent;
  color: #0b79be;
  border: 1px solid #0b79be;
}

.caseStudiesBottomArrows button i {
  font-size: 1rem;
}

.caseStudiesLeftArrow i,
.caseStudieRightArrow i {
  font-size: 1.2rem;
}

/* ── Case available ── */
.case-available {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  align-items: center;
}

.case-available p {
  margin-bottom: 0;
}

.case-available img {
  filter: invert(1);
  width: 40px;
  height: 40px;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* Tablet: still 2 per view but smaller image */
@media (max-width: 991.98px) {
  .img-landscape {
    max-height: 220px;
  }
  .img-landscape img {
    max-height: 210px;
  }
  .img-portrait {
    max-height: 240px;
  }
  .img-portrait img {
    max-height: 230px;
  }
  .case_box {
    height: 360px;
  }
}
.viewCaseStudies {
  width: fit-content;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .viewCaseStudies {
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  .caseStudiesSliderBox h4 {
    text-align: center;
  }
}

/* Mobile: 1 card per view, stacked layout */
@media (max-width: 767.98px) {

  /* 1 slide per view */
  .caseStudiesSliderBox {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 6px;
  }

  /* Auto height so content fits */
  .case_box {
    height: auto;
    min-height: unset;
    padding: 20px 16px 16px;
  }

  /* Stack text on top, image below */
  .case_box .row {
    flex-direction: column;
    height: auto;
  }

  .case_box .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    height: auto !important;
  }

  /* Text block */
  .case_box .col-lg-6:first-child {
    height: auto;
    overflow: visible;
  }

  .case_box p {
    -webkit-line-clamp: 5;
    margin-bottom: 0.75rem;
  }

  .caseStudiesSliderBox h4 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  /* Image block — fixed height on mobile */
  .img-wrapper {
    height: 180px;
    margin-top: 12px;
  }

  .img-landscape,
  .img-portrait {
    max-height: 180px;
    padding: 0;
  }

  .img-landscape img,
  .img-portrait img {
    max-height: 170px;
    width: 100%;
    object-fit: contain;
  }

  .img-portrait {
    align-items: center;
  }

  .img-portrait img {
    border-radius: 10px;
    object-position: center;
  }

  /* Arrows */
  .caseStudiesBottomArrows {
    margin-top: 12px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .casestudies_sec > h4 {
    font-size: 2rem;
  }
  .caseStudiesSliderBox h4 {
    font-size: 1.3rem;
  }
  .img-wrapper {
    height: 150px;
  }
  .img-landscape img,
  .img-portrait img {
    max-height: 140px;
  }
}

  
  
/* =========================================================
   SECTION 14 — TECHNOLOGIES
========================================================= */
.ftd-technologies {
  background: #ffffff;
  padding: 30px 0; 
}

.ftd-technologies-title {
  color: #0a0e1a;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.ftd-technologies-text {
  color: #5b6678;
  font-size: 16px;
  line-height: 1.8;
}

.ftd-technologies-grid {
  margin-top: 40px;
}

.ftd-technologies-col {
  margin-bottom: 26px;
  display: flex;
}

.ftd-technologies-col-last {
  margin-left: auto;
  margin-right: auto;
}

.ftd-technologies-card {
  background: #f4f7fc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ftd-technologies-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.14);
}

.ftd-technologies-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 19px;
  margin-bottom: 16px;
}

.ftd-technologies-card-title {
  color: #0a0e1a;
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.ftd-technologies-card-text {
  color: #5b6678;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =========================================================
   SECTION 15 — TECH STACK
========================================================= */
.ftd-stack {
  background: #060912;
  padding: 30px 0;
}

.ftd-stack-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 0;
}

.ftd-stack-grid {
  margin-top: 40px;
}

.ftd-stack-col {
  margin-bottom: 26px;
  display: flex;
}

.ftd-stack-col-last {
  margin-left: auto;
  margin-right: auto;
}

.ftd-stack-card {
  background: #0e1426;
  border: 1px solid #1c2740;
  border-radius: 16px;
  padding: 28px 24px;
  width: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ftd-stack-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 20px 36px rgba(37, 99, 235, 0.22);
}

.ftd-stack-card-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ftd-stack-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ftd-stack-tags li {
  color: #c3cce0;
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
}

/* =========================================================
   SECTION 16 — PROCESS
========================================================= */
/* ===================================================================
   FinTech Process Section — Timeline redesign
   Same theme as before (white bg, navy heading, slate text, blue
   accent) — no CSS root variables used, every value is written
   directly wherever it is needed.
   =================================================================== */

.ftd-process{
  background:#ffffff;
  padding:30px 0;
  overflow:hidden;
}

.ftd-process-title{
  color:#0a0e1a;
  font-size:32px;
  font-weight:800;
  margin-bottom:16px;
}

.ftd-process-text{
  color:#5b6678;
  font-size:16px;
  line-height:1.8;
}

/* ---------- timeline shell ---------- */
.ftd-timeline{
  position:relative;
  max-width:980px;
  margin:64px auto 0;
  padding-bottom:10px;
}

.ftd-timeline-track{
  position:absolute;
  top:4px;
  bottom:4px;
  left:50%;
  width:3px;
  background:#e2e8f0;
  border-radius:3px;
  transform:translateX(-50%);
  overflow:hidden;
}

.ftd-timeline-progress{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:0%;
  background:linear-gradient(180deg,#2563eb,#1d4ed8);
  border-radius:3px;
  transition:height 0.25s ease-out;
}

/* ---------- timeline item ---------- */
.ftd-timeline-item{
  position:relative;
  width:50%;
  padding-bottom:60px;
  opacity:0;
  transition:opacity 0.7s ease, transform 0.7s ease;
}

.ftd-timeline-item--left{
  left:0;
  padding-right:56px;
  text-align:right;
  transform:translateX(-36px);
}

.ftd-timeline-item--right{
  left:50%;
  padding-left:56px;
  text-align:left;
  transform:translateX(36px);
}

.ftd-timeline-item.is-visible{
  opacity:1;
  transform:translateX(0);
}

/* ---------- step marker on the line ---------- */
.ftd-timeline-marker{
  position:absolute;
  top:0;
  width:54px;
  height:54px;
  border-radius:50%;
  background:#ffffff;
  border:2px solid #e2e8f0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:800;
  color:#2563eb;
  z-index:2;
  transition:border-color 0.4s ease, background 0.4s ease, color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.ftd-timeline-item--left .ftd-timeline-marker{ right:-27px; }
.ftd-timeline-item--right .ftd-timeline-marker{ left:-27px; }

.ftd-timeline-item.is-visible .ftd-timeline-marker{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  border-color:#2563eb;
  color:#ffffff;
  transform:scale(1.08);
  box-shadow:0 8px 18px rgba(37,99,235,0.35);
}

/* ---------- card ---------- */
.ftd-timeline-card{
  background:#f4f7fc;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:26px 24px;
  transition:transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ftd-timeline-card:hover{
  transform:translateY(-6px);
  border-color:#2563eb;
  box-shadow:0 18px 32px rgba(37,99,235,0.14);
}

.ftd-process-card-title{
  color:#0a0e1a;
  font-size:17px;
  font-weight:700;
  margin-bottom:10px;
  line-height:1.4;
}

.ftd-process-card-text{
  color:#5b6678;
  font-size:13.5px;
  line-height:1.7;
  margin-bottom:0;
}

/* ---------- responsive ---------- */
@media (max-width: 991px){
  .ftd-timeline{ margin:48px auto 0; padding-left:8px; }
  .ftd-timeline-track{ left:27px; transform:none; }

  .ftd-timeline-item,
  .ftd-timeline-item--left,
  .ftd-timeline-item--right{
    width:100%;
    left:0;
    text-align:left;
    padding-left:72px;
    padding-right:0;
    transform:translateX(24px);
  }

  .ftd-timeline-item--left .ftd-timeline-marker,
  .ftd-timeline-item--right .ftd-timeline-marker{
    left:0;
    right:auto;
  }
}

@media (max-width: 560px){
  .ftd-process{ padding:30px 0 44px; }
  .ftd-process-title{ font-size:26px; }
  .ftd-timeline-marker{ width:44px; height:44px; font-size:13px; }
  .ftd-timeline-item{ padding-left:60px; padding-bottom:48px; }
  .ftd-timeline-item--left .ftd-timeline-marker,
  .ftd-timeline-item--right .ftd-timeline-marker{ right:auto; left:0; }
  .ftd-timeline-track{ left:22px; }
}

/* ---------- accessibility ---------- */
@media (prefers-reduced-motion: reduce){
  .ftd-timeline-item{
    transition:none !important;
    opacity:1 !important;
    transform:none !important;
  }
  .ftd-timeline-marker{ transition:none !important; }
  .ftd-timeline-progress{ transition:none !important; }
  .ftd-timeline-card{ transition:none !important; }
}
/* =========================================================
   FINAL CTA
========================================================= */
.ftd-cta-final {
  background: linear-gradient(135deg, #0a0e1a 0%, #15234a 55%, #060912 100%);
  padding: 30px 0;
}

.ftd-cta-final-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 18px;
}

.ftd-cta-final-text {
  color: #b9c2d6;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.ftd-cta-final-btn {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
}

.ftd-cta-final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.6);
}

/* =========================================================
   FAQ
========================================================= */
.ftd-faq {
  background: #ffffff;
  padding: 30px 0;
}

.ftd-faq-title {
  color: #0a0e1a;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 0;
}

.ftd-faq-accordion {
  margin-top: 40px;
}

.ftd-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 22px 0;
}

.ftd-faq-question {
  color: #0a0e1a;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ftd-faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.ftd-faq-item.ftd-faq-open .ftd-faq-icon {
  transform: rotate(45deg);
  background: #2563eb;
  color: #ffffff;
}

.ftd-faq-answer {
  color: #5b6678;
  font-size: 14.5px;
  line-height: 1.8;
  margin: 14px 0 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.ftd-faq-item.ftd-faq-open .ftd-faq-answer {
  max-height: 500px;
  opacity: 1;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS (Tablet / Mobile)
   30px inter-section spacing preserved at every breakpoint.
========================================================= */
@media (max-width: 991px) {
  .ftd-hero { padding: 60px 0 40px; text-align: center; }
  .ftd-hero-content { text-align: center; margin-bottom: 40px; }
  .ftd-hero-text { margin: 0 auto; }
  .ftd-hero-title { font-size: 34px; }

  .ftd-trust-title,
  .ftd-stats-title,
  .ftd-services-title,
  .ftd-testimonials-title,
  .ftd-features-title,
  .ftd-industries-title,
  .ftd-compliance-title,
  .ftd-cybersecurity-title,
  .ftd-whyus-title,
  .ftd-cases-title,
  .ftd-technologies-title,
  .ftd-stack-title,
  .ftd-process-title,
  .ftd-cta-final-title,
  .ftd-faq-title { font-size: 26px; }

  .ftd-cta-mid-title { font-size: 24px; }
}

@media (max-width: 767px) {
  .ftd-hero-visual { width: 280px; height: 280px; }
  .ftd-hero-orbit-outer { width: 270px; height: 270px; margin: -135px 0 0 -135px; }
  .ftd-hero-orbit-inner { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
  .ftd-node-1 { top: -16px; left: 112px; }
  .ftd-node-2 { top: 48px; left: 222px; }
  .ftd-node-3 { top: 168px; left: 222px; }
  .ftd-node-4 { top: 232px; left: 112px; }
  .ftd-node-5 { top: 168px; left: 2px; }
  .ftd-node-6 { top: 48px; left: 2px; }
  .ftd-hero-core { width: 104px; height: 104px; margin: -52px 0 0 -52px; }

  .ftd-services-card,
  .ftd-features-card,
  .ftd-trust-card,
  .ftd-testimonials-card,
  .ftd-industries-card,
  .ftd-compliance-card,
  .ftd-cybersecurity-card,
  .ftd-whyus-card,
  .ftd-technologies-card,
  .ftd-stack-card,
  .ftd-process-card { padding: 26px 20px; }
}

@media (max-width: 575px) {
  .ftd-hero-title { font-size: 28px; }
  .ftd-cta-mid-badges { flex-direction: column; align-items: center; }
}