:root {
  --navy: #0d1b5e;
  --red: #d62828;
  --red-dark: #a61d1d;
  --white: #ffffff;
  --offwhite: #f7f8fc;
  --text: #1a1f36;
  --muted: #5f677d;
  --border: rgba(13, 27, 94, 0.12);
  --shadow: 0 18px 40px rgba(13, 27, 94, 0.12);
  --radius: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(245,247,255,0.88)),
              url('images/flag-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  line-height: 1.6;
}

/* Premium subtle overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,27,94,0.08), rgba(214,40,40,0.06));
  pointer-events: none;
  z-index: 0;
}

/* Ensure content sits above overlay */
body > * {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--red));
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(214, 40, 40, 0.24);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 36px;
}

/* Removed decorative hero background shapes to allow flag background to show cleanly */

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(13, 27, 94, 0.08);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0 0 26px;
  font-size: 1.08rem;
  color: var(--muted);
  
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.hero-card {
  background: linear-gradient(180deg, #10236e 0%, #09113a 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 28px 56px rgba(9, 17, 58, 0.28);
  position: relative;
  overflow: hidden;
}



.hero-card h2 {
  margin-top: 0;
  font-size: 1.45rem;
}

.hero-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.section {
  padding: 34px 0;
}

.section-header {
  margin-bottom: 22px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--navy);
}

.section-header p {
  margin: 0;
  color: var(--muted);

}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.about-card {
  margin-top: 22px;
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.initiative {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.initiative .tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.initiative h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.15rem;
}

.cta {
  padding: 44px 0 60px;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy), #182f8a 65%, var(--red));
  color: var(--white);
  border-radius: 28px;
  padding: 34px;

  align-items: center;
  box-shadow: 0 28px 56px rgba(13, 27, 94, 0.28);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
  flex: 0 0 auto;
}

footer {
  padding: 22px 0 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .cta-box,
  .initiative-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 44px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.3rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

.cta-box {
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* top text spans full width */
.cta-top {
  text-align: left;
}

/* bottom layout: 3 columns */
.cta-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* center image */
.contact-image {
  display: flex;
  justify-content: center;
}

.contact-image img {
  width: 100%;

  height: auto;
}

/* right button alignment */
.contact-button {
  display: flex;
  justify-content: flex-end;
}