:root {
      --primary: #8B5CF6;
      --primary-dark: #7C3AED;
      --primary-deeper: #6D28D9;
      --secondary: #EC4899;
      --secondary-dark: #DB2777;
      --bg-light: #111827;
      --text-dark: #F8FAFC;
      --text-mid: #F8FAFC;
      --text-muted: #94A3B8;
      --accent-gold: #FBBF24;
      --border-color: #374151;
      --card-radius: 16px;
      --shadow-sm: 0 2px 12px rgba(139,92,246,0.18);
      --shadow-md: 0 6px 32px rgba(139,92,246,0.24);
      --shadow-lg: 0 16px 48px rgba(139,92,246,0.28);
    }

*, *::before, *::after { box-sizing: border-box; }

body {
    overflow-x: clip;
    width: 100%;
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      margin: 0;
      padding: 0;
      line-height: 1.85;
    }

/* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: var(--bg-dark);
      border-bottom: 1px solid var(--divider);
      padding: 10px 0;
    }

.breadcrumb { margin: 0; background: none; padding: 0; }

.breadcrumb-item a { color: var(--primary-dark); text-decoration: none; font-weight: 500; }

.breadcrumb-item a:hover { text-decoration: underline; }

.breadcrumb-item.active { color: var(--text-mid); font-weight: 600; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--primary); }

/* ── HERO ── */
    .page-hero {
      background: linear-gradient(135deg, #0F172A 0%, #8B5CF6 56%, #EC4899 100%);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

.hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--text);
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 22px;
    }

.page-hero h1 {
      color: #fff;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 18px;
    }

.page-hero .lead {
      color: var(--text);
      font-size: 1.05rem;
      max-width: 600px;
    }

.hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      margin-top: 36px;
    }

.hs-item { }

.hs-val {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      color: #fbbf24;
      line-height: 1.1;
    }

.hs-lbl { color: var(--text); font-size: 0.85rem; }

.hero-img-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
    }

.hero-brand-card {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 24px;
      padding: 40px 36px;
      text-align: center;
      max-width: 320px;
      width: 100%;
    }

.hero-brand-card img { height: 64px; margin-bottom: 20px; }

.hero-brand-card p { color: #e0f2fe; font-size: 0.93rem; margin: 0; line-height: 1.7; }

.hbc-badge {
      display: inline-block;
      background: var(--secondary);
      color: #fff;
      padding: 4px 14px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 14px;
    }

/* ── OCEAN DIVIDER ── */
    .ocean-divider {
      height: 4px;
      background: linear-gradient(90deg, #0ea5e9, #22c55e, #0ea5e9);
      opacity: 0.5;
    }

/* ── SECTION BASE ── */
    section { padding: 72px 0; }

.section-label {
      display: inline-block;
      background: linear-gradient(135deg, rgba(139,92,246,0.24), rgba(236,72,153,0.16));
      color: var(--primary-dark);
      padding: 5px 16px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 14px;
    }

.section-title {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 12px;
      line-height: 1.35;
    }

.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 0; }

/* ── ABOUT INTRO ── */
    .about-intro p { color: var(--text); font-size: 1rem; margin-bottom: 16px; }

.about-intro h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin: 26px 0 10px;
    }

.info-box {
      background: rgba(139,92,246,0.12);
      border-left: 4px solid var(--primary);
      border-radius: 10px;
      padding: 16px 18px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

.info-box i { color: var(--primary); font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }

.info-box p { margin: 0; color: var(--text); font-size: 0.93rem; }

.info-box.ib-green { background: rgba(236,72,153,0.12); border-color: var(--secondary); }

.info-box.ib-green i { color: var(--secondary); }

/* ── MISSION VISION ── */
    .mv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

.mv-card {
      background: var(--card-bg);
      border-radius: var(--card-radius);
      padding: 32px 26px;
      box-shadow: var(--shadow-sm);
      border-top: 5px solid var(--primary);
      transition: transform 0.25s, box-shadow 0.25s;
    }

.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.mv-card.mvc-green { border-color: var(--secondary); }

.mv-card.mvc-gold { border-color: var(--accent-gold); }

.mv-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, rgba(139,92,246,0.28), rgba(139,92,246,0.12));
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem;
      margin-bottom: 18px;
    }

.mv-card.mvc-green .mv-icon { background: linear-gradient(135deg, rgba(236,72,153,0.26), rgba(236,72,153,0.10)); }

.mv-card.mvc-gold .mv-icon { background: linear-gradient(135deg, rgba(251,191,36,0.26), rgba(251,191,36,0.10)); }

.mv-card h5 { font-weight: 700; color: var(--text-mid); margin-bottom: 10px; font-size: 1.08rem; }

.mv-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ── FEATURES ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 22px;
    }

.feature-card {
      background: var(--card-bg);
      border-radius: var(--card-radius);
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      gap: 18px;
      align-items: flex-start;
      transition: transform 0.2s, box-shadow 0.2s;
      border-bottom: 3px solid transparent;
    }

.feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-bottom-color: var(--primary);
    }

.feature-card:nth-child(2):hover { border-bottom-color: var(--secondary); }

.feature-card:nth-child(3):hover { border-bottom-color: var(--accent-gold); }

.feature-card:nth-child(4):hover { border-bottom-color: #a855f7; }

.feature-card:nth-child(5):hover { border-bottom-color: #ef4444; }

.feature-card:nth-child(6):hover { border-bottom-color: #06b6d4; }

.fc-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      flex-shrink: 0;
    }

.fc-i1 { background: linear-gradient(135deg, rgba(139,92,246,0.28), rgba(139,92,246,0.12)); }

.fc-i2 { background: linear-gradient(135deg, rgba(236,72,153,0.26), rgba(236,72,153,0.10)); }

.fc-i3 { background: linear-gradient(135deg, rgba(251,191,36,0.26), rgba(251,191,36,0.10)); }

.fc-i4 { background: linear-gradient(135deg, rgba(139,92,246,0.24), rgba(236,72,153,0.12)); }

.fc-i5 { background: linear-gradient(135deg, rgba(236,72,153,0.24), rgba(251,191,36,0.10)); }

.fc-i6 { background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(236,72,153,0.12)); }

.fc-body h6 { font-weight: 700; color: var(--text-mid); margin-bottom: 7px; font-size: 1rem; }

.fc-body p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ── TIMELINE ── */
    .timeline { position: relative; padding: 10px 0; }

.timeline::before {
      content: '';
      position: absolute;
      left: 28px;
      top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--primary), var(--secondary));
      border-radius: 2px;
    }

.tl-item {
      display: flex;
      gap: 22px;
      margin-bottom: 30px;
      position: relative;
    }

.tl-dot {
      width: 58px; height: 58px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-weight: 800;
      font-size: 0.88rem;
      flex-shrink: 0;
      box-shadow: 0 0 0 5px rgba(139,92,246,0.18);
      z-index: 1;
    }

.tl-item:nth-child(even) .tl-dot {
      background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    }

.tl-body {
    overflow-x: clip;
    width: 100%;
      background: var(--card-bg);
      border-radius: 14px;
      padding: 20px 22px;
      box-shadow: var(--shadow-sm);
      flex: 1;
      transition: box-shadow 0.2s;
    }

.tl-body:hover { box-shadow: var(--shadow-md); }

.tl-year { font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }

.tl-body h6 { font-weight: 700; color: var(--text-mid); margin: 4px 0 6px; }

.tl-body p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ── VALUES ── */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

.value-card {
      background: var(--card-bg);
      border-radius: var(--card-radius);
      padding: 26px 20px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s, box-shadow 0.2s;
    }

.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.vc-emoji { font-size: 2.4rem; margin-bottom: 12px; display: block; }

.value-card h6 { font-weight: 700; color: var(--text-mid); margin-bottom: 8px; }

.value-card p { color: var(--text-muted); font-size: 0.87rem; margin: 0; }

/* ── TEAM CARDS ── */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 22px;
    }

.team-card {
      background: var(--card-bg);
      border-radius: var(--card-radius);
      padding: 28px 20px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s, box-shadow 0.2s;
    }

.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.team-avatar {
      width: 76px; height: 76px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      margin: 0 auto 16px;
      background: linear-gradient(135deg, rgba(139,92,246,0.28), rgba(139,92,246,0.12));
    }

.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, rgba(236,72,153,0.26), rgba(236,72,153,0.10)); }

.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, rgba(251,191,36,0.26), rgba(251,191,36,0.10)); }

.team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, rgba(139,92,246,0.24), rgba(236,72,153,0.12)); }

.team-card h6 { font-weight: 700; color: var(--text-mid); margin-bottom: 4px; }

.team-role { color: var(--primary); font-size: 0.83rem; font-weight: 600; display: block; margin-bottom: 8px; }

.team-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ── CTA BANNER ── */
    .cta-banner {
      background: linear-gradient(135deg, #0F172A 0%, #8B5CF6 58%, #EC4899 100%);
      border-radius: 22px;
      padding: 60px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

.cta-banner::before {
      content: '🎮';
      font-size: 9rem;
      position: absolute;
      left: -25px; top: 50%;
      transform: translateY(-50%);
      opacity: 0.1;
    }

.cta-banner::after {
      content: '🏆';
      font-size: 9rem;
      position: absolute;
      right: -25px; top: 50%;
      transform: translateY(-50%);
      opacity: 0.1;
    }

.cta-tag {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      color: #fff;
      padding: 5px 18px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 18px;
    }

.cta-banner h3 { color: #fff; font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; margin-bottom: 14px; }

.cta-banner p { color: var(--text); font-size: 1rem; margin-bottom: 28px; }

.btn-cta-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--primary);
      color: var(--button-text);
      padding: 13px 30px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(0,0,0,0.15);
      transition: transform 0.2s, box-shadow 0.2s;
    }

.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); color: var(--button-text); }

.btn-cta-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent;
      color: #fff;
      padding: 12px 28px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.5);
      transition: background 0.2s, border-color 0.2s;
    }

.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

/* ── CONTACT STRIP ── */
    .contact-strip {
      background: var(--card-bg);
      border-radius: var(--card-radius);
      padding: 30px 36px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      align-items: center;
      justify-content: space-between;
    }

.cs-item { display: flex; align-items: center; gap: 12px; }

.cs-icon {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, rgba(139,92,246,0.28), rgba(139,92,246,0.12));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      color: var(--primary);
      flex-shrink: 0;
    }

.cs-label { font-size: 0.78rem; color: var(--text-muted); }

.cs-val { font-size: 0.95rem; font-weight: 600; color: var(--text-mid); }

/* ── RESPONSIVE ── */
    @media (max-width: 768px) {
section { padding: 50px 0; }

.cta-banner { padding: 38px 22px; }

.cta-banner::before, .cta-banner::after { display: none; }

.contact-strip { flex-direction: column; align-items: flex-start; }

.timeline::before { left: 22px; }

.tl-dot { width: 46px; height: 46px; font-size: 0.78rem; }
}
