/* ============================================================
   B.Sc. Nursing page — Gauri Shukla Hospital
   Isolated from global style.css
  Theme: navy #003366 | red #C8102E
   ============================================================ */

.bscn-page {
  --bscn-navy: #003366;
  --bscn-navy-deep: #002244;
  --bscn-navy-mid: #004080;
  --bscn-green: #7db928;
  --bscn-green-dark: #6aa01f;
  --bscn-soft: #f0f5fa;
  --bscn-ice: #f7fafc;
  --bscn-slate: #4a5568;
  --bscn-muted: #718096;
  --bscn-border: #e2e8f0;
  --bscn-white: #ffffff;
  --bscn-gold: #c9932a;
  --red-dark: #b91515;
  --bscn-shadow: 0 12px 40px rgba(0, 51, 102, 0.08);
  --bscn-radius: 16px;
  color: var(--bscn-slate);
  font-size: 18px;
  line-height: 1.7;
  background: var(--bscn-white);
  overflow-x: hidden;
}

.bscn-page *,
.bscn-page *::before,
.bscn-page *::after {
  box-sizing: border-box;
}

.bscn-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bscn-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.bscn-page a {
  text-decoration: none;
}

.bscn-page h1,
.bscn-page h2,
.bscn-page h3,
.bscn-page h4 {
  color: var(--bscn-navy);
  margin: 0 0 12px;
  line-height: 1.25;
  font-weight: 700;
}

/* ── HERO ── */
.bscn-hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(0, 34, 68, 0.92) 0%, rgba(0, 51, 102, 0.82) 55%, rgba(0, 40, 80, 0.78) 100%),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1600&q=80") center / cover no-repeat;
  color: var(--bscn-white);
  padding: 72px 0 88px;
  overflow: hidden;
}

.bscn-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
 
  pointer-events: none;
}

.bscn-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.bscn-crumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.bscn-crumb a {
  color: var(--bscn-green);
  font-weight: 600;
}

.bscn-crumb span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.45);
}

.bscn-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 185, 40, 0.18);
  border: 1px solid rgba(125, 185, 40, 0.45);
  color: #d8f5a2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.bscn-hero h1 {
  color: var(--bscn-white);
  font-size: 46px;
  margin-bottom: 8px;
}

.bscn-hero-sub {
  font-size: 22px;
  font-weight: 600;
  color: var(--bscn-green);
  margin-bottom: 14px;
}

.bscn-hero p {
  color: #d0e2ff;
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 28px;
}

.bscn-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bscn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.22s ease;
}

.bscn-btn-green {
  background: #b91515;
  color: white;
}

.bscn-btn-green:hover {
  background: #C8102E;
  color: white;
}

.bscn-btn-outline {
  background: transparent;
  color: var(--bscn-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.bscn-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.bscn-btn-navy {
  background: var(--bscn-navy);
  color: var(--bscn-white);
}

.bscn-btn-navy:hover {
  background: var(--bscn-navy-mid);
  color: #fff;
}

.bscn-hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.bscn-hero-card h3 {
  color: var(--bscn-white);
  font-size: 18px;
  margin-bottom: 18px;
}

.bscn-hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bscn-hero-meta li {
  list-style: none;
  background: rgba(0, 20, 50, 0.28);
  border-radius: 12px;
  padding: 14px 12px;
}

.bscn-hero-meta .k {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9ecbff;
  margin-bottom: 4px;
}

.bscn-hero-meta .v {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

/* ── FACTS STRIP ── */
.bscn-facts {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  margin-bottom: 20px;
}

.bscn-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bscn-white);
  border-radius: var(--bscn-radius);
  box-shadow: var(--bscn-shadow);
  border: 1px solid var(--bscn-border);
  overflow: hidden;
}

.bscn-fact {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--bscn-border);
}

.bscn-fact:last-child {
  border-right: none;
}

.bscn-fact i {
  color: #C8102E;
  font-size: 22px;
  margin-bottom: 8px;
}

.bscn-fact strong {
  display: block;
  color: var(--bscn-navy);
  font-size: 18px;
}

.bscn-fact span {
  font-size: 13px;
  color: var(--bscn-muted);
}

/* ── SECTIONS ── */
.bscn-section {
  padding: 72px 0;
}

.bscn-section.alt {
  background: var(--bscn-ice);
}

.bscn-eyebrow {
  display: inline-block;
  color: #C8102E;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bscn-title {
  font-size: 32px;
  margin-bottom: 14px;
}

.bscn-lead {
  font-size: 16px;
  color: var(--bscn-slate);
  max-width: 720px;
}

.bscn-two {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.bscn-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--bscn-shadow);
  position: relative;
}

.bscn-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.bscn-photo-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--bscn-navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.bscn-checks {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.bscn-checks li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--bscn-slate);
}

.bscn-checks li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:#FEF0F3;
  color: #C8102E;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── DUAL QUALIFICATION ── */
.bscn-dual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 36px;
}

.bscn-dual-card {
  background: var(--bscn-white);
  border: 1px solid var(--bscn-border);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--bscn-shadow);
}

.bscn-dual-card.diploma {
  border-top: 4px solid #C8102E;
}

.bscn-dual-card.degree {
  border-top: 4px solid var(--bscn-navy);
}

.bscn-dual-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.bscn-dual-card.diploma .bscn-dual-ico {
  background: #c8102f2d;
  color: #C8102E;
}

.bscn-dual-card.degree .bscn-dual-ico {
  background: rgba(0, 51, 102, 0.1);
  color: var(--bscn-navy);
}

.bscn-plus {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bscn-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  align-self: center;
}

.bscn-result {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, var(--bscn-navy), var(--bscn-navy-mid));
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bscn-result strong {
  font-size: 18px;
}

.bscn-result span {
  color: #c6e48b;
  font-weight: 700;
}

/* ── YEAR TIMELINE ── */
.bscn-years {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.bscn-year {
  background: var(--bscn-white);
  border: 1px solid var(--bscn-border);
  border-radius: 18px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.bscn-year:hover {
  transform: translateY(-4px);
  box-shadow: var(--bscn-shadow);
}

.bscn-year::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #C8102E;
}

.bscn-year .yr {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C8102E;
}

.bscn-year h3 {
  font-size: 18px;
  margin: 8px 0 12px;
}

.bscn-year ul {
  padding-left: 18px;
  margin: 0;
  color: var(--bscn-slate);
  font-size: 15.5px;
}

.bscn-year li {
  margin-bottom: 6px;
}

/* ── CARDS GRID ── */
.bscn-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.bscn-card {
  background: var(--bscn-white);
  border: 1px solid var(--bscn-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.04);
}

.bscn-card i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FEF0F3;
  color: #C8102E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.bscn-card h3 {
  font-size: 19px;
}

.bscn-card p {
  margin: 0;
  font-size: 16px;
  color: var(--bscn-muted);
}

/* ── ELIGIBILITY ── */
.bscn-eli-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.bscn-panel {
  background: var(--bscn-white);
  border: 1px solid var(--bscn-border);
  border-radius: 18px;
  padding: 28px;
}

.bscn-panel h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.bscn-table {
  width: 100%;
  border-collapse: collapse;
}

.bscn-table th,
.bscn-table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--bscn-border);
  font-size: 14px;
  vertical-align: top;
}

.bscn-table th {
  width: 42%;
  color: var(--bscn-navy);
  font-weight: 700;
}

.bscn-docs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bscn-docs li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px dashed var(--bscn-border);
  font-size: 14px;
}

.bscn-docs i {
  color: #C8102E;
  margin-top: 3px;
}

/* ── CAREERS ── */
/* .bscn-careers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.bscn-career {
  background: var(--bscn-white);
  border: 1px solid var(--bscn-border);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}

.bscn-career i {
  font-size: 22px;
  color: var(--bscn-navy);
  margin-bottom: 8px;
}

.bscn-career strong {
  display: block;
  color: var(--bscn-navy);
  font-size: 14px;
} */


.crs-career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.crs-career-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
}

.crs-career-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(15, 32, 64, 0.1);
  transform: translateY(-4px);
}

.crs-career-card i {
  font-size: 22px;
  color: #C8102E;
  margin-bottom: 14px;
  display: block;
}

.crs-career-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.crs-career-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--slate);
}


/* ── FAQ + FORM ── */
.bscn-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.bscn-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bscn-faq-item {
  background: var(--bscn-white);
  border: 1px solid var(--bscn-border);
  border-radius: 12px;
  overflow: hidden;
}

.bscn-faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--bscn-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
}

.bscn-faq-q i {
  color: #C8102E;
  transition: transform 0.25s;
}

.bscn-faq-item.open .bscn-faq-q i {
  transform: rotate(180deg);
}

.bscn-faq-a {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--bscn-slate);
}

.bscn-faq-item.open .bscn-faq-a {
  display: block;
}

.bscn-form {
  background: var(--bscn-navy);
  color: #fff;
  border-radius: 20px;
  padding: 28px 24px;
}

.bscn-form h3 {
  color: #fff;
  font-size: 22px;
}

.bscn-form p {
  color: #b8d0ea;
  font-size: 14px;
  margin-bottom: 18px;
}

.bscn-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 0 0 6px;
  color: #c9dff5;
}

.bscn-form input,
.bscn-form select,
.bscn-form textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.bscn-form textarea {
  min-height: 90px;
  resize: vertical;
}

.bscn-form .bscn-btn {
  width: 100%;
  margin-top: 4px;
}

.bscn-form-note {
  font-size: 12px;
  color: #9ecbff;
  margin: 10px 0 0;
  text-align: center;
}

/* ── CTA BAND ── */
.bscn-cta {
  background: linear-gradient(100deg, var(--bscn-navy-deep), var(--bscn-navy-mid));
  color: #fff;
  padding: 56px 0;
}

.bscn-cta-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.bscn-cta h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
}

.bscn-cta p {
  margin: 0;
  color: #c5d8ee;
}

.bscn-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── RELATED COURSES ── */
.bscn-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.bscn-related a {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bscn-white);
  border: 1px solid var(--bscn-border);
  border-radius: 14px;
  padding: 18px;
  color: var(--bscn-navy);
  transition: 0.2s ease;
}

.bscn-related a:hover {
  border-color: var(--bscn-green);
  box-shadow: var(--bscn-shadow);
}

.bscn-related .ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #FEF0F3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8102E;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bscn-hero h1 {
    font-size: 36px;
  }

  .bscn-hero-grid,
  .bscn-two,
  .bscn-split,
  .bscn-eli-grid {
    grid-template-columns: 1fr;
  }

  .bscn-years,
  .bscn-facts-grid,
  .bscn-careers {
    grid-template-columns: 1fr 1fr;
  }

  .bscn-cards {
    grid-template-columns: 1fr 1fr;
  }

  .bscn-dual {
    grid-template-columns: 1fr;
  }

  .bscn-plus {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .bscn-hero {
    padding: 48px 0 72px;
  }

  .bscn-hero h1 {
    font-size: 30px;
  }

  .bscn-hero-sub {
    font-size: 18px;
  }

  .bscn-hero-meta,
  .bscn-facts-grid,
  .bscn-years,
  .bscn-cards,
  .bscn-careers,
  .bscn-related,
  .bscn-cta-in {
    grid-template-columns: 1fr;
  }

  .bscn-cta-in {
    display: block;
    text-align: left;
  }

  .bscn-cta-actions {
    margin-top: 18px;
  }

  .bscn-fact {
    border-right: none;
    border-bottom: 1px solid var(--bscn-border);
  }

  .bscn-title {
    font-size: 26px;
  }

  .bscn-section {
    padding: 52px 0;
  }

  .bscn-photo img {
    height: 260px;
  }

  .bscn-result {
    flex-direction: column;
    text-align: center;
  }
}
