/*
Theme Name: Greenford Nano and Cancer Foundation
Theme URI: https://greenford.org.bd
Author: GNCF Team
Description: The official single-page WordPress theme for the Greenford Nano and Cancer Foundation.
Version: 1.0.0
Text Domain: gncf
*/

/* ══════════════════════════════════════════════════
   GLOBAL RESET & VARIABLES
══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-navy:       #113254;
  --c-navy-dark:  #0a1e33;
  --c-navy-mid:   #0d2740;
  --c-white:      #ffffff;
  --c-red:        #a53455;
  --c-red-dark:   #8a2a46;
  --c-green:      #5e8964;
  --c-green-dark: #4a6d4f;
  --c-green-pale: rgba(94,137,100,0.15);
  --font-head:    'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
  --glass-bg:          rgba(255,255,255,0.07);
  --glass-bg-hover:    rgba(255,255,255,0.12);
  --glass-bg-solid:    rgba(10,30,51,0.88);
  --glass-border:      rgba(255,255,255,0.14);
  --blur:              blur(18px);
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow:     0 8px 32px rgba(0,0,0,0.32);
  --transition: 0.25s ease;
  --c-teal:       #1c9aae;
  --c-teal-dark:  #177f90;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--c-navy-dark);
  color: var(--c-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════════════
   GLASS UTILITIES
══════════════════════════════════════════════════ */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-top: 2px solid rgba(94,137,100,0.35);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.glass-card:hover {
  transform: translateY(-4px);
  background: var(--glass-bg-hover);
  border-top-color: var(--c-green);
}
.glass-card.red-top { border-top-color: rgba(165,52,85,0.5); }
.glass-card.red-top:hover { border-top-color: var(--c-red); }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.gncf-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 76px;
  position: sticky; top: 0; z-index: 1000;
  background: var(--glass-bg-solid);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--glass-border);
}

.gncf-logo-container {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  text-decoration: none; color: inherit;
}
.gncf-logo-img {
  height: 48px; width: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.gncf-logo { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--c-white); line-height: 1.25; }
.gncf-logo span { color: var(--c-green); font-size: 12px; font-weight: 600; display: block; margin-top: 2px; }

.gncf-navlinks { display: flex; gap: 4px; list-style: none; align-items: center; }
.gncf-navlinks li a {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  cursor: pointer; padding: 6px 12px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  display: block;
}
.gncf-navlinks li a:hover,
.gncf-navlinks li a.active { color: var(--c-green); background: rgba(94,137,100,0.1); }

.gncf-nav-cta {
  background: var(--c-red) !important;
  color: var(--c-white) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.gncf-nav-cta:hover { background: var(--c-red-dark) !important; }

/* ══════════════════════════════════════════════════
   PAGE PANELS
══════════════════════════════════════════════════ */
.page-panel { display: none; animation: fadeIn 0.35s ease; min-height: 80vh; }
.page-panel.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero-gallery {
  width: 100%; height: 88vh; min-height: 560px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 3px solid var(--c-green);
}
.carousel-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 500%; /* 5 slides */
  height: 100%;
  display: flex;
  animation: slideShow 18s infinite;
  z-index: 0;
}

.slide {
  width: 20%; /* 100 / 5 */
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,30,51,0.55);
}
.slide:nth-child(1) { background-image: url('https://res.cloudinary.com/dnz63zxtf/image/upload/v1777191539/WhatsApp_Image_2026-04-26_at_2.11.06_PM_1_mobcg2.jpg'); }
.slide:nth-child(2) { background-image: url('https://res.cloudinary.com/dnz63zxtf/image/upload/v1777191539/WhatsApp_Image_2026-04-26_at_2.11.05_PM_1_mkjfxe.jpg'); }
.slide:nth-child(3) { background-image: url('https://res.cloudinary.com/dnz63zxtf/image/upload/v1777191539/WhatsApp_Image_2026-04-26_at_2.11.06_PM_hsv43w.jpg'); }
.slide:nth-child(4) { background-image: url('https://res.cloudinary.com/dnz63zxtf/image/upload/v1777522718/WhatsApp_Image_2026-04-30_at_10.15.36_AM_dmuzko.jpg'); }
.slide:nth-child(5) { background-image: url('https://res.cloudinary.com/dnz63zxtf/image/upload/v1777191539/WhatsApp_Image_2026-04-26_at_2.11.05_PM_agcmxn.jpg'); }

@keyframes slideShow {
  0%,16%   { transform: translateX(0); }
  20%,36%  { transform: translateX(-20%); }
  40%,56%  { transform: translateX(-40%); }
  60%,76%  { transform: translateX(-60%); }
  80%,96%  { transform: translateX(-80%); }
  100%     { transform: translateX(0); }
}

.hero-overlay-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 640px;
  padding: 32px 28px;
  text-align: center;
  background: rgba(10,30,51,0.70);
  backdrop-filter: blur(10px);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hero-gallery { height: auto; min-height: 520px; padding: 60px 0; }
  .hero-overlay-content { width: 92%; padding: 24px 18px; }
  .hero-overlay-content h1 { font-size: 30px; line-height: 1.25; }
  .hero-overlay-content > p { font-size: 15px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns button { width: 100%; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  background: rgba(94,137,100,0.25);
  border: 1px solid var(--c-green);
  border-radius: 20px;
  color: var(--c-white); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-green);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-overlay-content h1 {
  font-family: var(--font-head);
  font-size: 44px; font-weight: 700;
  line-height: 1.15; margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-overlay-content h1 em { color: var(--c-red); font-style: normal; }
.hero-overlay-content > p {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,0.88); margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════ */
.stats-strip {
  margin: 0 auto; position: relative; z-index: 20;
  max-width: 1100px; border-radius: var(--radius-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--glass-border);
  background: rgba(10,30,51,0.92);
}
.stat-item:last-child { border-right: none; }
.stat-val-container {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 38px; font-weight: 700;
  color: var(--c-white); margin-bottom: 6px; line-height: 1;
}
.stat-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ══════════════════════════════════════════════════
   SECTIONS & LAYOUT
══════════════════════════════════════════════════ */
.section { padding: 64px 48px; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 64px 48px; }

.section-header { text-align: center; margin-bottom: 44px; }
.section-header h5 {
  color: var(--c-green); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 10px; font-size: 13px; font-weight: 700;
}
.section-header h2 { font-family: var(--font-head); font-size: 34px; margin-bottom: 14px; letter-spacing: -0.3px; }
.section-header p { color: rgba(255,255,255,0.75); max-width: 660px; margin: 0 auto; font-size: 16px; line-height: 1.7; }

.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-2-asym { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; }

.glass-card h3, .glass-card h2 { font-family: var(--font-head); margin-bottom: 12px; color: var(--c-white); }
.glass-card h3 { font-size: 19px; }
.glass-card p { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════════════════
   RESEARCH & ICONS
══════════════════════════════════════════════════ */
.research-icon {
  width: 52px; height: 52px;
  background: var(--c-green-pale); border-radius: var(--radius-md);
  margin-bottom: 20px; display: flex; align-items: center; justify-content: center;
}
.research-icon svg { width: 26px; height: 26px; stroke: var(--c-green); }
.research-icon.red { background: rgba(165,52,85,0.15); }
.research-icon.red svg { stroke: var(--c-red); }

.program-num {
  font-family: var(--font-head); font-size: 46px; font-weight: 700;
  color: rgba(255,255,255,0.12); line-height: 1; margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════
   NEWS FLASHCARDS
══════════════════════════════════════════════════ */
.news-features-section{ padding:72px 48px; background:linear-gradient(180deg, rgba(14,45,74,0.3) 0%, transparent 100%); }
.news-features-inner{max-width:1200px;margin:0 auto;}
.flashcard-grid{ display:grid;grid-template-columns:repeat(3,1fr);gap:24px; }
.flashcard{ height:280px;perspective:1000px;cursor:pointer; }
.flashcard-inner{
  position:relative;width:100%;height:100%;
  transform-style:preserve-3d;
  transition:transform 0.65s cubic-bezier(.77,0,.175,1);
}
.flashcard:hover .flashcard-inner{transform:rotateY(180deg);}
.flashcard-front,.flashcard-back{
  position:absolute;inset:0;
  backface-visibility:hidden;-webkit-backface-visibility:hidden;
  border-radius:var(--radius-lg);
  border:1px solid var(--glass-border);
  overflow:hidden;
}
.flashcard-front{
  background:var(--glass-bg);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:24px;
}
.flashcard-front-bg{ position:absolute;inset:0;background-size:cover;background-position:center; }
.flashcard-front-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top, rgba(7,25,42,0.92) 40%, rgba(7,25,42,0.4) 100%);
}
.flashcard-front-content{position:relative;z-index:2;}
.flashcard-category{
  display:inline-block;font-size:10px;font-weight:700;letter-spacing:1.5px;
  text-transform:uppercase;color:var(--c-green);
  background:rgba(78,168,106,0.18);
  border:1px solid rgba(78,168,106,0.4);
  padding:3px 10px;border-radius:10px;margin-bottom:10px;
}
.flashcard-category.red{color:var(--c-red);background:rgba(184,58,92,0.18);border-color:rgba(184,58,92,0.4);}
.flashcard-category.teal{color:var(--c-teal);background:rgba(28,154,174,0.18);border-color:rgba(28,154,174,0.4);}
.flashcard-title{font-family:var(--font-head);font-size:16px;font-weight:700;color:white;line-height:1.3;margin-bottom:8px;}
.flashcard-date{font-size:11.5px;color:rgba(255,255,255,0.5);}
.flashcard-back{
  background:linear-gradient(135deg,rgba(14,45,74,0.97),rgba(7,25,42,0.97));
  transform:rotateY(180deg);
  display:flex;flex-direction:column;justify-content:space-between;
  padding:28px;
  border-color:rgba(78,168,106,0.2);
}
.flashcard-back-icon{
  width:40px;height:40px;margin-bottom:12px;
  background:var(--c-green-pale);border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
}
.flashcard-back-icon svg{width:20px;height:20px;stroke:var(--c-green);}
.flashcard-back h4{font-family:var(--font-head);font-size:15px;color:white;margin-bottom:10px;}
.flashcard-back p{font-size:13px;color:rgba(255,255,255,0.72);line-height:1.65;flex:1;}
.flashcard-read-more{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12.5px;font-weight:700;color:var(--c-green);
  margin-top:16px;
  transition:gap var(--transition);
}
.flashcard-read-more:hover{gap:10px;}
.flashcard-read-more svg{width:14px;height:14px;stroke:var(--c-green);}

/* ══════════════════════════════════════════════════
   STATUS BADGES & PROJECT META
══════════════════════════════════════════════════ */
.status-badge {
  display: inline-block; padding: 4px 12px; border-radius: 12px;
  font-size: 11px; font-weight: 700; margin-bottom: 14px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.status-active   { background: rgba(94,137,100,0.25);  color: #a3d9a5; border: 1px solid var(--c-green); }
.status-phase    { background: rgba(165,52,85,0.25);   color: #f5a0b8; border: 1px solid var(--c-red); }
.status-preclin  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
.status-complete { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); }

.project-meta {
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-top: 16px; border-top: 1px solid var(--glass-border);
  padding-top: 12px; line-height: 1.5;
}
.project-meta strong { color: var(--c-green); }

/* ══════════════════════════════════════════════════
   TEAM
══════════════════════════════════════════════════ */
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-green) 0%, #3a5c40 100%);
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--c-white);
}
.team-role { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 12px; display: block; }
.team-tag {
  display: inline-block; padding: 4px 14px;
  background: rgba(255,255,255,0.08); border-radius: 12px;
  font-size: 12px; color: var(--c-green); font-weight: 600;
}

/* ══════════════════════════════════════════════════
   LEADERSHIP
══════════════════════════════════════════════════ */
.leadership-box {
  display: flex; align-items: flex-start; gap: 44px;
  padding: 44px; margin-bottom: 28px;
}
.leadership-box.reverse { flex-direction: row-reverse; }
.leadership-photo-block { flex-shrink: 0; width: 220px; text-align: center; }
.leadership-img {
  width: 220px; height: 220px; flex-shrink: 0;
  border-radius: var(--radius-lg); object-fit: cover;
  border: 2px solid var(--c-green); margin-bottom: 14px;
}
.leadership-photo-info { display: flex; flex-direction: column; gap: 6px; }
.leadership-photo-info .author { font-weight: 700; font-size: 15px; color: var(--c-white); display: block; text-align: center; line-height: 1.3; }
.leadership-photo-info .title-role { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.7; text-align: center; display: block; }
.leadership-photo-info .title-role a { color: var(--c-green); text-decoration: underline; transition: color var(--transition); }
.leadership-photo-info .title-role a:hover { color: #fff; }
.leadership-content h3 { font-size: 22px; color: var(--c-green); margin-bottom: 12px; font-family: var(--font-head); }
.leadership-content h3.red { color: var(--c-red); }
.leadership-content p { font-size: 16px; line-height: 1.8; font-style: italic; margin-bottom: 18px; color: rgba(255,255,255,0.85); text-align: justify; }

/* ══════════════════════════════════════════════════
   DONATE / FORMS
══════════════════════════════════════════════════ */
.amount-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.amount-btn {
  padding: 14px; border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 600; font-family: var(--font-head);
  cursor: pointer; background: rgba(0,0,0,0.2); color: var(--c-white);
  transition: all 0.2s;
}
.amount-btn:hover, .amount-btn.selected { background: var(--c-green); border-color: var(--c-green); }

.gift-type-toggle {
  display: flex; border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 24px;
}
.gift-type-btn {
  flex: 1; padding: 12px; font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; background: rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.55); font-family: var(--font-body); transition: all 0.2s;
}
.gift-type-btn.active { background: var(--c-navy); color: var(--c-white); }

.impact-item {
  display: flex; gap: 16px; margin-top: 16px; align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 16px;
}
.impact-item:last-child { border-bottom: none; padding-bottom: 0; }
.impact-amount { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--c-green); min-width: 60px; }
.impact-desc { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; }

.trust-signals { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.trust-signal { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary {
  background: var(--c-green); color: var(--c-white);
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; font-family: var(--font-body);
  cursor: pointer; border: none; transition: background var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--c-green-dark); }
.btn-primary.red { background: var(--c-red); }
.btn-primary.red:hover { background: var(--c-red-dark); }

.btn-outline {
  background: transparent; color: var(--c-white);
  padding: 12px 26px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; font-family: var(--font-body);
  cursor: pointer; border: 2px solid var(--c-green);
  transition: background var(--transition); display: inline-block;
}
.btn-outline:hover { background: var(--c-green); }
.btn-outline.red { border-color: var(--c-red); }
.btn-outline.red:hover { background: var(--c-red); }

/* ══════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: rgba(255,255,255,0.85); }
.form-control {
  width: 100%; padding: 13px 16px;
  border-radius: var(--radius-sm); border: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.25); color: var(--c-white);
  font-family: var(--font-body); font-size: 14px;
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--c-green); box-shadow: 0 0 0 3px rgba(94,137,100,0.2); }
.form-control::placeholder { color: rgba(255,255,255,0.35); }
.form-control option { background: var(--c-navy-dark); color: var(--c-white); }

/* ══════════════════════════════════════════════════
   NEWS
══════════════════════════════════════════════════ */
.news-post-full { padding: 0; margin-bottom: 48px; overflow: hidden; border-radius: var(--radius-lg); }
.news-post-header { padding: 36px 44px 28px; }
.news-tag-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.news-category-tag {
  display: inline-block; padding: 4px 14px; background: rgba(94,137,100,0.2);
  border: 1px solid rgba(94,137,100,0.5); border-radius: 12px; font-size: 11px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--c-green);
}
.news-category-tag-red { background: rgba(165,52,85,0.2); border-color: rgba(165,52,85,0.5); color: var(--c-red); }
.news-post-date { font-size: 13px; color: rgba(255,255,255,0.5); }
.news-post-title { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--c-white); margin-bottom: 14px; line-height: 1.3; }
.news-post-lead { font-size: 16.5px; color: rgba(255,255,255,0.8); line-height: 1.75; font-style: italic; border-left: 3px solid var(--c-green); padding-left: 18px; margin-top: 4px; text-align: justify; }
.news-img-featured { width: 100%; height: 420px; background-size: cover; background-position: center; background-color: rgba(255,255,255,0.05); }
.news-post-body { padding: 36px 44px 40px; }
.news-post-body p { font-size: 15.5px; line-height: 1.85; color: rgba(255,255,255,0.85); margin-bottom: 20px; text-align: justify; }
.news-post-body strong { color: var(--c-white); }
.news-img-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.news-gallery-item { height: 240px; border-radius: var(--radius-md); background-size: cover; background-position: center; background-color: rgba(255,255,255,0.05); }
.news-key-facts { background: rgba(94,137,100,0.08); border: 1px solid rgba(94,137,100,0.25); border-left: 4px solid var(--c-green); border-radius: var(--radius-md); padding: 22px 28px; margin-top: 8px; }
.news-key-facts h4 { font-family: var(--font-head); font-size: 15px; color: var(--c-green); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.news-key-facts ul { list-style: none; padding: 0; }
.news-key-facts ul li { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.65; padding-left: 18px; position: relative; margin-bottom: 6px; }
.news-key-facts ul li::before { content: '✦'; position: absolute; left: 0; color: var(--c-green); font-size: 10px; top: 3px; }

/* ══════════════════════════════════════════════════
   PROGRAMS SPECIFICS
══════════════════════════════════════════════════ */
.grant-card {
  padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  margin-bottom: 24px;
}
.grant-card h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 12px; color: var(--c-white); }
.grant-card p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.grant-meta-row { display: flex; flex-wrap: wrap; gap: 24px; margin: 16px 0; }
.grant-meta-item { display: flex; flex-direction: column; gap: 3px; }
.grant-meta-item .label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.grant-meta-item .value { font-size: 14px; font-weight: 600; color: var(--c-green); }

.disclaimer-box {
  background: rgba(165,52,85,0.12);
  border: 1px solid rgba(165,52,85,0.4);
  border-left: 4px solid var(--c-red);
  border-radius: var(--radius-sm);
  padding: 18px 22px; margin-bottom: 32px;
  font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6;
}
.disclaimer-box strong { color: rgba(255,255,255,0.9); }

.resource-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: background var(--transition);
}
.resource-card:hover { background: var(--glass-bg-hover); }
.resource-card h4 { font-family: var(--font-head); font-size: 17px; margin-bottom: 10px; color: var(--c-white); }
.resource-card p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════════════════════
   PUBLICATION LIST
══════════════════════════════════════════════════ */
.pub-item {
  padding: 22px 28px; border-radius: var(--radius-md);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  margin-bottom: 16px; transition: background var(--transition);
}
.pub-item:hover { background: var(--glass-bg-hover); }
.pub-item .pub-title { font-weight: 600; font-size: 15px; color: var(--c-white); margin-bottom: 6px; }
.pub-item .pub-authors { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.pub-item .pub-journal { font-size: 13px; color: var(--c-green); font-style: italic; }
.pub-item .pub-doi { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }
.pub-tag {
  display: inline-block; padding: 3px 10px;
  background: rgba(94,137,100,0.2); border: 1px solid rgba(94,137,100,0.4);
  border-radius: 10px; font-size: 11px; color: var(--c-green);
  font-weight: 600; margin-left: 10px; vertical-align: middle;
}

/* ══════════════════════════════════════════════════
   SEARCH / FILTER BAR
══════════════════════════════════════════════════ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; margin-bottom: 32px;
}
.filter-chip {
  padding: 7px 16px; border-radius: 20px;
  font-size: 12.5px; font-weight: 500;
  cursor: pointer; border: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.2); color: rgba(255,255,255,0.65);
  font-family: var(--font-body); transition: all 0.15s;
}
.filter-chip:hover, .filter-chip.active {
  background: rgba(94,137,100,0.2);
  border-color: var(--c-green); color: var(--c-white);
}
.search-bar {
  flex: 1; min-width: 220px;
  padding: 10px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.25); color: var(--c-white);
  font-family: var(--font-body); font-size: 14px;
}
.search-bar:focus { outline: none; border-color: var(--c-green); }
.search-bar::placeholder { color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════════
   INFO BANNER
══════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--c-navy-mid), #0d3520);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 48px; text-align: center; margin: 48px 0;
}
.cta-banner h2 { font-family: var(--font-head); font-size: 30px; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 28px; font-size: 16px; line-height: 1.7; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.gncf-footer {
  padding: 64px 48px 32px;
  border-top: 1px solid var(--glass-border);
  background: var(--glass-bg-solid);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto 48px;
}
.footer-col h4 { font-family: var(--font-head); font-size: 15px; margin-bottom: 20px; color: var(--c-green); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); cursor: pointer; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--c-white); }
.contact-info p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 10px; line-height: 1.65; }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--transition);
  color: var(--c-white); font-weight: 700; font-size: 11px;
  text-decoration: none;
}
.social-icon:hover { background: var(--c-green); }
.footer-bottom {
  border-top: 1px solid var(--glass-border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.35);
  max-width: 1200px; margin: 0 auto;
}
.reg-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; font-size: 12px; color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════════════
   HERO SLIDE INFO OVERLAY
══════════════════════════════════════════════════ */
.hero-badge-fixed { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); z-index: 20; text-align: center; width: 90%; max-width: 600px; }
.hero-slide-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 20; padding: 24px 48px 32px; background: linear-gradient(to top, rgba(10,30,51,0.92) 60%, transparent 100%); text-align: left; }
.slide-info-date { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-green); margin-bottom: 6px; }
.slide-info-title { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.slide-info-desc { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.65; max-width: 680px; }
.carousel-dots { position: absolute; bottom: 16px; right: 48px; z-index: 30; display: flex; gap: 8px; align-items: center; }
.cdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s, transform 0.3s; border: 1px solid rgba(255,255,255,0.4); }
.cdot.active { background: var(--c-green); transform: scale(1.3); border-color: var(--c-green); }

/* ══════════════════════════════════════════════════
   HERO TEXT CONTENT
══════════════════════════════════════════════════ */
.hero-text-content { max-width: 860px; margin: 0 auto; padding: 52px 48px 40px; text-align: center; }
.hero-main-title { font-family: var(--font-head); font-size: 42px; font-weight: 700; line-height: 1.18; letter-spacing: -0.4px; color: var(--c-white); margin-bottom: 20px; }
.hero-main-title em { color: var(--c-red); font-style: normal; }
.hero-main-desc { font-size: 16.5px; line-height: 1.75; color: rgba(255,255,255,0.82); margin-bottom: 32px; text-align: center !important; }
.hero-main-desc strong { color: var(--c-white); }

/* ══════════════════════════════════════════════════
   MOBILE HAMBURGER MENU
══════════════════════════════════════════════════ */
.hamburger-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger-btn span { display: block; width: 24px; height: 2px; background: var(--c-white); border-radius: 2px; transition: all 0.3s; }
.mobile-nav-menu { display: none; flex-direction: column; gap: 0; position: fixed; top: 76px; left: 0; right: 0; background: var(--glass-bg-solid); backdrop-filter: var(--blur); border-bottom: 1px solid var(--glass-border); z-index: 999; padding: 12px 0; }
.mobile-nav-menu.open { display: flex; }
.mobile-nav-menu a { display: block; padding: 13px 28px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.05); transition: color var(--transition), background var(--transition); }
.mobile-nav-menu a:hover { color: var(--c-green); background: rgba(94,137,100,0.08); }
.mobile-nav-menu a.cta { color: var(--c-white); background: var(--c-red); margin: 8px 20px; border-radius: var(--radius-sm); text-align: center; border-bottom: none; }

/* ══════════════════════════════════════════════════
   RESPONSIVE & JUSTIFY
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-2, .grid-2-asym { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .leadership-box, .leadership-box.reverse { flex-direction: column; align-items: center; padding: 28px 20px; }
  .leadership-photo-block { width: 180px; }
  .leadership-img { width: 180px; height: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gncf-navlinks { display: none; }
  .hero-overlay-content { padding: 30px 24px; }
  .hero-overlay-content h1 { font-size: 30px; }
  .section { padding: 44px 24px; }
  .hamburger-btn { display: flex; }
}
@media (max-width: 768px) {
  .hero-slide-info { padding: 18px 24px 24px; }
  .slide-info-title { font-size: 20px; }
  .slide-info-desc { font-size: 13.5px; }
  .carousel-dots { right: 20px; bottom: 12px; }
  .hero-text-content { padding: 36px 24px 28px; }
  .hero-main-title { font-size: 28px; }
  .hero-main-desc { font-size: 15px; }
  .news-post-header { padding: 24px 20px 20px; }
  .news-post-title { font-size: 20px; }
  .news-img-featured { height: 220px; }
  .news-post-body { padding: 20px 20px 28px; }
  .news-img-gallery { grid-template-columns: 1fr; }
  .news-gallery-item { height: 180px; }
}
@media (max-width: 600px) {
  .gncf-nav { padding: 0 20px; }
  .section, .section-full { padding: 36px 16px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 12px; }
  .stat-val-container { font-size: 28px; }
  .grid-4, .grid-3, .flashcard-grid { grid-template-columns: 1fr; }
  .news-features-section { padding: 40px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gncf-footer { padding: 40px 16px 24px; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .grant-meta-row { flex-direction: column; gap: 12px; }
  .hero-slide-info { padding: 16px 16px 20px; }
  .slide-info-title { font-size: 18px; }
  .carousel-dots { right: 16px; }
  .glass-panel[style*="padding:60px"] { padding: 24px !important; }
  .glass-panel[style*="padding:80px"] { padding: 32px 20px !important; }
  .leadership-box { padding: 20px 16px; }
  .news-post-header { padding: 20px 16px 16px; }
  .news-post-body { padding: 16px 16px 24px; }
  .hero-main-title { font-size: 24px; }
}

.glass-card p, .section p, .grant-card p, .resource-card p, .section-header p, .glass-panel p { text-align: justify; }
.section-header { text-align: center; }
.section-header p { text-align: center; }
/* ══════════════════════════════════════════════════
   PUB LINK
══════════════════════════════════════════════════ */
.pub-link { color: var(--c-white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.25); transition: color var(--transition), text-decoration-color var(--transition); }
.pub-link:hover { color: var(--c-green); text-decoration-color: var(--c-green); }

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* ══════════════════════════════════════════════════
   FORM SUCCESS
══════════════════════════════════════════════════ */
.form-success {
  background: rgba(94,137,100,0.15); border: 1px solid var(--c-green);
  border-radius: var(--radius-md); padding: 18px 22px; margin-top: 18px;
  font-size: 14.5px; color: var(--c-green); font-weight: 600; display: none;
}
.form-success.show { display: block; }

/* ══════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--c-green); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--c-green-dark); }

/* ══════════════════════════════════════════════════
   DONATE LAYOUT RESPONSIVE FIX
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  #panel-donate .section > div[style*="grid-template-columns:1.5fr"] {
    grid-template-columns: 1fr !important;
  }
  #panel-partner .section .glass-panel[style*="padding:60px"] {
    padding: 28px 20px !important;
  }
}

/* ══════════════════════════════════════════════════
   ACCESSIBILITY
══════════════════════════════════════════════════ */
:focus-visible { outline: 2px solid var(--c-green); outline-offset: 3px; }
