/* Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
  color: #1a1a1a;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
}
h1,h2,h3 { font-weight: 700; }

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-size: 1.5rem; }
.btn-outline {
  border: 1px solid #059669;
  background: transparent;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
}
.btn-outline:hover { background:#059669; color:#fff; }

/* Buttons */
.btn {
  background: #059669;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover { background:#047857; transform: scale(1.05); }
.btn-light {
  background: #fff;
  color: #059669;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.btn-light:hover { background:#e6f5ee; }

/* Banner */
.banner {
  background: #d7f0e5;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}
.banner h2 { font-size: 2rem; margin: 10px 0 20px; }
.banner-img { width: 40%; max-width: 300px; }

/* Pillars */
.pillars h2 { margin-bottom: 20px; }
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: background 0.3s;
}
.card:hover { background:#f0fdfa; }
.card img { width: 60px; margin-bottom: 10px; }

/* Vision */
.vision .center { text-align: center; margin: 10px auto 30px; max-width: 700px; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}
.vision-card {
  color: #fff;
  padding: 20px;
  border-radius: 8px;
}
.bg-blue { background: #0284c7; }
.bg-green { background: #16a34a; }
.bg-yellow { background: #f59e0b; }

/* Quote */
.quote {
  background: #fff;
  padding: 30px;
  border-left: 6px solid #059669;
  border-radius: 8px;
}
.quote blockquote { font-style: italic; margin-bottom: 10px; }
.quote .author { font-weight: bold; }

/* Opinion Table */
.opinion table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.opinion th, .opinion td {
  padding: 12px;
  border: 1px solid #ddd;
}
.opinion th { background: #e5e7eb; }

/* News */
.news-card {
  display: flex;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.news-card img { width: 300px; object-fit: cover; }
.news-card .news-text { padding: 20px; }
.news-card.reverse { flex-direction: row-reverse; }
.meta { color:#6b7280; font-size: 0.9rem; margin-bottom: 10px; }

/* Donate */
.donate .center { text-align: center; margin-bottom: 20px; }
.donate-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
}
.don-card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.don-card:hover { background:#d1fae5; }
.don-card.active { background:#a7f3d0; }
.donate input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

/* Newsletter */
.newsletter {
  background: #d7f0e5;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
}
.newsletter-form {
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.newsletter-form input {
  padding: 10px;
  min-width: 250px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.note { font-size: 0.9rem; color:#4b5563; }

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #fff;
  margin-top: 40px;
}
.footer .social a { margin: 0 8px; font-size: 1.2rem; text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
  .banner { flex-direction: column; text-align: center; }
  .banner-img { width: 80%; margin-top: 20px; }
  .news-card, .news-card.reverse { flex-direction: column; }
  .news-card img { width: 100%; }
}




.al-jazeera-logo{
    width: 10px;
    height:88px;
  
}

 .facebook {
      background: #1877f2;
    }

    /* Instagram */
    .instagram {
      background: radial-gradient(circle at 30% 107%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
    }

    /* X (Twitter new logo) */
    .x {
      background: #000;
    }