/* ============================================================
   NMIMS Online MBA 2026 | College Shiksha
   Design System & Styles
   Primary Brand: #D4202D (Bright Red)
   ============================================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  --primary-red: #D4202D;
  --primary-red-dark: #B51B27;
  --primary-red-light: #F5E0E2;
  --white: #FFFFFF;
  --text-dark: #171717;
  --text-secondary: #555555;
  --light-red-bg: #FFF5F5;
  --border-red: #F0B5B5;
  --border-light: #E8E8E8;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.13);
  --shadow-red: 0 4px 24px rgba(212, 32, 45, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-height: 70px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ---- Utilities ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.red {
  color: var(--primary-red);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}

.btn-primary:hover {
  background: var(--primary-red-dark);
  border-color: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.btn-outline:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-red);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--light-red-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
}

/* ---- Section Common Styles ---- */
.section-tag {
  display: inline-block;
  background: var(--light-red-bg);
  color: var(--primary-red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  border: 1px solid var(--border-red);
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.18;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 620px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================================
   HEADER — Red branding bar (no nav links, reference style)
   ============================================================ */
:root {
  --header-height: 80px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary-red);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 3px 16px rgba(212, 32, 45, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  width: 100%;
}

/* LEFT — branding text */
.header-brand-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-powered {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-org-name {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.header-org-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  line-height: 1.3;
}

/* RIGHT — white badge box (like reference) */
.header-badge-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
  flex-shrink: 0;
}

.hbb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.hbb-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hbb-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.hbb-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .header-org-sub {
    display: none;
  }

  .header-org-name {
    font-size: 1.15rem;
  }

  .header-badge-box {
    padding: 8px 12px;
  }

  .hbb-icon svg {
    width: 26px;
    height: 26px;
  }

  .hbb-title {
    font-size: 0.82rem;
  }

  .hbb-sub {
    font-size: 0.65rem;
  }
}

/* ============================================================
   HERO SECTION  —  Full-bleed background image layout
   ============================================================ */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  background-image: url('hero_bg.jpg');
  background-size: cover;
  background-position: 110% center;
  /* face centered between text and form */
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

@media (max-width: 960px) {
  .hero-section {
    background-position: 55% center;
  }
}

@media (max-width: 600px) {
  .hero-section {
    background-position: 60% top;
  }
}

/* Dark scrim over entire photo for readability */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(15, 15, 15, 0.82) 0%,
      rgba(15, 15, 15, 0.70) 40%,
      rgba(15, 15, 15, 0.30) 65%,
      rgba(15, 15, 15, 0.10) 100%);
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 400px);
  gap: 32px;
  align-items: center;
  width: 100%;
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
  z-index: 2;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-section {
    min-height: auto;
  }
}


/* LEFT: Text block — white text on dark scrim */
.hero-content {
  padding-right: 24px;
}

@media (max-width: 960px) {
  .hero-content {
    padding-right: 0;
  }
}

.badge-admissions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 32, 45, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(212, 32, 45, 0);
  }
}

.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Red accent span INSIDE the dark hero */
.hero-red {
  color: var(--primary-red);
}

.hero-subheading {
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
  line-height: 1.4;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.78;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary-red);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* White-outline secondary button for dark hero */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* RIGHT: Form column */
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 960px) {
  .hero-right {
    justify-content: center;
    width: 100%;
  }

  .hero-right .lead-form-card {
    max-width: 480px;
  }
}

/* ============================================================
   LEAD FORM CARD
   ============================================================ */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border-light);
  padding: 22px 20px;
  width: 100%;
  max-width: 400px;
  border-top: 4px solid var(--primary-red);
  position: relative;
  overflow: hidden;
}

.form-header {
  margin-bottom: 12px;
  text-align: center;
}

.form-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
  line-height: 1.3;
}

.form-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Trust bullet points inside form (reference style) */
.form-trust-bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: #FAFAFA;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.ftb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.ftb-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ftb-red {
  background: var(--primary-red);
}

.ftb-gold {
  background: #F5A623;
}

/* Bottom trust line after form submit button */
.form-bottom-trust {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.fbt-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.fbt-check {
  color: #22c55e;
  font-size: 0.85rem;
  font-weight: 700;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.req {
  color: var(--primary-red);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(212, 32, 45, 0.12);
}

.form-group input::placeholder {
  color: #aaa;
}

.consent-group {
  margin-top: 4px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary-red);
}

.consent-label span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: var(--radius-md);
  background: var(--light-red-bg);
  border: 1px solid var(--border-red);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 84px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-image {
    height: 280px;
  }
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary-red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-text {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
}

.af-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.why-section {
  padding: 84px 0;
  background: var(--light-red-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-red);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--light-red-bg);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  margin-bottom: 18px;
  transition: background var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary-red);
  color: var(--white);
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   SPECIALISATIONS SECTION
   ============================================================ */
.specialisations-section {
  padding: 84px 0;
  background: var(--white);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

.spec-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-red);
}

.spec-card:hover::before {
  transform: scaleX(1);
}

.spec-icon {
  width: 50px;
  height: 50px;
  background: var(--light-red-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.spec-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.spec-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.spec-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-red);
  transition: gap var(--transition);
  padding: 0;
  background: none;
  border: none;
}

.spec-btn:hover {
  gap: 8px;
}

.spec-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================================
   FEES SECTION
   ============================================================ */
.fees-section {
  padding: 84px 0;
  background: var(--light-red-bg);
}

.fees-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .fees-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fee-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition);
}

.fee-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-red);
}

.fee-card-header {
  background: var(--primary-red);
  padding: 16px 22px;
  text-align: center;
}

.fee-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fee-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.fee-icon {
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--light-red-bg);
  border-radius: var(--radius-sm);
}

.fee-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1.2;
}

.fee-note {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.fee-contact {
  font-size: 0.82rem;
  color: var(--primary-red);
  font-weight: 600;
  line-height: 1.5;
}

.fees-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 28px;
}

.fees-disclaimer svg {
  color: var(--primary-red);
  flex-shrink: 0;
}

/* ============================================================
   ELIGIBILITY SECTION
   ============================================================ */
.eligibility-section {
  padding: 84px 0;
  background: var(--white);
}

.eligibility-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .eligibility-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.eligibility-intro {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.eligibility-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.elig-item {
  display: flex;
  gap: 16px;
  background: var(--light-red-bg);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: box-shadow var(--transition);
}

.elig-item:hover {
  box-shadow: var(--shadow-sm);
}

.elig-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.elig-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.elig-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.elig-checklist-card {
  background: var(--white);
  border: 2px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.ecl-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-red);
}

.ecl-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.ecl-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.ecl-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.72rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================================
   LEARNING SECTION
   ============================================================ */
.learning-section {
  padding: 84px 0;
  background: var(--light-red-bg);
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .learning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .learning-grid {
    grid-template-columns: 1fr;
  }
}

.learn-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
}

.learn-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-red);
}

.learn-icon {
  width: 54px;
  height: 54px;
  background: var(--light-red-bg);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
}

.learn-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.learn-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   ADMISSION SECTION
   ============================================================ */
.admission-section {
  padding: 84px 0;
  background: var(--white);
}

.admission-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 44px;
  position: relative;
}

@media (max-width: 900px) {
  .admission-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.adm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

@media (max-width: 900px) {
  .adm-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0 0 28px;
  }
}

.adm-num {
  width: 56px;
  height: 56px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-red);
}

.adm-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red), var(--border-red));
}

@media (max-width: 900px) {
  .adm-connector {
    position: absolute;
    top: 56px;
    left: 27px;
    width: 2px;
    height: calc(100% - 28px);
    background: linear-gradient(180deg, var(--primary-red), var(--border-red));
  }
}

.adm-step:last-child .adm-connector {
  display: none;
}

.adm-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (max-width: 900px) {
  .adm-content {
    margin-top: 0;
    align-items: flex-start;
  }
}

.adm-icon {
  width: 44px;
  height: 44px;
  background: var(--light-red-bg);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
}

.adm-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
}

.adm-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   COLLEGE SHIKSHA SECTION
   ============================================================ */
.college-shiksha-section {
  padding: 84px 0;
  background: var(--light-red-bg);
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }
}

.cs-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
}

.cs-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-red);
}

.cs-icon {
  width: 52px;
  height: 52px;
  background: var(--light-red-bg);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  transition: all var(--transition);
}

.cs-card:hover .cs-icon {
  background: var(--primary-red);
  color: var(--white);
}

.cs-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cs-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */
.cta-banner-section {
  background: var(--primary-red);
  padding: 68px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.cta-banner-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-banner-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 560px;
}

@media (max-width: 768px) {
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 84px 0;
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
  background: var(--light-red-bg);
  color: var(--primary-red);
}

.faq-item.open .faq-question {
  background: var(--light-red-bg);
  color: var(--primary-red);
}

.faq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--primary-red);
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-red);
  padding-top: 16px;
  margin: 0 22px;
  margin-bottom: 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
   FINAL FORM SECTION
   ============================================================ */
.final-form-section {
  padding: 84px 0;
  background: var(--light-red-bg);
}

.final-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .final-form-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.final-form-desc {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.final-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.fbl-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.final-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-red);
  border-top: 4px solid var(--primary-red);
  padding: 28px;
}

.final-form-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111;
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

@media (max-width: 900px) {
  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-logo .logo-brand {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.footer-program-name {
  font-size: 0.85rem;
  color: var(--primary-red);
  font-weight: 600;
  margin-top: 6px;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-contact-link:hover {
  color: var(--white);
}

.footer-wa:hover {
  color: var(--whatsapp-green) !important;
}

.footer-col-title {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary-red);
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 90px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 80px;
    right: 16px;
  }
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all var(--transition);
  color: var(--white);
}

.fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.fab-whatsapp {
  background: var(--whatsapp-green);
}

.fab-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.fab-call {
  background: var(--primary-red);
}

.fab-call:hover {
  background: var(--primary-red-dark);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--white);
  border-top: 2px solid var(--border-red);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 850;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
}

/* ============================================================
   SUCCESS MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary-red);
}

.modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--light-red-bg);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--primary-red);
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--border-red);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .cta-banner-heading {
    font-size: 1.4rem;
  }
}