:root {
      --orange:  #f97316;
      --gold:    #facc15;
      --dark:    #111827;
      --dark2:   #1a2234;
      --dark3:   #1f2937;
      --dark4:   #0d1420;
      --muted:   #9ca3af;
      --text:    #e5e7eb;
    }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    overflow-x: clip;
    width: 100%;
      background: var(--dark);
      color: var(--text);
      font-family: 'Hind Siliguri', 'Inter', sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
    }

.nav-cta {
      background: var(--orange) !important;
      color: #fff !important;
      padding: 0.45rem 1.1rem !important;
      border-radius: 6px;
    }

.nav-cta:hover { background: #ea580c !important; color: #fff !important; }

/* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: var(--dark2);
      border-bottom: 1px solid rgba(249,115,22,0.12);
      padding: 0.65rem 0;
    }

.breadcrumb { margin: 0; background: transparent; padding: 0; }

.breadcrumb-item a { color: var(--orange); text-decoration: none; font-size: 0.83rem; }

.breadcrumb-item.active { color: var(--muted); font-size: 0.83rem; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }

/* ── HERO ── */
    .page-hero {
      background: linear-gradient(135deg, #0d1420 0%, #1a2234 40%, #1c1a0d 100%);
      padding: 5rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 15% 50%, rgba(249,115,22,0.18), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(250,204,21,0.12), transparent 45%);
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(249,115,22,0.15);
      border: 1px solid rgba(249,115,22,0.35);
      color: var(--orange);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.2rem;
      letter-spacing: 0.04em;
    }

.page-hero h1 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

.page-hero h1 span { color: var(--orange); }

.page-hero .lead {
      color: #d1d5db;
      font-size: 1.02rem;
      max-width: 600px;
    }

.hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2rem;
    }

.hstat {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(249,115,22,0.2);
      border-radius: 10px;
      padding: 0.9rem 1.4rem;
      text-align: center;
      min-width: 110px;
    }

.hstat-num {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--orange);
      line-height: 1;
    }

.hstat-lbl { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; }

.hero-img-wrap {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      border: 1px solid rgba(249,115,22,0.2);
    }

.hero-visual {
      background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
      padding: 2rem;
    }

.hero-logo-big {
      font-size: 5rem;
      line-height: 1;
    }

.hero-tagline {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold);
      text-align: center;
    }

.hero-since {
      background: rgba(249,115,22,0.15);
      border: 1px solid rgba(249,115,22,0.3);
      border-radius: 50px;
      padding: 0.35rem 1rem;
      font-size: 0.82rem;
      color: var(--orange);
      font-weight: 700;
    }

/* ── SECTION COMMON ── */
    .section-pad { padding: 5rem 0; }

.bg-dark2 { background: var(--dark2); }

.bg-dark3 { background: var(--dark3); }

.divider-line {
      width: 48px;
      height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: 2px;
      margin-bottom: 1rem;
    }

.section-title {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      color: #fff;
    }

.section-title .hl { color: var(--orange); }

.section-sub { color: var(--muted); font-size: 0.97rem; max-width: 580px; margin: 0 auto; }

/* ── STORY SECTION ── */
    .story-block { background: var(--dark2); border-radius: 14px; padding: 2.5rem; border: 1px solid rgba(249,115,22,0.1); margin-bottom: 1.5rem; }

.story-block h3 { color: #fff; font-weight: 700; font-size: 1.25rem; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem; }

.story-block h3 i { color: var(--orange); }

.story-block p { color: #d1d5db; margin-bottom: 0.7rem; font-size: 0.96rem; }

.story-block p:last-child { margin-bottom: 0; }

/* ── FEATURE CARDS ── */
    .feat-card {
      background: var(--dark2);
      border: 1px solid rgba(249,115,22,0.12);
      border-radius: 14px;
      padding: 2rem 1.6rem;
      height: 100%;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

.feat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      opacity: 0;
      transition: opacity 0.3s;
    }

.feat-card:hover { border-color: rgba(249,115,22,0.35); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(249,115,22,0.12); }

.feat-card:hover::before { opacity: 1; }

.feat-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(250,204,21,0.1));
      border: 1px solid rgba(249,115,22,0.25);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 1.2rem;
    }

.feat-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }

.feat-text { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* ── MISSION / VISION CARDS ── */
    .mv-card {
      border-radius: 14px;
      padding: 2rem;
      height: 100%;
    }

.mv-mission {
      background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(234,88,12,0.08));
      border: 1px solid rgba(249,115,22,0.3);
    }

.mv-vision {
      background: linear-gradient(135deg, rgba(250,204,21,0.12), rgba(161,130,6,0.06));
      border: 1px solid rgba(250,204,21,0.25);
    }

.mv-values {
      background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(29,78,216,0.05));
      border: 1px solid rgba(59,130,246,0.2);
    }

.mv-icon { font-size: 2.4rem; margin-bottom: 1rem; }

.mv-card h4 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 0.8rem; }

.mv-card p { color: #d1d5db; font-size: 0.9rem; line-height: 1.75; margin: 0; }

/* ── TIMELINE ── */
    .timeline { position: relative; padding-left: 2.5rem; }

.timeline::before {
      content: '';
      position: absolute;
      left: 10px; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--orange), var(--gold), transparent);
    }

.tl-item { position: relative; margin-bottom: 2rem; }

.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
      position: absolute;
      left: -2.1rem;
      top: 0.3rem;
      width: 20px; height: 20px;
      background: var(--orange);
      border-radius: 50%;
      border: 3px solid var(--dark);
      box-shadow: 0 0 0 3px rgba(249,115,22,0.3);
    }

.tl-year {
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.3rem;
    }

.tl-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }

.tl-desc { color: var(--muted); font-size: 0.87rem; line-height: 1.65; }

/* ── TRUST BADGES ── */
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

.trust-badge {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(249,115,22,0.15);
      border-radius: 10px;
      padding: 1rem 1.5rem;
      text-align: center;
      min-width: 140px;
      transition: all 0.25s;
    }

.trust-badge:hover { border-color: rgba(249,115,22,0.4); background: rgba(249,115,22,0.06); }

.trust-badge i { font-size: 1.6rem; color: var(--orange); display: block; margin-bottom: 0.5rem; }

.trust-badge span { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

/* ── TEAM CARD ── */
    .team-card {
      background: var(--dark2);
      border: 1px solid rgba(249,115,22,0.12);
      border-radius: 14px;
      padding: 1.8rem 1.4rem;
      text-align: center;
      transition: all 0.3s;
    }

.team-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-3px); }

.team-avatar {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 1rem;
      border: 3px solid rgba(249,115,22,0.3);
    }

.team-name { font-size: 0.97rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }

.team-role { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-bottom: 0.6rem; }

.team-bio { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── COUNTER SECTION ── */
    .counter-section {
      background: linear-gradient(135deg, #c2410c 0%, var(--orange) 50%, #ea580c 100%);
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }

.counter-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 20% 50%, rgba(250,204,21,0.2), transparent 50%),
                  radial-gradient(circle at 80% 50%, rgba(0,0,0,0.2), transparent 50%);
    }

.counter-card {
      text-align: center;
      position: relative;
      z-index: 1;
    }

.counter-num {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.4rem;
    }

.counter-lbl { font-size: 0.9rem; color: rgba(255,255,255,0.82); font-weight: 600; }

/* ── CTA STRIP ── */
    .cta-strip {
      background: var(--dark4);
      border-top: 1px solid rgba(249,115,22,0.15);
      border-bottom: 1px solid rgba(249,115,22,0.15);
      padding: 4rem 0;
      text-align: center;
    }

.cta-inner {
      max-width: 640px;
      margin: 0 auto;
    }

.cta-strip h3 { color: #fff; font-weight: 800; font-size: 1.7rem; margin-bottom: 0.6rem; }

.cta-strip h3 span { color: var(--orange); }

.cta-strip p { color: var(--muted); font-size: 0.97rem; margin-bottom: 1.6rem; }

.btn-fire {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff !important;
      font-weight: 800; font-size: 1rem;
      padding: 0.85rem 2.2rem;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(249,115,22,0.35);
      margin: 0.3rem;
    }

.btn-fire:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(249,115,22,0.5); }

.btn-outline-orange {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent;
      color: var(--orange) !important;
      border: 2px solid var(--orange);
      font-weight: 700; font-size: 1rem;
      padding: 0.82rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s;
      margin: 0.3rem;
    }

.btn-outline-orange:hover { background: rgba(249,115,22,0.1); transform: translateY(-2px); }

/* ── PAYMENT BADGES ── */
    .pay-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      margin: 0.3rem;
    }

/* ── ACCORDION ── */
    .accordion-item {
      background: var(--dark2);
      border: 1px solid rgba(249,115,22,0.15) !important;
      border-radius: 10px !important;
      margin-bottom: 0.6rem;
      overflow: hidden;
    }

.accordion-button {
      background: var(--dark2) !important;
      color: #fff !important;
      font-weight: 700;
      font-size: 0.95rem;
      box-shadow: none !important;
    }

.accordion-button:not(.collapsed) {
      color: var(--orange) !important;
      background: rgba(249,115,22,0.06) !important;
    }

.accordion-button::after {
      filter: brightness(0) saturate(100%) invert(55%) sepia(95%) saturate(500%) hue-rotate(355deg);
    }

.accordion-body {
    overflow-x: clip;
    width: 100%; background: var(--dark2); color: #d1d5db; font-size: 0.9rem; line-height: 1.75; }

/* ── RESPONSIVE ── */
    @media (max-width: 768px) {
.page-hero { padding: 3rem 0 2.5rem; }

.section-pad { padding: 3rem 0; }

.story-block { padding: 1.5rem; }
}
