: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: 70px 0 60px;
      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%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

.page-hero h1 {
      color: #fff;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 16px;
    }

.page-hero .lead {
      color: #bae6fd;
      font-size: 1.1rem;
      max-width: 600px;
      line-height: 1.9;
    }

.hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.15);
      color: #d1fae5;
      font-weight: 700;
      font-size: 0.85rem;
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 18px;
      letter-spacing: 0.03em;
      border: 1px solid rgba(255,255,255,0.2);
    }

.hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

.hero-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 10px;
      padding: 8px 16px;
      color: #fff;
      font-size: 0.88rem;
      font-weight: 600;
    }

.hero-badge i { color: #86efac; font-size: 1.1rem; }

/* ── SECTION COMMON ── */
    section { padding: 70px 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.8rem;
      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.5rem, 3vw, 2.1rem);
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 14px;
      line-height: 1.35;
    }

.section-subtitle {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.85;
    }

/* ── REGISTER FORM SECTION ── */
    .register-wrap {
      background: var(--bg-light);
      padding: 70px 0;
    }

.reg-form-card {
      background: #fff;
      border-radius: var(--card-radius);
      box-shadow: var(--shadow-lg);
      padding: 48px 44px;
      border-top: 5px solid var(--primary);
    }

.reg-form-card h2 {
      font-size: 1.65rem;
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 8px;
    }

.reg-form-card .sub {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 30px;
    }

.form-label {
      font-weight: 600;
      color: var(--text-mid);
      font-size: 0.9rem;
      margin-bottom: 6px;
    }

.form-control, .form-select {
      border: 1.5px solid #cbd5e1;
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 0.95rem;
      color: var(--text-dark);
      transition: border 0.2s, box-shadow 0.2s;
      background: #f8fafc;
    }

.form-control:focus, .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
      background: #fff;
      outline: none;
    }

.input-group-text {
      background: var(--bg-light);
      border: 1.5px solid #cbd5e1;
      border-radius: 10px 0 0 10px;
      color: var(--primary-dark);
      font-size: 1.1rem;
    }

.input-group .form-control { border-radius: 0 10px 10px 0; }

.btn-register-main {
      background: linear-gradient(90deg, var(--secondary) 0%, #16a34a 100%);
      color: #fff;
      font-weight: 700;
      font-size: 1.1rem;
      border: none;
      border-radius: 12px;
      padding: 15px;
      width: 100%;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
      box-shadow: 0 4px 18px rgba(34,197,94,0.35);
      letter-spacing: 0.03em;
    }

.btn-register-main:hover { opacity: 0.92; transform: translateY(-2px); }

.form-check-label { font-size: 0.88rem; color: var(--text-muted); }

.form-check-label a { color: var(--primary-dark); font-weight: 600; text-decoration: none; }

.form-check-label a:hover { text-decoration: underline; }

.already-login {
      text-align: center;
      margin-top: 18px;
      font-size: 0.92rem;
      color: var(--text-muted);
    }

.already-login a { color: var(--primary-dark); font-weight: 700; text-decoration: none; }

.already-login a:hover { text-decoration: underline; }

.form-divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 22px 0;
      color: #94a3b8;
      font-size: 0.85rem;
    }

.form-divider::before, .form-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #e2e8f0;
    }

/* ── BENEFITS SIDEBAR ── */
    .benefits-sidebar {
      background: linear-gradient(160deg, var(--primary-deeper) 0%, #0891b2 100%);
      border-radius: var(--card-radius);
      padding: 36px 30px;
      color: #fff;
      height: 100%;
    }

.benefits-sidebar h3 {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: #fff;
    }

.benefits-sidebar .sub {
      color: #bae6fd;
      font-size: 0.9rem;
      margin-bottom: 28px;
    }

.benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
      padding-bottom: 22px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

.benefit-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.bi-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.35rem;
    }

.bi-icon.g { background: rgba(34,197,94,0.25); }

.bi-icon.y { background: rgba(251,191,36,0.25); }

.bi-icon.p { background: rgba(168,85,247,0.25); }

.bi-icon.r { background: rgba(239,68,68,0.25); }

.bi-icon.t { background: rgba(20,184,166,0.25); }

.benefit-body h6 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }

.benefit-body p { color: #bae6fd; font-size: 0.86rem; line-height: 1.65; margin: 0; }

.bonus-tag {
      background: linear-gradient(90deg, var(--secondary) 0%, #14b8a6 100%);
      border-radius: 12px;
      padding: 16px 20px;
      text-align: center;
      margin-top: 28px;
    }

.bonus-tag .big { font-size: 2rem; font-weight: 800; color: #fff; display: block; }

.bonus-tag .small-text { font-size: 0.82rem; color: #d1fae5; margin-top: 4px; display: block; }

/* ── STEPS SECTION ── */
    .steps-section { background: #fff; }

.step-card {
      background: var(--bg-light);
      border-radius: var(--card-radius);
      padding: 32px 28px;
      text-align: center;
      border: 1.5px solid #bae6fd;
      position: relative;
      transition: transform 0.2s, box-shadow 0.2s;
      height: 100%;
    }

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-num {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: #fff;
      font-size: 1.3rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      box-shadow: 0 4px 12px rgba(14,165,233,0.3);
    }

.step-card h5 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 10px;
    }

.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin: 0; }

.step-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 40px;
      color: var(--primary);
      font-size: 1.5rem;
    }

/* ── FEATURE CARDS ── */
    .features-section { background: var(--bg-light); }

.feature-card {
      background: #fff;
      border-radius: var(--card-radius);
      padding: 32px 28px;
      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: 62px; height: 62px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
    }

.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.08rem;
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 10px;
    }

.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin: 0; }

/* ── CONTENT SECTION ── */
    .content-section { background: #fff; }

.content-block { margin-bottom: 40px; }

.content-block h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 14px;
      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: 14px;
      padding: 16px 20px;
      border-radius: 12px;
      margin-top: 16px;
    }

.info-box i { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }

.info-box p { margin: 0; font-size: 0.92rem; 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; }

.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.93rem;
      color: #334155;
    }

.check-list li:last-child { border-bottom: none; }

.check-list li i { color: var(--secondary); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

/* ── CTA SECTION ── */
    .cta-section { background: var(--bg-light); }

.cta-banner {
      background: linear-gradient(135deg, var(--primary-deeper) 0%, #0891b2 60%, var(--secondary-dark) 100%);
      border-radius: 24px;
      padding: 60px 50px;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

.cta-banner::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      pointer-events: none;
    }

.cta-banner::after {
      content: '';
      position: absolute;
      bottom: -50px; left: -50px;
      width: 180px; height: 180px;
      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.15);
      border: 1px solid rgba(255,255,255,0.25);
      color: #d1fae5;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 5px 16px;
      border-radius: 20px;
      margin-bottom: 18px;
      letter-spacing: 0.04em;
    }

.cta-banner h3 {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
    }

.cta-banner p {
      color: #bae6fd;
      font-size: 1rem;
      max-width: 560px;
      margin: 0 auto 30px;
      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.05rem;
      padding: 14px 36px;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(34,197,94,0.4);
      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.05rem;
      padding: 14px 36px;
      border-radius: 12px;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.35);
      transition: background 0.2s;
    }

.btn-cta-outline:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ── RESPONSIVE ── */
    @media (max-width: 991px) {
.reg-form-card { padding: 32px 22px; }

.cta-banner { padding: 44px 24px; }

.step-arrow { display: none; }
}

@media (max-width: 576px) {
.reg-form-card { padding: 24px 16px; }

.benefits-sidebar { padding: 28px 20px; }
}
