/* ═══════════════════════════════════════════════
   NTT LANDING PAGE – PREMIUM STYLES
   BRM College, Munger – Study Centre-6550
   ═══════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --ruby:       #8b1a1a;
  --ruby-light: #b22222;
  --ruby-dark:  #6b1414;
  --navy:       #1a3a6b;
  --navy-light: #2e5fa3;
  --navy-dark:  #0f2347;
  --gold:       #b8860b;
  --gold-light: #d4a017;
  --gold-pale:  #fef3cd;
  --cream:      #f8f6f1;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a4a6a;
  --text-light: #7a7a9a;
  --border:     rgba(26,58,107,0.1);
  --shadow-sm:  0 2px 12px rgba(26,26,46,0.06);
  --shadow-md:  0 8px 32px rgba(26,26,46,0.12);
  --shadow-lg:  0 20px 60px rgba(26,26,46,0.16);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Poster Section ─── */
.poster-section {
  padding: var(--spacing-xxl) 0 0;
  background-color: var(--cream);
}
.poster-container {
  max-width: 800px;
  margin: 0 auto;
}
.official-poster {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ─── Hero Image ─── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── Scroll-driven animation setup ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes count-up {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

[data-animate] { opacity: 0; }
[data-animate].in-view {
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}
[data-animate="fade-left"].in-view {
  animation-name: fadeLeft;
}

/* ─── Layout Helpers ─── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ruby);
  background: rgba(139,26,26,0.08);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--ruby), var(--ruby-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,26,26,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,26,26,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-college {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.1;
}
.nav-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--navy);
  background: rgba(26,58,107,0.06);
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--ruby), var(--ruby-light));
  color: #fff;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(139,26,26,0.3);
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,26,26,0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  gap: 0.25rem;
  background: rgba(255,255,255,0.98);
}
.nav-mobile-menu .nav-link {
  display: block;
  padding: 0.65rem 0.85rem;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 120px 1.5rem 80px;
  background: linear-gradient(165deg, #ffffff 0%, var(--cream) 40%, #eef3fa 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,26,26,0.06) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}
.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,58,107,0.07) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139,26,26,0.08);
  border: 1px solid rgba(139,26,26,0.2);
  color: var(--ruby);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ruby);
  border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite;
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 1.25rem;
}
.hero-em {
  font-style: italic;
  color: var(--ruby);
  position: relative;
}
.hero-em::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ruby), var(--gold));
  border-radius: 2px;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
  line-height: 1.7;
  max-width: 500px;
}
.hero-subheadline strong { color: var(--navy-dark); }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.pill-navy  { background: rgba(26,58,107,0.1); color: var(--navy); }
.pill-ruby  { background: rgba(139,26,26,0.1); color: var(--ruby); }
.pill-gold  { background: rgba(184,134,11,0.12); color: var(--gold); }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: fit-content;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}
.stat-plus {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ruby);
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 0.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(139,26,26,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.hero-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
  border: 4px solid rgba(255,255,255,0.8);
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.8);
}
.img-badge-icon { font-size: 1.5rem; }
.img-badge-title { font-size: 0.85rem; font-weight: 700; color: var(--navy-dark); }
.img-badge-sub   { font-size: 0.7rem;  color: var(--text-light); }

/* ─── TRUST STRIP ─── */
.trust-strip {
  padding: 5rem 1.5rem;
  background: white;
  position: relative;
}
.trust-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ruby), var(--navy), var(--gold));
}

.trust-header {
  text-align: center;
  margin-bottom: 3rem;
}
.trust-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.trust-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
}

.trust-badges {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-badge {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-badge::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c, var(--navy));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.trust-badge:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trust-badge:hover::after { transform: scaleX(1); }

.badge-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.badge-ruby { background: rgba(139,26,26,0.1);  color: var(--ruby);  --c: var(--ruby); }
.badge-navy { background: rgba(26,58,107,0.1);  color: var(--navy);  --c: var(--navy); }
.badge-gold { background: rgba(184,134,11,0.12); color: var(--gold);  --c: var(--gold); }
.badge-teal { background: rgba(45,106,79,0.1);  color: #2d6a4f;       --c: #2d6a4f; }

.badge-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.35rem;
}
.badge-org {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.badge-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.badge-reg {
  font-size: 0.7rem;
  color: var(--ruby);
  font-weight: 600;
  font-style: italic;
}

/* ─── ABOUT / HIGHLIGHTS ─── */
.about-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, var(--cream) 0%, #eef3fa 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,58,107,0.2);
}
.about-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  width: 52px;
  height: 52px;
  background: rgba(var(--c), 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.about-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── CURRICULUM ─── */
.curriculum-section {
  padding: 6rem 1.5rem;
  background: white;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.curriculum-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.curriculum-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--ruby), var(--navy));
  border-radius: 4px 0 0 4px;
}
.curriculum-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: white;
}
.curriculum-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(26,58,107,0.08);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}
.curriculum-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.curriculum-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── COURSE DETAILS (FEES & BOOKS) ─── */
.details-section {
  padding: 6rem 1.5rem;
  background: white;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.fee-panel,
.books-panel {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
}

.fee-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.fee-item:hover { border-color: var(--navy-light); background: rgba(46,95,163,0.04); }
.fee-label { font-size: 0.95rem; font-weight: 600; color: var(--navy-dark); }
.fee-label small { display: block; font-size: 0.75rem; color: var(--text-light); font-weight: 500; }
.fee-val { font-size: 1.1rem; font-weight: 800; color: var(--ruby); }
.fee-highlight { background: rgba(139,26,26,0.04); border-color: rgba(139,26,26,0.15); }
.fee-note { font-size: 0.8rem; color: var(--text-light); font-style: italic; text-align: center; }

.books-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.books-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.books-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.book-lang {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(26,58,107,0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

/* ─── INTERACTIVE SECTION ─── */
.interactive-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(160deg, #f0f4ff 0%, var(--cream) 100%);
}

.interactive-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eligibility-panel,
.form-panel {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.panel-header {
  margin-bottom: 2rem;
  text-align: center;
}
.panel-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}
.panel-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}
.panel-header p {
  font-size: 0.875rem;
  color: var(--text-mid);
}

/* Eligibility Checker */
.eligibility-steps { position: relative; }
.elig-step { display: none; }
.elig-step.active { display: block; }

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.step-num.active { background: var(--navy); color: white; }
.step-num.done   { background: #16a34a; color: white; }
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 0.5rem;
}
.step-line.active { background: var(--navy); }

.step-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1.25rem;
}

.elig-options { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.elig-option { cursor: pointer; }
.elig-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.elig-option-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: var(--cream);
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.elig-option input:checked + .elig-option-box {
  border-color: var(--navy);
  background: rgba(26,58,107,0.06);
  color: var(--navy-dark);
}
.elig-option-box:hover { border-color: var(--navy-light); background: rgba(26,58,107,0.04); }
.elig-opt-icon { font-size: 1.2rem; }

.elig-btn-row { display: flex; gap: 0.75rem; }
.elig-result-content {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-md);
}
.result-eligible {
  background: rgba(22,163,74,0.06);
  border: 2px solid rgba(22,163,74,0.25);
}
.result-not-eligible {
  background: rgba(239,68,68,0.06);
  border: 2px solid rgba(239,68,68,0.2);
}
.result-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.result-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.result-text { font-size: 0.875rem; color: var(--text-mid); }

/* Lead Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--navy-dark); }
.form-label span { color: var(--ruby); }

.form-input {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.form-input:focus {
  border-color: var(--navy-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(26,58,107,0.1);
}
.form-input.invalid { border-color: var(--ruby); }
.form-textarea { resize: vertical; min-height: 80px; }

.form-error {
  font-size: 0.75rem;
  color: var(--ruby);
  font-weight: 500;
  min-height: 1rem;
  display: block;
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
}
.success-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.form-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--text-mid); }

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, #eef3fa 0%, white 100%);
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ruby), var(--ruby-light));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--navy-dark); }
.author-role { font-size: 0.72rem; color: var(--text-light); }

/* ─── FOOTER ─── */
.footer {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #0a1628 100%);
  color: rgba(255,255,255,0.85);
  position: relative;
}
.footer-wave {
  line-height: 0;
  overflow: hidden;
}
.footer-wave svg { display: block; width: 100%; }

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
}

.footer-bbbp {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.bbbp-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  border-radius: 50px;
}
.bbbp-icon { font-size: 2rem; }
.bbbp-title { font-size: 0.9rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.bbbp-sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.footer-organized {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.footer-organized strong { color: rgba(255,255,255,0.9); }

.footer-contact-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}

.coordinator-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.coord-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ruby), var(--ruby-light));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.coord-role { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.coord-name { font-size: 1rem; font-weight: 700; color: white; }
.coord-note { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

.contact-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
}
.contact-call {
  background: linear-gradient(135deg, var(--ruby), var(--ruby-light));
  color: white;
  box-shadow: 0 4px 16px rgba(139,26,26,0.4);
}
.contact-call:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(139,26,26,0.5); }

.contact-whatsapp {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  box-shadow: 0 4px 16px rgba(22,163,74,0.35);
}
.contact-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(22,163,74,0.5); }

/* Footer accreditation bar */
.footer-accreditation-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.foot-acc-item {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.foot-acc-sep { color: rgba(255,255,255,0.2); }

.footer-bottom {
  padding: 1.25rem 0 2rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-disclaimer { margin-top: 0.25rem; }

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.float-btn:hover { transform: scale(1.05); }
.float-call { background: linear-gradient(135deg, var(--ruby), var(--ruby-light)); }
.float-wa   { background: linear-gradient(135deg, #16a34a, #22c55e); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid,
  .curriculum-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Navbar Mobile Adjustments */
  .nav-inner {
    padding: 0 1rem;
    gap: 1rem;
    justify-content: space-between;
  }
  .nav-logo {
    gap: 0.5rem;
    flex: 1;
    max-width: calc(100vw - 80px); /* Leave room for hamburger icon */
    overflow: hidden;
  }
  .nav-logo-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  .nav-logo-text {
    min-width: 0;
  }
  .nav-college {
    font-size: 0.8rem;
    white-space: normal;
    word-wrap: break-word;
    display: block;
    line-height: 1.1;
  }
  .nav-sub {
    font-size: 0.6rem;
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image-wrap { order: -1; }
  .hero-headline { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero { padding: 100px 1.25rem 60px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu.open { display: flex; }

  .interactive-grid,
  .details-grid,
  .footer-top { grid-template-columns: 1fr; }

  .about-grid,
  .curriculum-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .trust-badges { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .footer-accreditation-bar { flex-direction: column; gap: 0.4rem; }
  .foot-acc-sep { display: none; }

  .floating-cta { flex-direction: row; bottom: 1rem; right: 1rem; left: 1rem; justify-content: center; }
  .float-btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .trust-badges { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════════
   TOGGLE BUTTONS – Theme & Language
   ═══════════════════════════════════════════════ */

.nav-toggles {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 36px;
  padding: 0 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(26,58,107,0.07);
  border: 1.5px solid var(--border);
  color: var(--navy-dark);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.toggle-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ruby), var(--navy));
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: inherit;
}

.toggle-btn:hover::before { opacity: 1; }
.toggle-btn:hover { color: white; border-color: transparent; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,58,107,0.25); }
.toggle-btn:hover span { position: relative; z-index: 1; }
.toggle-btn:active { transform: scale(0.96); }

.theme-toggle { min-width: 36px; }
.lang-toggle  { min-width: 48px; }

/* Mobile toggles inside menu */
.mobile-toggles {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.5rem 0.85rem;
}
.mobile-toggles .toggle-btn {
  flex: 1;
  font-size: 0.8rem;
  height: 38px;
}

@media (max-width: 768px) {
  .nav-toggles { display: none; } /* shown inside mobile menu instead */
}

/* ═══════════════════════════════════════════════
   DARK MODE  –  [data-theme="dark"]
   ═══════════════════════════════════════════════ */

[data-theme="dark"] {
  --cream:      #0d1423;
  --white:      #1a2638;
  --text-dark:  #dde4f5;
  --text-mid:   #8fa3c8;
  --text-light: #5a6f98;
  --border:     rgba(255,255,255,0.08);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.45);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.55);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.65);
  --gold-pale:  #1f1a08;
}

/* Body */
[data-theme="dark"] body { background: var(--cream); }

/* Navbar */
[data-theme="dark"] .navbar {
  background: rgba(13,20,35,0.95);
  border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .nav-mobile-menu {
  background: rgba(13,20,35,0.98);
  border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .nav-hamburger span { background: var(--text-dark); }
[data-theme="dark"] .toggle-btn {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-dark);
}

/* Hero */
[data-theme="dark"] .hero {
  background: linear-gradient(165deg, #0d1423 0%, #0f1c30 40%, #0a1528 100%);
}
[data-theme="dark"] .hero-stats {
  background: #1a2638;
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .hero-img-card {
  border-color: rgba(255,255,255,0.12);
}
[data-theme="dark"] .hero-img-badge {
  background: rgba(20,32,52,0.96);
  border-color: rgba(255,255,255,0.1);
}
[data-theme="dark"] .img-badge-title { color: var(--text-dark); }

/* Trust strip */
[data-theme="dark"] .trust-strip { background: #111d30; }
[data-theme="dark"] .trust-badge { background: #1a2638; }
[data-theme="dark"] .trust-title { color: var(--text-dark); }

/* About */
[data-theme="dark"] .about-section {
  background: linear-gradient(180deg, #0d1423 0%, #0f1c30 100%);
}
[data-theme="dark"] .about-card {
  background: #1a2638;
  border-color: rgba(255,255,255,0.07);
}
[data-theme="dark"] .about-card:hover { border-color: rgba(46,95,163,0.3); }
[data-theme="dark"] .about-card h3,
[data-theme="dark"] .section-title,
[data-theme="dark"] .badge-title,
[data-theme="dark"] .step-question,
[data-theme="dark"] .panel-header h2,
[data-theme="dark"] .trust-title,
[data-theme="dark"] .author-name,
[data-theme="dark"] .form-label,
[data-theme="dark"] .footer-contact-title { color: var(--text-dark); }

/* Curriculum */
[data-theme="dark"] .curriculum-section { background: #111d30; }
[data-theme="dark"] .curriculum-card {
  background: #1a2638;
  border-color: rgba(255,255,255,0.07);
}
[data-theme="dark"] .curriculum-card:hover { background: #1f2e47; }
[data-theme="dark"] .curriculum-num { color: rgba(255,255,255,0.06); }

/* Interactive / Form */
[data-theme="dark"] .interactive-section {
  background: linear-gradient(160deg, #0d1a2e 0%, #0d1423 100%);
}
[data-theme="dark"] .eligibility-panel,
[data-theme="dark"] .form-panel {
  background: #1a2638;
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .form-input {
  background: #0d1423;
  color: var(--text-dark);
  border-color: rgba(255,255,255,0.1);
}
[data-theme="dark"] .form-input:focus {
  background: #111d30;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(46,95,163,0.2);
}
[data-theme="dark"] .form-input option { background: #1a2638; }
[data-theme="dark"] .elig-option-box {
  background: #0d1423;
  border-color: rgba(255,255,255,0.08);
  color: var(--text-dark);
}
[data-theme="dark"] .elig-option input:checked + .elig-option-box {
  background: rgba(46,95,163,0.18);
  border-color: var(--navy-light);
}
[data-theme="dark"] .elig-option-box:hover {
  background: rgba(46,95,163,0.1);
  border-color: var(--navy-light);
}
[data-theme="dark"] .step-num {
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
}
[data-theme="dark"] .step-line { background: rgba(255,255,255,0.1); }
[data-theme="dark"] .form-success h3 { color: var(--text-dark); }

/* Testimonials */
[data-theme="dark"] .testimonials-section {
  background: linear-gradient(180deg, #0f1c30 0%, #111d30 100%);
}
[data-theme="dark"] .testimonial-card {
  background: #1a2638;
  border-color: rgba(255,255,255,0.07);
}

/* Footer wave */
[data-theme="dark"] .footer-wave-path { fill: #0d1423; }
[data-theme="dark"] .coordinator-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

/* Scroll animation override – avoid invisible sections in dark mode */
[data-theme="dark"] .btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--text-dark);
}
[data-theme="dark"] .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: white;
}

/* Smooth theme transition */
*,
*::before,
*::after {
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
/* But restore animation-specific transitions */
.toggle-btn, .btn, .nav-link, .nav-cta, .trust-badge,
.about-card, .curriculum-card, .testimonial-card,
.contact-btn, .float-btn, [data-animate] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Extra dark-mode token fixes ── */
[data-theme="dark"] .details-section { background: #111d30; }
[data-theme="dark"] .fee-panel,
[data-theme="dark"] .books-panel { background: #1a2638; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .fee-item { background: #0d1423; border-color: rgba(255,255,255,0.07); }
[data-theme="dark"] .fee-item:hover { border-color: rgba(46,95,163,0.3); }
[data-theme="dark"] .fee-label { color: var(--text-dark); }
[data-theme="dark"] .fee-val { color: #e07a7a; }
[data-theme="dark"] .fee-highlight { background: rgba(178,34,34,0.1); border-color: rgba(178,34,34,0.25); }
[data-theme="dark"] .books-content h3 { color: var(--text-dark); }
[data-theme="dark"] .books-content p { color: var(--text-mid); }
[data-theme="dark"] .book-lang { background: rgba(255,255,255,0.1); color: var(--text-dark); }
[data-theme="dark"] .nav-college { color: var(--text-dark); }
[data-theme="dark"] .nav-sub     { color: var(--text-light); }
[data-theme="dark"] .nav-link    { color: var(--text-mid); }
[data-theme="dark"] .nav-link:hover { color: #dde4f5; background: rgba(255,255,255,0.06); }
[data-theme="dark"] .hero-headline  { color: var(--text-dark); }
[data-theme="dark"] .hero-subheadline { color: var(--text-mid); }
[data-theme="dark"] .hero-subheadline strong { color: var(--text-dark); }
[data-theme="dark"] .stat-number { color: var(--text-dark); }
[data-theme="dark"] .stat-label  { color: var(--text-light); }
[data-theme="dark"] .trust-subtitle { color: var(--text-mid); }
[data-theme="dark"] .badge-org   { color: var(--text-mid); }
[data-theme="dark"] .badge-meta  { color: var(--text-light); }
[data-theme="dark"] .section-desc { color: var(--text-mid); }
[data-theme="dark"] .curriculum-card h3 { color: var(--text-dark); }
[data-theme="dark"] .curriculum-card p  { color: var(--text-mid); }
[data-theme="dark"] .about-card p { color: var(--text-mid); }
[data-theme="dark"] .testimonial-text { color: var(--text-mid); }
[data-theme="dark"] .author-role     { color: var(--text-light); }
[data-theme="dark"] .panel-header p  { color: var(--text-mid); }
[data-theme="dark"] .form-privacy    { color: var(--text-light); }
[data-theme="dark"] .form-success p  { color: var(--text-mid); }
[data-theme="dark"] .footer-tagline  { color: rgba(255,255,255,0.6); }
[data-theme="dark"] .footer-organized { color: rgba(255,255,255,0.7); }
[data-theme="dark"] .coord-role  { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .coord-note  { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .hero-badge  { background: rgba(139,26,26,0.15); border-color: rgba(139,26,26,0.3); }
[data-theme="dark"] .pill-navy   { background: rgba(46,95,163,0.18); color: #7ea8e0; }
[data-theme="dark"] .pill-ruby   { background: rgba(178,34,34,0.18); color: #e07a7a; }
[data-theme="dark"] .pill-gold   { background: rgba(212,160,23,0.18); color: #d4a017; }

/* ─── NEW PROSPECTUS & IMAGES STYLES ─── */
.prospectus-section, .exam-section {
  padding: 6rem 1.5rem;
  background: white;
}
.prospectus-grid, .exam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.prospectus-img-card, .exam-img-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
}
.exam-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}
.exam-list {
  margin-top: 1.5rem;
  list-style: none;
}
.exam-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.exam-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ruby);
  font-weight: 900;
  font-size: 1.1rem;
}

.study-materials-img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
}

.bbbp-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.bbbp-cover-img {
  width: 80px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.2);
}
.bbbp-text-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Dark mode overrides for new sections */
[data-theme="dark"] .prospectus-section { background: #0f1c30; }
[data-theme="dark"] .exam-section { background: linear-gradient(180deg, #0d1423 0%, #0f1c30 100%); }
[data-theme="dark"] .prospectus-img-card, [data-theme="dark"] .exam-img-card, [data-theme="dark"] .study-materials-img {
  border-color: rgba(255,255,255,0.1);
}

/* ─── SLIDESHOW GALLERY ─── */
.gallery-section {
  padding: 4rem 1.5rem;
  background: var(--surface-light);
}
[data-theme="dark"] .gallery-section {
  background: var(--navy-base);
}
.slideshow-container {
  max-width: 1100px;
  position: relative;
  margin: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.slide {
  display: none;
}
.slide img {
  border-radius: var(--radius-lg);
  vertical-align: middle;
  object-fit: contain;
  max-height: 750px;
  width: 100%;
  background: #000;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.4);
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.active, .dot:hover {
  background-color: var(--ruby-base);
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* ==========================================================================
   Newspaper Section
   ========================================================================== */
.newspaper-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--surface-light);
}

.newspaper-collage {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 10px;
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
}

.newspaper-collage .newspaper-item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.newspaper-collage .newspaper-item:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.newspaper-collage .newspaper-item:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.newspaper-collage .newspaper-item:nth-child(4) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

@media (max-width: 768px) {
  .newspaper-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
  .newspaper-collage .newspaper-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  .newspaper-collage .newspaper-item:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
  .newspaper-collage .newspaper-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  .newspaper-collage .newspaper-item:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
  }
}

.newspaper-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--surface-white);
  padding: 8px;
}

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

.newspaper-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
  transition: filter 0.3s ease;
}

.newspaper-item img:hover {
  filter: brightness(0.9);
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from {transform: scale(0.95); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

