@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Sans+Bengali:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════
   DESIGN TOKENS — BD ED-TECH PALETTE
═══════════════════════════════════════════ */
:root {
  /* Primary — deep vibrant blue */
  --p:       #1a56db;
  --p-dk:    #1447c0;
  --p-lt:    #ebf2ff;
  --p-mid:   #93c5fd;

  /* Accent — energetic orange */
  --ac:      #f97316;
  --ac-dk:   #ea6b0a;
  --ac-lt:   #fff7ed;

  /* Green (success / Bangladesh flag) */
  --gr:      #16a34a;
  --gr-dk:   #15803d;
  --gr-lt:   #dcfce7;

  /* Red / flag */
  --rd:      #dc2626;
  --rd-lt:   #fee2e2;

  /* Purple */
  --pu:      #7c3aed;
  --pu-lt:   #ede9fe;

  /* Ink */
  --ink:     #0f1117;
  --ink-2:   #374151;
  --ink-3:   #6b7280;
  --ink-4:   #9ca3af;

  /* Surface */
  --rule:    #e5e7eb;
  --surface: #f8fafc;
  --white:   #ffffff;
  --bg:      #f0f4ff;   /* blue-tinted page bg */

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #0f172a 0%, #1a3a8f 50%, #1e5fa8 100%);
  --grad-blue:   linear-gradient(135deg, #1a56db 0%, #1d4ed8 100%);
  --grad-green:  linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  --grad-orange: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --grad-dark:   linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --grad-card-blue:   linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  --grad-card-green:  linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  --grad-card-orange: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  --grad-card-purple: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  --grad-card-red:    linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  --grad-card-teal:   linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);

  --r:    10px;
  --r-lg: 18px;
  --r-xl: 24px;
  --bangla: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --serif:  Georgia, serif;

  /* ── Legacy aliases – keep old blade refs working ── */
  --violet:    var(--p);
  --violet-lt: var(--p-lt);
  --violet-md: var(--p-mid);
  --teal:      var(--gr);
  --teal-lt:   var(--gr-lt);
  --amber:     var(--ac);
  --amber-lt:  var(--ac-lt);
  --red:       var(--rd);
  --red-lt:    var(--rd-lt);
  --paper:     var(--surface);
  --ink-4:     #9ca3af;
}

/* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--bangla);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1,h2,h3,h4,h5 { font-family: var(--bangla); color: var(--ink); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-family: var(--bangla); }

.display-xl { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; line-height: 1.15; }
.text-gradient {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-orange-gradient {
  background: linear-gradient(135deg, #f97316, #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container    { width:100%; max-width:1180px; margin:0 auto; padding:0 24px; }
.container-sm { width:100%; max-width:760px;  margin:0 auto; padding:0 24px; }
.row { display:flex; flex-wrap:wrap; margin:0 -12px; }
.row > * { padding:0 12px; }
.g-3 { margin:-8px;  } .g-3 > * { padding:8px; }
.g-4 { margin:-12px; } .g-4 > * { padding:12px; }
.g-5 { margin:-16px; } .g-5 > * { padding:16px; }
.col    { flex:1 0 0%; }
.col-12 { flex:0 0 100%; max-width:100%; }
.col-6  { flex:0 0 50%;  max-width:50%; }
@media(min-width:576px){ .col-sm-6 { flex:0 0 50%; max-width:50%; } }
@media(min-width:768px){
  .col-md-4 { flex:0 0 33.333%; max-width:33.333%; }
  .col-md-6 { flex:0 0 50%;     max-width:50%; }
  .col-md-8 { flex:0 0 66.666%; max-width:66.666%; }
}
@media(min-width:992px){
  .col-lg-3 { flex:0 0 25%;     max-width:25%; }
  .col-lg-4 { flex:0 0 33.333%; max-width:33.333%; }
  .col-lg-5 { flex:0 0 41.666%; max-width:41.666%; }
  .col-lg-6 { flex:0 0 50%;     max-width:50%; }
  .col-lg-7 { flex:0 0 58.333%; max-width:58.333%; }
  .col-lg-8 { flex:0 0 66.666%; max-width:66.666%; }
  .offset-lg-1 { margin-left:8.333%; }
  .offset-lg-2 { margin-left:16.666%; }
}
.align-items-center   { align-items:center; }
.align-items-start    { align-items:flex-start; }
.justify-content-center  { justify-content:center; }
.justify-content-between { justify-content:space-between; }
.text-center  { text-align:center; }
.text-white   { color:#fff; }
.mb-2 { margin-bottom:8px; }
.mb-3 { margin-bottom:16px; }
.mb-4 { margin-bottom:24px; }
.mb-5 { margin-bottom:40px; }
.mt-2 { margin-top:8px; }
.mt-3 { margin-top:16px; }
.mt-4 { margin-top:24px; }
.d-flex { display:flex; }
.flex-wrap { flex-wrap:wrap; }
.gap-2 { gap:8px; }
.gap-3 { gap:16px; }

/* ═══════════════════════════════════════════
   SECTION SHELL
═══════════════════════════════════════════ */
section       { padding: 88px 0; }
.sec-sm       { padding: 60px 0; }
.sec-lg       { padding: 112px 0; }
.bg-surface   { background: var(--surface); }
.bg-blue-lt   { background: var(--bg); }
.bg-dark      { background: var(--grad-dark); }
.bg-hero      { background: var(--grad-hero); }
hr.rule { border:none; border-top:1px solid var(--rule); }

/* Section heading helper */
.sec-head { text-align:center; max-width:680px; margin:0 auto 60px; }
.sec-head h2 { margin-top:10px; }
.sec-head p  { font-size:1.05rem; color:var(--ink-3); line-height:1.85; margin-top:14px; }

/* Decorative blob */
.blob {
  position:absolute; border-radius:50%; filter:blur(80px); opacity:.18; pointer-events:none; z-index:0;
}

/* ═══════════════════════════════════════════
   BADGES / PILLS
═══════════════════════════════════════════ */
.badge {
  display:inline-flex; align-items:center; gap:7px;
  font-family:var(--bangla); font-size:.8rem; font-weight:600;
  padding:6px 16px; border-radius:50px; margin-bottom:18px;
  border: 1.5px solid transparent;
}
.badge-blue   { background:var(--p-lt);  color:var(--p);   border-color:#bfdbfe; }
.badge-green  { background:var(--gr-lt); color:var(--gr);  border-color:#86efac; }
.badge-orange { background:var(--ac-lt); color:var(--ac);  border-color:#fed7aa; }
.badge-purple { background:var(--pu-lt); color:var(--pu);  border-color:#c4b5fd; }
.badge-white  { background:rgba(255,255,255,.12); color:#fff; border-color:rgba(255,255,255,.25); }
.badge-dot { width:7px; height:7px; border-radius:50%; background:currentColor; flex-shrink:0; }

/* Legacy pill alias */
.pill { display:inline-flex; align-items:center; gap:5px; font-family:var(--bangla); font-size:.8rem; font-weight:600; padding:6px 16px; border-radius:50px; margin-bottom:18px; }
.pill         { background:var(--p-lt);  color:var(--p); }
.pill.teal    { background:var(--gr-lt); color:var(--gr); }
.pill.amber   { background:var(--ac-lt); color:var(--ac); }
.pill.green   { background:var(--gr-lt); color:var(--gr); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position:sticky; top:0; z-index:300;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--p-lt);
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(26,86,219,.12); }
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:66px; max-width:1180px; margin:0 auto; padding:0 24px;
}
.nav-brand {
  display:flex; align-items:center; gap:10px;
  font-family:var(--bangla); font-size:1.15rem; font-weight:800;
  color:var(--ink); flex-shrink:0;
}
.nav-brand-logo {
  width:38px; height:38px; border-radius:10px;
  background: var(--grad-blue);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; box-shadow:0 4px 12px rgba(26,86,219,.3);
}
.nav-brand-dot { width:8px; height:8px; border-radius:50%; background:var(--p); display:inline-block; }
.nav-links { display:flex; align-items:center; gap:2px; list-style:none; }
.nav-links a {
  font-family:var(--bangla); font-size:.9rem; font-weight:500; color:var(--ink-3);
  padding:7px 15px; border-radius:8px; transition:color .15s, background .15s;
}
.nav-links a:hover { color:var(--p); background:var(--p-lt); }
.nav-links a.active { color:var(--p); font-weight:700; background:var(--p-lt); }
.nav-actions { display:flex; align-items:center; gap:10px; }
.btn-ghost {
  font-family:var(--bangla); font-size:.9rem; font-weight:600; color:var(--ink-2);
  background:none; border:none; cursor:pointer; padding:8px 16px; border-radius:8px;
  transition:background .15s;
}
.btn-ghost:hover { background:var(--surface); }
.btn-solid {
  font-family:var(--bangla); font-size:.9rem; font-weight:700;
  background: var(--grad-orange); color:#fff;
  border:none; border-radius:9px; padding:9px 22px; cursor:pointer;
  transition:opacity .15s, transform .15s;
  box-shadow:0 4px 14px rgba(249,115,22,.35);
}
.btn-solid:hover { opacity:.9; transform:translateY(-1px); color:#fff; }
.nav-hamburger {
  display:none; background:none; border:1.5px solid var(--rule);
  border-radius:8px; padding:7px 11px; cursor:pointer;
  color:var(--ink); font-size:1rem; line-height:1;
}
.nav-mobile {
  display:none; flex-direction:column;
  background:var(--white); border-bottom:2px solid var(--p-lt);
  padding:14px 24px 18px;
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  font-family:var(--bangla); font-size:.95rem; color:var(--ink-2); font-weight:500;
  padding:11px 0; border-bottom:1px solid var(--rule); display:block;
}
.nav-mobile a:last-child { border-bottom:none; }

/* ═══════════════════════════════════════════
   BUTTONS (global)
═══════════════════════════════════════════ */
.btn-primary {
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--bangla); font-size:1rem; font-weight:700;
  padding:14px 30px; border-radius:10px; border:none; cursor:pointer;
  transition:transform .15s, box-shadow .15s, opacity .15s;
  background: var(--grad-blue); color:#fff;
  box-shadow:0 6px 20px rgba(26,86,219,.3);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(26,86,219,.4); color:#fff; opacity:.95; }
.btn-primary.orange { background:var(--grad-orange); box-shadow:0 6px 20px rgba(249,115,22,.3); }
.btn-primary.orange:hover { box-shadow:0 10px 28px rgba(249,115,22,.4); }
.btn-primary.green  { background:var(--grad-green); box-shadow:0 6px 20px rgba(22,163,74,.3); }
.btn-primary.violet { background: linear-gradient(135deg,#7c3aed,#6d28d9); box-shadow:0 6px 20px rgba(124,58,237,.3); }

.btn-outline {
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--bangla); font-size:1rem; font-weight:600;
  padding:13px 28px; border-radius:10px; border:2px solid var(--p);
  color:var(--p); background:transparent; cursor:pointer;
  transition:background .15s, color .15s, transform .15s;
}
.btn-outline:hover { background:var(--p); color:#fff; transform:translateY(-1px); }
.btn-outline.white { border-color:rgba(255,255,255,.5); color:#fff; }
.btn-outline.white:hover { background:rgba(255,255,255,.15); border-color:#fff; }

/* ═══════════════════════════════════════════
   HERO  (full-bleed dark-blue + blobs)
═══════════════════════════════════════════ */
.hero {
  background: var(--grad-hero);
  padding:104px 0 88px; position:relative; overflow:hidden;
  border-bottom:none;
}
.hero .blob.b1 { width:600px; height:600px; top:-200px; right:-150px; background:var(--p); }
.hero .blob.b2 { width:400px; height:400px; bottom:-150px; left:-100px; background:#1e5fa8; }
.hero .blob.b3 { width:300px; height:300px; top:50%; right:30%; background:#7c3aed; opacity:.12; }
.hero-inner { position:relative; z-index:1; display:flex; gap:56px; align-items:center; flex-wrap:wrap; }
.hero-copy  { flex:1 1 440px; }
.hero-visual-wrap { flex:1 1 400px; min-width:0; }

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.1); border:1.5px solid rgba(255,255,255,.2);
  border-radius:50px; padding:7px 18px; margin-bottom:28px;
  backdrop-filter:blur(8px);
}
.hero-badge-dot { width:8px; height:8px; border-radius:50%; background:#34d399; flex-shrink:0; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero-badge span { font-family:var(--bangla); font-size:.82rem; font-weight:600; color:rgba(255,255,255,.85); }

.hero h1 { color:#fff; margin-bottom:20px; }
.hero h1 .highlight {
  position:relative; display:inline-block;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-sub {
  font-family:var(--bangla); font-size:1.1rem; color:rgba(255,255,255,.7);
  line-height:1.85; max-width:520px; margin-bottom:40px;
}
.hero-ctas { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:60px; }
.hero-stats {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
  gap:0; border-top:1px solid rgba(255,255,255,.12); padding-top:36px;
}
.hero-stat-item { padding-right:24px; }
.hero-stat-item:not(:last-child) { border-right:1px solid rgba(255,255,255,.12); margin-right:24px; }
.stat-n {
  font-family:var(--bangla); font-size:2rem; font-weight:800; line-height:1;
  background: linear-gradient(135deg,#60a5fa,#a78bfa);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.stat-l { font-family:var(--bangla); font-size:.82rem; color:rgba(255,255,255,.5); margin-top:5px; }

/* Hero mockup */
.hv-card {
  background:#fff; border-radius:18px;
  box-shadow:0 8px 32px rgba(0,0,0,.25), 0 2px 8px rgba(0,0,0,.1);
  overflow:hidden; position:relative;
}
.hv-topbar {
  background:#f1f5f9; border-bottom:1px solid var(--rule);
  padding:12px 16px; display:flex; align-items:center; gap:7px;
}
.hv-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.hv-body { padding:16px; }
.hv-row {
  display:flex; align-items:center; gap:10px;
  padding:11px 13px; border-radius:9px; border:1px solid var(--rule);
  margin-bottom:8px; font-size:.84rem; background:#fff;
  transition:background .15s;
}
.hv-row:hover { background:var(--p-lt); border-color:var(--p-mid); }
.hv-q { flex:1; color:var(--ink-2); font-family:var(--bangla); font-size:.88rem; }
.hv-badge { font-size:.68rem; font-weight:700; color:var(--gr); background:var(--gr-lt); padding:3px 10px; border-radius:5px; }
.hv-footer {
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 16px; border-top:1px solid var(--rule); background:#f8fafc;
}
.hv-footer-stat { font-family:var(--bangla); font-size:.82rem; color:var(--ink-3); }
.hv-footer-num  { font-family:var(--bangla); font-size:1.4rem; font-weight:800; color:var(--p); }

/* Tag pills */
.tag { font-family:var(--bangla); font-size:.64rem; font-weight:700; padding:3px 10px; border-radius:5px; flex-shrink:0; }
.tag-mcq   { background:var(--p-lt);  color:var(--p); }
.tag-tf    { background:var(--gr-lt); color:var(--gr); }
.tag-fill  { background:var(--ac-lt); color:var(--ac); }
.tag-short { background:var(--rd-lt); color:var(--rd); }
.tag-draft { background:var(--ac-lt); color:var(--ac); }
.tag-cq    { background:var(--pu-lt); color:var(--pu); }

/* Floating chips */
.chip {
  position:absolute; background:#fff; border:1.5px solid var(--rule);
  border-radius:14px; padding:10px 16px;
  box-shadow:0 8px 28px rgba(0,0,0,.14); white-space:nowrap; pointer-events:none;
}
.chip.bl { bottom:28px; left:-18px; }
.chip.tr { top:36px; right:-18px; }

/* ═══════════════════════════════════════════
   LOGOBELT
═══════════════════════════════════════════ */
.logobelt { background:#fff; border-bottom:2px solid var(--p-lt); padding:30px 0; }
.logobelt-label {
  font-family:var(--bangla); font-size:.8rem; font-weight:500; color:var(--ink-4);
  text-align:center; margin-bottom:18px; text-transform:uppercase; letter-spacing:.06em;
}
.logobelt-inner { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:10px 14px; }
.logobelt-item {
  font-family:var(--bangla); font-size:.85rem; font-weight:600; color:var(--ink-3);
  background:var(--surface); border:1.5px solid var(--rule);
  padding:7px 20px; border-radius:50px;
  transition:all .2s;
}
.logobelt-item:hover { background:var(--p-lt); border-color:var(--p-mid); color:var(--p); }

/* ═══════════════════════════════════════════
   STATS BAND  (dark with glow)
═══════════════════════════════════════════ */
.stats-band {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #0f172a 100%);
  padding:72px 0; position:relative; overflow:hidden;
}
.stats-band::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,86,219,.3) 0%, transparent 60%);
  pointer-events:none;
}
.stats-band-grid {
  position:relative; z-index:1;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:0;
}
.stats-band-item {
  text-align:center; padding:36px 24px;
  border-right:1px solid rgba(255,255,255,.08);
}
.stats-band-item:last-child { border-right:none; }
.stats-icon { font-size:2rem; display:block; margin-bottom:14px; }
.stats-num {
  font-family:var(--bangla); font-size:3rem; font-weight:800; line-height:1;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:8px;
}
.stats-lbl { font-family:var(--bangla); font-size:.9rem; color:rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════
   FEATURES  (colorful gradient cards)
═══════════════════════════════════════════ */
.feat-card {
  border-radius:var(--r-xl); padding:32px 28px; height:100%;
  transition:transform .2s, box-shadow .2s;
  position:relative; overflow:hidden;
}
.feat-card:hover { transform:translateY(-5px); box-shadow:0 20px 48px rgba(0,0,0,.12); }
.feat-card.fc-blue   { background:var(--grad-card-blue); }
.feat-card.fc-green  { background:var(--grad-card-green); }
.feat-card.fc-orange { background:var(--grad-card-orange); }
.feat-card.fc-purple { background:var(--grad-card-purple); }
.feat-card.fc-red    { background:var(--grad-card-red); }
.feat-card.fc-teal   { background:var(--grad-card-teal); }

.feat-icon-wrap {
  width:52px; height:52px; border-radius:14px; background:rgba(255,255,255,.7);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin-bottom:20px; box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.feat-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:10px; color:var(--ink); }
.feat-card p  { font-size:.93rem; color:var(--ink-2); line-height:1.85; }

/* Legacy card classes */
.card {
  background:#fff; border:1.5px solid var(--rule); border-radius:var(--r-lg);
  padding:28px; height:100%; transition:border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover { border-color:var(--p-mid); box-shadow:0 8px 32px rgba(26,86,219,.1); transform:translateY(-3px); }
.card-icon {
  width:46px; height:46px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; margin-bottom:18px;
}
.ci-violet { background:var(--pu-lt); }
.ci-teal   { background:var(--gr-lt); }
.ci-amber  { background:var(--ac-lt); }
.ci-red    { background:var(--rd-lt); }
.ci-green  { background:var(--gr-lt); }
.ci-blue   { background:var(--p-lt);  }
.card h3 { margin-bottom:8px; }
.card p  { font-size:.92rem; color:var(--ink-3); line-height:1.8; }

/* ═══════════════════════════════════════════
   HOW IT WORKS  (numbered steps, vivid)
═══════════════════════════════════════════ */
.step-card {
  background:#fff; border-radius:var(--r-xl); padding:36px 28px; height:100%;
  border:1.5px solid var(--rule); position:relative; overflow:hidden;
  transition:transform .2s, box-shadow .2s;
}
.step-card:hover { transform:translateY(-5px); box-shadow:0 16px 40px rgba(26,86,219,.12); border-color:var(--p-mid); }
.step-number {
  width:48px; height:48px; border-radius:50%;
  background: var(--grad-blue); color:#fff;
  font-family:var(--bangla); font-size:1.1rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px; box-shadow:0 4px 14px rgba(26,86,219,.3);
}
.step-number.s-orange { background:var(--grad-orange); box-shadow:0 4px 14px rgba(249,115,22,.3); }
.step-number.s-green  { background:var(--grad-green);  box-shadow:0 4px 14px rgba(22,163,74,.3); }
.step-card .step-icon { font-size:2rem; margin-bottom:14px; display:block; }
.step-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:10px; }
.step-card p  { font-size:.93rem; color:var(--ink-3); line-height:1.85; }
.step-num { font-family:var(--bangla); font-size:3rem; font-weight:800; color:var(--p-lt); line-height:1; margin-bottom:16px; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.tcard {
  background:#fff; border:1.5px solid var(--rule); border-radius:var(--r-xl);
  padding:32px; height:100%; transition:box-shadow .2s, transform .2s, border-color .2s;
  position:relative;
}
.tcard::before {
  content:'"'; font-size:5rem; font-weight:800; color:var(--p-lt);
  position:absolute; top:12px; right:20px; line-height:1; font-family:Georgia,serif;
}
.tcard:hover { box-shadow:0 12px 40px rgba(26,86,219,.12); transform:translateY(-3px); border-color:var(--p-mid); }
.tcard-quote { font-family:var(--bangla); font-size:.98rem; color:var(--ink-2); line-height:1.9; margin-bottom:24px; }
.tcard-avatar {
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--bangla); font-size:.88rem; font-weight:700; flex-shrink:0;
}
.tcard-name { font-family:var(--bangla); font-size:.95rem; font-weight:700; color:var(--ink); }
.tcard-role { font-family:var(--bangla); font-size:.8rem; color:var(--ink-4); margin-top:2px; }
.stars { color:#f59e0b; font-size:.92rem; margin-bottom:14px; letter-spacing:3px; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq { border-top:2px solid var(--p-lt); }
.faq-item { border-bottom:1.5px solid var(--p-lt); }
.faq-btn {
  width:100%; background:none; border:none; padding:22px 0;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  cursor:pointer; text-align:left; font-family:var(--bangla);
  font-size:1rem; font-weight:600; color:var(--ink); transition:color .15s;
}
.faq-btn:hover { color:var(--p); }
.faq-icon {
  width:32px; height:32px; border-radius:50%; flex-shrink:0;
  background:var(--p-lt); border:none;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:var(--p); font-weight:300;
  transition:transform .25s, background .2s;
}
.faq-item.open .faq-icon { transform:rotate(45deg); background:var(--p); color:#fff; }
.faq-body {
  font-family:var(--bangla); font-size:.95rem; color:var(--ink-3); line-height:1.9;
  max-height:0; overflow:hidden; transition:max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-body { max-height:400px; padding-bottom:22px; }

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.billing-toggle {
  display:inline-flex; background:var(--surface); border:2px solid var(--rule);
  border-radius:12px; padding:4px; gap:2px; margin-bottom:56px;
}
.billing-btn {
  font-family:var(--bangla); padding:9px 24px; border-radius:9px; border:none;
  font-size:.9rem; font-weight:600; cursor:pointer; background:transparent;
  color:var(--ink-3); transition:background .15s, color .15s;
}
.billing-btn.active { background:var(--p); color:#fff; box-shadow:0 4px 12px rgba(26,86,219,.3); }
.save-pill { background:var(--gr-lt); color:var(--gr); font-size:.68rem; font-weight:700; padding:2px 8px; border-radius:5px; margin-left:6px; }

.price-card {
  background:#fff; border:2px solid var(--rule); border-radius:var(--r-xl);
  padding:40px 32px; position:relative; height:100%;
  transition:box-shadow .2s, transform .2s;
}
.price-card:hover { box-shadow:0 16px 48px rgba(0,0,0,.1); transform:translateY(-4px); }
.price-card.featured {
  border-color:var(--p); background: linear-gradient(160deg, #f0f5ff 0%, #fff 100%);
  box-shadow:0 8px 32px rgba(26,86,219,.2);
}
.price-card.featured::before {
  content:'সবচেয়ে জনপ্রিয়';
  position:absolute; top:-16px; left:50%; transform:translateX(-50%);
  background:var(--grad-blue); color:#fff;
  font-family:var(--bangla); font-size:.75rem; font-weight:700;
  padding:5px 20px; border-radius:50px; white-space:nowrap;
  box-shadow:0 4px 12px rgba(26,86,219,.3);
}
.price-plan-name {
  font-family:var(--bangla); font-size:.78rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em; color:var(--ink-4); margin-bottom:14px;
}
.price-amount {
  font-family:var(--bangla); font-size:3.2rem; font-weight:800; color:var(--ink); line-height:1;
}
.price-per { font-family:var(--bangla); font-size:.88rem; color:var(--ink-4); margin-left:4px; }
.price-desc { font-family:var(--bangla); font-size:.92rem; color:var(--ink-3); margin:16px 0 20px; line-height:1.8; }
.price-divider { border:none; border-top:1.5px solid var(--rule); margin:20px 0; }
.price-list { list-style:none; margin-bottom:32px; }
.price-list li {
  display:flex; align-items:flex-start; gap:10px;
  font-family:var(--bangla); font-size:.92rem; color:var(--ink-3);
  padding:8px 0; border-bottom:1px solid var(--rule);
}
.price-list li:last-child { border-bottom:none; }
.ck { color:var(--gr); font-size:.9rem; margin-top:2px; flex-shrink:0; font-weight:700; }
.cx { color:var(--ink-4); font-size:.9rem; margin-top:2px; flex-shrink:0; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-img-wrap {
  border-radius:var(--r-xl); overflow:hidden;
  box-shadow:0 16px 56px rgba(26,86,219,.15);
  border:2px solid var(--p-lt);
}
.about-desc { font-family:var(--bangla); font-size:1.05rem; color:var(--ink-3); line-height:1.95; margin:18px 0 28px; }
.about-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--p-lt); border:1.5px solid var(--p-mid);
  border-radius:50px; padding:7px 18px; margin-bottom:18px;
}
.about-badge span { font-family:var(--bangla); font-size:.82rem; font-weight:700; color:var(--p); }
.about-features { list-style:none; }
.about-features li {
  display:flex; align-items:center; gap:12px;
  font-family:var(--bangla); font-size:.95rem; color:var(--ink-2);
  padding:10px 0; border-bottom:1px solid var(--rule);
}
.about-features li:last-child { border-bottom:none; }
.about-features .ck { font-size:1rem; }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
  padding:104px 0; text-align:center; position:relative; overflow:hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,86,219,.35) 0%, transparent 70%);
}
.cta-band h2 { color:#fff; position:relative; z-index:1; }
.cta-band .sub { font-family:var(--bangla); color:rgba(255,255,255,.55); font-size:1.1rem; margin:18px 0 44px; position:relative; z-index:1; }
.cta-btns { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; position:relative; z-index:1; }
.btn-white {
  display:inline-flex; align-items:center; gap:9px;
  background:#fff; color:var(--p);
  font-family:var(--bangla); font-size:1rem; font-weight:800;
  padding:14px 32px; border-radius:10px;
  transition:transform .15s, box-shadow .15s;
  box-shadow:0 6px 20px rgba(0,0,0,.2);
}
.btn-white:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(0,0,0,.3); color:var(--p); }
.btn-ghost-white {
  display:inline-flex; align-items:center; gap:9px;
  background:transparent; color:rgba(255,255,255,.75);
  font-family:var(--bangla); font-size:1rem; font-weight:600;
  padding:14px 32px; border-radius:10px; border:2px solid rgba(255,255,255,.25);
  transition:border-color .15s, color .15s, background .15s;
}
.btn-ghost-white:hover { border-color:rgba(255,255,255,.6); color:#fff; background:rgba(255,255,255,.08); }

/* ═══════════════════════════════════════════
   FOOTER  (dark themed)
═══════════════════════════════════════════ */
.footer { background:#0a0f1e; padding:80px 0 36px; border-top:2px solid rgba(26,86,219,.2); }
.footer-brand {
  display:flex; align-items:center; gap:10px;
  font-family:var(--bangla); font-size:1.1rem; font-weight:800;
  color:#fff; margin-bottom:14px;
}
.footer-brand-icon {
  width:34px; height:34px; border-radius:9px;
  background:var(--grad-blue);
  display:flex; align-items:center; justify-content:center; font-size:.9rem;
}
.footer-brand-dot { width:8px; height:8px; border-radius:50%; background:var(--p); display:inline-block; }
.footer-desc { font-family:var(--bangla); font-size:.88rem; color:rgba(255,255,255,.38); line-height:1.85; max-width:250px; }
.footer-col-head {
  font-family:var(--bangla); font-size:.72rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.3); margin-bottom:18px;
}
.footer-link {
  font-family:var(--bangla); display:block; font-size:.9rem;
  color:rgba(255,255,255,.5); padding:5px 0; transition:color .15s;
}
.footer-link:hover { color:#fff; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.07); margin-top:60px; padding-top:28px;
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px;
  font-family:var(--bangla); font-size:.84rem; color:rgba(255,255,255,.28);
}
.footer-socials { display:flex; gap:10px; margin-top:22px; }
.footer-social-btn {
  width:36px; height:36px; border-radius:9px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; color:rgba(255,255,255,.45); transition:background .2s, color .2s, border-color .2s;
}
.footer-social-btn:hover { background:var(--p); color:#fff; border-color:var(--p); }

/* WhatsApp float button */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:58px; height:58px; border-radius:50%;
  background: linear-gradient(135deg,#25D366,#128C7E);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 24px rgba(37,211,102,.45);
  transition:transform .2s, box-shadow .2s;
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-float svg { display:block; flex-shrink:0; }
.wa-float:hover { transform:scale(1.12); box-shadow:0 12px 36px rgba(37,211,102,.55); }
@keyframes wa-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.form-field { margin-bottom:20px; }
.form-label { display:block; font-family:var(--bangla); font-size:.85rem; font-weight:700; color:var(--ink-3); margin-bottom:8px; }
.form-input {
  width:100%; background:#fff; border:2px solid var(--rule); border-radius:10px;
  padding:12px 16px; font-family:var(--bangla); font-size:.95rem; color:var(--ink);
  outline:none; transition:border-color .15s, box-shadow .15s;
}
.form-input:focus { border-color:var(--p); box-shadow:0 0 0 4px rgba(26,86,219,.1); }
.form-input::placeholder { color:var(--ink-4); }
textarea.form-input { resize:vertical; min-height:130px; }
.form-row { display:flex; gap:16px; flex-wrap:wrap; }
.form-row .form-field { flex:1 1 200px; }

/* ═══════════════════════════════════════════
   FEATURE DETAIL PAGE
═══════════════════════════════════════════ */
.feat-row { display:flex; gap:64px; align-items:center; padding:72px 0; border-bottom:1px solid var(--rule); flex-wrap:wrap; }
.feat-row:last-child { border-bottom:none; }
.feat-row-copy  { flex:1 1 300px; }
.feat-row-visual{ flex:1 1 300px; min-width:0; }
.feat-row.flip  { flex-direction:row-reverse; }
.feat-visual { background:var(--surface); border:2px solid var(--rule); border-radius:var(--r-lg); padding:24px; }
.feat-tag-list { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.feat-tag { font-family:var(--bangla); font-size:.75rem; font-weight:600; padding:5px 13px; border-radius:7px; background:var(--p-lt); color:var(--p); border:1px solid var(--p-mid); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
.fade-up { opacity:0; transform:translateY(28px); transition:opacity .65s ease,transform .65s ease; }
.fade-up.in { opacity:1; transform:none; }

/* ═══════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════ */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--surface); }
::-webkit-scrollbar-thumb { background:var(--p-mid); border-radius:3px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
/* Footer responsive grid */
.footer-grid { display:grid; grid-template-columns:260px repeat(3,1fr); gap:48px; }
@media(max-width:991px){
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
}
@media(max-width:575px){
  .footer-grid { grid-template-columns:1fr; gap:28px; }
}

@media(max-width:991px){
  .nav-links,.nav-actions { display:none; }
  .nav-hamburger { display:block; }
  section { padding:64px 0; }
  .hero { padding:76px 0 60px; }
  .hero-inner { gap:40px; }
  .chip { display:none; }
  .feat-row,.feat-row.flip { flex-direction:column; gap:32px; }
  .stats-band-grid { grid-template-columns:repeat(2,1fr); }
  .stats-band-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.08); }
  .stats-band-item:nth-child(odd) { border-right:1px solid rgba(255,255,255,.08); }
  .stats-band-item:last-child { border-bottom:none; }
}
@media(max-width:767px){
  h1 { font-size:2.1rem; }
  h2 { font-size:1.8rem; }
  section { padding:52px 0; }
  .hero-stats { grid-template-columns:repeat(2,1fr); gap:20px; }
  .hero-stat-item { border-right:none !important; margin-right:0 !important; }
  .stat-n { font-size:1.7rem; }
  .stats-band-grid { grid-template-columns:repeat(2,1fr); }
  .cta-btns { flex-direction:column; align-items:stretch; }
  .btn-white,.btn-ghost-white { justify-content:center; }
  .wa-float { bottom:20px; right:20px; width:50px; height:50px; font-size:1.4rem; }
}
@media(max-width:480px){
  .hero-stats { grid-template-columns:1fr 1fr; }
  .stats-band-grid { grid-template-columns:1fr 1fr; }
}
