
/* ── DESIGN TOKENS ── */
:root {
  --navy:        #0b1a35;
  --navy-mid:    #152240;
  --navy-light:  #1e3060;
  --orange:      #f05a22;
  --orange-dark: #c0391e;
  --gold:        #f7c948;
  --white:       #ffffff;
  --off:         #f5f7fb;
  --muted:       #7a8899;
  --border:      #dde4f0;
  --red:         #e31e24;

  /* ── consistent type scale ── */
  --h1:    clamp(2.1rem, 3.4vw, 3rem);   /* page-level hero title   */
  --h2:    clamp(1.55rem, 2.2vw, 2rem);  /* section titles          */
  --h3:    1.15rem;                        /* card / widget titles    */
  --body:  0.9375rem;                      /* 15px – running copy     */
  --small: 0.8125rem;                      /* 13px – captions, labels */
  --xs:    0.6875rem;                      /* 11px – eyebrows, tags   */

  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm:  8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: var(--body);
  background: var(--off);
  color: var(--navy);
  line-height: 1.65;
}

/* ── SHARED PRIMITIVES ── */
.eyebrow {
  display: inline-block;
  font-size: var(--xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red);
  background: rgba(240,90,34,0.09); border: 1px solid rgba(240,90,34,0.2);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
h2.sec {
  font-family: 'Playfair Display', serif;
  font-size: var(--h2); color: var(--navy); line-height: 1.18; margin-bottom: 10px;
}
h2.sec em { color: var(--red); font-style: normal; }
p.lead { font-size: var(--body); color: var(--muted); line-height: 1.75; max-width: 520px; }

/* ── TICKER ── */
.ticker {
  background: var(--red); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  overflow: hidden; white-space: nowrap; padding: 7px 0;
}
.ticker-track { display: inline-flex; animation: tick 34s linear infinite; }
.ticker-track span { padding: 0 36px; }
.ticker-track span::before { content: "◆  "; opacity: 0.65; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════
   HERO  –  3 : 2 column split
══════════════════════════════════ */
.hero {
  display: grid;
  /*grid-template-columns: 3fr 2fr;*/
  min-height: calc(100vh - 33px);
}

/* ── Hero Left — campus photo with cinematic overlay ── */
.hero-left {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--white);
  /* real campus photo — dark navy fallback while loading */
  background: var(--navy)
    url('../slider1.png')
    center center / cover no-repeat;
    height: 950px;
}

/* Layer 1 — deep navy scrim, stronger at top + left */
.hero-left::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  /*background: linear-gradient(
    148deg,
    rgba(8,16,32,0.95)  0%,
    rgba(11,26,53,0.82) 42%,
    rgba(11,26,53,0.55) 100%
  );*/
}
/* Layer 2 — brand red warmth at bottom-right */
.hero-left::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(
    ellipse 70% 55% at 95% 108%,
    rgba(240,90,34,0.32) 0%,
    transparent 65%
  );
}
.hero-left > * { position: relative; z-index: 1; }

/* ── Frosted glass nav bar at very top ── */
.hero-nav {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 44px;
  background: rgba(6,14,28,0.45);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.hero-logo { height: 40px; filter: brightness(0) invert(1); }
.nav-pills { margin-left: auto; display: flex; gap: 6px; }
.npill {
  font-size: var(--xs); font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.58); text-decoration: none;
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.13);
  transition: color .2s, background .2s, border-color .2s;
}
.npill:hover, .npill.on {
  color: #fff;
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.28);
}

/* ── Central content — vertically centred ── */
.hero-content {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 52px 44px 16px;
}

.hero-chips { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.chip {
  font-size: var(--xs); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px;
}
.chip.filled  { background: var(--red); color: #fff; }
.chip.outline {
  background: transparent; color: rgba(255,255,255,0.62);
  border: 1.5px solid rgba(255,255,255,0.22);
}

h1.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  line-height: 1.06; color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
h1.hero-title em { color: var(--gold); font-style: normal; }

/* thin red rule — editorial accent */
.hero-rule {
  width: 46px; height: 3px;
  background: var(--red); border-radius: 2px;
  margin-bottom: 24px;
}

p.hero-sub {
  font-size: var(--body); color: rgba(255,255,255,0.60);
  max-width: 400px; line-height: 1.82;
}

/* ── Phone / site link row ── */
.hero-foot {
  padding: 20px 44px 24px;
  display: flex; align-items: center; gap: 18px;
}
.tel-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
  color: #fff; text-decoration: none;
  font-size: var(--small); font-weight: 700;
  padding: 10px 20px; border-radius: 50px;
  transition: background .2s, border-color .2s;
}
.tel-btn:hover { background: var(--red); border-color: var(--red); }
.tel-btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.site-link {
  font-size: var(--small); color: rgba(255,255,255,0.42);
  text-decoration: none; font-weight: 600; transition: color .2s;
}
.site-link:hover { color: rgba(255,255,255,0.82); }

/* ── Frosted stats strip — anchored to bottom ── */
.hero-stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(6,14,28,0.55);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-top: 1px solid rgba(255,255,255,0.09);
}
.hs {
  padding: 22px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hs:last-child { border-right: none; }
.hs-num {
  font-family: 'Playfair Display', serif;
  font-size: 60px; color: var(--gold); line-height: 1; margin-bottom: 5px;
}
.hs-lbl {
  font-size: 15px; color: rgba(255,255,255,0.48);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ── Hero Right — form panel ── */
.hero-right {
  background: var(--white);
  /* warm tint at top mirrors red brand on left */
  background-image: linear-gradient(180deg, rgba(240,90,34,0.035) 0%, transparent 110px);
  display: flex; flex-direction: column;
  padding: 32px 36px 40px; overflow-y: auto;
  /* left accent border ties the two panels together */
  border-left: 4px solid var(--red);
  box-shadow: -8px 0 40px rgba(11,26,53,0.12);
}

.frm-hdr { margin-bottom: 20px; }
.frm-hdr-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
h2.frm-title { font-family: 'Playfair Display', serif; font-size: var(--h3); color: var(--navy); margin-bottom: 3px; }
p.frm-sub    { font-size: var(--small); color: var(--muted); }
.live-dot {
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--red); padding: 5px 11px; border-radius: 20px; flex-shrink: 0;
  animation: glow 2.6s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(240,90,34,0.45); }
  50%      { box-shadow: 0 0 0 7px rgba(240,90,34,0); }
}

/* tabs */
.tabs { display: flex; background: var(--off); border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 22px; }
.tbtn {
  flex: 1; padding: 11px 0;
  font-family: 'Nunito', sans-serif; font-size: var(--small); font-weight: 800;
  background: transparent; border: none; cursor: pointer;
  color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase;
  transition: all .22s;
}
.tbtn.on { background: var(--navy); color: var(--white); border-radius: 10px; }

.tpanel { display: none; flex-direction: column; gap: 13px; }
.tpanel.on { display: flex; }

/* social */
.soc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.soc-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 10px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--white);
  font-family: 'Nunito', sans-serif; font-size: var(--small); font-weight: 700;
  cursor: pointer; color: var(--navy); text-decoration: none;
  transition: border-color .18s, color .18s;
}
.soc-btn:hover { border-color: var(--red); color: var(--red); }
.soc-btn img { width: 15px; height: 15px; }

.divider {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #c4cdd9;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* form fields */
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.fg input, .fg select {
  height: 42px; padding: 0 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif; font-size: var(--small);
  color: var(--navy); background: var(--off);
  appearance: none; outline: none; width: 100%;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.fg input:focus, .fg select:focus {
  border-color: var(--red); background: var(--white);
  box-shadow: 0 0 0 3px rgba(240,90,34,0.1);
}
.fg input::placeholder { color: #b6bfcc; }

.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.span2 { grid-column: 1 / -1; }

.ph-row { display: flex; gap: 7px; }
.cc {
  width: 64px; flex-shrink: 0; height: 42px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif; font-size: var(--small); font-weight: 700;
  color: var(--navy); background: var(--off); padding: 0 7px;
  outline: none; cursor: pointer; appearance: none;
}
.cc:focus { border-color: var(--red); }

.otp-row { display: flex; gap: 7px; align-items: flex-end; }
.otp-row input { flex: 1; }
.otp-btn {
  height: 42px; padding: 0 13px; border-radius: var(--radius-sm);
  background: var(--navy-light); color: var(--white); border: none;
  font-family: 'Nunito', sans-serif; font-size: var(--small); font-weight: 800;
  cursor: pointer; white-space: nowrap; transition: background .18s;
}
.otp-btn:hover { background: var(--ed); }

.consent-row {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 11px; color: var(--muted); line-height: 1.5;
}
.consent-row input { margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }

.sub-btn {
  width: 100%; height: 48px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white); border: none;
  font-family: 'Nunito', sans-serif; font-size: var(--body); font-weight: 800;
  letter-spacing: 0.03em; cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  position: relative; overflow: hidden;
}
.sub-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
  transform: translateX(-100%); transition: transform .45s;
}
.sub-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(240,90,34,0.34); }
.sub-btn:hover::after { transform: translateX(100%); }

.help-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.help-links a { font-size: 11px; font-weight: 700; color: var(--muted); text-decoration: none; transition: color .18s; }
.help-links a:hover { color: var(--red); }

.login-stack { display: flex; flex-direction: column; gap: 12px; }
.login-meta { display: flex; justify-content: space-between; align-items: center; }
.remember-lbl { display: flex; align-items: center; gap: 7px; font-size: var(--small); color: var(--muted); cursor: pointer; }
.remember-lbl input { accent-color: var(--red); }
.forgot { font-size: var(--small); font-weight: 700; color: var(--red); cursor: pointer; }
.forgot:hover { text-decoration: underline; }

/* hero-content wrapper & rule */
.hero-content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 52px 44px 16px; }
.hero-rule { width: 46px; height: 3px; background: var(--red); border-radius: 2px; margin-bottom: 24px; }

/* ══════════════════════════════════
   SECTIONS BELOW HERO
══════════════════════════════════ */

/* Stats band */
.stats-band { background: var(--navy-mid); padding: 50px 6%; }
.sband {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 960px; margin: 0 auto;
}
.si {
  text-align: center; padding: 16px 10px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.si:last-child { border-right: none; }
.si-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem; color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.si-lbl { font-size: var(--xs); color: rgba(255,255,255,0.45); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* ══════════════════════════════════
   SCHOLARSHIP - full-bleed dark panel
══════════════════════════════════ */
.schol-sec {
  background: var(--navy);
  padding: 0 0 0 0;
  position: relative; overflow: hidden;
}
/* decorative rings */
.schol-sec::before {
  content: '';
  position: absolute; top: -160px; left: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  border: 80px solid rgba(247,201,72,0.05);
  pointer-events: none;
}
.schol-sec::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 60px solid rgba(240,90,34,0.07);
  pointer-events: none;
}

.schol-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1360px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* LEFT - big number hero */
.schol-left {
  padding: 72px 56px 72px 6%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.schol-left::after {
  content: '';
  position: absolute; top: 15%; right: 0; bottom: 15%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.schol-eyebrow { margin-bottom: 28px; }
.schol-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(7rem, 7vw, 5.6rem);
  color: var(--gold); line-height: 0.95;
  margin-bottom: 6px; letter-spacing: -0.02em;
}
.schol-denom {
  font-size: var(-- very large); color: rgba(255,255,255,0.42);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 28px;
}
.schol-pull {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--white);
  line-height: 1.5; 
  border-left: 3px solid var(--red);
  padding-left: 18px;
}

/* RIGHT - details */
.schol-right {
  padding: 72px 6% 72px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.schol-right h2.sec { color: var(--white); margin-bottom: 14px; }
.schol-right h2.sec em { color: var(--gold); }
.schol-right p.lead { color: rgba(255,255,255,0.58); margin-bottom: 28px; }
.schol-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.schol-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: var(--body); color: rgba(255,255,255,0.75);
  line-height: 1.55; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.schol-list li:last-child { border-bottom: none; }
.schol-list li .chk {
  width: 20px; height: 20px; min-width: 20px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  font-size: 10px; font-weight: 900; color: #fff;
}

/* ══════════════════════════════════
   RANKINGS - image-led cards
══════════════════════════════════ */
.rank-sec { background: var(--off); padding: 80px 6%; }
.rank-inner { max-width: 1360px; margin: 0 auto; }
.rank-hdr { text-align: center; margin-bottom: 52px; }
.rank-hdr p.lead { margin: 12px auto 0; }

/* Primary ranking cards - big logo image at top */
.rank-primary {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 22px;
}
.rpcard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .28s, box-shadow .28s;
  text-decoration: none; color: inherit;
}
.rpcard:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(11,26,53,0.1); border-color: transparent; }

.rpcard-img {
  width: 100%; height: 140px; object-fit: cover; object-position: center top;
  display: block; background: var(--off);
}
/* fallback when image fails - show styled placeholder */
.rpcard-logo-fallback {
  width: 100%; height: 140px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-family: 'Playfair Display', serif;
  font-weight: 700; letter-spacing: -0.02em;
}

.rpcard-body { padding: 22px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.rpcard-badge {
  display: inline-block; margin-bottom: 10px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.rpcard-badge.gold   { background: rgba(247,201,72,0.15); color: #a07000; }
.rpcard-badge.blue   { background: rgba(11,26,53,0.08);   color: var(--navy); }
.rpcard-badge.red { background: rgba(240,90,34,0.1);   color: var(--red-dark); }

h3.rpcard-title { font-family: 'Playfair Display', serif; font-size: var(--h3); color: var(--navy); line-height: 1.3; margin-bottom: 8px; }
p.rpcard-desc   { font-size: var(--small); color: var(--muted); line-height: 1.65; flex: 1; }
.rpcard-source  {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 11px; color: var(--muted); font-weight: 600;
  display: flex; align-items: center; gap: 5px;
}
.rpcard-source::before { content: '↗'; color: var(--red); font-weight: 800; }

/* Secondary - smaller accreditation tiles */
.rank-secondary {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.rscard {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 16px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: border-color .2s, box-shadow .2s;
}
.rscard:hover { border-color: var(--red); box-shadow: 0 6px 20px rgba(240,90,34,0.08); }
.rscard-img {
  width: 56px; height: 40px; object-fit: contain; object-position: center;
  filter: grayscale(0.2); transition: filter .2s;
}
.rscard:hover .rscard-img { filter: none; }
.rscard-logo-text {
  width: 56px; height: 40px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.8rem; font-weight: 700;
  color: var(--navy);
}
.rscard-name { font-size: var(--small); font-weight: 800; color: var(--navy); line-height: 1.3; text-align: center; }
.rscard-sub  { font-size: 11px; color: var(--muted); }

/* Footer */
footer { background: var(--navy); padding: 40px 6% 26px; color: rgba(255,255,255,0.42); }
.ft { max-width: 960px; margin: 0 auto; text-align: center; }
.ft-logo { height: 100px; filter: margin-bottom: 16px; }
.ft p { font-size: var(--small); line-height: 1.8; margin-bottom: 14px; }
.ft-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.ft-links a { font-size: var(--small); color: rgba(255,255,255,0.42); text-decoration: none; transition: color .18s; }
.ft-links a:hover { color: var(--red); }
.ft-copy { font-size: 11px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; }

/********060426v1***********/
.tobner img { width: 100%; height: auto; display: block; }
.tobner img.mobileimg { width: 100%; height: auto; display: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 40px 28px 16px; }
  .hero-foot    { padding: 16px 28px 20px; }
  .hero-nav     { padding: 18px 28px; }
  .hero-right   { padding: 28px 28px 36px; border-left: none; border-top: 4px solid var(--red); }
  .hero-stats-strip { grid-template-columns: repeat(3,1fr); }
  .sband { grid-template-columns: repeat(2,1fr); }
  .si:nth-child(2) { border-right: none; }
  .si { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .si:nth-child(3), .si:last-child { border-bottom: none; }
  .schol-inner { grid-template-columns: 1fr; }
  .schol-left::after { display: none; }
  .schol-left  { padding: 48px 28px 32px; }
  .schol-right { padding: 0 28px 48px; }
  .rank-primary  { grid-template-columns: 1fr 1fr; }
  .rank-secondary { grid-template-columns: repeat(2,1fr); }
  .fgrid { grid-template-columns: 1fr; }
  .span2 { grid-column: 1; }
  .hero-left {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--white);
  /* real campus photo — dark navy fallback while loading */
  background: var(--navy)
    url('../slider1.png')
    center center / cover no-repeat;
}

}
@media (max-width: 560px) {
  .hero-stats-strip { grid-template-columns: repeat(3,1fr); }
  .rank-primary  { grid-template-columns: 1fr; }
  .rank-secondary { grid-template-columns: repeat(2,1fr); }
}
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #f5ecea;
      --red: #8b1a2b;
      --red-light: #b5283d;
      --card-bg: #ffffff;
      --text: #1a1a1a;
      --muted: #555;
      --dashed: #c9a0a6;
    }
    .body{
      font-family: 'DM Sans', sans-serif;
     
      align-items: center;
      justify-content: center;
      /*padding: 60px 24px;*/
    }

    .container {
      /*max-width: 860px;*/
      width: 100%;
      background: var(--bg);
      padding-top: 40px;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      color: var(--text);
      text-align: center;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 40px;
    }

    /* Timeline wrapper */
    .timeline {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Central dashed line */
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 36px;
      bottom: 36px;
      transform: translateX(-50%);
      width: 2px;
      background: repeating-linear-gradient(
        to bottom,
        var(--dashed) 0px,
        var(--dashed) 8px,
        transparent 8px,
        transparent 18px
      );
      z-index: 0;
    }

    /* Each step row */
    .step {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 0;
      position: relative;
      z-index: 1;
      margin-bottom: 32px;
    }

    /* Left-side card */
    .step .card {
      background: var(--card-bg);
      border-radius: 40px;
      padding: 22px 32px;
      box-shadow: 0 4px 20px rgba(139,26,43,0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .step .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(139,26,43,0.14);
    }

    .step .card h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--red);
      margin-bottom: 6px;
    }

    .step .card p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* Right-side card (mirror) */
    .step .card.right {
      text-align: left;
    }

    /* Empty cell for alternating layout */
    .step .empty {
      /* spacer */
    }

    /* Step badge (center) */
    .step-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      width: 90px;
      flex-shrink: 0;
    }

    .icon-circle {
      width: 64px;
      height: 64px;
      background: var(--card-bg);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 14px rgba(139,26,43,0.12);
    }

    .icon-circle svg {
      width: 28px;
      height: 28px;
      stroke: var(--red);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .step-label {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--text);
      letter-spacing: 0.03em;
    }

    /* Alternating: odd steps — card left, even — card right */
    .step.left  .card   { grid-column: 1; justify-self: end; max-width: 300px; }
    .step.left  .step-badge { grid-column: 2; }
    .step.left  .empty  { grid-column: 3; }

    .step.right .empty  { grid-column: 1; }
    .step.right .step-badge { grid-column: 2; }
    .step.right .card   { grid-column: 3; justify-self: start; max-width: 300px; }
    .sliderimx {
    position: relative;
}
.foxes {
    position: absolute;
    right: 5%;
    max-width: 450px;
    top: 5%;
    width: 100%;
}
.foxes
.npf_wgts iframe {
    height: 796px;
}
    /* Responsive */
    @media (max-width: 600px) {
      .timeline::before { left: 32px; }

      .step {
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto;
      }

      .step.left .card,
      .step.right .card {
        grid-column: 2;
        grid-row: 1;
        justify-self: stretch;
        max-width: none;
        border-radius: 20px;
      }

      .step.left .step-badge,
      .step.right .step-badge {
        grid-column: 1;
        grid-row: 1;
        width: 64px;
      }

      .step .empty { display: none; }
    }
    @media screen and (max-width:1920px) {}
@media screen and (max-width:1800px) {
  .foxes .npf_wgts iframe {
    height: 718px;
}
}
@media screen and (max-width:1599px) {
      .foxes .npf_wgts iframe {
        height: 725px;
    }
  .foxes {
    position: absolute;
    right: 3%;
    max-width: 370px;
    top: 3%;
    width: 100%;
}
}
@media screen and (max-width:1366px) {
      .foxes {
        top: 0;
    }
}
@media screen and (max-width:1280px) {
      .foxes .npf_wgts iframe {
        height: 625px;
    }
}
@media screen and (max-width:1169px) {
      .foxes {
        max-width: 287px;
    }
      .foxes .npf_wgts iframe {
        height: 533px;
    }
}
@media screen and (max-width:991px) {
  .foxes {
        max-width: 100%;
        position: relative;
        right: 0;
        top: 0;
    }
}
@media screen and (max-width:767px) {
  .foxes .npf_wgts iframe {
        height: 706px;
    }
}
@media screen and (max-width:640px) {
  .hs-num {
    font-size: 26px;
}
.hs-lbl {
    font-size: 13px;
    line-height: 17px;
}
.schol-big {
    font-size: clamp(4rem, 7vw, 5.6rem);
}
.body {
    font-family: 'DM Sans', sans-serif;
    align-items: center;
    justify-content: center;
    padding:10px 24px 30px !important;
}
    .step.left .card, .step.right .card {
        margin: 0 0 0 16px;
    }
    .tobner img.mobileimg {
    display: block;
}
    .tobner img.desktopimg {
    display: none;
}
.schol-pull {
    font-size: 1.5rem;
}
    .foxes .npf_wgts iframe {
        height: 711px;
    }
}
@media screen and (max-width:479px) {}
@media screen and (max-width:440px) {
      .foxes .npf_wgts iframe {
        height: 731px;
    }
}
@media screen and (max-width:380px) {}
@media screen and (max-width:359px) {}
@media screen and (max-width:320px) {}


/************************thankyou page code**************************/
.tamlpage {background: url("../images/thanks/thanks-bg.webp") no-repeat top center/ cover; background-size: cover;}

.tamlpage .container {
    background: none;
    padding-top: 0;
}
.logosei {
    width: 350px;
    margin: 4% auto 0;
    display: block;
	
}

.tahkks {
    display: block;
    width: 70%;
    clear: both;
    margin: 10% auto 0;
        text-align: center;
}
.ththe {
    width: 66%;
}

.tahkks p {
    color: #fff;
    font-size: 29px;
    line-height: 35px;
    margin: 24px 0;
    text-align: center;
}

.tnode {
    display: block;
    margin: 24px 0 0 6px;
}

.tnode a {
     display: inline-block;
    background: #ff9600;
    color: #000000;
    text-decoration: none;
    padding: 7px 48px;
    border-radius: 0;
    margin: 0 16px;
    font-size: 22px;
    font-weight: 700;
}

.tnode a img {
    display: inline-block;
    width: 25px;
    margin: 0 0 0 17px;
}


.sobce {
    display: block;
    margin: 36px 0 0 32px;
    color: #fff;
}

.tid {
    display: inline-block;
    width: fit-content;
    font-size: 23px;
    font-weight: 300;
}

.diede {
    display: inline-block;
    margin: 0 0 0 30px;
}
.diede a {
    text-decoration: none;
    color: #fff;
}

.diede a span {
    display: inline-block;
    margin: 0 0 0 15px;
    font-size: 20px;
}

.thanfetr {
    position: absolute;
    background: #000;
    width: 100%;
    padding: 15px 0;
    bottom: 0;
}

.leode {
    display: inline-block;
    width: 70%;
}

.leode p {
    color: #fff;
    font-size: 12px;
    margin: 0 0 0 17px;
    line-height: 17px;
    display: inline-block;
    vertical-align: middle;
}

.socialbx {
    display: inline-block;
    vertical-align: middle;
}

.socialbx a {
    display: inline-block;
    margin: 0 0 0 16px;
}

.leode .lowiher {
    object-fit: contain;
    height: 64px;
}
/****************end*********/