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

:root {
  --primary-green: #09cc7f;
  --primary-navy: #002147;
  --primary-orange: #ff8430;
  --green-50: #f9fbf9;
  --gray-50: #f9fafb;
  --grey-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --navy: #002147;
  --green: #09cc7f;
  --orange: #ff8430;
  --light-gray: #f8f9fa;
  --text-gray: #333;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
}

.btn-apply {
  background: var(--primary-green);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-apply:hover {
  box-shadow: 0 4px 12px rgba(9, 204, 127, 0.4);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: var(--primary-navy);
  padding: 140px 20px 80px;
  text-align: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background: var(--primary-orange);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.hero h2 {
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 24px;
}

.hero-description {
  color: #d1d5db;
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.stat-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
}

.stat-number {
  color: var(--primary-navy);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-600);
}

.btn-primary {
  display: inline-block;
  background: var(--primary-green);
  color: white;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 8px 20px rgba(9, 204, 127, 0.4);
  transform: translateY(-2px);
}

.section-bg-gray {
  background: var(--gray-50);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  color: var(--primary-navy);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 48px;
}

.section-intro {
  text-align: center;
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 48px;
  color: var(--gray-700);
}

/* Cards */
.card {
  background: white;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: var(--primary-navy);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.card p {
  font-size: 1.125rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Note Box */
.note-box {
  border-left: 4px solid var(--primary-orange);
  padding-left: 24px;
  margin-top: 32px;
  font-style: italic;
  color: var(--gray-600);
}

/* Fund Allocation */
.fund-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.fund-card {
  border: 2px solid var(--primary-green);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.fund-card.highlight {
  border-color: var(--primary-orange);
  background: #fff5f0;
}

.fund-percentage {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.fund-card.highlight .fund-percentage {
  color: var(--primary-orange);
}

/* Two Column Grid */
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.bordered-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bordered-card h3 {
  color: var(--primary-navy);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.bordered-card ul {
  list-style: none;
}

.bordered-card li {
  display: flex;
  align-items: start;
  margin-bottom: 16px;
}

.bullet {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 8px;
  flex-shrink: 0;
}

.bordered-card.navy .bullet {
  background: var(--primary-navy);
}

/* Wards Grid */
.wards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.ward-item {
  background: #f0fdf4;
  color: var(--primary-navy);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

/* Focus Areas */
.focus-item {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.focus-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.focus-content {
  display: flex;
  align-items: start;
}

.focus-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-right: 32px;
  flex-shrink: 0;
}

.focus-item h3 {
  color: var(--primary-navy);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* Evaluation Criteria */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.criteria-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.criteria-header {
  padding: 24px;
  color: white;
}

.criteria-header.navy {
  background: var(--primary-navy);
}

.criteria-header.green {
  background: var(--primary-green);
}

.criteria-header.orange {
  background: var(--primary-orange);
}

.criteria-header h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.criteria-points {
  font-size: 2.5rem;
  font-weight: bold;
}

.criteria-body {
  padding: 24px;
}

.criteria-body ul {
  list-style: none;
}

.criteria-body li {
  display: flex;
  align-items: start;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.criteria-body .bullet {
  width: 6px;
  height: 6px;
  margin-top: 6px;
}

/* Timeline */
.timeline {
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.timeline-date {
  display: flex;
  width: 200px;
  text-align: right;
  font-weight: bold;
  color: var(--primary-navy);
  margin-right: 32px;
  flex-shrink: 0;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  background: var(--primary-green);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px var(--primary-green);
  flex-shrink: 0;
  z-index: 1;
  margin-right: 1rem;
}

.timeline-item:first-child .timeline-dot {
  background: var(--primary-orange);
  box-shadow: 0 0 0 4px var(--primary-orange);
}

.timeline-content {
  flex-grow: 1;
  margin-left: 32px;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
  color: var(--primary-navy);
  font-size: 1.125rem;
}

/* Documents Grid */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.doc-item {
  display: flex;
  align-items: center;
  background: #f0fdf4;
  padding: 16px;
  border-radius: 8px;
}

.doc-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Alert Box */
.alert-box {
  background: #fff5f0;
  padding: 16px;
  border-radius: 8px;
  margin-top: 32px;
}

.alert-box strong {
  color: var(--primary-navy);
}

/* Warning Box */
.warning-box {
  background: #fef3c7;
  border-left: 4px solid #fbbf24;
  padding: 16px 24px;
  border-radius: 8px;
  margin-top: 48px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .focus-content {
    flex-direction: column;
  }

  .focus-number {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-date {
    margin-bottom: 16px;
    text-align: left;
    display: flex;
    align-items: center;
  }

  .timeline-dot {
    margin-right: 0.5rem;
  }

  .timeline-content {
    margin-left: 0;
    margin-top: 32px;
  }

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

  .card {
    padding: 24px;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* SVG Icons */
.icon-green {
  stroke: var(--primary-green);
}

.icon-navy {
  stroke: var(--primary-navy);
}

.icon-orange {
  stroke: var(--primary-orange);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-gray);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #003d7a 100%) !important;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.alert-box {
  background: var(--orange);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem auto;
  font-size: 1.1rem;
  font-weight: bold;
}

.cta-button {
  background: var(--green);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(9, 204, 127, 0.3);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Key Info Grid */
.key-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info-card {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.info-card p {
  font-size: 1rem;
}
.info-card h3 {
  color: var(--navy);
  margin: 0 0 1rem 0;
}

#navigation {
  margin: 0;
}

.info-card .highlight {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: bold;
}

section:nth-child(even) {
  background: var(--gray-50);
}

h2 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}

h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.focus-areas {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.focus-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.focus-card h4 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Lists */
section ul {
  margin-left: 2rem;
  margin-top: 1rem;
}

section li {
    margin: 0.5rem 0;
}
section li a {
    color: blue;
}

/* Timeline */
.timeline {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-item {
  padding: 1.5rem;
  border-left: 4px solid var(--green);
  margin: 1rem 0;
  background: var(--light-gray);
}

.timeline-item strong {
  color: var(--orange);
  display: block;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

th {
  background: var(--navy);
  color: white;
  padding: 1rem;
  text-align: left;
}

td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

tr:hover {
  background: var(--light-gray);
}

/* Contact Section */
.contact-info {
  background: var(--navy);
  color: white;
  padding: 3rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-info a {
  color: var(--green);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  th {
    background: var(--navy);
    color: white;
    padding: 0.5rem;
    text-align: left;
  }

  td {
    padding: 0.5rem;
    border-bottom: 1px solid #ddd;
  }

  td strong {
    display: flex;
    flex-wrap: wrap;
  }
}

.note-box {
  background: #fff3cd;
  border-left: 5px solid var(--orange);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 5px;
}

.contact-info .note-box {
  color: white;
}

.note-box strong {
  color: var(--orange);
}

.cta-btn a {
    color: white;
    font-weight: bold ;
}

.hero a {
    color: white;
    font-weight: bold ;
}

.contact-info p {
    color: white;
}
