/* ===== HEADER TOOLBAR ===== */
.header-toolbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.17);
  z-index: 300;
}

/* Hide lang-toggle when nav is collapsed */
body.nav-collapsed .lang-toggle {
  display: none;
}

.header-logo {
  position: absolute;
  left: 140px;
  top: 50%;
  transform: translateY(-50%);
}

.header-logo img {
  display: block;
  height: 100%;
  width: 190px;
}


/* ===== SIDENAV ===== */
.sidenav {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--sidenav-w);
  height: 100%;
  background: var(--blur-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  z-index: 300;
  transition: width 0.3s ease;
  overflow: hidden;
}

/* Collapsed state — icon strip only */
.sidenav.collapsed {
  width: 60px;
}

.sidenav.collapsed .menu-label,
.sidenav.collapsed .arrow-icon,
.sidenav.collapsed .dropdown-body,
.sidenav.collapsed .sidenav-content-menu .dropdown-items,
.sidenav.collapsed .interaction-label,
.sidenav.collapsed .graphic-device {
  display: none;
}

.sidenav.collapsed .dropdown-header {
  justify-content: center;
  padding: 12px 0;
}

.sidenav.collapsed .menu-item {
  width: 44px;
}

.sidenav.collapsed .sidenav-menu {
  padding: 8px;
  gap: 8px;
}

.sidenav.collapsed .sidenav-hamburger {
  justify-content: center;
  padding: 0;
}

.sidenav.collapsed .interaction-menu {
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.sidenav.collapsed .interaction-icon-box {
  width: 40px;
  height: 40px;
}

.sidenav-hamburger {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  flex-shrink: 0;
}

.sidenav-hamburger button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
}

.sidenav-hamburger button img {
  width: 100%;
  height: 100%;
  display: block;
}

.sidenav-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidenav-content-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Menu items */
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 228px;
}

.menu-body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  border-radius: 12px;
  background: var(--nav-inactive);
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  text-decoration: none;
  position: relative;
}

.menu-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.dropdown-header:hover {
  background: var(--nav-hover);
}

.dropdown-header.active {
  background: var(--nav-active);
  cursor: default;
}

.dropdown-header .menu-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dropdown-header .menu-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.dropdown-header .menu-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.2;
}

.dropdown-header .arrow-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.dropdown-header .arrow-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.menu-item.open .arrow-icon {
  transform: rotate(180deg);
}

/* Dropdown body — animated with max-height */
.dropdown-body {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.dropdown-body.open {
  max-height: 600px;
  opacity: 1;
}

.dropdown-body .graphic-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 8px;
}

.graphic-device .line {
  flex: 1;
  width: 100%;
  background: var(--nav-active);
  border-radius: 0 0 64px 64px;
}

.graphic-device .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF3D;
  flex-shrink: 0;
}

.dropdown-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 8px 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 8px;
  border-radius: 10px;
  background: var(--nav-inactive);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  width: 184px;
  line-height: 1.3;
}

.dropdown-item:hover {
  background: var(--nav-hover);
}

.dropdown-item.active {
  background: var(--nav-active);
}

/* Interaction menu (Share, Info, Download) */
.interaction-menu {
  display: flex;
  gap: 16px;
}

.interaction-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.interaction-icon-box {
  background: var(--nav-inactive);
  border-radius: 12px;
  padding: 12px 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interaction-icon-box:hover {
  background: var(--nav-hover);
}

.interaction-icon-box img {
  width: 24px;
  height: 24px;
  display: block;
}

.interaction-label {
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

/* ===== SHARE MENU (social) ===== */
/* Lives on <body> (not inside .sidenav, which clips overflow) and is
   positioned next to the Share button at open time. */
.qffd-share-menu {
  position: fixed;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  min-width: 184px;
  background: rgba(18, 18, 18, 0.94);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.qffd-share-menu.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.qffd-share-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}

.qffd-share-opt:hover {
  background: var(--nav-hover);
}

.qffd-share-ic {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qffd-share-ic svg {
  width: 100%;
  height: 100%;
  display: block;
}

.qffd-ic-facebook  { color: #1877f2; }
.qffd-ic-linkedin  { color: #0a66c2; }
.qffd-ic-instagram { color: #e1306c; }
.qffd-ic-x         { color: #ffffff; }
.qffd-ic-whatsapp  { color: #25d366; }
.qffd-ic-email     { color: #eab308; }

[dir="rtl"] .qffd-share-opt { text-align: right; }

/* ===== CARDS ===== */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 24px;
  color: #fff;
}

/* Read more button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
}

.read-more-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* ===== PAGE TITLE ===== */
.page-title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== PAGE TAB NAVIGATION ===== */
.page-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.page-tab {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s;
}

.page-tab:hover {
  color: #fff;
}

.page-tab.active {
  color: #fff;
  border-bottom-color: var(--accent);
}

/* ===== DATA TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.data-table th {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

/* ===== STATS BAR ===== */
.stat-bar-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.6s ease;
}

/* ===== SECTOR PILL ===== */
.sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  border: 1px solid transparent;
}

.sector-pill:hover {
  background: rgba(255, 255, 255, 0.14);
}

.sector-pill.active {
  background: var(--accent);
  color: #000;
}

/* ===== AGREEMENT ROW ===== */
.agreement-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agreement-row:last-child {
  border-bottom: none;
}

.agreement-flag {
  width: 48px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.agreement-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agreement-name {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
}

.agreement-date {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}


.core_card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(4px);
  text-align: center;
}

.category_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

/* Flagship Initiatives share the same 4-column layout as Thematic Focus.
   Extra tiles wrap to a second row. */
.flagship_container .category_grid {
  grid-template-columns: repeat(4, 1fr);
}

.category {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  transition: all 0.5s ease;
}

.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category h4 {
  position: absolute;
  background: white;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.4;
  overflow: hidden;
}

.prev_arrow {
  position: absolute;
  bottom: 200px;
  z-index: 10;
  left: 0;
  display: inline-block;
}

/* NEW wrapper becomes the reference */
.arrow-wrap {
  position: relative;
  display: inline-block;
}

.prev {
  width: 68px;
  height: 68px;
  display: block;
}

.prev-mobile {
  display: none;
}

.prev-desktop {
  display: block;
}

.thumb-preview {
  position: absolute;
  left: 100%;
  /* right of arrow */
  top: 0;
  width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.prev_arrow:hover .thumb-preview {
  opacity: 1;
  visibility: visible;
}

/* ===== REGION PILLS ===== */
.region-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  color: #fff;
  border: none;
  font-family: Montserrat;
}

.region-pill:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.pill-active {
  padding-right: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Tail ONLY when active */
.pill-active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 22%;
  width: 20px;
  height: 20px;
  background: inherit;
  transform: rotate(90deg) scale(1, 1.4);
  border-radius: 60% 60% 60% 60%;
}


.pill-mena {
  background: #00948B;
}

.pill-asia {
  background: #84C300;
}

.pill-ssa {
  background: #FDB500;
}

.pill-europe {
  background: #F70000;
}

.pill-america {
  background: #B62947;
}

.pill-org {
  background: #00AAE6;
}

/* ===== COUNTRY LISTS & TABS ===== */
.country-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 15px;
  color: #1a1a2e;
  max-width: 70%;
}

.country-row:last-child {
  border-bottom: none;
}

.country-total {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 14px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  border-top: 2px solid #1a1a2e;
  margin-top: 4px;
  max-width: 70%;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.country-grid .country-total {
  grid-column: 1 / -1;
}

/* ===== DISBURSEMENTS PAGE LAYOUT ===== */
.disbursements-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.disbursements-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.15;
  margin-bottom: 4px;
}

.disbursements-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #dc2626;
}

.disbursements-total-wrap {
  text-align: right;
}

.disbursements-total-label {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.disbursements-total-value {
  font-size: 28px;
  font-weight: 700;
  color: #B62947;
}

.disbursements-tabs-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.disbursements-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  min-height: 400px;
}

.partners h2 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: #000;
}

.partner_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);

  height: calc(100vh - 250px);

  animation: fadeIn 0.4s ease-out;
  overflow: hidden;
}

.partner_img {
  min-height: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;
  position: relative;
}

/* vertical borders — logical (inline-end) so they mirror correctly in RTL
   (Arabic): physical border-right would leave an outer border on the right
   column and drop an internal one. */
.partner_img:not(:nth-child(3n)) {
  border-inline-end: 1px solid #D9D9D9;
}

/* horizontal borders */
.partner_img:nth-child(-n+6) {
  border-bottom: 1px solid #D9D9D9;
}

.partner_img img {
  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;
  display: block;
}

.statistics_types {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding-right: 290px;
  padding-left: 200px;
}

/* ===== HERO TEXT (INDEX) ===== */
.hero-text-wrap {
  position: absolute;
  right: 310px;
  bottom: 190px;
  text-align: right;
  z-index: 10;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.flex_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.flex_row h4 {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  text-align: right;
  margin: 0;
}

.flex_row h3 {
  font-weight: 600;
  font-size: 32px;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .flex_row {
    flex-direction: column;
    align-items: flex-start;
  }

  .flex_row h3 {
    font-size: 24px;
  }

  .flex_row h4 {
    font-size: 16px;
    text-align: left;
  }
}
#world_map {
  width: 100%;
  height: calc(100vh - 280px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

#world_map svg {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.country_name {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 32px;
}

.dash_info h3.mena,
.mena {
  color: #00948B;
}

svg.mappp {
  position: absolute;
  top: 0;
}

.country_lists {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  flex-wrap: wrap;
  width: calc(100% - 20px);
  padding: 0 10px;
  box-sizing: border-box;
}

.country_button a {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

.country_button h6 {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .country_lists {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .country_button a {
    font-size: 14px;
    padding: 8px 14px;
  }

  .country_button h6 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .country_button a {
    width: 100%;
  }
}

.mena_btn {
  h6 {
    color: #00948B;
  }

  a {
    background: #00948B;
  }
}

.asia_btn {
  h6 {
    color: #84C300;
  }

  a {
    background: #84C300;
  }
}

.ssa_btn {
  h6 {
    color: #FDB500;
  }

  a {
    background: #FDB500;
  }
}

.europe_btn {
  h6 {
    color: #F70000;
  }

  a {
    background: #F70000;
  }
}

.america_btn {
  h6 {
    color: #B62947;
  }

  a {
    background: #B62947;
  }
}

.org_btn {
  h6 {
    color: #00AAE6;
  }

  a {
    background: #00AAE6;
  }
}

/* ===== DISBURSEMENTS MENA CARD ===== */
.disbursements-side-card {
  float: right;
  min-width: 400px;
  margin-left: auto;
  align-self: flex-end;
}

.disbursements-side-card>* {
  pointer-events: auto;
}

.mena-card-active {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  transition: all 0.3s ease-in;
}

.mena-card-icon {
  background: #fff;
  border-radius: 50%;
}

.mena-card-title-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
  align-items: flex-end;
  text-align: right;
}

.mena-card-title {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 24px;
  color: #FDB500;
}

.mena-card-amount {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 20px;
  color: #FDB500;
}

.mena-card-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mena-sector-link {
  display: block;
  width: 100%;
  padding: 24px 30px;
  border-radius: 16px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mena-sector-link:hover {
  transform: translateX(-10px);
  filter: brightness(1.1);
}

.mena-sector-link.economic {
  background: #00AAE6;
}

.mena-sector-link.education {
  background: #84C300;
}

.mena-sector-link.relief {
  background: #B62947;
}

.mena-sector-link.healthcare {
  background: #00948B;
}

.disbursements-side-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mena-sector-item {
  position: relative;
}

/* SIMPLE BUTTON */
.mena-sector-simple {
  padding: 24px 30px;
  border-radius: 16px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

/* DETAILED CARD */
.mena-sector-item {
  position: relative;
  overflow: hidden;
  min-height: 68px;
}

/* SIMPLE CARD */
.mena-sector-simple {
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, all 0.4s ease-in-out;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
}

/* ACTIVE */
.mena-sector-item.active .mena-sector-simple {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* DETAILED CARD */
.mena-sector-detailed {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;

  opacity: 0;
  transform: translateY(15px);
  max-height: 0;
  overflow: hidden;

  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    max-height 0.45s ease;
}

.mena-sector-item.active .mena-sector-detailed {
  opacity: 1;
  transform: translateY(0);
  max-height: 400px;
}

/* COLORS */
.economic .mena-sector-simple {
  background: #00AAE6;
}

.education .mena-sector-simple {
  background: #84C300;
}

.relief .mena-sector-simple {
  background: #B62947;
}

.healthcare .mena-sector-simple {
  background: #00948B;
}

.budget .mena-sector-simple {
  background: #FFAA00;
}

/* ACTIVE TEXT COLORS */
.economic .mena-card-title,
.economic .mena-card-amount {
  color: #00AAE6;
}

.education .mena-card-title,
.education .mena-card-amount {
  color: #84C300;
}

.relief .mena-card-title,
.relief .mena-card-amount {
  color: #B62947;
}

.healthcare .mena-card-title,
.healthcare .mena-card-amount {
  color: #00948B;
}

.budget .mena-card-title,
.budget .mena-card-amount {
  color: #FFAA00;
}

.other .mena-sector-simple {
  background: #F70000;
}

.other .mena-card-title,
.other .mena-card-amount {
  color: #F70000;
}

/* REGION COLORS */
.mena-color {
  color: #00948B !important;
}

.asia-color {
  color: #84C300 !important;
}

.ssa-color,
.africa-color {
  color: #FDB500 !important;
}

.europe-color {
  color: #F70000 !important;
}

.america-color {
  color: #B62947 !important;
}

.pin {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.pin:hover {
  transform: scale(1.15);
}

.flagship_container {
  padding: 0;
  position: absolute;
  top: 50%;
  /* right: 290px; */
  transform: translateY(-50%);
  width: 100%;
}

.flagship {
  position: absolute;
  bottom: 100px;
  right: var(--sidenav-gutter);
  max-width: 40%;
  text-align: right;
}

.sport_container {
  position: absolute;
  bottom: 100px;
  right: var(--sidenav-gutter);
  max-width: 40%;
  text-align: right;
}

.static_map {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 70%;
}

.core_max {
    max-width: 50%;
}

.cor_grid {
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:20px;
}

.cat_card_new {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #D9D9D9;
  overflow: hidden;
}

.cat_card_new img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.cat_card_new h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #000000;
  padding: 18px;
  background: #D9D9D9;
}

.thumb_group {
  border-radius: 8px;
  background: black;
  padding: 10px;
}

.thumb_group p {
  margin-top: 10px;
  color: white;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
}

.statistics_types > * {
    flex: 1;
}