/* ===== Header ===== */
.Header__navbar {
  width: 100%;
  background: linear-gradient(90deg, #B8ECD8 0%, #B3DEF5 100%);
  padding: 0 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  direction: rtl;
  font-family: 'Tajawal', 'Segoe UI', sans-serif;
}

.Header__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 76px;
}

.Header__logo img {
  height: 46px;
  width: auto;
  border-radius: 8px;
}

.Header__name {
  font-size: 19px;
  font-weight: 700;
  color: #14453b;
  margin-right: 12px;
}

.Header__menuTab {
  flex: 1;
  display: flex;
  justify-content: center;
}

.Header__menuList {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.Header__tabsTab {
  font-size: 15px;
  font-weight: 600;
  color: #145a6b;
  cursor: pointer;
  padding: 10px 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.Header__tabsTab:hover {
  color: #0c8a72;
  border-bottom: 2px solid #0c8a72;
}

.Header__menuicon {
  display: none;
}

.Header__clBoth {
  clear: both;
}

@media (max-width: 900px) {
  .Header__menuTab { display: none; }
  .Header__menuicon { display: block; }
}

/* ===== Search / Welcome Section ===== */
.Header__searchSection {
  background: linear-gradient(135deg, #DFF6EC 0%, #DCEFFB 100%);
  padding: 50px 24px;
  text-align: center;
}

.Header__searchTitle {
  font-size: 28px;
  font-weight: 800;
  color: #123c34;
  margin-bottom: 8px;
}

.Header__description {
  font-size: 16px;
  color: #2d5a52;
  margin-bottom: 24px;
}

/* ===== Footer ===== */
.Footer__footerCopyrigt {
  background: #EAF9F1;
  padding: 16px 0;
  border-top: 1px solid #cdeee0;
}

.Footer__container2 {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4a6d64;
}

.Footer__footerLink {
  color: #0c8a72;
  font-weight: 600;
  text-decoration: none;
}

.Footer__footerLink:hover {
  text-decoration: underline;
}
