:root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --primary-deeper: #0c4a6e;
      --secondary: #22c55e;
      --secondary-dark: #16a34a;
      --bg-light: #e0f2fe;
      --text-dark: #0f172a;
      --text-mid: #1e3a5f;
      --text-muted: #475569;
      --accent-gold: #f59e0b;
      --accent-red: #ef4444;
      --border-color: #7dd3fc;
      --card-radius: 16px;
      --shadow-sm: 0 2px 12px rgba(14,165,233,0.10);
      --shadow-md: 0 6px 32px rgba(14,165,233,0.16);
      --shadow-lg: 0 16px 48px rgba(14,165,233,0.22);
    }

*, *::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: #bae6fd;
      border-bottom: 2px solid #7dd3fc;
      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); }

/* ── OCEAN DIVIDER ── */
    .ocean-divider {
      height: 4px;
      background: linear-gradient(90deg, #0ea5e9, #22c55e, #0ea5e9);
      opacity: 0.5;
    }

/* ── HERO ── */
    .page-hero {
      background: linear-gradient(135deg, #064e3b 0%, #065f46 40%, #0ea5e9 100%);
      padding: 80px 0 70px;
      position: relative; overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%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: #a7f3d0; 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.6rem);
      font-weight: 700; line-height: 1.3; margin-bottom: 18px;
    }

.page-hero .lead { color: #a7f3d0; font-size: 1rem; max-width: 640px; }

.hero-stats {
      display: flex; flex-wrap: wrap; gap: 20px; margin-top: 36px;
    }

.hs-item {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 14px; padding: 16px 22px;
      text-align: center; min-width: 120px;
    }

.hs-item .hs-num { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }

.hs-item .hs-label { font-size: 0.78rem; color: #a7f3d0; margin-top: 4px; }

/* ── SECTION GENERIC ── */
    section { padding: 70px 0; }

.section-label {
      display: inline-block;
      background: linear-gradient(135deg, #dcfce7, #d1fae5);
      color: var(--secondary-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.4rem, 3vw, 2rem);
      font-weight: 700; color: var(--text-mid);
      margin-bottom: 12px; line-height: 1.35;
    }

.section-subtitle { color: var(--text-muted); font-size: 1rem; }

/* ── ALERT BOXES ── */
    .info-box {
      border-radius: 12px; padding: 16px 20px;
      display: flex; gap: 14px; align-items: flex-start;
    }

.info-box i { font-size: 1.25rem; margin-top: 2px; flex-shrink: 0; }

.info-box p { font-size: 0.93rem; margin: 0; line-height: 1.8; }

.ib-blue { background: #f0f9ff; border: 1px solid #bae6fd; border-left: 4px solid var(--primary); }

.ib-blue i, .ib-blue strong { color: #0c4a6e; }

.ib-blue p { color: #0c4a6e; }

.ib-green { background: #f0fdf4; border: 1px solid #bbf7d0; border-left: 4px solid var(--secondary); }

.ib-green i { color: var(--secondary-dark); }

.ib-green p { color: #14532d; }

.ib-red { background: #fff1f2; border: 1px solid #fecdd3; border-left: 4px solid var(--accent-red); }

.ib-red i { color: var(--accent-red); }

.ib-red p { color: #7f1d1d; }

.ib-orange { background: #fff7ed; border: 1px solid #fed7aa; border-left: 4px solid #f97316; }

.ib-orange i { color: #f97316; }

.ib-orange p { color: #7c2d12; }

/* ── CONTENT CARD ── */
    .content-card {
      background: #fff; border-radius: var(--card-radius);
      box-shadow: var(--shadow-sm); padding: 36px 34px;
      margin-bottom: 24px;
    }

.cc-header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 20px; padding-bottom: 16px;
      border-bottom: 2px solid var(--bg-light);
    }

.cc-icon {
      width: 50px; height: 50px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; flex-shrink: 0;
    }

.cci-green { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

.cci-blue { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }

.cci-orange { background: linear-gradient(135deg, #fff7ed, #fed7aa); }

.cci-red { background: linear-gradient(135deg, #fff1f2, #fecdd3); }

.cci-purple { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); }

.cci-teal { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); }

.cc-title { font-size: 1.2rem; font-weight: 700; color: var(--text-mid); margin: 0; }

.content-card p { color: #334155; font-size: 0.95rem; line-height: 1.9; margin-bottom: 14px; }

.content-card p:last-child { margin-bottom: 0; }

.check-list { list-style: none; padding: 0; margin: 12px 0; }

.check-list li {
      display: flex; gap: 10px; align-items: flex-start;
      color: #334155; font-size: 0.93rem;
      padding: 8px 0; border-bottom: 1px dashed #e2e8f0;
    }

.check-list li:last-child { border-bottom: none; }

.check-list li i { margin-top: 3px; flex-shrink: 0; }

.cl-green li i { color: var(--secondary); }

.cl-red li i { color: var(--accent-red); }

.cl-blue li i { color: var(--primary); }

/* ── SELF-ASSESSMENT QUIZ ── */
    .quiz-section {
      background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
      border-radius: 20px; padding: 40px 36px;
    }

.quiz-section h3 { color: #fff; font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; }

.quiz-section p { color: #bae6fd; font-size: 0.95rem; }

.quiz-item {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px; padding: 16px 20px;
      margin-bottom: 12px;
      display: flex; align-items: flex-start; gap: 14px;
    }

.quiz-num {
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 700; font-size: 0.9rem;
      flex-shrink: 0;
    }

.quiz-item p { color: #e0f2fe; font-size: 0.92rem; margin: 0; line-height: 1.7; }

.quiz-footer {
      background: rgba(239,68,68,0.15);
      border: 1px solid rgba(239,68,68,0.3);
      border-radius: 12px; padding: 16px 20px; margin-top: 16px;
    }

.quiz-footer p { color: #fecdd3; font-size: 0.9rem; margin: 0; }

/* ── TOOLS GRID ── */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

.tool-card {
      background: #fff; border-radius: var(--card-radius);
      padding: 28px 24px; box-shadow: var(--shadow-sm);
      border-top: 4px solid transparent;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative; overflow: hidden;
    }

.tool-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
    }

.tc-blue::before { background: var(--primary); }

.tc-green::before { background: var(--secondary); }

.tc-orange::before { background: #f97316; }

.tc-purple::before { background: #a855f7; }

.tc-red::before { background: var(--accent-red); }

.tc-teal::before { background: #14b8a6; }

.tool-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.tool-icon {
      width: 56px; height: 56px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem; margin-bottom: 16px;
    }

.ti-blue { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }

.ti-green { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

.ti-orange { background: linear-gradient(135deg, #fff7ed, #fed7aa); }

.ti-purple { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); }

.ti-red { background: linear-gradient(135deg, #fff1f2, #fecdd3); }

.ti-teal { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); }

.tool-card h5 { font-weight: 700; color: var(--text-mid); font-size: 1.05rem; margin-bottom: 10px; }

.tool-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin: 0; }

/* ── WARNING SIGNS ── */
    .warning-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px; margin-top: 20px;
    }

.warning-item {
      background: #fff1f2;
      border: 1px solid #fecdd3; border-radius: 12px;
      padding: 18px 16px; display: flex; gap: 12px; align-items: flex-start;
    }

.wi-num {
      width: 30px; height: 30px; border-radius: 50%;
      background: var(--accent-red);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
    }

.warning-item p { color: #7f1d1d; font-size: 0.88rem; margin: 0; line-height: 1.6; }

/* ── PROGRESS BARS ── */
    .stat-row { margin-bottom: 18px; }

.stat-label { display: flex; justify-content: space-between; margin-bottom: 6px; }

.stat-label span { font-size: 0.9rem; color: var(--text-mid); font-weight: 600; }

.stat-label em { font-style: normal; font-size: 0.85rem; color: var(--text-muted); }

.progress { height: 10px; border-radius: 50px; background: #e2e8f0; }

.progress-bar { border-radius: 50px; }

/* ── FEATURE CARDS ── */
    .feature-card {
      background: #fff; border-radius: var(--card-radius);
      padding: 28px 22px; box-shadow: var(--shadow-sm);
      display: flex; gap: 18px; align-items: flex-start;
      transition: transform 0.2s, box-shadow 0.2s;
      height: 100%;
    }

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.fc-icon {
      width: 54px; height: 54px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; flex-shrink: 0;
    }

.fc-i1 { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }

.fc-i2 { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

.fc-i3 { background: linear-gradient(135deg, #fffbeb, #fef3c7); }

.fc-i4 { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); }

.fc-i5 { background: linear-gradient(135deg, #fff1f2, #fecdd3); }

.fc-i6 { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); }

.fc-body h6 { font-weight: 700; color: var(--text-mid); margin-bottom: 8px; font-size: 1rem; }

.fc-body p { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.75; }

/* ── PLEDGE BANNER ── */
    .pledge-banner {
      background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #0ea5e9 100%);
      border-radius: 20px; padding: 50px 42px; text-align: center;
      position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
    }

.pledge-banner::before {
      content: '🛡️'; font-size: 10rem;
      position: absolute; left: -30px; top: 50%;
      transform: translateY(-50%); opacity: 0.07;
    }

.pledge-banner::after {
      content: '❤️'; font-size: 10rem;
      position: absolute; right: -30px; top: 50%;
      transform: translateY(-50%); opacity: 0.07;
    }

.pledge-tag {
      display: inline-block; background: rgba(255,255,255,0.18);
      color: #a7f3d0; padding: 5px 18px;
      border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 18px;
    }

.pledge-banner h3 { color: #fff; font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; margin-bottom: 14px; }

.pledge-banner p { color: #a7f3d0; font-size: 1rem; margin-bottom: 30px; max-width: 580px; margin-left: auto; margin-right: auto; }

.btn-pledge-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: #fff; color: #064e3b;
      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-pledge-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); color: #064e3b; }

.btn-pledge-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.45);
      transition: background 0.2s;
    }

.btn-pledge-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ── ACCORDION ── */
    .accordion-item { border: none; margin-bottom: 10px; }

.accordion-button {
      font-family: 'Hind Siliguri', sans-serif;
      font-weight: 600; font-size: 0.95rem;
      color: var(--text-mid); background: #fff;
      border-radius: 10px !important;
      box-shadow: var(--shadow-sm);
      padding: 16px 20px;
    }

.accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, #e0f2fe, #dcfce7);
      color: var(--primary-deeper); box-shadow: none;
    }

.accordion-button::after { filter: none; }

.accordion-body {
    overflow-x: clip;
    width: 100%; background: #fff; border-radius: 0 0 10px 10px; padding: 18px 22px; color: #334155; font-size: 0.93rem; line-height: 1.85; }

/* ── DATA TABLE ── */
    .data-table-wrap { overflow-x: auto; }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; color: #334155; }

.data-table th { background: linear-gradient(135deg, #065f46, #0ea5e9); color: #fff; padding: 12px 16px; text-align: left; font-weight: 600; }

.data-table td { padding: 11px 16px; border-bottom: 1px solid #e2e8f0; }

.data-table tr:nth-child(even) td { background: #f8fafc; }

.data-table tr:hover td { background: #f0fdf4; }

/* ── RESPONSIVE ── */
    @media (max-width: 768px) {
section { padding: 48px 0; }

.content-card { padding: 22px 16px; }

.quiz-section { padding: 28px 18px; }

.pledge-banner { padding: 36px 20px; }

.pledge-banner::before, .pledge-banner::after { display: none; }
}
