/* ================================================
   TULA RAJ SUNUWAR — PORTFOLIO WEBSITE STYLES
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500;1,600&display=swap');

:root {
  --primary: #0066FF;
  --primary-dark: #0052CC;
  --primary-light: #EBF3FF;
  --navy: #001840;
  --navy-light: #0A2559;
  --gold: #C9A227;
  --gold-light: #FDF6E0;
  --text-dark: #0F1A2E;
  --text-mid: #4A5568;
  --text-light: #8A9BB2;
  --bg-white: #FFFFFF;
  --bg-light: #F7F9FC;
  --bg-gray: #EEF2F8;
  --border: #E2E8F0;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ========== PROGRESS BAR ========== */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), #60A5FA, var(--gold));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ========== NAVIGATION ========== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 32px rgba(0, 26, 78, 0.10);
  padding: 14px 0;
}

#navbar.scrolled .nav-logo-text {
  color: var(--navy) !important;
}

#navbar.scrolled .nav-logo-sub {
  color: var(--text-mid) !important;
}

#navbar.scrolled .nav-link {
  color: var(--text-dark) !important;
}

#navbar.scrolled .nav-link:hover {
  color: var(--primary) !important;
}

#navbar.scrolled .hamburger-bar {
  background: var(--text-dark) !important;
}

#navbar.scrolled .nav-contact-btn {
  border-color: var(--primary);
  color: var(--primary);
}

#navbar.scrolled .nav-contact-btn:hover {
  background: var(--primary);
  color: white;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.nav-logo>div {
  display: flex;
  flex-direction: column;
}

.nav-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-img-footer {
  width: 48px;
  height: 48px;
  opacity: 0.85;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s ease;
  margin-bottom: 3px;
}

.nav-logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.825rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary) !important;
  background: rgba(0, 102, 255, 0.08);
}

.nav-link.active {
  color: var(--primary) !important;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 26, 78, 0.16);
  padding: 10px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 6px);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-dropdown-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.nav-contact-btn {
  font-size: 0.825rem;
  font-weight: 600;
  color: white;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}

.nav-contact-btn:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
/* ========== MOBILE MENU ========== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 102, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.mobile-nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  max-height: 82vh;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 0 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s;
}

.mobile-nav-links::-webkit-scrollbar {
  display: none;
}

.mobile-menu-overlay.open .mobile-nav-links {
  opacity: 1;
  transform: translateY(0);
}

/* Accordion groups */
.mobile-nav-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-group:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-group-toggle {
  background: none;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.mobile-nav-group-toggle:hover {
  color: white;
}

.mobile-nav-group.open .mobile-nav-group-toggle {
  color: white;
}

.mobile-nav-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
}

.mobile-nav-group.open .mobile-nav-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Sub-link panel */
.mobile-nav-sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-group.open .mobile-nav-sub {
  max-height: 260px;
}

.mobile-nav-sub-inner {
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
}

.mobile-nav-sub-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  padding: 7px 0 7px 14px;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  display: block;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mobile-nav-sub-link:hover {
  color: rgba(255, 255, 255, 0.9);
  border-left-color: var(--primary);
}

/* Direct links */
.mobile-nav-direct {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: block;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.mobile-nav-direct:hover {
  color: white;
}

.mobile-nav-contact {
  color: var(--primary) !important;
  border-bottom: none !important;
}

.mobile-nav-contact:hover {
  color: #60A5FA !important;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../image/hero-bg.jpeg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 12s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 24, 64, 0.94) 0%,
      rgba(0, 36, 96, 0.82) 40%,
      rgba(0, 102, 255, 0.35) 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: 80px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  min-height: 100vh;
}

/* Hero left text column */
.hero-text {
  flex: 0 0 55%;
  max-width: 640px;
  padding-bottom: 80px;
  z-index: 999;
}

/* Hero right column — full-height person PNG */
.hero-person {
  flex: 0 0 42%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  pointer-events: none;
}

.hero-person-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: radial-gradient(ellipse at center bottom, rgba(0, 102, 255, 0.45) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-person-img {
  position: relative;
  z-index: 1;
  display: block;
  height: auto;
  max-height: 960px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 40px 80px rgba(0, 26, 78, 0.55));
  animation: heroPersonFadeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

@keyframes heroPersonFadeIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile — show person image behind overlay */
@media (max-width: 900px) {

  .nav-logo-img{
    height: 40px;
    width: 40px;
  }

  .nav-logo-text{
    font-size: 1.15rem
  }
  .nav-logo-sub{
    font-size: 0.45rem
  }

  .hero-overlay{
    z-index: 2;
  }
  .hero-grid-pattern{
    z-index: 4;
  }
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 130px;
    min-height: auto;
  }
  .hero-text {
    flex: none;
    max-width: 100%;
    padding-bottom: 48px;
    position: relative;
    z-index: 9;
  }
  .hero-person {
    display: flex;
    position: absolute;
    right: -10px;
    bottom: -200px;
    top: 0;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0.85;
  }
  .hero-person-img {
    max-height: 80vh;
    width: auto;
  }
}




.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  animation: fadeInDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-eyebrow .flag {
  font-size: 1rem;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-name .highlight {
  display: block;
  background: linear-gradient(135deg, #60A5FA, #3B82F6, #0066FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-tagline strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badge i {
  font-size: 0.85rem;
  color: #60A5FA;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(0, 102, 255, 0.45);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.55);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 15px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1s ease 1s both;
}

.scroll-arrow {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    top: 8px;
    opacity: 1;
  }

  50% {
    top: 18px;
    opacity: 0.4;
  }
}

/* ========== SECTIONS COMMON ========== */
.section {
  padding: 110px 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-dark {
  background: var(--navy);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-sm {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title-white {
  color: white;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 620px;
}

.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  border-radius: 2px;
  margin: 20px 0;
}

/* ========== ABOUT SECTION ========== */
.about-image-frame {
  position: relative;
  max-width: 460px;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 3px solid var(--primary);
  border-radius: 20px;
  opacity: 0.5;
  z-index: 0;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  background: var(--bg-gray);
  border-radius: 20px;
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 32px 64px rgba(0, 26, 78, 0.18);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  z-index: 3;
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
  text-align: center;
  min-width: 150px;
}

.about-floating-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.about-floating-card .text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-top: 4px;
}

.quote-block {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.65;
  padding: 28px 32px;
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  border-radius: 0 16px 16px 0;
  margin: 32px 0;
}

.quote-block::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.25;
  position: absolute;
  top: -10px;
  left: 8px;
  line-height: 1;
  font-style: normal;
}

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.stat-item {
  background: white;
  padding: 44px 28px;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== EXPERTISE CARDS ========== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.expertise-card {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), #60A5FA);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 26, 78, 0.12);
}

.expertise-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
  transition: var(--transition);
  color: var(--primary);
}

.expertise-card:hover .expertise-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.expertise-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.expertise-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

.expertise-card:hover .read-more {
  gap: 10px;
}

/* ========== HARVARD FEATURE ========== */
.harvard-feature {
  background: var(--navy);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.harvard-feature::before {
  content: 'HARVARD';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 18vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.harvard-content {
  position: relative;
  z-index: 1;
  padding: 70px 72px;
}

.harvard-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.2);
  border: 1px solid rgba(0, 102, 255, 0.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 24px;
}

.harvard-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.harvard-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  max-width: 500px;
}

.harvard-content .btn-primary {
  margin-top: 36px;
}

.harvard-image-side {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=800&q=85&auto=format&fit=crop') center/cover;
  min-height: 420px;
  position: relative;
}

.harvard-image-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, rgba(0, 102, 255, 0.1) 100%);
}

.timeline-entry {
  position: relative;
  padding-bottom: 44px;
}

.timeline-entry:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.3);
  flex-shrink: 0;
}

.timeline-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}

.timeline-dot.current {
  background: var(--primary);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 102, 255, 0.1);
  }
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-entry h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.timeline-entry .org {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.timeline-entry p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 8px;
}

/* ========== PUBLICATIONS ========== */
.pub-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pub-card {
  background: white;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
}

.pub-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.1);
  transform: translateX(4px);
}

.pub-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  min-width: 60px;
}

.pub-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.pub-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 8px;
}

.pub-meta {
  font-size: 0.82rem;
  color: var(--text-mid);
}

.pub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--primary);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

.pub-link:hover {
  background: var(--primary);
  color: white;
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 30px;
  }

  .pub-card .pub-link {
    margin-top: 15px;
  }
}

/* ========== AWARDS ========== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.award-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.award-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--primary));
  transition: width 0.4s ease;
}

.award-card:hover::after {
  width: 100%;
}

.award-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.award-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.award-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.35;
}

.award-card p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ========== GALLERY PREVIEW ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item.span-2 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 24, 64, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ========== BLOG CARDS ========== */
.full-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 26, 78, 0.12);
}

.blog-thumb {
  height: 200px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.07);
}

.blog-body {
  padding: 28px;
}

.blog-tag {
  display: inline-flex;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.77rem;
  color: var(--text-light);
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

/* ========== CONTACT SECTION ========== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--primary);
  border-radius: 24px;
  padding: 48px 44px;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
}

.contact-info-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.contact-info-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.8;
  position: relative;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: 0.88rem;
}

.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 2px;
}

.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 48px 44px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all 0.3s ease;
  outline: none;
  resize: vertical;
}

.form-input:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-input::placeholder {
  color: var(--text-light);
}

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 160px 0 90px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 40%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .label {
  color: #60A5FA;
}

.page-hero .label::before {
  background: #60A5FA;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
}

.breadcrumb .current {
  color: rgba(255, 255, 255, 0.9);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
}

.footer-top {
  padding: 70px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo-text {
  font-size: 1.4rem;
  color: white;
}

.footer-brand .nav-logo-sub {
  color: rgba(255, 255, 255, 0.45);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 16px;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
}

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

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* ========== BACK TO TOP ========== */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
  z-index: 500;
  font-size: 1rem;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 102, 255, 0.5);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

.delay-6 {
  transition-delay: 0.6s !important;
}

/* ========== UTILITY ========== */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-primary {
  background: var(--primary);
}

.bg-navy {
  background: var(--navy);
}

.text-white {
  color: white;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-8 {
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

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

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-12 {
  margin-top: 48px;
}

.mt-16 {
  margin-top: 64px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-12 {
  margin-bottom: 48px;
}

.mb-16 {
  margin-bottom: 64px;
}

.text-center {
  text-align: center;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.inline-flex {
  display: inline-flex;
}

/* Tag pills */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-gray);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.tag-blue {
  background: var(--primary-light);
  color: var(--primary);
  border-color: transparent;
}

.tag-gold {
  background: var(--gold-light);
  color: #92700A;
  border-color: transparent;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: repeat(2, 220px);
  }

  .harvard-content {
    padding: 50px 48px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }


}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .container,
  .container-sm {
    padding: 0 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-name {
    font-size: 2.8rem;
  }

  .hero-badges {
    gap: 6px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  .hero-stat-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-size: 1.6rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.span-2 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .harvard-content {
    padding: 40px 32px;
  }

  .harvard-image-side {
    min-height: 240px;
  }

  .about-image-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-floating-card {
    bottom: -12px;
    right: -8px;
  }

  .footer-top {
    padding: 50px 0 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-top: 20px;
  }

  .pub-card {
    grid-template-columns: 1fr;
  }

  .pub-year {
    display: none;
  }

  .pub-link {
    justify-self: start;
  }

  .page-hero {
    padding: 130px 0 70px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 36px 28px;
  }

  /* Harvard feature */
  .harvard-feature>div {
    grid-template-columns: 1fr !important;
  }

  /* Stats */
  .stat-item {
    padding: 32px 20px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-grid>*:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid>*:last-child {
    grid-column: 1 / -1;
  }

  /* Timeline */
  .timeline {
    padding-left: 24px;
  }

  .timeline-dot {
    left: -24px;
  }

  /* Profile grid on about page */
  .profile-grid {
    grid-template-columns: 1fr !important;
  }

  /* CV sidebar */
  [style*="grid-template-columns:280px"] {
    grid-template-columns: 1fr !important;
  }

  .cv-sidebar {
    position: static !important;
  }

  /* Contact page */
  .contact-page-grid {
    grid-template-columns: 1fr !important;
  }

  /* Blog featured */
  .featured-blog {
    grid-template-columns: 1fr !important;
  }

  .featured-blog-img {
    min-height: 220px;
  }

  /* Media gallery */
  .media-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  /* Pub card */
  .pub-card {
    display: block !important;
  }

  /* Section headers flex */
  .section-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }

  /* Advocacy / media page 2-col content grids */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* 3-col grids on media pages */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* 2-col media nav */
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Highlight quote padding */
  .highlight-quote {
    padding: 36px 28px;
  }

  /* CV sidebar nav — horizontal scrollable row */
  .cv-sidebar {
    display: none;
  }

  .cv-nav-links-wrap {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }

  .cv-nav-links-wrap::-webkit-scrollbar {
    display: none;
  }

  .cv-nav-links-wrap .cv-nav-link {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  /* Contact card in cv sidebar */
  .cv-contact-card {
    display: none;
  }

  /* stat strip */
  .stat-strip {
    grid-template-columns: 1fr 1fr !important;
  }

  .strip-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* news page items */
  .news-card-img {
    aspect-ratio: 16/9;
  }

  /* video cards */
  .video-card {
    break-inside: avoid;
  }

  /* blog grid */
  .full-blog-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  /* Personal info grid on cv */
  [style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .container,
  .container-sm {
    padding: 0 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-name {
    font-size: 2.4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.span-2 {
    grid-column: span 2;
  }

  .media-gallery-grid {
    grid-template-columns: 1fr;
  }

  .media-gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-stat-row {
    gap: 16px;
  }

  .hero-stat-num {
    font-size: 1.4rem;
  }

  /* Harvard hero stats */
  .h-stat {
    padding: 16px 12px;
  }

  .h-stat-num {
    font-size: 1.6rem;
  }

  /* Nav logo sub hide on very small */
  .nav-logo-sub {
    display: block;
  }

  .nav-logo-text {
    font-size: 1rem;
  }

  /* Quote block */
  .quote-block {
    font-size: 1.2rem;
    padding: 20px 20px 20px 24px;
  }

  /* Awards grid */
  .awards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Newsletter input */
  .newsletter-input {
    flex-direction: column;
  }

  .newsletter-input button {
    width: 100%;
  }

  /* Video grid */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* 2-col grids */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Highlight quote */
  .highlight-quote {
    padding: 28px 20px;
  }

  /* CV personal info */
  [style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Adv point icon size */
  .adv-point {
    gap: 14px;
  }



  /* Related card stacking */
  .related-adv-card {
    flex-direction: column;
    gap: 12px;
  }

  .related-adv-icon {
    width: 44px;
    height: 44px;
  }

  /* Strip stats */
  .stat-strip {
    grid-template-columns: 1fr !important;
  }

  .strip-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-right: none !important;
  }
}


/* ========== PAGE: INDEX (HOME) ========== */
.hero-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  color: rgba(255, 255, 255, 0.9);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.hero-stat-txt {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 4px;
}

.section-header {
  margin-bottom: 64px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

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

.membership-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-light);
  transition: all 0.3s ease;
}

.membership-badge:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.membership-badge i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.membership-badge span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Quote section */
.philosophy-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  text-align: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.big-quote::before {
  content: '\201C';
  font-size: 10rem;
  color: rgba(0, 102, 255, 0.2);
  position: absolute;
  top: -60px;
  left: -40px;
  line-height: 1;
  font-style: normal;
}

.big-quote-author {
  margin-top: 28px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* News cards */
.news-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.news-item:last-child {
  border-bottom: none;
}

.news-source {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.news-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 4px;
}

.news-item h4 a:hover {
  color: var(--primary);
}

.news-date {
  font-size: 0.77rem;
  color: var(--text-light);
}

.news-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ========== PAGE: ABOUT ========== */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.profile-sidebar {}

.profile-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 26, 78, 0.12);
  border: 1px solid var(--border);
}

.profile-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.profile-info {
  padding: 28px;
}

.profile-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.profile-info .role {
  font-size: 0.83rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.profile-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-mid);
}

.profile-detail:last-child {
  border-bottom: none;
}

.profile-detail i {
  width: 20px;
  color: var(--primary);
  font-size: 0.9rem;
}

.download-cv-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  margin-top: 20px;
  transition: var(--transition);
}

.download-cv-btn:hover {
  background: var(--primary-dark);
}

.bio-section {
  margin-bottom: 60px;
}

.bio-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bio-section h3 .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.bio-section p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.education-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.education-table th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 10px 16px;
  text-align: left;
  background: var(--bg-gray);
  border-radius: 0;
}

.education-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  vertical-align: top;
}

.education-table tr:last-child td {
  border-bottom: none;
}

.education-table td:first-child {
  font-weight: 700;
  color: var(--text-dark);
}

.edu-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 4px;
}

.pillar-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
}

.pillar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ========== PAGE: ADVOCACY ========== */
.adv-tab-nav {
  display: flex;
  gap: 8px;
  background: white;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.adv-tab {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: none;
}

.adv-tab.active,
.adv-tab:hover {
  background: var(--primary);
  color: white;
}

.adv-block {
  display: none;
}

.adv-block.active {
  display: block;
}

.adv-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 32px;
}

.initiative-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.initiative-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.1);
  transform: translateY(-4px);
}

.initiative-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.initiative-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ========== PAGE: AWARDS ========== */
.award-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5D46A;
  margin-bottom: 24px;
}

.full-award-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  transition: var(--transition);
}

.full-award-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.12);
  transform: translateX(6px);
}

.award-emoji {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.full-award-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.full-award-card .issuer {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.full-award-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.full-award-card .year-badge {
  display: inline-flex;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--gold-light);
  color: #92700A;
  margin-top: 10px;
}

.scholarship-feature {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 24px;
  padding: 56px;
  color: white;
  position: relative;
  overflow: hidden;
}

.scholarship-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.scholarship-feature-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ========== PAGE: BLOG ========== */

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

.full-blog-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.full-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 26, 78, 0.1);
}

.full-blog-thumb {
  height: 210px;
  overflow: hidden;
}

.full-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.full-blog-card:hover .full-blog-thumb img {
  transform: scale(1.06);
}

.full-blog-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin: 10px 0;
}

.full-blog-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}

.full-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.full-blog-meta .date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.3s ease;
}

.full-blog-card:hover .read-more-link {
  gap: 9px;
}

.featured-blog {
  background: var(--navy);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.featured-blog-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-blog-img {
  overflow: hidden;
  position: relative;
}

.featured-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.featured-blog-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy), transparent);
  z-index: 1;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 24, 64, 0.6);
  z-index: 2;
}

.coming-soon-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========== PAGE: CONTACT ========== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-left {}

.big-contact-info {
  background: var(--navy);
  border-radius: 24px;
  padding: 44px;
  color: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.big-contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.big-contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  position: relative;
}

.big-contact-info p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  position: relative;
  margin-bottom: 32px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-row-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3px;
}

.contact-row-value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.contact-row-value a {
  color: inherit;
}

.contact-row-value a:hover {
  color: #60A5FA;
}

.social-connect-box {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
}

.social-connect-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
  margin-bottom: 12px;
  text-decoration: none;
}

.social-btn:last-child {
  margin-bottom: 0;
}

.social-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.social-btn .soc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.social-btn .soc-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.social-btn .soc-handle {
  font-size: 0.78rem;
  color: var(--text-mid);
}

.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.contact-form-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-wrapper p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  margin-top: 4px;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 102, 255, 0.35);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 12px;
  display: none;
}

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

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

@media(max-width:768px) {
  .featured-blog-content {
    padding: 30px 24px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .big-contact-info {
    padding: 32px 24px;
  }
}

/* ========== PAGE: CV ========== */
.cv-section {
  margin-bottom: 64px;
}

.cv-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cv-section-title i {
  color: var(--primary);
  font-size: 1.1rem;
}

.cv-entry {
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: var(--transition);
}

.cv-entry:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.08);
}

.cv-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.cv-entry h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cv-entry .institution {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.cv-entry .date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-gray);
  color: var(--text-mid);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.cv-entry ul {
  padding-left: 16px;
  margin-top: 8px;
}

.cv-entry ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 3px 0;
  position: relative;
  padding-left: 12px;
}

.cv-entry ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.training-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.training-row:last-child {
  border-bottom: none;
}

.training-row:hover {
  background: var(--bg-light);
}

.training-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.4;
  min-width: 28px;
}

.training-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.training-org {
  font-size: 0.8rem;
  color: var(--text-mid);
}

.training-date {
  font-size: 0.77rem;
  color: var(--text-light);
  text-align: right;
  white-space: nowrap;
}

.cv-sidebar {
  position: sticky;
  top: 100px;
}

.cv-nav-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cv-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.cv-nav-link:hover,
.cv-nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
}

.cv-nav-link i {
  width: 16px;
  font-size: 0.85rem;
}

.cv-nav-links-wrap {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.cv-nav-links-wrap::-webkit-scrollbar {
  width: 4px;
}

.cv-nav-links-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.cv-nav-links-wrap::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.ref-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}

.ref-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.ref-card .ref-role {
  font-size: 0.83rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.ref-card a {
  font-size: 0.85rem;
  color: var(--text-mid);
}

.ref-card a:hover {
  color: var(--primary);
}

@media(max-width:768px) {

  .scholarship-feature {
    padding: 25px;
  }

  .scholarship-feature-content {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .full-award-card {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .cv-nav-card {
    padding: 18px 16px;
  }

  .cv-nav-links-wrap {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cv-nav-links-wrap::-webkit-scrollbar {
    display: none;
  }

  .cv-nav-links-wrap .cv-nav-link {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 8px 14px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 50px;
  }

  .cv-nav-links-wrap .cv-nav-link i {
    display: none;
  }
}

/* ========== PAGE: GALLERY ========== */

.gf-btn:hover,
.gf-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 24, 64, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
}

.gallery-item-caption span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-top: 3px;
}

/* Lightbox (gallery page) */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--primary);
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.88rem;
  text-align: center;
  max-width: 500px;
}

@media(max-width:900px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media(max-width:560px) {
  .gallery-masonry {
    columns: 1;
  }
}

/* ========== PAGE: HARVARD ========== */
.harvard-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.harvard-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=1920&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.harvard-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 24, 64, 0.95), rgba(0, 102, 255, 0.4));
}

.harvard-hero::after {
  content: 'HARVARD';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.h-stat-warpper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 700px;
  animation: fadeInUp 1s 0.45s both;
}

.h-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.h-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.h-stat-lab {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

.journey-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.journey-step:last-child {
  border-bottom: none;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
}

.journey-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.journey-step p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.takeaway-card {
  background: var(--primary-light);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 102, 255, 0.15);
}

.takeaway-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.takeaway-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.milestone-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ========== PAGES: ADVOCACY SUB-PAGES (indigenous-rights, social-justice, un-commission, community-engagement) ========== */
/* Shared adv-point styles (extended version used in sub-pages) */
.adv-point-icon {
  transition: var(--transition);
  width: 40px;
  height: 40px;
  font-size: 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

}

.adv-point:hover .adv-point-icon {
  background: var(--primary);
  color: white;
}

.related-adv-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.related-adv-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.1);
  transform: translateY(-4px);
}

.related-adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.related-adv-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.related-adv-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.related-adv-card a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
}

.strip-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-stat:last-child {
  border-right: none;
}

.strip-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.strip-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.highlight-quote {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 24px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}

.highlight-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.highlight-quote-content {
  position: relative;
  z-index: 1;
}

.personal-reflection-label {
  color: #60A5FA;
  margin-bottom: 20px;
}

.personal-reflection-label span {
  background: #60A5FA;
}

.highlight-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  margin-bottom: 28px;
}

.highlight-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.highlight-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

.highlight-quote-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.highlight-quote-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 4px 0 0;
}

@media(max-width:768px) {

  .highlight-quote {
    padding: 32px 20px
  }

  .highlight-quote-avatar {
    display: none;
  }

  .h-stat-warpper {
    grid-template-columns: repeat(2, 1fr) !important;
    margin-bottom: 50px;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .strip-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .strip-stat:last-child,
  .strip-stat:nth-child(even) {
    border-right: none;
  }

  .related-adv-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========== PAGE: UN-COMMISSION (extra styles) ========== */
.intl-org-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  transition: var(--transition);
}

.intl-org-badge:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.intl-org-badge .org-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.intl-org-badge .org-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.intl-org-badge .org-role {
  font-size: 0.75rem;
  color: var(--text-mid);
}

/* ========== PAGE: MEDIA ========== */
.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}

.media-gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.media-gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 1/2;
}

.media-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-gallery-item:hover img {
  transform: scale(1.08);
}

.media-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 24, 64, 0.75), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.media-gallery-item:hover .media-gallery-overlay {
  opacity: 1;
}

.media-gallery-caption {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

.media-gallery-expand {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-gallery-item:hover .media-gallery-expand {
  opacity: 1;
}

.video-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-thumb img {
  opacity: 0.9;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-body {
  padding: 24px;
}

.video-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.video-body p {
  font-size: 0.83rem;
  color: var(--text-mid);
}

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.news-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.08);
}

.news-card-header {
  padding: 24px 24px 0;
}

.news-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.news-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.news-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-card-footer .date {
  font-size: 0.77rem;
  color: var(--text-light);
}

/* ========== PAGE: NEWS ========== */
.news-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}

.news-card-body p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}

.news-card-footer-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.news-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.news-read-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Featured news */
.featured-news {
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  margin-bottom: 60px;
}

.featured-news-img {
  overflow: hidden;
}

.featured-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-news-body {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-news-body .label {
  color: #60A5FA;
}

.featured-news-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: white;
  line-height: 1.4;
  margin: 14px 0;
}

.featured-news-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.featured-news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.featured-news-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
}

.featured-news-link:hover {
  background: #0055dd;
}

/* Press logos */
.press-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.press-logo {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: white;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

@media(max-width:768px) {
  .featured-news {
    grid-template-columns: 1fr;
  }

  .featured-news-body {
    padding: 28px;
  }
}

/* ========== PAGE: RESEARCH ========== */
.research-area-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.research-area-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.10);
  transform: translateY(-6px);
}

.research-area-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

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

.research-area-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.research-area-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.big-pub-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  transition: var(--transition);
}

.big-pub-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 48px rgba(0, 102, 255, 0.1);
}

.big-pub-card .pub-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.big-pub-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 14px;
}

.big-pub-card .authors {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.big-pub-card .journal {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}

.big-pub-card p.abstract {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 16px;
}

.collab-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.collab-card:hover {
  border-color: var(--primary);
  transform: translateX(6px);
}

.collab-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.collab-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.collab-card p {
  font-size: 0.83rem;
  color: var(--text-mid);
}

/* ========== PAGE: VIDEOS ========== */
.video-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.12);
  transform: translateY(-4px);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 24, 64, 0.4);
}

.play-circle {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  transition: var(--transition);
  padding-left: 4px;
}

.video-card:hover .play-circle {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.72);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.video-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.video-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.77rem;
  color: var(--text-light);
}

.video-meta i {
  font-size: 0.65rem;
}

.featured-video {
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  margin-bottom: 60px;
}

.featured-video-thumb {
  position: relative;
  overflow: hidden;
}

.featured-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 24, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-play {
  width: 72px;
  height: 72px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  padding-left: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.featured-play:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.08);
}

.featured-video-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-video-body .label {
  color: #60A5FA;
}

.featured-video-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: white;
  line-height: 1.4;
  margin: 14px 0;
}

.featured-video-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.featured-video-body .video-meta {
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
}

@media(max-width:768px) {
  .featured-video {
    grid-template-columns: 1fr;
  }

  .featured-video-body {
    padding: 28px;
  }
}