/* ============================================================
   Skills Gap Analysis Nepal — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #1a3a5c;
  --primary-light: #2355842a;
  --accent:        #2e86c1;
  --accent-hover:  #1a6fa8;
  --secondary:     #e67e22;
  --text-dark:     #1a1a2e;
  --text-body:     #4a4a68;
  --text-muted:    #7a7a9a;
  --border:        #e0e4ee;
  --bg-light:      #f7f8fc;
  --bg-white:      #ffffff;
  --bg-section:    #f0f3f8;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.10);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --font-main:     'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-heading:  'Inter', 'Segoe UI', system-ui, sans-serif;
  --transition:    all 0.25s ease;
  --max-width:     1200px;
  --header-h:      70px;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 0; }

/* ---------- Utilities ---------- */
.container {
  /*max-width: var(--max-width);*/
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad  { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center  { text-align: center; }
.text-muted   { color: var(--text-muted); }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-8        { gap: 8px; }
.gap-16       { gap: 16px; }
.gap-24       { gap: 24px; }

/* ---------- Section Header ---------- */
.section-header {
  margin-bottom: 48px;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-header h2 {
  margin-bottom: 12px;
  color: #0f4c81;
  line-height: 1;
  font-weight: 600;
  font-size: 1.5em;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
}
.section-header.text-center p {
  margin: 0 auto;
}
.divider-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 0;
}
.divider-line.center { margin: 16px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-sm { padding: 8px 20px; font-size: 0.82rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-icon { padding: 10px; border-radius: 50%; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
#site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; fill: #fff; }
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}
.logo-text span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-link .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 0.85rem;
  color: var(--text-body);
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 24px;
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  padding: 16px 0 24px;
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--bg-light);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--primary); background: var(--bg-light); }
.mobile-submenu { display: none; background: var(--bg-light); }
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  display: block;
  padding: 10px 36px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-submenu a:hover { color: var(--primary); }
.mobile-menu-cta { padding: 16px 24px 0; display: flex; flex-direction: column; gap: 10px; }

/* Page offset for fixed header */
.page-content { padding-top: var(--header-h); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 45%, #164070 100%);
  opacity: 0.92;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-content {
  position: relative;
  z-index: 2;
  /*padding: 80px 0;*/
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge span.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 600;
}
.hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.65);
}
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .num {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Illustration Card */
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-main-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
}
.hc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hc-title { color: #fff; font-size: 0.9rem; font-weight: 600; }
.hc-badge {
  background: #27ae60;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.hc-chart { margin-bottom: 20px; }
.hc-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.hc-bar-label { width: 80px; flex-shrink: 0; }
.hc-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.hc-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--accent);
}
.hc-bar-fill.orange { background: var(--secondary); }
.hc-bar-fill.green  { background: #27ae60; }
.hc-bar-fill.teal   { background: #16a085; }
.hc-bar-pct { width: 32px; text-align: right; color: rgba(255,255,255,0.55); }
.hc-footer { display: flex; justify-content: space-between; align-items: center; }
.hc-label-small { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.hc-pulse {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #27ae60;
  font-weight: 600;
}
.hc-pulse .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #27ae60;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Floating mini cards */
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float-card 3.5s ease-in-out infinite;
}
.hero-float-card.card-1 {
  bottom: -20px;
  left: -24px;
  animation-delay: 0s;
}
.hero-float-card.card-2 {
  top: -20px;
  right: -24px;
  animation-delay: 1.2s;
}
.hero-float-card .fc-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-card.card-1 .fc-icon { background: #fef3e8; }
.hero-float-card.card-2 .fc-icon { background: #eaf4ff; }
.fc-sub { font-size: 0.68rem; font-weight: 400; color: var(--text-muted); }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   QUICK LINKS BAND
   ============================================================ */
.quick-links-band {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.quick-links-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ql-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.ql-item:last-child { border-right: none; }
.ql-item:hover { background: var(--bg-light); }
.ql-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.ql-item:hover .ql-icon { background: var(--primary); }
.ql-icon svg { width: 20px; height: 20px; stroke: var(--primary); transition: var(--transition); }
.ql-item:hover .ql-icon svg { stroke: #fff; }
.ql-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.ql-text span   { font-size: 0.78rem; color: var(--text-muted); line-height:14px; display:block; }
.ql-arrow { margin-left: auto; color: var(--text-muted); transition: var(--transition); }
.ql-item:hover .ql-arrow { color: var(--primary); transform: translateX(4px); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section { background: var(--bg-section); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-card {
  background: var(--bg-white);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { background: var(--primary); }
.stat-card:hover .stat-num,
.stat-card:hover .stat-label,
.stat-card:hover .stat-desc { color: rgba(255,255,255,0.85); }
.stat-card:hover .stat-num { color: #fff; }
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  transition: var(--transition);
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: var(--transition);
}
.stat-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition);
}

/* ============================================================
   FEATURE CARDS (Industry / Academia / Reports / Tools)
   ============================================================ */
.feature-cards-section { background: var(--bg-white); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.feature-card:hover::before { transform: scaleY(1); }
.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.fc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.fc-icon-box {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-icon-box svg { width: 24px; height: 24px; stroke: var(--primary); }
.fc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-section);
  padding: 4px 10px;
  border-radius: 100px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p  { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; flex: 1; }
.fc-links { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.fc-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 4px 0;
  transition: var(--transition);
}
.fc-links a::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  transition: width 0.2s;
}
.fc-links a:hover { color: var(--accent); }
.fc-links a:hover::before { width: 20px; }
.fc-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  border-top: 1px solid var(--bg-section);
  padding-top: 20px;
  transition: var(--transition);
}
.fc-action svg { width: 16px; height: 16px; stroke: currentColor; transition: transform 0.2s; }
.feature-card:hover .fc-action { color: var(--accent); }
.feature-card:hover .fc-action svg { transform: translateX(4px); }

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section { background: var(--bg-section); }
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.news-card-featured {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.news-card-featured:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.news-card-img svg { width: 64px; height: 64px; stroke: rgba(255,255,255,0.3); }
.news-card-category {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.news-card-body { padding: 24px; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.news-meta span { display: flex; align-items: center; gap: 4px; }
.news-card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.news-card-body p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 16px; }
.news-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.news-read-more:hover { gap: 8px; color: var(--primary); }

.news-sidebar { display: flex; flex-direction: column; gap: 16px; }
.news-card-sm {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
  cursor: pointer;
}
.news-card-sm:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.ncs-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ncs-icon svg { width: 18px; height: 18px; stroke: var(--primary); }
.ncs-body h4 { font-size: 0.85rem; margin-bottom: 4px; line-height: 1.4; }
.ncs-body span { font-size: 0.73rem; color: var(--text-muted); }

/* ============================================================
   REPORTS SECTION
   ============================================================ */
.reports-section { background: var(--bg-white); }
.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.report-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
}
.report-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--accent); }
.report-cover {
  height: 120px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.report-cover.blue   { background: linear-gradient(135deg, #1a3a5c, #2e86c1); }
.report-cover.green  { background: linear-gradient(135deg, #1a5c3a, #27ae60); }
.report-cover.orange { background: linear-gradient(135deg, #5c3a1a, #e67e22); }
.report-cover svg { width: 40px; height: 40px; stroke: rgba(255,255,255,0.4); }
.report-tag {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.report-card h4 { margin-bottom: 8px; font-size: 0.95rem; }
.report-card p  { font-size: 0.82rem; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--bg-section);
}
.report-footer span { font-size: 0.72rem; color: var(--text-muted); }
.report-dl-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.report-dl-btn svg { width: 14px; height: 14px; stroke: currentColor; }
.report-dl-btn:hover { color: var(--primary); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg-section); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tc-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--border);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.tc-text {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-section);
}
.tc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tc-name { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.tc-role { font-size: 0.73rem; color: var(--text-muted); }
.tc-rating { margin-left: auto; color: #f39c12; font-size: 0.7rem; letter-spacing: 1px; }

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section { background: var(--bg-white); padding: 56px 0; }
.partners-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.partner-logo {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}
.partner-logo:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.cta-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 28px 28px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 0;
}
.cta-inner h2 { color: #fff; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/*New CTA*/
.btn-secondary {
    background: transparent;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    text-decoration: none;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}
/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: var(--primary);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 28px 28px;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { font-size: 0.65rem; }
.breadcrumb .current { color: rgba(255,255,255,0.9); }
.page-hero h1 { color: #fff; margin-bottom: 14px; font-size: clamp(1rem, 2vw, 2rem); font-weight: 600; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 640px; font-size: 1.05rem; }

/* Mission Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.mv-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition);
}
.mv-card:hover { box-shadow: var(--shadow-md); }
.mv-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.mv-icon svg { width: 24px; height: 24px; stroke: var(--primary); }
.mv-card h3 { margin-bottom: 12px; }
.mv-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.value-item:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); transform: translateY(-2px); }
.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.value-item h4 { font-size: 0.95rem; margin-bottom: 6px; }
.value-item p { font-size: 0.8rem; color: var(--text-muted); }

/* Why it matters */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.why-item:hover { background: var(--primary-light); }
.why-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.why-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.why-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   INDUSTRY PAGE
   ============================================================ */
.sector-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.sector-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}
.sector-tab:hover, .sector-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sector-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}
.sector-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-2px); }
.sector-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sector-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.sector-card h3 { font-size: 1rem; margin-bottom: 8px; }
.sector-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.sector-progress { display: flex; flex-direction: column; gap: 8px; }
.sp-row { font-size: 0.75rem; }
.sp-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  color: var(--text-muted);
}
.sp-track {
  height: 4px;
  background: var(--bg-section);
  border-radius: 2px;
  overflow: hidden;
}
.sp-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--primary);
}
.sp-fill.accent { background: var(--accent); }
.sp-fill.orange { background: var(--secondary); }

/* Skills Gap Table */
.skills-table-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.skills-table {
  width: 100%;
  border-collapse: collapse;
}
.skills-table th {
  background: var(--bg-section);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.skills-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--bg-section);
}
.skills-table tr:last-child td { border-bottom: none; }
.skills-table tr:hover td { background: var(--bg-light); }
.gap-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}
.gap-badge.high   { background: #fde8e8; color: #c0392b; }
.gap-badge.medium { background: #fef5e7; color: #e67e22; }
.gap-badge.low    { background: #eafaf1; color: #27ae60; }

/* ============================================================
   ACADEMIA PAGE
   ============================================================ */
.academia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.academia-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.academia-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-2px); }
.academia-card .ac-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.academia-card .ac-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.academia-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.academia-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px; }
.ac-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ac-tag {
  background: var(--bg-section);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============================================================
   REPORTS / ANALYSIS PAGE
   ============================================================ */
.reports-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.reports-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Dashboard / Charts */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.chart-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.chart-card h4 { font-size: 1rem; margin-bottom: 4px; }
.chart-card .chart-sub { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
}
.bc-label { width: 110px; color: var(--text-muted); flex-shrink: 0; }
.bc-track {
  flex: 1;
  height: 8px;
  background: var(--bg-section);
  border-radius: 4px;
  overflow: hidden;
}
.bc-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--primary);
  position: relative;
}
.bc-fill::after {
  content: attr(data-pct);
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.bc-val { width: 36px; text-align: right; color: var(--text-muted); }

/* Donut chart (CSS) */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.donut {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: conic-gradient(
    var(--primary) 0% 42%,
    var(--accent) 42% 67%,
    var(--secondary) 67% 82%,
    #27ae60 82% 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.donut::before {
  content: '';
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--bg-white);
  position: absolute;
}
.donut-legend { display: flex; flex-direction: column; gap: 8px; }
.dl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-body);
}
.dl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   TOOLS PAGE
   ============================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tool-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tool-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-2px); }
.tc-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.tool-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tool-icon svg { width: 20px; height: 20px; stroke: var(--primary); }
.tool-card h3 { font-size: 1rem; margin-bottom: 4px; }
.tool-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}
.tool-badge.online { background: #eafaf1; color: #27ae60; }
.tool-badge.pdf    { background: #fde8e8; color: #c0392b; }
.tool-badge.xlsx   { background: #eaf4ff; color: #2e86c1; }
.tool-card p { font-size: 0.82rem; color: var(--text-muted); flex: 1; margin-bottom: 20px; }
.tool-card .btn { width: 100%; justify-content: center; }

/* Survey Form */
.survey-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-label span { color: #c0392b; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,134,193,0.1);
}
.form-control-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237a7a9a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
}
.radio-option:hover { border-color: var(--accent); background: var(--bg-light); }
.radio-option input[type="radio"] { accent-color: var(--primary); }
.form-submit { text-align: center; margin-top: 24px; }
.success-msg {
  display: none;
  text-align: center;
  padding: 24px;
  background: #eafaf1;
  border: 1px solid #a9dfbf;
  border-radius: var(--radius-md);
  color: #1e8449;
  font-weight: 600;
  margin-top: 20px;
}

/* ============================================================
   NEWS & EVENTS PAGE
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-date-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 16px;
}
.event-date-bar .day { font-size: 2rem; font-weight: 800; line-height: 1; }
.event-date-bar .month { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
.event-body { padding: 20px; }
.event-type {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.event-type.webinar    { background: #eaf4ff; color: #2e86c1; }
.event-type.workshop   { background: #fef3e8; color: #e67e22; }
.event-type.conference { background: #eafaf1; color: #27ae60; }
.event-type.policy     { background: #f5eef8; color: #8e44ad; }
.event-body h4 { font-size: 0.9rem; margin-bottom: 8px; }
.event-body p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.event-meta span { display: flex; align-items: center; gap: 4px; }

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.partner-categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.partner-category h3 {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.partner-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.partner-card:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); transform: translateY(-1px); }
.partner-abbr {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.partner-card h4 { font-size: 0.85rem; margin-bottom: 4px; }
.partner-card p { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.rc-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.rc-type.article { color: #2e86c1; }
.rc-type.guide   { color: #27ae60; }
.rc-type.pdf     { color: #c0392b; }
.rc-type.video   { color: #8e44ad; }
.resource-card h4 { font-size: 0.9rem; margin-bottom: 8px; }
.resource-card p { font-size: 0.8rem; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.resource-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.resource-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.resource-link:hover { color: var(--primary); }

/* Glossary */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.glossary-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: var(--transition);
}
.glossary-item:hover { border-color: var(--accent); }
.glossary-item h4 { font-size: 0.9rem; color: var(--primary); margin-bottom: 6px; }
.glossary-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 24px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; stroke: var(--primary); }
.ci-body h5 { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.ci-body p { font-size: 0.82rem; color: var(--text-muted); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.social-btn svg { width: 16px; height: 16px; stroke: currentColor; }
.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
}
.contact-form-card h3 { margin-bottom: 24px; }
.map-placeholder {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  margin-top: 32px;
}
.map-placeholder svg { width: 40px; height: 40px; stroke: var(--text-muted); }
.map-placeholder p { font-size: 0.85rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.45); }
.footer-brand .logo-mark { background: var(--accent); }
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.55);
}
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--accent); }
.footer-social-btn svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); }
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }
.footer-lang {
  display: flex;
  gap: 8px;
}
.lang-btn {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ============================================================
   SCROLL TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 900;
}
#scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top:hover { background: var(--accent); transform: translateY(-2px); }
#scroll-top svg { width: 18px; height: 18px; stroke: #fff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }


@media (min-width: 1024px) {
    .container {
        max-width: 95% !important;
    }
    .nav-link {
      padding: 5px 10px;
    }
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual     { display: none; }
  .hero-desc       { max-width: 100%; }
  .quick-links-inner { grid-template-columns: repeat(2, 1fr); }
  .ql-item:nth-child(2) { border-right: none; }
  .ql-item:nth-child(3) { border-top: 1px solid var(--border); }
  .ql-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .feature-grid        { grid-template-columns: 1fr; }
  .news-grid           { grid-template-columns: 1fr; }
  .reports-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .values-grid         { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid        { grid-template-columns: repeat(2, 1fr); }
  .tools-grid          { grid-template-columns: repeat(2, 1fr); }
  .events-grid         { grid-template-columns: repeat(2, 1fr); }
  .partner-logos-grid  { grid-template-columns: repeat(3, 1fr); }
  .resource-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-layout      { grid-template-columns: 1fr; }
  .dashboard-grid      { grid-template-columns: 1fr; }
  .cta-inner           { flex-direction: column; text-align: center; }
  .cta-actions         { justify-content: center; }
  .reports-list-grid   { grid-template-columns: repeat(2, 1fr); }
  .academia-grid       { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: 1fr; }
  .mv-grid             { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .section-pad { padding: 56px 0; }

  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .quick-links-inner   { grid-template-columns: 1fr 1fr; }
  .ql-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .ql-item:nth-child(even) { border-right: none; }
  .ql-item:nth-child(3),
  .ql-item:nth-child(4)    { border-top: 1px solid var(--border); }
  .reports-grid        { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .values-grid         { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid        { grid-template-columns: 1fr; }
  .tools-grid          { grid-template-columns: 1fr; }
  .events-grid         { grid-template-columns: 1fr; }
  .partner-logos-grid  { grid-template-columns: repeat(2, 1fr); }
  .resource-grid       { grid-template-columns: 1fr; }
  .glossary-grid       { grid-template-columns: 1fr; }
  .reports-list-grid   { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }
  .footer-bottom       { flex-direction: column; align-items: center; text-align: center; }
  .hero-actions        { flex-direction: column; }
  .hero-stats          { flex-wrap: wrap; gap: 20px; }
  .survey-wrap         { padding: 24px 18px; }
  .contact-form-card   { padding: 24px 18px; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  #site-header, #scroll-top, .mobile-menu { display: none; }
  .page-content { padding-top: 0; }
  * { box-shadow: none !important; }
}
