<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Zimbabwe News — World News Agency Directory</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:    #0f0e0d;
  --paper:  #f5f2ed;
  --cream:  #ede9e1;
  --accent: #c0392b;
  --accent2:#e67e22;
  --muted:  #7a7067;
  --rule:   #d5cfc4;
  --white:  #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max: 1100px;
  --radius: 4px;
}

html { font-size: 16px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }

/* ── HEADER ──────────────────────────────────────────────────── */
header {
  background: var(--ink);
  color: var(--white);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.logo a { color: var(--white); }
.logo-grid { color: var(--white); }
.logo-sep  { color: var(--accent); margin: 0 2px; font-style: italic; font-weight: 400; }
.logo-sub  {
  color: var(--accent2);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
}

.header-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: none;
}
@media (min-width: 600px) { .header-tagline { display: block; } }

/* ── HERO (home page only) ───────────────────────────────────── */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 0.5rem 0.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 41px
  );
  pointer-events: none;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent2);
}
.hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.hero-count {
  display: inline-flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 2rem;
}
.hero-count span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hero-count strong { display: block; font-size: 1.5rem; font-family: var(--font-display); color: var(--white); line-height: 1; }

/* ── CATEGORY GRID (home) ────────────────────────────────────── */
.section { padding: 4rem 2rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.cat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.cat-card:hover::before { transform: scaleX(1); }

.cat-id {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.cat-label {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
}
.cat-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.cat-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cat-meta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent2);
}
.cat-arrow {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-size: 1.1rem;
  color: var(--rule);
  transition: color .2s, transform .2s;
}
.cat-card:hover .cat-arrow { color: var(--accent); transform: translateX(3px); }

/* ── SUBDOMAIN PAGE ──────────────────────────────────────────── */
.sub-hero {
  background: var(--ink);
  color: var(--white);
  padding: 2rem 1.5rem;
  border-bottom: 3px solid var(--accent);
}
.sub-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.sub-crumb {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.sub-crumb a { color: var(--accent2); }
.sub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}
.sub-hero h1 em { font-style: italic; color: var(--accent2); }
.sub-hero p { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-top: 0.5rem; }

/* ── SITES TABLE ─────────────────────────────────────────────── */
.sites-section { padding: 2rem 1rem; flex: 1; }
.sites-inner { max-width: var(--max); margin: 0 auto; }

.sites-table {
  width: 100%;
  border-collapse: collapse;
}
.sites-table thead tr {
  border-bottom: 2px solid var(--ink);
}
.sites-table th {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 0.5rem 1rem 0.75rem;
  text-align: left;
}
.sites-table tbody tr {
  border-bottom: 1px solid var(--rule);
  transition: background .15s;
}
.sites-table tbody tr:hover { background: var(--cream); }
.sites-table td {
  padding: 1rem;
  font-size: 0.95rem;
}
.site-name {
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.site-name a:hover { color: var(--accent); }
    
.site-url a {
  color: var(--muted);
  font-size: 0.85rem;
  font-family: monospace;
  transition: color .15s;
}
.site-url a:hover { color: var(--accent); }

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--muted);
}
.empty-state h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 2rem;
  margin-top: auto;
  border-top: 3px solid var(--accent);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-top {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.25);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-links a:hover { color: var(--accent2); }
.footer-links a.active { color: var(--accent2); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color .15s; }
.footer-bottom a:hover { color: var(--accent); }

/* ── NOT FOUND ───────────────────────────────────────────────── */
.not-found {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.not-found h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.not-found a {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cat-card { animation: fadeUp .4s ease both; }
.cat-card:nth-child(1) { animation-delay: 0s; }
.cat-card:nth-child(2) { animation-delay: 0.06s; }
.cat-card:nth-child(3) { animation-delay: 0.12s; }
.cat-card:nth-child(4) { animation-delay: 0.18s; }
.cat-card:nth-child(5) { animation-delay: 0.24s; }
.cat-card:nth-child(6) { animation-delay: 0.3s; }
.cat-card:nth-child(7) { animation-delay: 0.36s; }
.cat-card:nth-child(8) { animation-delay: 0.42s; }
.cat-card:nth-child(9) { animation-delay: 0.48s; }
.cat-card:nth-child(10) { animation-delay: 0.54s; }
.cat-card:nth-child(11) { animation-delay: 0.6s; }
.cat-card:nth-child(12) { animation-delay: 0.66s; }
.cat-card:nth-child(13) { animation-delay: 0.72s; }
.cat-card:nth-child(14) { animation-delay: 0.78s; }
.cat-card:nth-child(15) { animation-delay: 0.84s; }
.cat-card:nth-child(16) { animation-delay: 0.9s; }
.cat-card:nth-child(17) { animation-delay: 0.96s; }
.cat-card:nth-child(18) { animation-delay: 1.02s; }
.cat-card:nth-child(19) { animation-delay: 1.08s; }
.cat-card:nth-child(20) { animation-delay: 1.14s; }
.cat-card:nth-child(21) { animation-delay: 1.2s; }
.cat-card:nth-child(22) { animation-delay: 1.26s; }
.cat-card:nth-child(23) { animation-delay: 1.32s; }
.cat-card:nth-child(24) { animation-delay: 1.38s; }
.cat-card:nth-child(25) { animation-delay: 1.44s; }
.cat-card:nth-child(26) { animation-delay: 1.5s; }
.cat-card:nth-child(27) { animation-delay: 1.56s; }
.cat-card:nth-child(28) { animation-delay: 1.62s; }
.cat-card:nth-child(29) { animation-delay: 1.68s; }
.cat-card:nth-child(30) { animation-delay: 1.74s; }
.cat-card:nth-child(31) { animation-delay: 1.8s; }
.cat-card:nth-child(32) { animation-delay: 1.86s; }
.cat-card:nth-child(33) { animation-delay: 1.92s; }
.cat-card:nth-child(34) { animation-delay: 1.98s; }
.cat-card:nth-child(35) { animation-delay: 2.04s; }
.cat-card:nth-child(36) { animation-delay: 2.1s; }
.cat-card:nth-child(37) { animation-delay: 2.16s; }
.cat-card:nth-child(38) { animation-delay: 2.22s; }
.cat-card:nth-child(39) { animation-delay: 2.28s; }
.cat-card:nth-child(40) { animation-delay: 2.34s; }
.cat-card:nth-child(41) { animation-delay: 2.4s; }
.cat-card:nth-child(42) { animation-delay: 2.46s; }
.cat-card:nth-child(43) { animation-delay: 2.52s; }
.cat-card:nth-child(44) { animation-delay: 2.58s; }
.cat-card:nth-child(45) { animation-delay: 2.64s; }
.cat-card:nth-child(46) { animation-delay: 2.7s; }
.cat-card:nth-child(47) { animation-delay: 2.76s; }
.cat-card:nth-child(48) { animation-delay: 2.82s; }
.cat-card:nth-child(49) { animation-delay: 2.88s; }
.cat-card:nth-child(50) { animation-delay: 2.94s; }
.cat-card:nth-child(51) { animation-delay: 3s; }
.cat-card:nth-child(52) { animation-delay: 3.06s; }
.cat-card:nth-child(53) { animation-delay: 3.12s; }
.cat-card:nth-child(54) { animation-delay: 3.18s; }
.cat-card:nth-child(55) { animation-delay: 3.24s; }
.cat-card:nth-child(56) { animation-delay: 3.3s; }
.cat-card:nth-child(57) { animation-delay: 3.36s; }
.cat-card:nth-child(58) { animation-delay: 3.42s; }
.cat-card:nth-child(59) { animation-delay: 3.48s; }
.cat-card:nth-child(60) { animation-delay: 3.54s; }
.cat-card:nth-child(61) { animation-delay: 3.6s; }
.cat-card:nth-child(62) { animation-delay: 3.66s; }
.cat-card:nth-child(63) { animation-delay: 3.72s; }
.cat-card:nth-child(64) { animation-delay: 3.78s; }
.cat-card:nth-child(65) { animation-delay: 3.84s; }
.cat-card:nth-child(66) { animation-delay: 3.9s; }
.cat-card:nth-child(67) { animation-delay: 3.96s; }
.cat-card:nth-child(68) { animation-delay: 4.02s; }
.cat-card:nth-child(69) { animation-delay: 4.08s; }
.cat-card:nth-child(70) { animation-delay: 4.14s; }
.cat-card:nth-child(71) { animation-delay: 4.2s; }
.cat-card:nth-child(72) { animation-delay: 4.26s; }
.cat-card:nth-child(73) { animation-delay: 4.32s; }
.cat-card:nth-child(74) { animation-delay: 4.38s; }
.cat-card:nth-child(75) { animation-delay: 4.44s; }
.cat-card:nth-child(76) { animation-delay: 4.5s; }
.cat-card:nth-child(77) { animation-delay: 4.56s; }
.cat-card:nth-child(78) { animation-delay: 4.62s; }
.cat-card:nth-child(79) { animation-delay: 4.68s; }
.cat-card:nth-child(80) { animation-delay: 4.74s; }
.cat-card:nth-child(81) { animation-delay: 4.8s; }
.cat-card:nth-child(82) { animation-delay: 4.86s; }
.cat-card:nth-child(83) { animation-delay: 4.92s; }
.cat-card:nth-child(84) { animation-delay: 4.98s; }
.cat-card:nth-child(85) { animation-delay: 5.04s; }
.cat-card:nth-child(86) { animation-delay: 5.1s; }
.cat-card:nth-child(87) { animation-delay: 5.16s; }
.cat-card:nth-child(88) { animation-delay: 5.22s; }
.cat-card:nth-child(89) { animation-delay: 5.28s; }
.cat-card:nth-child(90) { animation-delay: 5.34s; }
.cat-card:nth-child(91) { animation-delay: 5.4s; }
.cat-card:nth-child(92) { animation-delay: 5.46s; }
.cat-card:nth-child(93) { animation-delay: 5.52s; }
.cat-card:nth-child(94) { animation-delay: 5.58s; }
.cat-card:nth-child(95) { animation-delay: 5.64s; }
.cat-card:nth-child(96) { animation-delay: 5.7s; }
.cat-card:nth-child(97) { animation-delay: 5.76s; }
.cat-card:nth-child(98) { animation-delay: 5.82s; }
.cat-card:nth-child(99) { animation-delay: 5.88s; }
.cat-card:nth-child(100) { animation-delay: 5.94s; }
.cat-card:nth-child(101) { animation-delay: 6s; }
.cat-card:nth-child(102) { animation-delay: 6.06s; }
.cat-card:nth-child(103) { animation-delay: 6.12s; }
.cat-card:nth-child(104) { animation-delay: 6.18s; }
.cat-card:nth-child(105) { animation-delay: 6.24s; }
.cat-card:nth-child(106) { animation-delay: 6.3s; }
.cat-card:nth-child(107) { animation-delay: 6.36s; }
.cat-card:nth-child(108) { animation-delay: 6.42s; }
.cat-card:nth-child(109) { animation-delay: 6.48s; }
.cat-card:nth-child(110) { animation-delay: 6.54s; }
.cat-card:nth-child(111) { animation-delay: 6.6s; }
.cat-card:nth-child(112) { animation-delay: 6.66s; }
.cat-card:nth-child(113) { animation-delay: 6.72s; }
.cat-card:nth-child(114) { animation-delay: 6.78s; }
.cat-card:nth-child(115) { animation-delay: 6.84s; }
.cat-card:nth-child(116) { animation-delay: 6.9s; }
.cat-card:nth-child(117) { animation-delay: 6.96s; }
.cat-card:nth-child(118) { animation-delay: 7.02s; }
.cat-card:nth-child(119) { animation-delay: 7.08s; }
.cat-card:nth-child(120) { animation-delay: 7.14s; }
.cat-card:nth-child(121) { animation-delay: 7.2s; }
.cat-card:nth-child(122) { animation-delay: 7.26s; }
.cat-card:nth-child(123) { animation-delay: 7.32s; }
.cat-card:nth-child(124) { animation-delay: 7.38s; }
.cat-card:nth-child(125) { animation-delay: 7.44s; }
.cat-card:nth-child(126) { animation-delay: 7.5s; }
.cat-card:nth-child(127) { animation-delay: 7.56s; }
.cat-card:nth-child(128) { animation-delay: 7.62s; }
.cat-card:nth-child(129) { animation-delay: 7.68s; }
.cat-card:nth-child(130) { animation-delay: 7.74s; }
.cat-card:nth-child(131) { animation-delay: 7.8s; }
.cat-card:nth-child(132) { animation-delay: 7.86s; }
.cat-card:nth-child(133) { animation-delay: 7.92s; }
.cat-card:nth-child(134) { animation-delay: 7.98s; }
.cat-card:nth-child(135) { animation-delay: 8.04s; }
.cat-card:nth-child(136) { animation-delay: 8.1s; }
.cat-card:nth-child(137) { animation-delay: 8.16s; }
.cat-card:nth-child(138) { animation-delay: 8.22s; }
.cat-card:nth-child(139) { animation-delay: 8.28s; }
.cat-card:nth-child(140) { animation-delay: 8.34s; }
.cat-card:nth-child(141) { animation-delay: 8.4s; }
.cat-card:nth-child(142) { animation-delay: 8.46s; }
.cat-card:nth-child(143) { animation-delay: 8.52s; }
.cat-card:nth-child(144) { animation-delay: 8.58s; }
.cat-card:nth-child(145) { animation-delay: 8.64s; }
.cat-card:nth-child(146) { animation-delay: 8.7s; }
.cat-card:nth-child(147) { animation-delay: 8.76s; }
.cat-card:nth-child(148) { animation-delay: 8.82s; }
.cat-card:nth-child(149) { animation-delay: 8.88s; }
.cat-card:nth-child(150) { animation-delay: 8.94s; }
.cat-card:nth-child(151) { animation-delay: 9s; }
.cat-card:nth-child(152) { animation-delay: 9.06s; }
.cat-card:nth-child(153) { animation-delay: 9.12s; }
.cat-card:nth-child(154) { animation-delay: 9.18s; }
.cat-card:nth-child(155) { animation-delay: 9.24s; }
.cat-card:nth-child(156) { animation-delay: 9.3s; }
.cat-card:nth-child(157) { animation-delay: 9.36s; }
.cat-card:nth-child(158) { animation-delay: 9.42s; }
.cat-card:nth-child(159) { animation-delay: 9.48s; }
.cat-card:nth-child(160) { animation-delay: 9.54s; }
.cat-card:nth-child(161) { animation-delay: 9.6s; }
.cat-card:nth-child(162) { animation-delay: 9.66s; }
.cat-card:nth-child(163) { animation-delay: 9.72s; }
.cat-card:nth-child(164) { animation-delay: 9.78s; }
.cat-card:nth-child(165) { animation-delay: 9.84s; }

tbody tr { animation: fadeUp .3s ease both; }
tbody tr:nth-child(1) { animation-delay: 0s; }
tbody tr:nth-child(2) { animation-delay: 0.05s; }
tbody tr:nth-child(3) { animation-delay: 0.1s; }
</style>
</head>
<body>

<!-- ── HEADER ─────────────────────────────────────────────────── -->
<header>
  <div class="header-inner">
    <div class="logo">
      <a href="https://newsagencies.shafaqna.com/">
        <span class="logo-grid">World News Agency Directory</span><span class="logo-sep"></span>      </a>
    </div>
    <span class="header-tagline">The News Directory</span>
  </div>
</header>

<!-- ══════════════════════════════════════════════════════════════
     SUBDOMAIN PAGE
════════════════════════════════════════════════════════════════ -->

<div class="sub-hero">
  <div class="sub-hero-inner">
    <div class="sub-crumb"><a href="https://newsagencies.shafaqna.com/">News Directory</a> / zimbabwe</div>
    <h1>Zimbabwe News</h1>
      </div>
</div>

<section class="sites-section">
  <div class="sites-inner">
        <table class="sites-table">
      <thead>
        <tr>
          <th>#</th>
          <th>Publication</th>
          <th>Website</th>
          <th></th>
        </tr>
      </thead>
      <tbody>
                <tr>
          <td style="color:var(--muted);font-size:.8rem;width:3rem">1</td>
          <td class="site-name"><a href="https://www.zbcnews.co.zw/" target="_blank" rel="noopener">ZBC</a></td>
          <td class="site-url"><a href="https://www.zbcnews.co.zw/" target="_blank" rel="noopener">https://www.zbcnews.co.zw/</a></td>
        </tr>
                <tr>
          <td style="color:var(--muted);font-size:.8rem;width:3rem">2</td>
          <td class="site-name"><a href="https://www.herald.co.zw/" target="_blank" rel="noopener">The Herald</a></td>
          <td class="site-url"><a href="https://www.herald.co.zw/" target="_blank" rel="noopener">https://www.herald.co.zw/</a></td>
        </tr>
                <tr>
          <td style="color:var(--muted);font-size:.8rem;width:3rem">3</td>
          <td class="site-name"><a href="https://www.newsday.co.zw/" target="_blank" rel="noopener">NewsDay</a></td>
          <td class="site-url"><a href="https://www.newsday.co.zw/" target="_blank" rel="noopener">https://www.newsday.co.zw/</a></td>
        </tr>
              </tbody>
    </table>
      </div>
</section>


<!-- ── FOOTER ─────────────────────────────────────────────────── -->
<footer>
  <div class="footer-inner">
    <div class="footer-top">Explore all directories</div>
    <nav class="footer-links">
      <a href="https://newsagencies.shafaqna.com/">Home</a>
            <a href="https://afghanistan.shafaqna.com/" >
        Afghanistan News      </a>
            <a href="https://algeria.shafaqna.com/" >
        Algeria News      </a>
            <a href="https://argentina.shafaqna.com/" >
        Argentina News      </a>
            <a href="https://australia.shafaqna.com/" >
        Australia News      </a>
            <a href="https://austria.shafaqna.com/" >
        Austria News      </a>
            <a href="https://bangladesh.shafaqna.com/" >
        Bangladesh News      </a>
            <a href="https://belgium.shafaqna.com/" >
        Belgium News      </a>
            <a href="https://brazil.shafaqna.com/" >
        Brazil News      </a>
            <a href="https://canada.shafaqna.com/" >
        Canada News      </a>
            <a href="https://chile.shafaqna.com/" >
        Chile News      </a>
            <a href="https://china.shafaqna.com/" >
        China News      </a>
            <a href="https://colombia.shafaqna.com/" >
        Colombia News      </a>
            <a href="https://czech.shafaqna.com/" >
        Czech Republic News      </a>
            <a href="https://denmark.shafaqna.com/" >
        Denmark News      </a>
            <a href="https://egypt.shafaqna.com/" >
        Egypt News      </a>
            <a href="https://finland.shafaqna.com/" >
        Finland News      </a>
            <a href="https://france.shafaqna.com/" >
        France News      </a>
            <a href="https://germany.shafaqna.com/" >
        Germany News      </a>
            <a href="https://greece.shafaqna.com/" >
        Greece News      </a>
            <a href="https://hungary.shafaqna.com/" >
        Hungary News      </a>
            <a href="https://in.shafaqna.com/" >
        India News      </a>
            <a href="https://indonesia.shafaqna.com/" >
        Indonesia News      </a>
            <a href="https://iran.shafaqna.com/" >
        Iran News      </a>
            <a href="https://iq.shafaqna.com/" >
        Iraq News      </a>
            <a href="https://ireland.shafaqna.com/" >
        Ireland News      </a>
            <a href="https://italy.shafaqna.com/" >
        Italy News      </a>
            <a href="https://japan.shafaqna.com/" >
        Japan News      </a>
            <a href="https://kazakhstan.shafaqna.com/" >
        Kazakhstan News      </a>
            <a href="https://malaysia.shafaqna.com/" >
        Malaysia News      </a>
            <a href="https://mexico.shafaqna.com/" >
        Mexico News      </a>
            <a href="https://morocco.shafaqna.com/" >
        Morocco News      </a>
            <a href="https://netherlands.shafaqna.com/" >
        Netherlands News      </a>
            <a href="https://newzealand.shafaqna.com/" >
        New Zealand News      </a>
            <a href="https://nigeria.shafaqna.com/" >
        Nigeria News      </a>
            <a href="https://norway.shafaqna.com/" >
        Norway News      </a>
            <a href="https://pk.shafaqna.com/" >
        Pakistan News      </a>
            <a href="https://peru.shafaqna.com/" >
        Peru News      </a>
            <a href="https://philippines.shafaqna.com/" >
        Philippines News      </a>
            <a href="https://poland.shafaqna.com/" >
        Poland News      </a>
            <a href="https://portugal.shafaqna.com/" >
        Portugal News      </a>
            <a href="https://romania.shafaqna.com/" >
        Romania News      </a>
            <a href="https://russia.shafaqna.com/" >
        Russia News      </a>
            <a href="https://saudi.shafaqna.com/" >
        Saudi Arabia News      </a>
            <a href="https://southafrica.shafaqna.com/" >
        South Africa News      </a>
            <a href="https://southkorea.shafaqna.com/" >
        South Korea News      </a>
            <a href="https://spain.shafaqna.com/" >
        Spain News      </a>
            <a href="https://sweden.shafaqna.com/" >
        Sweden News      </a>
            <a href="https://switzerland.shafaqna.com/" >
        Switzerland News      </a>
            <a href="https://thailand.shafaqna.com/" >
        Thailand News      </a>
            <a href="https://turkey.shafaqna.com/" >
        Turkey News      </a>
            <a href="https://ukraine.shafaqna.com/" >
        Ukraine News      </a>
            <a href="https://uk.shafaqna.com/" >
        United Kingdom News      </a>
            <a href="https://us.shafaqna.com/" >
        United States News      </a>
            <a href="https://vietnam.shafaqna.com/" >
        Vietnam News      </a>
            <a href="https://angola.shafaqna.com/" >
        Angola News      </a>
            <a href="https://armenia.shafaqna.com/" >
        Armenia News      </a>
            <a href="https://azerbaijan.shafaqna.com/" >
        Azerbaijan news      </a>
            <a href="https://bahrain.shafaqna.com/" >
        Bahrain News      </a>
            <a href="https://belarus.shafaqna.com/" >
        Belarus News      </a>
            <a href="https://bulgaria.shafaqna.com/" >
        Bulgaria News      </a>
            <a href="https://economy.shafaqna.com/" >
        Economy News      </a>
            <a href="https://lb.shafaqna.com/" >
        Lebanon News      </a>
            <a href="https://oman.shafaqna.com/" >
        Oman News      </a>
            <a href="https://palestine.shafaqna.com/" >
        Palestine News      </a>
            <a href="https://qatar.shafaqna.com/" >
        Qatar News      </a>
            <a href="https://sudan.shafaqna.com/" >
        Sudan News      </a>
            <a href="https://syria.shafaqna.com/" >
        Syria News      </a>
            <a href="https://albania.shafaqna.com/" >
        Albania News      </a>
            <a href="https://bosnia.shafaqna.com/" >
        Bosnia and Herzegovina News      </a>
            <a href="https://croatia.shafaqna.com/" >
        Croatia News      </a>
            <a href="https://cyprus.shafaqna.com/" >
        Cyprus News      </a>
            <a href="https://estonia.shafaqna.com/" >
        Estonia News      </a>
            <a href="https://georgia.shafaqna.com/" >
        Georgia News      </a>
            <a href="https://iceland.shafaqna.com/" >
        Iceland News      </a>
            <a href="https://latvia.shafaqna.com/" >
        Latvia News      </a>
            <a href="https://lithuania.shafaqna.com/" >
        Lithuania News      </a>
            <a href="https://luxembourg.shafaqna.com/" >
        Luxembourg News      </a>
            <a href="https://moldova.shafaqna.com/" >
        Moldova News      </a>
            <a href="https://montenegro.shafaqna.com/" >
        Montenegro News      </a>
            <a href="https://northmacedonia.shafaqna.com/" >
        North Macedonia News      </a>
            <a href="https://serbia.shafaqna.com/" >
        Serbia News      </a>
            <a href="https://slovakia.shafaqna.com/" >
        Slovakia News      </a>
            <a href="https://slovenia.shafaqna.com/" >
        Slovenia News      </a>
            <a href="https://benin.shafaqna.com/" >
        Benin News      </a>
            <a href="https://botswana.shafaqna.com/" >
        Botswana News      </a>
            <a href="https://burkinafaso.shafaqna.com/" >
        Burkina Faso News      </a>
            <a href="https://burundi.shafaqna.com/" >
        Burundi News      </a>
            <a href="https://cameroon.shafaqna.com/" >
        Cameroon News      </a>
            <a href="https://centralafrican.shafaqna.com/" >
        Central African Republic News      </a>
            <a href="https://chad.shafaqna.com/" >
        Chad News      </a>
            <a href="https://congo.shafaqna.com/" >
        Republic of Congo News      </a>
            <a href="https://drcongo.shafaqna.com/" >
        DR Congo News      </a>
            <a href="https://cotedivoire.shafaqna.com/" >
        Côte d&#039;Ivoire News      </a>
            <a href="https://djibouti.shafaqna.com/" >
        Djibouti News      </a>
            <a href="https://eritrea.shafaqna.com/" >
        Eritrea News      </a>
            <a href="https://eswatini.shafaqna.com/" >
        Eswatini News      </a>
            <a href="https://ethiopia.shafaqna.com/" >
        Ethiopia News      </a>
            <a href="https://gabon.shafaqna.com/" >
        Gabon News      </a>
            <a href="https://gambia.shafaqna.com/" >
        The Gambia News      </a>
            <a href="https://ghana.shafaqna.com/" >
        Ghana News      </a>
            <a href="https://guinea.shafaqna.com/" >
        Guinea News      </a>
            <a href="https://guineabissau.shafaqna.com/" >
        Guinea-Bissau News      </a>
            <a href="https://kenya.shafaqna.com/" >
        Kenya News      </a>
            <a href="https://lesotho.shafaqna.com/" >
        Lesotho News      </a>
            <a href="https://liberia.shafaqna.com/" >
        Liberia News      </a>
            <a href="https://libya.shafaqna.com/" >
        Libya News      </a>
            <a href="https://madagascar.shafaqna.com/" >
        Madagascar News      </a>
            <a href="https://malawi.shafaqna.com/" >
        Malawi News      </a>
            <a href="https://mali.shafaqna.com/" >
        Mali News      </a>
            <a href="https://mauritania.shafaqna.com/" >
        Mauritania News      </a>
            <a href="https://mozambique.shafaqna.com/" >
        Mozambique News      </a>
            <a href="https://namibia.shafaqna.com/" >
        Namibia News      </a>
            <a href="https://niger.shafaqna.com/" >
        Niger News      </a>
            <a href="https://rwanda.shafaqna.com/" >
        Rwanda News      </a>
            <a href="https://senegal.shafaqna.com/" >
        Senegal News      </a>
            <a href="https://sierraleone.shafaqna.com/" >
        Sierra Leone News      </a>
            <a href="https://somalia.shafaqna.com/" >
        Somalia News      </a>
            <a href="https://southsudan.shafaqna.com/" >
        South Sudan News      </a>
            <a href="https://tanzania.shafaqna.com/" >
        Tanzania News      </a>
            <a href="https://togo.shafaqna.com/" >
        Togo News      </a>
            <a href="https://tunisia.shafaqna.com/" >
        Tunisia News      </a>
            <a href="https://uganda.shafaqna.com/" >
        Uganda News      </a>
            <a href="https://zambia.shafaqna.com/" >
        Zambia News      </a>
            <a href="https://zimbabwe.shafaqna.com/" class="active">
        Zimbabwe News      </a>
            <a href="https://bhutan.shafaqna.com/" >
        Bhutan News      </a>
            <a href="https://brunei.shafaqna.com/" >
        Brunei News      </a>
            <a href="https://cambodia.shafaqna.com/" >
        Cambodia News      </a>
            <a href="https://timorleste.shafaqna.com/" >
        Timor-Leste News      </a>
            <a href="https://jordan.shafaqna.com/" >
        Jordan News      </a>
            <a href="https://kuwait.shafaqna.com/" >
        Kuwait News      </a>
            <a href="https://kyrgyzstan.shafaqna.com/" >
        Kyrgyzstan News      </a>
            <a href="https://laos.shafaqna.com/" >
        Laos News      </a>
            <a href="https://mongolia.shafaqna.com/" >
        Mongolia News      </a>
            <a href="https://myanmar.shafaqna.com/" >
        Myanmar News      </a>
            <a href="https://nepal.shafaqna.com/" >
        Nepal News      </a>
            <a href="https://northkorea.shafaqna.com/" >
        North Korea News      </a>
            <a href="https://singapore.shafaqna.com/" >
        Singapore News      </a>
            <a href="https://srilanka.shafaqna.com/" >
        Sri Lanka News      </a>
            <a href="https://tajikistan.shafaqna.com/" >
        Tajikistan News      </a>
            <a href="https://turkmenistan.shafaqna.com/" >
        Turkmenistan News      </a>
            <a href="https://uae.shafaqna.com/" >
        United Arab Emirates News      </a>
            <a href="https://uzbekistan.shafaqna.com/" >
        Uzbekistan News      </a>
            <a href="https://yemen.shafaqna.com/" >
        Yemen News      </a>
            <a href="https://belize.shafaqna.com/" >
        Belize News      </a>
            <a href="https://bolivia.shafaqna.com/" >
        Bolivia News      </a>
            <a href="https://costarica.shafaqna.com/" >
        Costa Rica News      </a>
            <a href="https://cuba.shafaqna.com/" >
        Cuba News      </a>
            <a href="https://dominicanrepublic.shafaqna.com/" >
        Dominican Republic News      </a>
            <a href="https://ecuador.shafaqna.com/" >
        Ecuador News      </a>
            <a href="https://elsalvador.shafaqna.com/" >
        El Salvador News      </a>
            <a href="https://guatemala.shafaqna.com/" >
        Guatemala News      </a>
            <a href="https://guyana.shafaqna.com/" >
        Guyana News      </a>
            <a href="https://haiti.shafaqna.com/" >
        Haiti News      </a>
            <a href="https://honduras.shafaqna.com/" >
        Honduras News      </a>
            <a href="https://jamaica.shafaqna.com/" >
        Jamaica News      </a>
            <a href="https://nicaragua.shafaqna.com/" >
        Nicaragua News      </a>
            <a href="https://panama.shafaqna.com/" >
        Panama News      </a>
            <a href="https://paraguay.shafaqna.com/" >
        Paraguay News      </a>
            <a href="https://suriname.shafaqna.com/" >
        Suriname News      </a>
            <a href="https://trinidad.shafaqna.com/" >
        Trinidad and Tobago News      </a>
            <a href="https://uruguay.shafaqna.com/" >
        Uruguay News      </a>
            <a href="https://venezuela.shafaqna.com/" >
        Venezuela News      </a>
            <a href="https://fiji.shafaqna.com/" >
        Fiji News      </a>
            <a href="https://papuanewguinea.shafaqna.com/" >
        Papua New Guinea News      </a>
            <a href="https://religionnews.shafaqna.com/" >
        Religion News      </a>
          </nav>
    <div class="footer-bottom">
      <span>© 2026 News Directory · newsagencies.shafaqna.com</span>
    </div>
  </div>
</footer>

</body>
</html>
