/* ================AI================ */
:root {
    --bg-warm: #f9f8ee;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --accent-gold: #b45309;
    --accent-orange: #e65100;
}

.vgi-hero {
    background-color: var(--bg-warm);
    padding: 40px 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    text-align: center;
}

.vgi-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.vgi-badge {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.vgi-content h1 {
    font-size: 2.6rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.vgi-body {
    max-width: 750px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.lead-text strong {
    color: var(--accent-gold);
}

.secondary-text {
    font-size: 1.0rem;
    color: #718096;
    font-style: italic;
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
    margin: 30px auto;
    max-width: 600px;
}

/* Stats/Icons Styling */
.vgi-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #edf2f7;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 2rem;
}

.stat-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.stat-divider {
    height: 40px;
    width: 1px;
    background-color: #e2e8f0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .vgi-content h1 { font-size: 2rem; }
    .lead-text { font-size: 1.15rem; }
    .vgi-stats { flex-direction: column; gap: 20px; }
    .stat-divider { display: none; }
}

/* ==============VGI Development Objectives Section================== */

:root {
    --bg-light: #f9f8ee;
    --accent-orange: #e65100;
    --text-dark: #333;
    --text-muted: #555;
    --progress-bg: #f0f0f0;
    --badge-bg: #e8f5e9;
    --badge-text: #2e7d32;
}

.vgi-objectives {
    background-color: var(--bg-light);
    padding: 40px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

/* Grid setup */
.objective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

/* Card Styling */
.objective-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-title h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin: 0;
}

.icon.orange {
    color: var(--accent-orange);
    font-size: 1.5rem;
    font-weight: bold;
}

.percentage {
    background-color: var(--badge-bg);
    color: var(--badge-text);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.objective-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Progress Bar Styling */
.progress-container {
    background-color: var(--progress-bg);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    width: 80%; /* Match image alignment */
}

.progress-bar {
    background-color: var(--accent-orange);
    height: 100%;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .objective-grid {
        grid-template-columns: 1fr;
    }
    .objective-card {
        padding: 20px;
    }
    .progress-container {
        width: 100%;
    }
}

/* ===================Leadership Initiatives Section====================  */

/* Section Base */
.innovation-section {
    background-color: #fdfaf0; /* Matches the cream background in your images */
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Grid Layout */
.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

/* Card Styling */
.innovation-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-5px);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.innovation-card h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin: 0;
    max-width: 65%;
    line-height: 1.3;
}

.innovation-card p {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Badge Styling */
.badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.blue-badge {
    background-color: #e6f6ff;
    color: #3182ce;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    .innovation-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================National Strategy Alignment & Roadmap Section====================  */
:root {
    --bg-cream: #fdfaf0;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --accent-orange: #d97706;
}

.strategy-roadmap {
    background-color: var(--bg-cream);
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a202c;
}

/* Grids */
.strategy-grid, .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Strategy Cards */
.strategy-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.globe-icon {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.status-badge {
    margin-top: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid currentColor;
}

.aligned { color: #3b82f6; background: #eff6ff; }
.integrated { color: #6366f1; background: #eef2ff; }
.leading { color: #10b981; background: #ecfdf5; }
.active { color: #ef4444; background: #fef2f2; }

/* Roadmap Cards */
.roadmap-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: left;
}

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.roadmap-card h3 {
    color: #f97316; /* Phase text orange */
    font-size: 1.1rem;
    margin: 0;
}

.pill {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
}

.completed { background: #d1fae5; color: #065f46; }
.progress { background: #fef3c7; color: #92400e; }
.planned { background: #dbeafe; color: #1e40af; }
.future { background: #f3f4f6; color: #374151; }

.timeline {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #d97706;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: auto;
}

/* Vision Callout */
.vision-callout {
    margin-top: 80px;
    background: #e1efff;
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid #bfdbfe;
}

.vision-callout h2 { color: #2563eb; margin: 15px 0; }
.vision-callout blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #1e40af;
    max-width: 800px;
    margin: 20px auto;
}

.vision-callout p { color: #4b5563; max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* ============================National Strategy Alignment & Roadmap Section====================   */

.vgi-cta-section {
  background: #fdfaf0;;
  padding: 40px 20px;
  font-family: "Inter", system-ui, sans-serif;
}

.vgi-cta-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* ===== Top Card ===== */

.vgi-top-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  margin-bottom: 80px;
}

.vgi-icon {
  font-size: 40px;
  color: #f97316;
  margin-bottom: 20px;
}

.vgi-top-card h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}

.vgi-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 760px;
  margin: 0 auto 30px;
}

/* Checklist */
.vgi-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.vgi-list li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #374151;
  position: relative;
  padding-left: 28px;
}

.vgi-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: bold;
}

/* ===== Bottom CTA ===== */

.vgi-bottom h3 {
  font-size: 32px;
  font-weight: 800;
  color: #a3c117;
  margin-bottom: 20px;
}

.vgi-bottom p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

/* Buttons */

.vgi-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #a3c117;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(163,193,23,0.35);
}

.btn-primary:hover {
  background: #8aa513;
  transform: translateY(-3px);
}

.btn-outline {
  background: #ffffff;
  color: #1f2937;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #d1d5db;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #f3f4f6;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .vgi-top-card {
    padding: 40px 25px;
  }

  .vgi-top-card h2 {
    font-size: 22px;
  }

  .vgi-bottom h3 {
    font-size: 24px;
  }
}


/* ===========================National Strategy Alignment & Roadmap Section====================   */

:root {
    --brand-cream: #fdfaf0;
    --brand-orange: #d97706;
    --brand-brown: #8d6e63;
    --text-slate: #1e293b;
    --glass-bg: rgba(255, 255, 255, 0.8);
}

.national-impact-vision {
    background-color: var(--brand-cream);
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

.container { max-width: 1200px; margin: 0 auto; }

/* Header Styling */
.vision-header { text-align: center; margin-bottom: 70px; }
.eyebrow { color: var(--brand-orange); font-weight: 800; letter-spacing: 4px; font-size: 0.85rem; }
.vision-header h2 { font-size: 3rem; font-weight: 800; color: var(--text-slate); margin-top: 15px; }

/* Bento Grid System */
.impact-bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.bento-item {
    background: #ffffff;
    border-radius: 32px;
    padding: 50px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.03);
    transition: transform 0.4s ease;
}

.bento-item:hover { transform: translateY(-8px); }

/* VGI Core Card */
.vgi-core { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg, #fff 0%, #fffbf0 100%); }
.vgi-badge { background: var(--brand-orange); color: #fff; padding: 6px 14px; border-radius: 50px; font-size: 0.7rem; font-weight: 900; width: fit-content; margin-bottom: 25px; }
.vgi-core h3 { font-size: 2.2rem; color: var(--text-slate); margin-bottom: 20px; }
.vgi-core p { font-size: 1.15rem; line-height: 1.8; color: #4b5563; margin-bottom: 35px; }

.vgi-stats-row { display: flex; gap: 30px; margin-bottom: 40px; }
.vgi-stat { font-weight: 700; color: var(--brand-orange); border-left: 3px solid var(--brand-orange); padding-left: 15px; }
.vgi-stat span { display: block; font-size: 1.5rem; color: var(--text-slate); }

.bento-footer { font-size: 1.2rem; color: var(--brand-orange); font-weight: 700; border-top: 1px solid #f1f5f9; padding-top: 30px; }

/* Stats Container */
.stats-container { display: flex; flex-direction: column; justify-content: space-around; padding: 40px; }
.stat-card { border-bottom: 1px solid #f1f5f9; padding-bottom: 20px; margin-bottom: 20px; }
.stat-card:last-child { border: 0; margin: 0; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--brand-orange); }
.stat-label { font-size: 1rem; color: var(--text-slate); font-weight: 600; }

/* Vision Card */
.national-vision-card { background: var(--text-slate); color: #fff; display: flex; flex-direction: column; align-items: center; text-align: center; }
.vision-icon { font-size: 2rem; margin-bottom: 20px; }
.national-vision-card blockquote { font-size: 1.25rem; font-style: italic; line-height: 1.6; margin-bottom: 20px; opacity: 0.9; }
.national-vision-card cite { font-size: 0.8rem; color: var(--brand-orange); letter-spacing: 1px; font-weight: 700; }

@media (max-width: 968px) {
    .impact-bento-grid { grid-template-columns: 1fr; }
    .vgi-core { grid-row: span 1; }
}