:root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --primary-deeper: #0369a1;
      --secondary: #22c55e;
      --secondary-dark: #16a34a;
      --bg-light: #e0f2fe;
      --bg-white: #ffffff;
      --accent-red: #ef4444;
      --text-dark: #0f172a;
      --text-mid: #1e3a5f;
      --text-muted: #64748b;
      --border-color: #7dd3fc;
      --card-radius: 16px;
      --shadow-sm: 0 2px 8px rgba(14,165,233,0.10);
      --shadow-md: 0 6px 24px rgba(14,165,233,0.15);
      --shadow-lg: 0 12px 40px rgba(14,165,233,0.20);
    }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    overflow-x: clip;
    width: 100%;
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.8;
    }

/* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: linear-gradient(90deg, #bae6fd 0%, #d1fae5 100%);
      border-bottom: 2px solid #7dd3fc;
      padding: 10px 0;
    }

.breadcrumb { margin: 0; background: transparent; }

.breadcrumb-item a { color: var(--primary-dark); font-weight: 600; text-decoration: none; }

.breadcrumb-item a:hover { text-decoration: underline; }

.breadcrumb-item.active { color: var(--text-mid); font-weight: 700; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--primary); }

/* ── OCEAN DIVIDER ── */
    .ocean-divider {
      height: 4px;
      background: linear-gradient(90deg, #0ea5e9, #22c55e, #0ea5e9);
      opacity: 0.35;
    }

/* ── HERO ── */
    .page-hero {
      background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary-dark) 45%, #0891b2 100%);
      padding: 64px 0 56px;
      position: relative;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

.page-hero h1 {
      color: #fff;
      font-size: clamp(1.8rem, 4vw, 2.7rem);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 14px;
    }

.page-hero .lead {
      color: #bae6fd;
      font-size: 1.05rem;
      max-width: 560px;
      line-height: 1.9;
    }

.hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.14);
      color: #d1fae5;
      font-weight: 700;
      font-size: 0.84rem;
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 18px;
      border: 1px solid rgba(255,255,255,0.2);
    }

.hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 28px;
    }

.hero-stat {
      background: rgba(255,255,255,0.11);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      padding: 14px 22px;
      text-align: center;
      min-width: 110px;
    }

.hero-stat .num { font-size: 1.5rem; font-weight: 800; color: #86efac; display: block; }

.hero-stat .lbl { font-size: 0.78rem; color: #bae6fd; margin-top: 2px; display: block; }

/* ── SECTION COMMON ── */
    section { padding: 68px 0; }

.section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(90deg, #dbeafe, #d1fae5);
      color: var(--primary-dark);
      font-weight: 700;
      font-size: 0.78rem;
      padding: 5px 16px;
      border-radius: 20px;
      border: 1px solid #bae6fd;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

.section-title {
      font-size: clamp(1.45rem, 3vw, 2.05rem);
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 12px;
      line-height: 1.35;
    }

.section-subtitle {
      color: var(--text-muted);
      font-size: 0.98rem;
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.85;
    }

/* ── LOGIN SECTION ── */
    .login-wrap { background: var(--bg-light); padding: 70px 0; }

.login-card {
      background: #fff;
      border-radius: var(--card-radius);
      box-shadow: var(--shadow-lg);
      padding: 46px 42px;
      border-top: 5px solid var(--primary);
    }

.login-card h2 {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 6px;
    }

.login-card .sub {
      color: var(--text-muted);
      font-size: 0.93rem;
      margin-bottom: 28px;
    }

.form-label {
      font-weight: 600;
      color: var(--text-mid);
      font-size: 0.9rem;
      margin-bottom: 6px;
    }

.form-control {
      border: 1.5px solid #cbd5e1;
      border-radius: 10px;
      padding: 13px 16px;
      font-size: 0.95rem;
      color: var(--text-dark);
      background: #f8fafc;
      transition: border 0.2s, box-shadow 0.2s;
    }

.form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(14,165,233,0.14);
      background: #fff;
      outline: none;
    }

.input-group-text {
      background: var(--bg-light);
      border: 1.5px solid #cbd5e1;
      border-right: none;
      border-radius: 10px 0 0 10px;
      color: var(--primary-dark);
      font-size: 1.05rem;
    }

.input-group .form-control {
      border-left: none;
      border-radius: 0 10px 10px 0;
    }

.input-group .form-control:focus {
      border-left: none;
    }

.toggle-pw {
      background: var(--bg-light);
      border: 1.5px solid #cbd5e1;
      border-left: none;
      border-radius: 0 10px 10px 0;
      color: var(--text-muted);
      cursor: pointer;
      padding: 0 14px;
      font-size: 1rem;
      transition: color 0.2s;
    }

.toggle-pw:hover { color: var(--primary); }

.input-group-mid .form-control {
      border-left: none;
      border-right: none;
      border-radius: 0;
    }

.btn-login-main {
      background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: #fff;
      font-weight: 700;
      font-size: 1.08rem;
      border: none;
      border-radius: 12px;
      padding: 15px;
      width: 100%;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
      box-shadow: 0 4px 18px rgba(14,165,233,0.32);
      letter-spacing: 0.02em;
    }

.btn-login-main:hover { opacity: 0.9; transform: translateY(-2px); }

.forgot-link {
      text-align: right;
      margin-top: 6px;
      font-size: 0.85rem;
    }

.forgot-link a { color: var(--primary-dark); text-decoration: none; font-weight: 600; }

.forgot-link a:hover { text-decoration: underline; }

.form-divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 22px 0;
      color: #94a3b8;
      font-size: 0.84rem;
    }

.form-divider::before, .form-divider::after {
      content: ''; flex: 1; height: 1px; background: #e2e8f0;
    }

.no-account {
      text-align: center;
      font-size: 0.93rem;
      color: var(--text-muted);
      margin-top: 16px;
    }

.no-account a { color: var(--primary-dark); font-weight: 700; text-decoration: none; }

.no-account a:hover { text-decoration: underline; }

.remember-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

.form-check-label { font-size: 0.88rem; color: var(--text-muted); }

/* ── INFO PANEL ── */
    .info-panel {
      background: linear-gradient(160deg, var(--primary-deeper) 0%, #0891b2 100%);
      border-radius: var(--card-radius);
      padding: 36px 30px;
      color: #fff;
      height: 100%;
    }

.info-panel h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

.info-panel .sub { color: #bae6fd; font-size: 0.88rem; margin-bottom: 26px; }

.ip-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.11);
    }

.ip-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.ip-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(255,255,255,0.13);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 1.25rem;
    }

.ip-icon.g { background: rgba(34,197,94,0.22); }

.ip-icon.y { background: rgba(251,191,36,0.22); }

.ip-icon.p { background: rgba(168,85,247,0.22); }

.ip-icon.t { background: rgba(20,184,166,0.22); }

.ip-body h6 { color: #fff; font-weight: 700; font-size: 0.97rem; margin-bottom: 3px; }

.ip-body p { color: #bae6fd; font-size: 0.84rem; line-height: 1.65; margin: 0; }

.new-user-box {
      background: linear-gradient(90deg, var(--secondary) 0%, #14b8a6 100%);
      border-radius: 12px;
      padding: 18px 20px;
      margin-top: 26px;
      text-align: center;
    }

.new-user-box p { color: #fff; font-size: 0.88rem; line-height: 1.7; margin-bottom: 12px; }

.btn-register-side {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #fff;
      color: var(--secondary-dark);
      font-weight: 700;
      font-size: 0.9rem;
      padding: 10px 22px;
      border-radius: 10px;
      text-decoration: none;
      transition: opacity 0.2s;
    }

.btn-register-side:hover { opacity: 0.88; color: var(--secondary-dark); }

/* ── STEPS ── */
    .steps-section { background: #fff; }

.step-card {
      background: var(--bg-light);
      border-radius: var(--card-radius);
      padding: 30px 24px;
      text-align: center;
      border: 1.5px solid #bae6fd;
      transition: transform 0.2s, box-shadow 0.2s;
      height: 100%;
    }

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-num {
      width: 50px; height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: #fff;
      font-size: 1.25rem;
      font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      box-shadow: 0 4px 12px rgba(14,165,233,0.28);
    }

.step-card h5 { font-size: 1.02rem; font-weight: 700; color: var(--text-mid); margin-bottom: 8px; }

.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin: 0; }

/* ── FEATURE CARDS ── */
    .features-section { background: var(--bg-light); }

.feature-card {
      background: #fff;
      border-radius: var(--card-radius);
      padding: 30px 26px;
      box-shadow: var(--shadow-sm);
      border: 1.5px solid #e0f2fe;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      height: 100%;
    }

.feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--border-color);
    }

.fc-icon {
      width: 58px; height: 58px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

.fc-blue { background: #dbeafe; }

.fc-green { background: #dcfce7; }

.fc-orange { background: #ffedd5; }

.fc-purple { background: #f3e8ff; }

.fc-teal { background: #ccfbf1; }

.fc-yellow { background: #fef9c3; }

.feature-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-mid); margin-bottom: 10px; }

.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.82; margin: 0; }

/* ── CONTENT SECTION ── */
    .content-section { background: #fff; }

.content-block { margin-bottom: 38px; }

.content-block h3 {
      font-size: 1.28rem;
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 13px;
      display: flex; align-items: center; gap: 10px;
    }

.content-block h3 i { color: var(--primary); }

.content-block p { color: #334155; line-height: 1.95; margin-bottom: 12px; }

.content-block p:last-child { margin-bottom: 0; }

.info-box {
      display: flex; align-items: flex-start; gap: 13px;
      padding: 15px 18px; border-radius: 12px; margin-top: 14px;
    }

.info-box i { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.info-box p { margin: 0; font-size: 0.9rem; line-height: 1.75; }

.ib-blue { background: #eff6ff; border-left: 4px solid var(--primary); }

.ib-blue i { color: var(--primary); }

.ib-blue p { color: #1e40af; }

.ib-green { background: #f0fdf4; border-left: 4px solid var(--secondary); }

.ib-green i { color: var(--secondary-dark); }

.ib-green p { color: #166534; }

.ib-orange { background: #fff7ed; border-left: 4px solid #f97316; }

.ib-orange i { color: #f97316; }

.ib-orange p { color: #9a3412; }

.check-list { list-style: none; padding: 0; margin: 0; }

.check-list li {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 8px 0; border-bottom: 1px solid #f1f5f9;
      font-size: 0.92rem; color: #334155;
    }

.check-list li:last-child { border-bottom: none; }

.check-list li i { color: var(--secondary); font-size: 0.98rem; margin-top: 3px; flex-shrink: 0; }

/* ── CTA ── */
    .cta-section { background: var(--bg-light); }

.cta-banner {
      background: linear-gradient(135deg, var(--primary-deeper) 0%, #0891b2 55%, var(--secondary-dark) 100%);
      border-radius: 22px;
      padding: 58px 46px;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

.cta-banner::before {
      content: '';
      position: absolute; top: -55px; right: -55px;
      width: 200px; height: 200px; border-radius: 50%;
      background: rgba(255,255,255,0.06); pointer-events: none;
    }

.cta-banner::after {
      content: '';
      position: absolute; bottom: -45px; left: -45px;
      width: 170px; height: 170px; border-radius: 50%;
      background: rgba(255,255,255,0.05); pointer-events: none;
    }

.cta-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.24);
      color: #d1fae5; font-size: 0.8rem; font-weight: 700;
      padding: 5px 15px; border-radius: 20px; margin-bottom: 16px;
      letter-spacing: 0.04em;
    }

.cta-banner h3 {
      font-size: clamp(1.45rem, 3vw, 2.1rem);
      font-weight: 800; color: #fff; margin-bottom: 12px;
    }

.cta-banner p {
      color: #bae6fd; font-size: 0.98rem;
      max-width: 540px; margin: 0 auto 28px; line-height: 1.85;
    }

.btn-cta-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(90deg, var(--secondary) 0%, #16a34a 100%);
      color: #fff; font-weight: 700; font-size: 1.02rem;
      padding: 13px 34px; border-radius: 12px; text-decoration: none;
      box-shadow: 0 4px 18px rgba(34,197,94,0.38);
      transition: opacity 0.2s, transform 0.15s;
    }

.btn-cta-primary:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }

.btn-cta-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.12); color: #fff;
      font-weight: 600; font-size: 1.02rem;
      padding: 13px 34px; border-radius: 12px; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.33);
      transition: background 0.2s;
    }

.btn-cta-outline:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ── SECURITY BADGE ── */
    .security-badges {
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: center; margin-top: 20px;
    }

.sec-badge {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.08);
      border:
1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      padding: 6px 14px;
      font-size: 0.8rem;
      color: #bae6fd;
      font-weight: 600;
    }

@media (max-width: 991px) {
.login-card { padding: 30px 20px; }

.cta-banner { padding: 40px 24px; }
}

@media (max-width: 576px) {
.page-hero { padding: 42px 0 38px; }
}
