/* ==========================================================================
   THE NOBEL PRIZE & PAK-LINDAU PLATFORM
   Complete NobelPrize.org Master Editorial Design System
   ========================================================================== */

:root {
  --nobel-bg: #fbf9f5;
  --nobel-white: #ffffff;
  --nobel-text: #1a1a1a;
  --nobel-text-muted: #555555;
  --nobel-gold: #9d7827;
  --nobel-gold-light: #c59b27;
  --nobel-gold-bright: #e6b738;
  --nobel-teal: #0e3b43;
  --nobel-navy: #09202c;
  --nobel-navy-deep: #05141d;
  --nobel-blue-btn: #2d68c4;
  --nobel-blue-hover: #1b4b96;
  --nobel-border: #e6e2da;
  --nobel-border-dark: #223847;
  --nobel-card-bg: #f4f0e8;
  --pak-green: #00401A;
  --navy-dark: #09202c;
  --gold-accent: #9d7827;
  --gold-bright: #e6b738;
  --gold-dark: #7d5e1a;
  --pak-green-dark: #002811;
  --pak-green-soft: #eaf5ee;
  --border-light: #e6e2da;
  --text-muted: #555555;
  --text-dark: #1a1a1a;
  
  --font-serif: 'Crimson Pro', Georgia, serif;
  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-width: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--nobel-bg);
  color: var(--nobel-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP CLEAN NOBEL HEADER & NAVIGATION
   ========================================================================== */
.nobel-topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--nobel-border);
  padding: 16px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.nobel-brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.nobel-title-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--nobel-gold);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nobel-subtitle-edition {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--pak-green);
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2px;
}

.nobel-nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.nobel-nav-links {
  display: flex;
  list-style: none;
  gap: 22px;
  align-items: center;
}

.nobel-nav-link {
  font-size: 0.88rem;
  color: #2b2b2b;
  font-weight: 500;
  transition: var(--transition);
}

.nobel-nav-link:hover, .nobel-nav-link.active {
  color: var(--nobel-gold);
}

.nobel-nav-link.portal-pill {
  background: var(--pak-green);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.82rem;
}

.nobel-nav-link.portal-pill:hover {
  background: #002811;
  color: #ffffff;
}

.nobel-search-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  padding: 4px;
}

/* ==========================================================================
   MOVING / WAVING PAKISTAN FLAG COMPONENT
   ========================================================================== */
.flag-moving-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.flag-pole {
  width: 3.5px;
  height: 38px;
  background: linear-gradient(180deg, #d4af37 0%, #8c6d1f 50%, #d4af37 100%);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
  position: relative;
}

.flag-pole::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -3px;
  width: 9px;
  height: 9px;
  background: radial-gradient(circle, #ffe285 0%, #d4af37 80%);
  border-radius: 50%;
}

.flag-cloth {
  width: 50px;
  height: 30px;
  background-image: url('assets/pakistan-flag.svg');
  background-size: cover;
  background-position: center;
  border-radius: 0 2px 2px 0;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.3);
  transform-origin: left center;
  animation: flagWave 2.4s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
}

.flag-cloth::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 20%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(255, 255, 255, 0.3) 60%,
    rgba(0, 0, 0, 0.35) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: waveShadow 2.4s linear infinite;
  pointer-events: none;
}

@keyframes flagWave {
  0% { transform: perspective(300px) rotateY(0deg) skewY(0deg); }
  50% { transform: perspective(300px) rotateY(-6deg) skewY(-2deg); }
  100% { transform: perspective(300px) rotateY(6deg) skewY(2deg); }
}

@keyframes waveShadow {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* ==========================================================================
   EXPLORE PRIZES & LAUREATES NAVY TOOLBAR (Screenshot 1 Top)
   ========================================================================== */
.nobel-explore-navy-bar {
  background-color: var(--nobel-navy-deep);
  padding: 30px 0;
  color: #ffffff;
}

.nobel-explore-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--nobel-gold-bright);
  margin-bottom: 16px;
  font-weight: 400;
}

.nobel-explore-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.nobel-cat-tab {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.nobel-cat-tab:hover, .nobel-cat-tab.active {
  background: var(--nobel-gold-light);
  color: #000000;
  border-color: var(--nobel-gold-light);
}

.nobel-year-stepper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-left: 8px;
}

.nobel-stepper-btn {
  background: none;
  border: none;
  color: #ffffff;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: bold;
}

.nobel-stepper-val {
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.nobel-explore-submit-btn {
  background-color: var(--nobel-gold-light);
  color: #000000;
  border: none;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 2px;
  cursor: pointer;
  margin-left: 8px;
  transition: var(--transition);
}

.nobel-explore-submit-btn:hover {
  background-color: var(--nobel-gold-bright);
}

/* ==========================================================================
   PAK-LINDAU INTERACTION SLIDER & WELCOME SECTION (Replaces Nobel Minds)
   ========================================================================== */
.pak-lindau-interaction-section {
  padding: 30px 0 20px 0;
}

.pak-lindau-slider-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  height: 520px;
  background-color: #071e33;
}

.pak-lindau-slides-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.pak-lindau-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
  display: grid;
  grid-template-columns: 460px 1fr;
  z-index: 1;
}

.pak-lindau-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Left Column: Dedicated Editorial Information Pane */
.pak-slide-info-pane {
  background: linear-gradient(155deg, #071e33 0%, #0a2540 50%, #0d3154 100%);
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  z-index: 3;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.pak-slide-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pak-slide-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1.28;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
}

.pak-slide-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #d1dfec;
  margin-bottom: 18px;
}

.pak-slide-meta-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pak-meta-tag {
  font-size: 0.74rem;
  color: #b5d5f0;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pak-slide-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* Right Column: 100% Unobstructed Clean Delegation Photograph */
.pak-slide-photo-pane {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #051422;
  cursor: pointer;
}

.pak-delegation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.pak-slide-photo-pane:hover .pak-delegation-img {
  transform: scale(1.03);
}

.photo-floating-pill {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(7, 30, 51, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.photo-zoom-btn {
  background: transparent;
  border: none;
  color: #d4af37;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  line-height: 1;
}

.pak-btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #f39c12 100%);
  color: #0a2540;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pak-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
  color: #000000;
}

.pak-btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pak-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #ffffff;
  color: #ffffff;
}

.pak-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  background: rgba(10, 37, 64, 0.65);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.pak-slider-arrow:hover {
  background: #d4af37;
  color: #0a2540;
  border-color: #d4af37;
  transform: translateY(-50%) scale(1.08);
}

.pak-slider-prev {
  left: 480px;
}

.pak-slider-next {
  right: 18px;
}

.pak-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 42px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.pak-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.pak-dot.active {
  background: #d4af37;
  width: 28px;
  border-radius: 6px;
}

/* Welcome Box (Matches left side of screenshot) */
.welcome-pak-lindau-box {
  background: #ffffff;
  border: 1px solid #e2ebe5;
  border-radius: 6px;
  padding: 45px 50px;
  margin-top: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.welcome-kicker {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #1a221d;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.welcome-divider-bar {
  width: 50px;
  height: 3px;
  background: #004b23;
  margin-bottom: 20px;
  border-radius: 2px;
}

.welcome-main-heading {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  line-height: 1.35;
  color: #1a221d;
  font-weight: 600;
  margin: 0 0 18px 0;
}

.welcome-desc-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #4a5c52;
  margin: 0 0 30px 0;
}

.welcome-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.welcome-pillar-card {
  background: #f8faf9;
  border: 1px solid #e0ebe4;
  border-radius: 6px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.welcome-pillar-card:hover {
  transform: translateY(-2px);
  border-color: #004b23;
}

.pillar-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.pillar-info h5 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #004b23;
  margin: 0 0 6px 0;
}

.pillar-info p {
  font-size: 0.84rem;
  line-height: 1.5;
  color: #55685d;
  margin: 0;
}

@media (max-width: 960px) {
  .pak-lindau-slider-wrapper {
    height: auto;
    min-height: 600px;
  }
  .pak-lindau-slide {
    position: relative;
    display: none;
    grid-template-columns: 1fr;
    height: auto;
  }
  .pak-lindau-slide.active {
    display: grid;
    position: relative;
  }
  .pak-slide-photo-pane {
    height: 380px;
    order: 1;
  }
  .pak-slide-info-pane {
    order: 2;
    padding: 28px 22px 50px 22px;
    border-right: none;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }
  .pak-slide-title { font-size: 1.6rem; }
  .pak-slider-prev { left: 12px; top: 170px; }
  .pak-slider-next { right: 12px; top: 170px; }
  .pak-slider-dots { bottom: 16px; left: 22px; }
  .welcome-pak-lindau-box { padding: 30px 22px; }
  .welcome-main-heading { font-size: 1.5rem; }
  .welcome-pillars-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HERO SPLIT BLOCK (Screenshot 1 Original)
   ========================================================================== */
.nobel-hero-split-section {
  padding: 30px 0 50px 0;
}

.nobel-hero-split-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  min-height: 460px;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  overflow: hidden;
}

.nobel-hero-image-pane {
  position: relative;
  background-color: #000000;
}

.nobel-hero-image-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nobel-hero-text-pane {
  background-color: var(--nobel-teal);
  color: #ffffff;
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nobel-hero-text-pane h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 20px;
  color: #ffffff;
}

.nobel-hero-text-pane p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #d1e2e4;
  margin-bottom: 28px;
}

.nobel-btn-muted-pill {
  display: inline-block;
  align-self: flex-start;
  background: #a9bec4;
  color: #09202c;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  transition: var(--transition);
}

.nobel-btn-muted-pill:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   UPCOMING DIALOGUE BANNER (Screenshot 2)
   ========================================================================== */
.nobel-dialogue-section {
  padding: 20px 0 50px 0;
}

.nobel-dialogue-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--nobel-gold);
  margin-bottom: 24px;
  font-weight: 400;
}

.nobel-dialogue-banner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.nobel-dialogue-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.nobel-dialogue-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  max-width: 820px;
  padding: 0 24px;
}

.nobel-dialogue-date {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
  color: #e4eee7;
}

.nobel-dialogue-title {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.nobel-btn-blue {
  display: inline-block;
  background-color: var(--nobel-blue-btn);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.nobel-btn-blue:hover {
  background-color: var(--nobel-blue-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   GET INVOLVED — 10-TILE VIBRANT MAGAZINE GRID (Screenshot 2)
   ========================================================================== */
.nobel-getinvolved-section {
  padding: 60px 0;
}

.nobel-getinvolved-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.nobel-getinvolved-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.getinvolved-tile {
  min-height: 240px;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

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

.tile-pink {
  background: #c95173;
  color: #ffffff;
}

.tile-green {
  background: #5d9e50;
  color: #ffffff;
}

.tile-navy {
  background: var(--nobel-navy);
  color: #ffffff;
}

.tile-gold {
  background: #b58d34;
  color: #ffffff;
}

.tile-bg-img {
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.tile-bg-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.tile-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.tile-quote-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 600;
}

.tile-author-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-top: 10px;
}

.tile-kicker-small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 4px;
}

.tile-title-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.25;
}

.tile-arrow-link {
  font-size: 1.2rem;
  align-self: flex-end;
}

/* ==========================================================================
   CONNECT WITH US METRICS BAR (Screenshot 3)
   ========================================================================== */
.nobel-connect-section {
  padding: 50px 0;
  border-top: 1px solid var(--nobel-border);
}

.nobel-connect-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--nobel-gold);
  margin-bottom: 24px;
  font-weight: 400;
}

.nobel-connect-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.nobel-connect-metric-box {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  padding: 18px 20px;
  border-radius: 4px;
}

.nobel-connect-metric-box h6 {
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 6px;
  font-weight: 700;
}

.nobel-connect-metric-box .metric-count {
  font-size: 0.82rem;
  color: #777;
}

.nobel-emotion-banner {
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  background-color: #000;
}

.nobel-emotion-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   NEWSLETTER SIGNUP & PLAY AND LEARN GAMES (Screenshot 4)
   ========================================================================== */
.nobel-newsletter-section {
  padding: 50px 0;
  background-color: #f4f0e8;
  border-top: 1px solid var(--nobel-border);
  border-bottom: 1px solid var(--nobel-border);
}

.nobel-newsletter-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.nobel-newsletter-row h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 400;
}

.nobel-newsletter-row p {
  font-size: 0.95rem;
  color: #666;
}

.nobel-newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 8px;
}

.nobel-newsletter-input {
  flex-grow: 1;
  padding: 12px 18px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #ffffff;
}

.nobel-newsletter-btn {
  background-color: #a9bec4;
  color: #09202c;
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.nobel-newsletter-btn:hover {
  background-color: #09202c;
  color: #ffffff;
}

.nobel-consent-text {
  font-size: 0.75rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Play and Learn Games Grid */
.nobel-games-section {
  padding: 60px 0;
}

.nobel-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.nobel-game-card {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: pointer;
}

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

.nobel-game-thumb {
  height: 200px;
  background-color: #000;
  position: relative;
}

.nobel-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nobel-game-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nobel-game-body h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.nobel-game-body p {
  font-size: 0.88rem;
  color: var(--nobel-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   IN MEMORIAM 4-COLUMN HISTORIC TRIBUTES (Screenshot 5)
   ========================================================================== */
.nobel-memoriam-section {
  padding: 60px 0;
  border-top: 1px solid var(--nobel-border);
}

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

.nobel-memoriam-card {
  display: flex;
  flex-direction: column;
}

.nobel-memoriam-card h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 400;
}

.nobel-memoriam-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
  flex-grow: 1;
}

.nobel-memoriam-card a {
  font-size: 0.85rem;
  color: var(--nobel-blue-btn);
  font-weight: 600;
}

.nobel-memoriam-photo {
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 16px;
  background-color: #000;
  filter: grayscale(100%);
}

.nobel-memoriam-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   WHAT'S ON (3-Column Cards)
   ========================================================================== */
.nobel-whatson-section {
  padding: 50px 0;
}

.nobel-section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--nobel-gold);
  margin-bottom: 28px;
  font-weight: 400;
}

.nobel-whatson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.nobel-whatson-card {
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.nobel-whatson-card:hover {
  transform: translateY(-4px);
}

.nobel-whatson-photo-box {
  position: relative;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  background-color: #000000;
}

.nobel-whatson-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nobel-location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 16px 10px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
}

.nobel-location-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #d1d1d1;
  display: block;
  margin-bottom: 2px;
}

.nobel-card-photo-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #ffffff;
  line-height: 1.25;
}

.nobel-whatson-desc {
  font-size: 0.92rem;
  color: var(--nobel-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   EINSTEIN & ABDUS SALAM DISCOVERY SPLIT
   ========================================================================== */
.nobel-editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--nobel-border);
}

.nobel-editorial-text .kicker {
  font-size: 0.82rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

.nobel-editorial-text h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 18px;
  font-weight: 400;
}

.nobel-editorial-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.nobel-editorial-photo {
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: #000;
}

.nobel-editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   BIRTHDAY WIDGET & THE MAN BEHIND THE PRIZE
   ========================================================================== */
.nobel-birthday-widget-box {
  background-color: #f5f2ea;
  border-radius: 4px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  border: 1px solid var(--nobel-border);
}

.nobel-birthday-left h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 400;
  margin-bottom: 10px;
}

.nobel-birthday-left p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.nobel-birthday-form {
  display: flex;
  gap: 12px;
}

.nobel-birthday-input {
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  width: 220px;
  background: #ffffff;
}

.nobel-birthday-right img {
  border-radius: 4px;
  height: 180px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.nobel-birthday-caption {
  font-size: 0.75rem;
  color: #777;
  margin-top: 6px;
  line-height: 1.4;
}

/* The Man Behind the Prize Split Card */
.nobel-legacy-split-card {
  background-color: var(--nobel-navy);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 70px;
}

.nobel-legacy-img-box {
  height: 440px;
  background-color: #000;
}

.nobel-legacy-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nobel-legacy-text-box {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nobel-legacy-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  color: var(--nobel-gold-bright);
  margin-bottom: 20px;
  font-weight: 700;
}

.nobel-legacy-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: #dbe4ea;
  margin-bottom: 30px;
}

.nobel-btn-gold {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--nobel-gold-light);
  color: #000000;
  padding: 12px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 4px;
  transition: var(--transition);
}

.nobel-btn-gold:hover {
  background-color: var(--nobel-gold-bright);
  transform: translateY(-2px);
}

/* ==========================================================================
   NOBEL LAUREATES INTERVIEW TILES & VIDEO MODAL
   ========================================================================== */
.nobel-laureate-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

.nobel-laureate-card {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.nobel-card-media {
  height: 240px;
  position: relative;
  background: #000;
  overflow: hidden;
}

.nobel-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nobel-laureate-card:hover .nobel-card-media img {
  transform: scale(1.05);
}

.nobel-video-play-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #ff0000;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.nobel-card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nobel-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--nobel-text);
  margin-bottom: 4px;
}

.nobel-card-tag {
  font-size: 0.8rem;
  color: var(--nobel-gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.nobel-card-content p {
  font-size: 0.88rem;
  color: var(--nobel-text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}

/* ==========================================================================
   UNIVERSITIES & LEADERSHIP SECTION
   ========================================================================== */
.nobel-univ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.nobel-univ-card {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.nobel-univ-card:hover {
  transform: translateY(-4px);
  border-color: var(--pak-green);
  box-shadow: var(--shadow-md);
}

.nobel-univ-photo {
  height: 170px;
  position: relative;
  background: #000;
}

.nobel-univ-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nobel-univ-logo-pill {
  position: absolute;
  bottom: -20px;
  right: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
  border: 1.5px solid var(--nobel-gold);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nobel-univ-logo-pill img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nobel-univ-body {
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nobel-univ-body h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #1a1a1a;
  margin: 6px 0;
}

/* Leadership Executive Directorate */
.nobel-exec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 70px;
}

.nobel-exec-card {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.nobel-exec-card:hover {
  transform: translateY(-4px);
  border-color: var(--nobel-gold);
  box-shadow: var(--shadow-md);
}

.nobel-exec-img-box {
  height: 320px;
  position: relative;
  background-color: #09202c;
}

.nobel-exec-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.nobel-exec-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nobel-exec-body h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.nobel-exec-role {
  font-size: 0.85rem;
  color: var(--nobel-gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.nobel-exec-body p {
  font-size: 0.95rem;
  color: var(--nobel-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ==========================================================================
   NOBEL CLEAN 5-COLUMN FOOTER
   ========================================================================== */
.nobel-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--nobel-border);
  padding: 70px 0 30px 0;
}

.nobel-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 50px;
}

.nobel-footer-col h5 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.nobel-footer-col ul {
  list-style: none;
}

.nobel-footer-col ul li {
  margin-bottom: 10px;
}

.nobel-footer-col ul li a {
  font-size: 0.85rem;
  color: #555;
  transition: var(--transition);
}

.nobel-footer-col ul li a:hover {
  color: var(--nobel-gold);
}

.nobel-footer-bottom {
  border-top: 1px solid var(--nobel-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #777;
  flex-wrap: wrap;
  gap: 12px;
}

.nobel-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 4000;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

@media (max-width: 1000px) {
  .nobel-getinvolved-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .nobel-connect-grid,
  .nobel-memoriam-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nobel-hero-split-grid,
  .nobel-minds-box,
  .nobel-editorial-split,
  .nobel-birthday-widget-box,
  .nobel-legacy-split-card,
  .nobel-newsletter-row,
  .nobel-exec-grid {
    grid-template-columns: 1fr;
  }
  .nobel-whatson-grid,
  .nobel-games-grid,
  .nobel-laureate-video-grid,
  .nobel-univ-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nobel-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nobel-dialogue-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .nobel-getinvolved-grid,
  .nobel-whatson-grid,
  .nobel-games-grid,
  .nobel-memoriam-grid,
  .nobel-connect-grid,
  .nobel-laureate-video-grid,
  .nobel-univ-grid,
  .nobel-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SUBPAGES: PORTAL, APPLICATION FORM, ADMIN CRM, CHALLENGES & MEDIA
   ========================================================================== */

/* Subpage Header Compatibility */
.site-header {
  background: var(--nobel-navy);
  border-bottom: 1px solid var(--nobel-border-dark);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-nav-portal {
  background: var(--nobel-gold-light);
  color: #000000;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.btn-nav-portal:hover {
  background: var(--nobel-gold-bright);
}

/* Candidate Portal Styles */
.dash-wrapper {
  padding: 40px 0 80px 0;
}
.profile-banner {
  background: linear-gradient(135deg, var(--nobel-teal) 0%, var(--nobel-navy) 100%);
  color: #ffffff;
  padding: 32px 36px;
  border-radius: 6px;
  border-left: 5px solid var(--nobel-gold-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}
.portal-dash-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.portal-sidebar {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 6px;
  padding: 24px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.portal-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #4a4a4a;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
}
.portal-nav-item:hover, .portal-nav-item.active {
  background: #f4f0e8;
  color: var(--nobel-gold);
}
.portal-main-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.portal-card {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 6px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.portal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--nobel-border);
}
.portal-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #1a1a1a;
}

/* Document Readiness Checklist Grid */
.doc-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.doc-check-item {
  border: 1px solid var(--nobel-border);
  border-radius: 4px;
  padding: 16px;
  background: #fbf9f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.doc-check-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #222;
}
.doc-check-sub {
  font-size: 0.75rem;
  color: #777;
  margin-top: 2px;
}
.status-pill-verified {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.status-pill-pending {
  background: #fff8e1;
  color: #f57f17;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Application Form Styles (apply.html) */
.form-container-card {
  max-width: 840px;
  margin: 40px auto 80px auto;
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 6px;
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
}
.form-section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--nobel-teal);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e6e2da;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.92rem;
  background: #ffffff;
  color: #1a1a1a;
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--nobel-blue-btn);
  box-shadow: 0 0 0 3px rgba(45, 104, 196, 0.15);
}
.upload-dropzone {
  border: 2px dashed var(--nobel-gold-light);
  background: #fbf9f5;
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.upload-dropzone:hover {
  background: #f5f0e4;
}

/* Admin CRM Table (admin.html) */
.admin-wrapper {
  padding: 40px 0 80px 0;
}
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.admin-metric-card {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 6px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--nobel-gold-light);
}
.admin-metric-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--nobel-navy);
}
.admin-metric-lbl {
  font-size: 0.82rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}
.admin-table-box {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.admin-table-toolbar {
  padding: 18px 24px;
  background: #fbf9f5;
  border-bottom: 1px solid var(--nobel-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.admin-table th {
  background: var(--nobel-navy);
  color: #ffffff;
  padding: 14px 18px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.admin-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--nobel-border);
  font-size: 0.88rem;
  color: #333;
}
.admin-table tr:hover {
  background: #f9f7f2;
}

/* Science Challenges (challenges.html) */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 40px 0 80px 0;
}
.challenge-card {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--nobel-gold);
}
.challenge-img {
  height: 200px;
  background: #000;
}
.challenge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.challenge-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.challenge-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--nobel-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.challenge-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.challenge-body p {
  font-size: 0.88rem;
  color: var(--nobel-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* General Button Utilities */
.btn-gold {
  display: inline-block;
  background-color: var(--nobel-gold-light);
  color: #000000;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold:hover {
  background-color: var(--nobel-gold-bright);
}
.btn-primary-hero {
  display: inline-block;
  background-color: var(--nobel-blue-btn);
  color: #ffffff;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-hero:hover {
  background-color: var(--nobel-blue-hover);
}
.btn-primary {
  display: inline-block;
  background-color: var(--pak-green);
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  background-color: var(--pak-green-dark);
  color: #ffffff;
}

/* ==========================================================================
   COMMON SUBPAGE NAVIGATION & SECTION HEADINGS
   ========================================================================== */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}
.nav-link {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--nobel-gold-bright);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 38px;
  width: auto;
}
.flag-cloth-sm {
  width: 36px;
  height: 22px;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pak-green);
  margin-bottom: 8px;
}
.section-tag.gold {
  color: var(--nobel-gold-bright);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 400;
}
.section-desc {
  font-size: 1rem;
  color: var(--nobel-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   UNIVERSITY DIRECTORY CARDS (universities.html)
   ========================================================================== */
.univ-card {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.univ-card:hover {
  transform: translateY(-5px);
  border-color: var(--pak-green);
  box-shadow: var(--shadow-md);
}
.univ-card-photo {
  height: 180px;
  position: relative;
  background-color: #000000;
}
.univ-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.univ-logo-badge {
  position: absolute;
  bottom: -22px;
  right: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
  border: 2px solid var(--nobel-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.univ-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.univ-card-body {
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* ==========================================================================
   LAUREATES DIRECTORY & FILTER TOOLBAR (laureates.html)
   ========================================================================== */
.filter-toolbar {
  background: #ffffff;
  border: 1px solid var(--nobel-border);
  border-radius: 6px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  margin: -35px auto 40px auto;
  max-width: 1100px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.tab-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #55665c;
  background: #f7faf8;
  border: 1px solid var(--nobel-border);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--nobel-gold-light);
  color: #000000;
  border-color: var(--nobel-gold-light);
}
.laureate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

/* ==========================================================================
   PRINT MEDIA STYLES - CANDIDATE APPLICATION & DOSSIER PRINTING
   ========================================================================== */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 10pt !important;
  }

  .site-header,
  .site-footer,
  .admin-navbar,
  .step-indicator,
  .step-progress-track,
  .form-nav-bar,
  .field-help,
  .btn-nav-portal,
  .btn-gold,
  .btn-primary-hero,
  .btn-export-excel,
  .btn-export-pdf,
  .dossier-header button,
  .table-toolbar,
  .filter-toolbar {
    display: none !important;
  }

  .form-section {
    display: block !important;
    opacity: 1 !important;
    page-break-inside: avoid;
    margin-bottom: 20pt;
    border-bottom: 1pt solid #cccccc;
    padding-bottom: 14pt;
  }

  .field-input,
  .field-select,
  .field-textarea {
    border: 1pt solid #aaaaaa !important;
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: none !important;
  }

  .academic-table,
  .candidate-table {
    border-collapse: collapse !important;
    width: 100% !important;
  }

  .academic-table th,
  .academic-table td,
  .candidate-table th,
  .candidate-table td {
    border: 1pt solid #888888 !important;
    padding: 4pt 6pt !important;
    color: #000000 !important;
  }

  .dossier-card {
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ==========================================================================
   OFFICIAL CALL FOR APPLICATIONS FLYER SHOWCASE & LIGHTBOX
   ========================================================================== */
.nobel-flyer-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f7faf8 0%, #edf5f0 100%);
  border-top: 1px solid #dbe6df;
  border-bottom: 1px solid #dbe6df;
  position: relative;
}

.nobel-flyer-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 48px;
  align-items: center;
}

.nobel-flyer-poster-card {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 16px 36px rgba(0, 75, 35, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 75, 35, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.nobel-flyer-poster-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 75, 35, 0.2), 0 6px 16px rgba(0, 0, 0, 0.08);
}

.nobel-flyer-poster-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.nobel-flyer-poster-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.nobel-flyer-poster-card:hover .nobel-flyer-poster-img-wrap img {
  transform: scale(1.02);
}

.flyer-hover-zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 50, 24, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
  gap: 8px;
  backdrop-filter: blur(2px);
}

.nobel-flyer-poster-card:hover .flyer-hover-zoom-overlay {
  opacity: 1;
}

.flyer-hover-zoom-overlay span {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.flyer-poster-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.btn-flyer-dl {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #004b23;
  color: #ffffff !important;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 75, 35, 0.25);
}

.btn-flyer-dl:hover {
  background: #003618;
  transform: translateY(-1px);
}

.btn-flyer-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf3ed;
  color: #004b23;
  border: 1px solid #004b23;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-flyer-preview:hover {
  background: #d4e8da;
}

.nobel-flyer-info-pane {
  display: flex;
  flex-direction: column;
}

.flyer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #004b23;
  margin-bottom: 10px;
}

.flyer-main-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  font-weight: 400;
}

.flyer-lead-p {
  font-size: 1.02rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 22px;
}

.flyer-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.flyer-highlight-item {
  background: #ffffff;
  border: 1px solid #e0e9e4;
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.flyer-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.flyer-item-icon {
  font-size: 1.25rem;
}

.flyer-item-header h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #004b23;
  margin: 0;
}

.flyer-highlight-item p {
  font-size: 0.82rem;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
}

.flyer-bank-box {
  background: #fdfae8;
  border-left: 4px solid #d4af37;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: #3b3a36;
}

.flyer-bank-box code {
  background: #f4ecce;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
  color: #004b23;
}

.flyer-action-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Lightbox Modal */
.flyer-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.flyer-modal-backdrop.open {
  display: flex;
}

.flyer-modal-container {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 820px;
  width: 100%;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.flyer-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: #004b23;
  color: #ffffff;
}

.flyer-modal-header h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flyer-modal-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
  transition: transform 0.2s;
}

.flyer-modal-close-btn:hover {
  transform: scale(1.2);
}

.flyer-modal-body {
  overflow-y: auto;
  padding: 20px;
  text-align: center;
  background: #f8fbf9;
}

.flyer-modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .nobel-flyer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .flyer-highlights-grid {
    grid-template-columns: 1fr;
  }
  .flyer-main-title {
    font-size: 1.7rem;
  }
}



