/* Typography follows the theme font manager. Selector-based custom rules are printed later by the theme and can override these defaults. */
.dne-mh-home :where(h1,h2,h3,h4,h5,h6),
.dne-mh-about :where(h1,h2,h3,h4,h5,h6),
.dne-mh-inner :where(h1,h2,h3,h4,h5,h6){font-family:var(--dnt-heading-font,var(--dnt-body-font,"MV Typewriter",Faruma,sans-serif));}
.dne-mh-home :where(p,li,blockquote,label,input,textarea,select),
.dne-mh-about :where(p,li,blockquote,label,input,textarea,select),
.dne-mh-inner :where(p,li,blockquote,label,input,textarea,select){font-family:var(--dnt-body-font,"MV Typewriter",Faruma,sans-serif);}
.dne-mh-home :where(button,.button,.mh-button),
.dne-mh-about :where(button,.button,.mh-button),
.dne-mh-inner :where(button,.button,.mh-inner-button){font-family:var(--dnt-button-font,var(--dnt-body-font,"MV Typewriter",Faruma,sans-serif));}

/*
 * Maalhendhoo corporate home page.
 * All styles are scoped to .dne-mh-home so the code can be pasted
 * into a single Elementor HTML widget without affecting the theme.
 */
.dne-mh-home {
  --mh-primary:#006764;
  --mh-primary-dark:#064d4c;
  --mh-primary-deep:#053c3c;
  --mh-accent:#249ca0;
  --mh-green:#59a85c;
  --mh-ink:#183638;
  --mh-muted:#667a7c;
  --mh-line:#dde7e6;
  --mh-soft:#f3f7f7;
  --mh-white:#ffffff;
  --mh-shadow:0 12px 32px rgba(7,63,64,.075);
  --mh-shadow-hover:0 19px 45px rgba(7,63,64,.13);
  width:100%;
  overflow:hidden;
  color:var(--mh-ink);
  background:var(--mh-white);
  font-family:var(--dnt-body-font,"MV Typewriter","MV Boli",Faruma,sans-serif);
  font-size:15px;
  line-height:2.05;
  direction:rtl;
  text-align:right;
}
.dne-mh-home *,
.dne-mh-home *::before,
.dne-mh-home *::after {
  box-sizing:border-box;
}
.dne-mh-home img {
  display:block;
  max-width:100%;
}
.dne-mh-home a {
  color:inherit;
  text-decoration:none;
}
.dne-mh-home h1,
.dne-mh-home h2,
.dne-mh-home h3,
.dne-mh-home p {
  margin-top:0;
}
.dne-mh-home .mh-container {
  width:min(calc(100% - 48px),1240px);
  margin-inline:auto;
}
.dne-mh-home .mh-section {
  padding:72px 0;
}
.dne-mh-home .mh-section-head {
  max-width:720px;
  margin:0 auto 36px;
  text-align:center;
}
.dne-mh-home .mh-eyebrow {
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:2px 11px;
  border:1px solid rgba(0,103,100,.17);
  border-radius:999px;
  color:var(--mh-primary);
  background:#fff;
  font-size:.73rem;
  font-weight:600;
  line-height:1.7;
}
.dne-mh-home .mh-section-head h2 {
  margin:10px 0 0;
  color:var(--mh-ink);
  font-size:clamp(1.55rem,2.5vw,2.25rem);
  line-height:1.55;
  font-weight:700;
}
.dne-mh-home .mh-section-head p {
  max-width:680px;
  margin:12px auto 0;
  color:var(--mh-muted);
  font-size:.87rem;
  line-height:2.1;
}
.dne-mh-home .mh-section-head::after {
  content:"";
  display:block;
  width:54px;
  height:3px;
  margin:15px auto 0;
  border-radius:20px;
  background:linear-gradient(90deg,var(--mh-primary),var(--mh-accent));
}
.dne-mh-home .mh-button {
  min-height:45px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 18px;
  border:1px solid transparent;
  border-radius:10px;
  color:#fff;
  background:var(--mh-primary);
  font-family:var(--dnt-body-font,"MV Typewriter",Faruma,sans-serif);
  font-size:.76rem;
  font-weight:600;
  line-height:1.4;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}
.dne-mh-home .mh-button:hover {
  transform:translateY(-2px);
  background:var(--mh-primary-dark);
}
.dne-mh-home .mh-button--light {
  color:var(--mh-primary-dark);
  background:#fff;
}
.dne-mh-home .mh-button--outline {
  border-color:rgba(255,255,255,.34);
  background:transparent;
}
.dne-mh-home .mh-button svg {
  width:16px;
  height:16px;
  flex:0 0 auto;
}



/* Clean corporate hero */
.dne-mh-home .mh-hero {
  min-height:560px;
  display:grid;
  align-items:end;
  position:relative;
  isolation:isolate;
  background-image:
    linear-gradient(180deg,rgba(0,24,28,.04) 0%,rgba(0,31,35,.12) 45%,rgba(0,34,38,.80) 100%),
    var(--mh-hero-image);
  background-size:cover;
  background-position:center;
}
.dne-mh-home .mh-hero::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(90deg,rgba(0,44,48,.06),rgba(0,44,48,.02) 52%,rgba(0,44,48,.16));
}
.dne-mh-home .mh-hero__inner {
  width:100%;
  padding:88px 0 72px;
}
.dne-mh-home .mh-hero__content {
  max-width:760px;
  margin:0 auto;
  padding:0 18px;
  color:#fff;
  text-align:center;
}
.dne-mh-home .mh-hero__label {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  color:rgba(255,255,255,.82);
  font-size:.76rem;
  font-weight:600;
}
.dne-mh-home .mh-hero__label::before,
.dne-mh-home .mh-hero__label::after {
  content:"";
  width:38px;
  height:1px;
  background:rgba(255,255,255,.48);
}
.dne-mh-home .mh-hero h1 {
  max-width:720px;
  margin:0 auto 12px;
  color:#fff;
  font-size:clamp(2.6rem,5.2vw,4.5rem);
  line-height:1.34;
  font-weight:700;
  text-shadow:0 12px 32px rgba(0,0,0,.24);
}
.dne-mh-home .mh-hero p {
  max-width:620px;
  margin:0 auto;
  color:rgba(255,255,255,.86);
  font-size:.92rem;
  line-height:2.05;
}
.dne-mh-home .mh-hero-panel {
  position:relative;
  z-index:3;
  margin-top:-42px;
}
.dne-mh-home .mh-hero-panel__box {
  max-width:940px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:30px;
  align-items:center;
  padding:26px 30px;
  border:1px solid var(--mh-line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 18px 45px rgba(7,63,64,.13);
}
.dne-mh-home .mh-hero-panel__copy {
  display:grid;
  grid-template-columns:48px 1fr;
  gap:16px;
  align-items:start;
}
.dne-mh-home .mh-hero-panel__icon {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:#fff;
  background:var(--mh-primary);
}
.dne-mh-home .mh-hero-panel__icon svg {
  width:24px;
  height:24px;
}
.dne-mh-home .mh-hero-panel h2 {
  margin:0 0 5px;
  color:var(--mh-primary-dark);
  font-size:1.15rem;
  line-height:1.6;
}
.dne-mh-home .mh-hero-panel p {
  margin:0;
  color:var(--mh-muted);
  font-size:.77rem;
  line-height:1.95;
}
.dne-mh-home .mh-hero-panel__actions {
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  direction:ltr;
}

/* Introduction */
.dne-mh-home .mh-intro {
  background:var(--mh-soft);
}
.dne-mh-home .mh-intro-grid {
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:22px;
  align-items:stretch;
}
.dne-mh-home .mh-intro-card {
  padding:36px 38px;
  border:1px solid var(--mh-line);
  border-top:4px solid var(--mh-primary);
  border-radius:15px;
  background:#fff;
  box-shadow:var(--mh-shadow);
}
.dne-mh-home .mh-intro-card h2 {
  margin:11px 0 14px;
  color:var(--mh-primary-dark);
  font-size:clamp(1.55rem,2.5vw,2.15rem);
  line-height:1.58;
}
.dne-mh-home .mh-intro-card p {
  margin:0;
  color:var(--mh-muted);
  font-size:.89rem;
  line-height:2.25;
}
.dne-mh-home .mh-purpose-stack {
  display:grid;
  gap:14px;
}
.dne-mh-home .mh-purpose-card {
  display:grid;
  grid-template-columns:50px 1fr;
  gap:16px;
  align-items:start;
  padding:24px;
  border:1px solid var(--mh-line);
  border-radius:15px;
  background:#fff;
  box-shadow:0 8px 23px rgba(7,63,64,.045);
}
.dne-mh-home .mh-purpose-card__icon {
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:var(--mh-primary);
  background:#e7f3f2;
}
.dne-mh-home .mh-purpose-card:nth-child(2) .mh-purpose-card__icon {
  color:#448f4d;
  background:#eef6ef;
}
.dne-mh-home .mh-purpose-card__icon svg {
  width:25px;
  height:25px;
}
.dne-mh-home .mh-purpose-card h3 {
  margin-bottom:6px;
  color:var(--mh-ink);
  font-size:1.12rem;
  line-height:1.55;
}
.dne-mh-home .mh-purpose-card p {
  margin:0;
  color:var(--mh-muted);
  font-size:.77rem;
  line-height:2;
}

/* Statistics */
.dne-mh-home .mh-statistics {
  background:#fff;
}
.dne-mh-home .mh-stat-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.dne-mh-home .mh-stat {
  min-height:200px;
  padding:23px 21px;
  position:relative;
  overflow:hidden;
  border:1px solid var(--mh-line);
  border-radius:14px;
  background:#fff;
  box-shadow:var(--mh-shadow);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.dne-mh-home .mh-stat:hover {
  transform:translateY(-4px);
  border-color:rgba(0,103,100,.26);
  box-shadow:var(--mh-shadow-hover);
}
.dne-mh-home .mh-stat::before {
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:4px;
  background:var(--mh-primary);
}
.dne-mh-home .mh-stat:nth-child(2)::before { background:#18888a; }
.dne-mh-home .mh-stat:nth-child(3)::before { background:#3d9f9d; }
.dne-mh-home .mh-stat:nth-child(4)::before { background:var(--mh-green); }
.dne-mh-home .mh-stat__top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:22px;
}
.dne-mh-home .mh-stat__icon {
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:var(--mh-primary);
  background:#e7f3f2;
}
.dne-mh-home .mh-stat__icon svg {
  width:23px;
  height:23px;
}
.dne-mh-home .mh-stat__arrow {
  width:29px;
  height:29px;
  display:grid;
  place-items:center;
  border:1px solid var(--mh-line);
  border-radius:8px;
  color:var(--mh-primary);
  font-family:var(--dnt-meta-font,Arial,sans-serif);
  direction:ltr;
}
.dne-mh-home .mh-stat h3 {
  min-height:58px;
  margin-bottom:18px;
  font-size:.92rem;
  line-height:1.7;
}
.dne-mh-home .mh-stat__bottom {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}
.dne-mh-home .mh-stat__number {
  color:var(--mh-primary-dark);
  font-family:var(--dnt-meta-font,Arial,sans-serif);
  font-size:2.1rem;
  font-weight:700;
  line-height:1;
  direction:ltr;
}
.dne-mh-home .mh-stat__description {
  max-width:105px;
  margin:0;
  color:var(--mh-muted);
  font-size:.67rem;
  line-height:1.7;
}

/* News */
.dne-mh-home .mh-news {
  background:var(--mh-soft);
}
.dne-mh-home .mh-news-toolbar {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:28px;
}
.dne-mh-home .mh-news-toolbar .mh-section-head {
  margin:0;
  text-align:right;
}
.dne-mh-home .mh-news-toolbar .mh-section-head::after {
  margin-right:0;
  margin-left:auto;
}
.dne-mh-home .mh-news-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:17px;
}
.dne-mh-home .mh-news-card {
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  border:1px solid var(--mh-line);
  border-radius:14px;
  background:#fff;
  box-shadow:var(--mh-shadow);
  transition:transform .2s ease,box-shadow .2s ease;
}
.dne-mh-home .mh-news-card:hover {
  transform:translateY(-5px);
  box-shadow:var(--mh-shadow-hover);
}
.dne-mh-home .mh-news-card__image {
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#dce8e7;
}
.dne-mh-home .mh-news-card__image img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.dne-mh-home .mh-news-card:hover .mh-news-card__image img {
  transform:scale(1.035);
}
.dne-mh-home .mh-news-card__category {
  position:absolute;
  top:13px;
  right:13px;
  min-height:25px;
  display:inline-flex;
  align-items:center;
  padding:1px 10px;
  border-radius:999px;
  color:#fff;
  background:var(--mh-primary);
  font-size:.64rem;
  font-weight:600;
}
.dne-mh-home .mh-news-card__body {
  display:flex;
  flex-direction:column;
  flex:1;
  padding:20px;
}
.dne-mh-home .mh-news-card h3 {
  margin-bottom:9px;
  color:var(--mh-ink);
  font-size:.89rem;
  line-height:1.85;
}
.dne-mh-home .mh-news-card__date {
  margin-bottom:9px;
  color:#809092;
  font-family:var(--dnt-meta-font,Arial,sans-serif);
  font-size:.65rem;
  direction:ltr;
  text-align:right;
}
.dne-mh-home .mh-news-card p {
  margin-bottom:17px;
  color:var(--mh-muted);
  font-size:.72rem;
  line-height:1.95;
}
.dne-mh-home .mh-news-card__link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:auto;
  color:var(--mh-primary);
  font-size:.7rem;
  font-weight:600;
}
.dne-mh-home .mh-news-card__link span {
  width:23px;
  height:23px;
  display:grid;
  place-items:center;
  border-radius:7px;
  color:#fff;
  background:var(--mh-primary);
  font-family:var(--dnt-meta-font,Arial,sans-serif);
  direction:ltr;
}

/* Directory */
.dne-mh-home .mh-directory {
  background:#fff;
}
.dne-mh-home .mh-directory-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border:1px solid var(--mh-line);
  border-radius:15px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--mh-shadow);
}
.dne-mh-home .mh-directory-card {
  min-height:205px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:25px 18px;
  text-align:center;
  border-left:1px solid var(--mh-line);
  transition:background .2s ease;
}
.dne-mh-home .mh-directory-card:last-child {
  border-left:0;
}
.dne-mh-home .mh-directory-card:hover {
  background:#f5f9f8;
}
.dne-mh-home .mh-directory-icon {
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  border-radius:13px;
  color:#fff;
  background:var(--mh-primary);
}
.dne-mh-home .mh-directory-icon svg {
  width:29px;
  height:29px;
}
.dne-mh-home .mh-directory-card h3 {
  margin-bottom:7px;
  color:var(--mh-ink);
  font-size:.9rem;
  line-height:1.65;
}
.dne-mh-home .mh-directory-card p {
  margin:0;
  color:var(--mh-muted);
  font-size:.7rem;
  line-height:1.8;
}
.dne-mh-home .mh-directory-card strong {
  color:var(--mh-primary);
  font-family:var(--dnt-meta-font,Arial,sans-serif);
  font-size:.84rem;
  direction:ltr;
}

/* Corporate CTA */
.dne-mh-home .mh-cta {
  padding:58px 0;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(23,133,132,.20),transparent 42%),
    var(--mh-primary-dark);
}
.dne-mh-home .mh-cta-grid {
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:30px;
}
.dne-mh-home .mh-cta h2 {
  margin:7px 0 8px;
  color:#fff;
  font-size:clamp(1.65rem,3vw,2.45rem);
  line-height:1.5;
}
.dne-mh-home .mh-cta p {
  max-width:670px;
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:.8rem;
}
.dne-mh-home .mh-cta-actions {
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  direction:ltr;
}

@media (max-width:1024px) {
  .dne-mh-home .mh-intro-grid {
    grid-template-columns:1fr;
  }
  .dne-mh-home .mh-purpose-stack {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .dne-mh-home .mh-stat-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .dne-mh-home .mh-directory-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .dne-mh-home .mh-directory-card {
    border-bottom:1px solid var(--mh-line);
  }
  .dne-mh-home .mh-directory-card:nth-child(2n) {
    border-left:0;
  }
  .dne-mh-home .mh-directory-card:nth-last-child(-n+2) {
    border-bottom:0;
  }
}
@media (max-width:767px) {

  .dne-mh-home .mh-hero {
    min-height:460px;
    background-position:center;
  }
  .dne-mh-home .mh-hero__inner {
    padding:64px 0 68px;
  }
  .dne-mh-home .mh-hero__content {
    max-width:none;
    padding:0 8px;
  }
  .dne-mh-home .mh-hero h1 {
    font-size:clamp(2.25rem,11vw,3.65rem);
  }
  .dne-mh-home .mh-hero p {
    max-width:94%;
    font-size:.82rem;
  }
  .dne-mh-home .mh-hero-panel {
    margin-top:-30px;
  }
  .dne-mh-home .mh-hero-panel__box {
    grid-template-columns:1fr;
    gap:18px;
    padding:22px 20px;
  }
  .dne-mh-home .mh-hero-panel__copy {
    grid-template-columns:42px 1fr;
    gap:13px;
  }
  .dne-mh-home .mh-hero-panel__icon {
    width:42px;
    height:42px;
  }
  .dne-mh-home .mh-hero-panel__actions {
    direction:rtl;
  }

  .dne-mh-home {
    font-size:14px;
  }
  .dne-mh-home .mh-container {
    width:min(calc(100% - 24px),1240px);
  }
  .dne-mh-home .mh-section {
    padding:54px 0;
  }

  .dne-mh-home .mh-intro-card {
    padding:27px 22px;
  }
  .dne-mh-home .mh-purpose-stack {
    grid-template-columns:1fr;
  }
  .dne-mh-home .mh-stat-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .dne-mh-home .mh-stat {
    min-height:185px;
    padding:20px 17px;
  }
  .dne-mh-home .mh-news-toolbar {
    align-items:stretch;
    flex-direction:column;
  }
  .dne-mh-home .mh-news-grid {
    grid-template-columns:1fr;
  }
  .dne-mh-home .mh-news-card {
    max-width:520px;
    width:100%;
    margin-inline:auto;
  }
  .dne-mh-home .mh-directory-grid {
    grid-template-columns:1fr 1fr;
  }
  .dne-mh-home .mh-cta-grid {
    grid-template-columns:1fr;
  }
}
@media (max-width:480px) {
  .dne-mh-home .mh-stat-grid,
  .dne-mh-home .mh-directory-grid {
    grid-template-columns:1fr;
  }
  .dne-mh-home .mh-stat {
    min-height:170px;
  }
  .dne-mh-home .mh-directory-card,
  .dne-mh-home .mh-directory-card:nth-child(2n),
  .dne-mh-home .mh-directory-card:nth-last-child(-n+2) {
    border-left:0;
    border-bottom:1px solid var(--mh-line);
  }
  .dne-mh-home .mh-directory-card:last-child {
    border-bottom:0;
  }
  .dne-mh-home .mh-cta-actions {
    flex-direction:column;
  }
  .dne-mh-home .mh-button {
    width:100%;
  }
}




/* All rules are scoped to this Elementor block to avoid theme conflicts. */
.dne-mh-about {
  --mh-primary:#006b68;
  --mh-primary-dark:#064f4e;
  --mh-accent:#1b9fac;
  --mh-green:#55a95d;
  --mh-ink:#173537;
  --mh-muted:#667b7d;
  --mh-border:#dfe8e7;
  --mh-soft:#f4f7f7;
  --mh-white:#ffffff;
  --mh-shadow:0 12px 30px rgba(16,62,64,.07);
  --mh-radius:16px;
  width:100%;
  color:var(--mh-ink);
  background:var(--mh-white);
  font-family:var(--dnt-body-font,"MV Typewriter","MV Boli",Faruma,sans-serif);
  font-size:15px;
  line-height:2.05;
  direction:rtl;
  text-align:right;
  overflow:hidden;
}
.dne-mh-about *,
.dne-mh-about *::before,
.dne-mh-about *::after { box-sizing:border-box; }
.dne-mh-about img { display:block; max-width:100%; }
.dne-mh-about h1,
.dne-mh-about h2,
.dne-mh-about h3,
.dne-mh-about p { margin-top:0; }
.dne-mh-about a { color:inherit; text-decoration:none; }
.dne-mh-about .mh-container {
  width:min(calc(100% - 48px), 1240px);
  margin-inline:auto;
}
.dne-mh-about .mh-section { padding:68px 0; }
.dne-mh-about .mh-section-head {
  max-width:680px;
  margin:0 auto 34px;
  text-align:center;
}
.dne-mh-about .mh-section-head > span,
.dne-mh-about .mh-kicker {
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:2px 11px;
  border:1px solid rgba(0,107,104,.16);
  border-radius:999px;
  color:var(--mh-primary);
  background:#fff;
  font-size:.74rem;
  font-weight:600;
  line-height:1.7;
}
.dne-mh-about .mh-section-head h2 {
  margin:10px 0 0;
  color:var(--mh-ink);
  font-size:clamp(1.55rem,2.5vw,2.2rem);
  line-height:1.55;
  font-weight:700;
}
.dne-mh-about .mh-section-head::after {
  content:"";
  display:block;
  width:56px;
  height:3px;
  margin:14px auto 0;
  border-radius:20px;
  background:linear-gradient(90deg,var(--mh-primary),var(--mh-accent));
}

/* Corporate page hero */
.dne-mh-about .mh-hero {
  min-height:340px;
  display:grid;
  align-items:end;
  position:relative;
  isolation:isolate;
  background-image:
    linear-gradient(180deg,rgba(0,43,48,.18),rgba(0,54,58,.82)),
    var(--mh-hero-image);
  background-size:cover;
  background-position:center;
}
.dne-mh-about .mh-hero::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(90deg,rgba(0,91,91,.12),transparent 42%);
}
.dne-mh-about .mh-hero__content {
  padding:58px 0 46px;
  color:#fff;
  text-align:center;
}
.dne-mh-about .mh-breadcrumb {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:9px;
  margin-bottom:10px;
  color:rgba(255,255,255,.72);
  font-size:.74rem;
}
.dne-mh-about .mh-breadcrumb i {
  width:4px;
  height:4px;
  border-radius:50%;
  background:#6ee0d7;
}
.dne-mh-about .mh-hero h1 {
  margin:0 0 10px;
  color:#fff;
  font-size:clamp(2.4rem,5.5vw,4.2rem);
  line-height:1.25;
  font-weight:700;
}
.dne-mh-about .mh-hero p {
  max-width:650px;
  margin:0 auto;
  color:rgba(255,255,255,.84);
  font-size:.9rem;
  line-height:2.05;
}

/* About and facts */
.dne-mh-about .mh-intro { background:var(--mh-soft); }
.dne-mh-about .mh-intro-card {
  max-width:900px;
  margin-inline:auto;
  padding:38px 42px;
  border:1px solid var(--mh-border);
  border-top:4px solid var(--mh-primary);
  border-radius:var(--mh-radius);
  background:#fff;
  box-shadow:var(--mh-shadow);
  text-align:center;
}
.dne-mh-about .mh-intro-card h2 {
  max-width:760px;
  margin:12px auto 16px;
  color:var(--mh-primary-dark);
  font-size:clamp(1.55rem,2.6vw,2.18rem);
  line-height:1.58;
}
.dne-mh-about .mh-intro-card p {
  max-width:800px;
  margin:0 auto;
  color:var(--mh-muted);
  font-size:.91rem;
  line-height:2.25;
}
.dne-mh-about .mh-facts {
  max-width:650px;
  margin:20px auto 0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.dne-mh-about .mh-fact {
  min-height:112px;
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  border:1px solid var(--mh-border);
  border-radius:14px;
  background:#fff;
}
.dne-mh-about .mh-fact__icon {
  width:50px;
  height:50px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:#fff;
  background:var(--mh-primary);
}
.dne-mh-about .mh-fact__icon svg { width:24px; height:24px; }
.dne-mh-about .mh-fact strong {
  display:block;
  margin-bottom:3px;
  color:var(--mh-primary-dark);
  font-size:1.9rem;
  line-height:1;
  direction:ltr;
  text-align:right;
}
.dne-mh-about .mh-fact span {
  display:block;
  color:var(--mh-muted);
  font-size:.77rem;
  line-height:1.75;
}

/* Vision and mission */
.dne-mh-about .mh-purpose { background:#fff; }
.dne-mh-about .mh-purpose-grid {
  max-width:900px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.dne-mh-about .mh-purpose-card {
  min-height:260px;
  padding:30px;
  border:1px solid var(--mh-border);
  border-radius:var(--mh-radius);
  background:#fff;
  box-shadow:var(--mh-shadow);
  position:relative;
  overflow:hidden;
}
.dne-mh-about .mh-purpose-card::before {
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:4px;
  background:var(--mh-primary);
}
.dne-mh-about .mh-purpose-card:nth-child(2)::before { background:var(--mh-green); }
.dne-mh-about .mh-purpose-icon {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:12px;
  color:var(--mh-primary);
  background:#e7f3f2;
}
.dne-mh-about .mh-purpose-card:nth-child(2) .mh-purpose-icon {
  color:#3e8f4b;
  background:#edf6ee;
}
.dne-mh-about .mh-purpose-icon svg { width:25px; height:25px; }
.dne-mh-about .mh-purpose-card h2 {
  margin-bottom:10px;
  color:var(--mh-ink);
  font-size:1.4rem;
  line-height:1.5;
}
.dne-mh-about .mh-purpose-card p {
  margin:0;
  color:var(--mh-muted);
  font-size:.86rem;
  line-height:2.15;
}

/* Team story */
.dne-mh-about .mh-story { background:var(--mh-soft); }
.dne-mh-about .mh-story-grid {
  max-width:930px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:34px;
  align-items:center;
}
.dne-mh-about .mh-story-photo {
  padding:8px;
  border:1px solid var(--mh-border);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--mh-shadow);
}
.dne-mh-about .mh-story-photo img {
  width:100%;
  min-height:290px;
  object-fit:cover;
  border-radius:11px;
}
.dne-mh-about .mh-story-copy h2 {
  margin:9px 0 12px;
  font-size:clamp(1.55rem,2.7vw,2.25rem);
  line-height:1.55;
}
.dne-mh-about .mh-story-copy p {
  margin-bottom:0;
  color:var(--mh-muted);
  font-size:.87rem;
  line-height:2.15;
}
.dne-mh-about .mh-values {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:18px;
}
.dne-mh-about .mh-value {
  display:flex;
  align-items:center;
  gap:9px;
  min-height:45px;
  padding:9px 12px;
  border:1px solid var(--mh-border);
  border-radius:11px;
  background:#fff;
  color:var(--mh-ink);
  font-size:.76rem;
  font-weight:600;
}
.dne-mh-about .mh-value i {
  width:7px;
  height:7px;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--mh-primary);
}

/* Logo explanation */
.dne-mh-about .mh-logo-section { background:#fff; }
.dne-mh-about .mh-logo-grid {
  max-width:1080px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:54px;
  align-items:center;
  direction:ltr;
}
.dne-mh-about .mh-emblem {
  grid-column:2;
  grid-row:1;
  min-height:300px;
  display:grid;
  place-items:center;
  padding:26px;
  border:1px solid var(--mh-border);
  border-radius:var(--mh-radius);
  background:#f3f8f7;
}
.dne-mh-about .mh-logo-copy {
  grid-column:1;
  grid-row:1;
  direction:rtl;
  text-align:right;
}
.dne-mh-about .mh-emblem img {
  width:min(100%,270px);
  max-height:270px;
  object-fit:contain;
}
.dne-mh-about .mh-logo-copy h2 {
  margin:9px 0 13px;
  font-size:clamp(1.65rem,2.8vw,2.35rem);
  line-height:1.5;
}
.dne-mh-about .mh-logo-copy > p {
  color:var(--mh-muted);
  font-size:.87rem;
  line-height:2.1;
}
.dne-mh-about .mh-meaning-list {
  display:grid;
  gap:9px;
  margin-top:18px;
}
.dne-mh-about .mh-meaning {
  display:grid;
  grid-template-columns:34px 1fr;
  gap:13px;
  padding:13px 15px;
  border:1px solid var(--mh-border);
  border-radius:12px;
  background:#fff;
}
.dne-mh-about .mh-meaning__no {
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:#fff;
  background:var(--mh-primary);
  font-family:var(--dnt-meta-font,Arial,sans-serif);
  font-size:.75rem;
  direction:ltr;
}
.dne-mh-about .mh-meaning strong {
  display:block;
  margin-bottom:3px;
  color:var(--mh-primary);
  font-size:.79rem;
}
.dne-mh-about .mh-meaning p {
  margin:0;
  color:var(--mh-muted);
  font-size:.72rem;
  line-height:1.9;
}

/* Members */
.dne-mh-about .mh-team-section { background:var(--mh-soft); }
.dne-mh-about .mh-team-section:nth-of-type(even) { background:#fff; }
.dne-mh-about .mh-team-grid {
  max-width:930px;
  margin-inline:auto;
  display:grid;
  justify-content:center;
  gap:14px;
}
.dne-mh-about .mh-team-grid--3 { grid-template-columns:repeat(3,minmax(190px,235px)); }
.dne-mh-about .mh-team-grid--5 { grid-template-columns:repeat(5,minmax(140px,1fr)); }
.dne-mh-about .mh-person {
  min-height:215px;
  padding:22px 12px 17px;
  border:1px solid var(--mh-border);
  border-radius:14px;
  background:#fff;
  box-shadow:0 7px 20px rgba(16,62,64,.045);
  text-align:center;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.dne-mh-about .mh-person:hover {
  transform:translateY(-4px);
  border-color:rgba(0,107,104,.25);
  box-shadow:var(--mh-shadow);
}
.dne-mh-about .mh-person__image {
  width:88px;
  height:88px;
  margin:0 auto 12px;
  padding:3px;
  border:1px solid rgba(0,107,104,.22);
  border-radius:50%;
  background:#fff;
}
.dne-mh-about .mh-person__image img {
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
}
.dne-mh-about .mh-person h3 {
  margin-bottom:4px;
  color:var(--mh-ink);
  font-size:.83rem;
  line-height:1.75;
}
.dne-mh-about .mh-person p {
  margin:0;
  color:var(--mh-primary);
  font-size:.67rem;
  font-weight:600;
  line-height:1.75;
}

/* Contact block */
.dne-mh-about .mh-contact {
  padding:54px 0;
  color:#fff;
  background:var(--mh-primary-dark);
}
.dne-mh-about .mh-contact-grid {
  max-width:900px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
}
.dne-mh-about .mh-contact h2 {
  margin:7px 0 8px;
  color:#fff;
  font-size:clamp(1.65rem,3vw,2.5rem);
  line-height:1.5;
}
.dne-mh-about .mh-contact p {
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:.8rem;
}
.dne-mh-about .mh-contact-actions {
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  direction:ltr;
}
.dne-mh-about .mh-button {
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 17px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:10px;
  color:var(--mh-primary-dark);
  background:#fff;
  font-family:var(--dnt-body-font,"MV Typewriter",Faruma,sans-serif);
  font-size:.74rem;
  font-weight:600;
}
.dne-mh-about .mh-button--ghost {
  color:#fff;
  background:transparent;
}

@media (max-width:1024px) {
  .dne-mh-about .mh-story-grid,
  .dne-mh-about .mh-logo-grid {
    grid-template-columns:1fr;
    max-width:760px;
  }
  .dne-mh-about .mh-emblem {
    width:min(100%,360px);
    margin-inline:auto;
  }
  .dne-mh-about .mh-team-grid--5 {
    grid-template-columns:repeat(3,minmax(165px,1fr));
  }
}
@media (max-width:767px) {
  .dne-mh-about { font-size:14px; }
  .dne-mh-about .mh-container { width:min(calc(100% - 24px),1240px); }
  .dne-mh-about .mh-section { padding:54px 0; }
  .dne-mh-about .mh-hero { min-height:310px; }
  .dne-mh-about .mh-hero__content { padding:50px 0 38px; }
  .dne-mh-about .mh-hero p { max-width:94%; font-size:.81rem; }
  .dne-mh-about .mh-intro-card { padding:27px 21px; text-align:right; }
  .dne-mh-about .mh-intro-card h2,
  .dne-mh-about .mh-intro-card p { max-width:none; }
  .dne-mh-about .mh-facts { grid-template-columns:1fr 1fr; }
  .dne-mh-about .mh-fact { min-height:145px; display:block; text-align:center; padding:18px 12px; }
  .dne-mh-about .mh-fact__icon { margin:0 auto 10px; }
  .dne-mh-about .mh-purpose-grid { grid-template-columns:1fr; }
  .dne-mh-about .mh-purpose-card { min-height:auto; }
  .dne-mh-about .mh-story-photo img { min-height:225px; }
  .dne-mh-about .mh-team-grid--3,
  .dne-mh-about .mh-team-grid--5 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .dne-mh-about .mh-person { min-height:205px; }
  .dne-mh-about .mh-contact-grid { grid-template-columns:1fr; }
}
@media (max-width:430px) {
  .dne-mh-about .mh-facts,
  .dne-mh-about .mh-team-grid--3,
  .dne-mh-about .mh-team-grid--5 { grid-template-columns:1fr; }
  .dne-mh-about .mh-fact { min-height:108px; display:flex; text-align:right; padding:17px 19px; }
  .dne-mh-about .mh-fact__icon { margin:0; }
  .dne-mh-about .mh-person { width:min(100%,280px); margin-inline:auto; }
  .dne-mh-about .mh-values { grid-template-columns:1fr; }
  .dne-mh-about .mh-contact-actions { flex-direction:column; }
  .dne-mh-about .mh-button { width:100%; }
}

/* Maalhendhoo Elementor integration and dark-mode consistency. */
.elementor-widget-dne-maalhendhoo-home-hero,
.elementor-widget-dne-maalhendhoo-home-intro,
.elementor-widget-dne-maalhendhoo-stats,
.elementor-widget-dne-maalhendhoo-news,
.elementor-widget-dne-maalhendhoo-directory,
.elementor-widget-dne-maalhendhoo-cta,
.elementor-widget-dne-maalhendhoo-about-hero,
.elementor-widget-dne-maalhendhoo-about-intro,
.elementor-widget-dne-maalhendhoo-purpose,
.elementor-widget-dne-maalhendhoo-story,
.elementor-widget-dne-maalhendhoo-logo-story,
.elementor-widget-dne-maalhendhoo-team,
.elementor-widget-dne-maalhendhoo-contact{width:100%;}
.dne-mh-home,.dne-mh-about{width:100%;margin:0;position:relative;}
.dne-mh-home .mh-icon svg,.dne-mh-about .mh-icon svg,
.dne-mh-home .mh-purpose-card__icon svg,.dne-mh-home .mh-stat__icon svg,.dne-mh-home .mh-directory-icon svg,
.dne-mh-about .mh-fact__icon svg,.dne-mh-about .mh-purpose-icon svg{width:24px;height:24px;display:block;}
.dne-mh-home .elementor-icon,.dne-mh-about .elementor-icon{font-size:24px;line-height:1;}
.dne-mh-home .mh-hero{background-image:linear-gradient(180deg,rgba(0,24,28,.04) 0%,rgba(0,31,35,.12) 45%,rgba(0,34,38,.80) 100%),var(--mh-hero-image);}
.dne-mh-about .mh-hero{background-image:linear-gradient(180deg,rgba(0,43,48,.18),rgba(0,54,58,.82)),var(--mh-hero-image);}
.dne-mh-home .mh-news-card__image img{width:100%;height:100%;object-fit:cover;}
.dne-mh-home .mh-news-card__category a{color:inherit;}
.dne-mh-home .mh-news-card__date{direction:ltr;text-align:right;}
.dne-mh-home .mh-empty{grid-column:1/-1;padding:28px;border:1px dashed var(--mh-line);border-radius:14px;background:var(--mh-white);text-align:center;color:var(--mh-muted);}
.dne-mh-about .mh-person__image img{width:100%;height:100%;object-fit:cover;}
.dne-mh-about .mh-person__image{overflow:hidden;}
.dne-mh-about .mh-person.is-placeholder .mh-person__image{background:linear-gradient(135deg,#dcebea,#edf5f4);}
[data-theme=dark] .dne-mh-home,[data-theme=dark] .dne-mh-about{
 --mh-ink:var(--dnt-heading,#f4f7f7);--mh-muted:var(--dnt-text,#c9d4d4);--mh-line:var(--dnt-border,#33484b);--mh-soft:var(--dnt-soft,#15272a);--mh-white:var(--dnt-surface,#102024);background:var(--dnt-surface,#102024);color:var(--mh-ink);
}
[data-theme=dark] .dne-mh-home .mh-intro-card,[data-theme=dark] .dne-mh-home .mh-purpose-card,[data-theme=dark] .dne-mh-home .mh-stat,[data-theme=dark] .dne-mh-home .mh-news-card,[data-theme=dark] .dne-mh-home .mh-directory-card,[data-theme=dark] .dne-mh-home .mh-hero-panel__box,
[data-theme=dark] .dne-mh-about .mh-intro-card,[data-theme=dark] .dne-mh-about .mh-fact,[data-theme=dark] .dne-mh-about .mh-purpose-card,[data-theme=dark] .dne-mh-about .mh-story-copy,[data-theme=dark] .dne-mh-about .mh-logo-copy,[data-theme=dark] .dne-mh-about .mh-person{background:var(--mh-white)!important;border-color:var(--mh-line)!important;color:var(--mh-ink);}
[data-theme=dark] .dne-mh-home .mh-intro,[data-theme=dark] .dne-mh-home .mh-news,[data-theme=dark] .dne-mh-about .mh-intro,[data-theme=dark] .dne-mh-about .mh-story,[data-theme=dark] .dne-mh-about .mh-team-section:nth-of-type(even){background:var(--mh-soft)!important;}
[data-theme=dark] .dne-mh-home .mh-eyebrow,[data-theme=dark] .dne-mh-about .mh-kicker,[data-theme=dark] .dne-mh-about .mh-section-head span{background:color-mix(in srgb,var(--mh-white) 88%,transparent);}
[data-theme=dark] .dne-mh-home .mh-button--light{background:var(--mh-white);color:var(--mh-ink);}
@media(max-width:767px){.dne-mh-home .mh-hero-panel__actions,.dne-mh-about .mh-contact-actions{direction:rtl;}}


/* Maalhendhoo Web 3.0.2 Elementor width guard. */
body.dnt-starter-home .elementor-widget-dne-maalhendhoo-home-hero,
body.dnt-starter-about .elementor-widget-dne-maalhendhoo-about-hero,
body.dnt-starter-home .dnt-maalhendhoo-home-hero,
body.dnt-starter-about .dnt-maalhendhoo-about-hero{
  width:100vw!important;
  max-width:100vw!important;
  margin-left:calc(50% - 50vw)!important;
  margin-right:calc(50% - 50vw)!important;
}
body.dnt-starter-home .elementor-widget-dne-maalhendhoo-home-hero>.elementor-widget-container,
body.dnt-starter-about .elementor-widget-dne-maalhendhoo-about-hero>.elementor-widget-container{
  width:100%!important;
  max-width:none!important;
}
@media(max-width:1024px){
  .dne-mh-about .mh-logo-grid{grid-template-columns:1fr;gap:28px;direction:rtl}
  .dne-mh-about .mh-emblem,.dne-mh-about .mh-logo-copy{grid-column:1;grid-row:auto}
  .dne-mh-about .mh-emblem{width:min(100%,380px);min-height:280px;margin-inline:auto}
}

/* Maalhendhoo Web 3.0.2: corporate inner-page headers. */
.elementor-widget-dne-maalhendhoo-inner-hero{width:100%;}
.dne-mh-inner{
  --mh-primary:#006764;
  --mh-primary-dark:#064d4c;
  --mh-primary-deep:#053c3c;
  --mh-accent:#249ca0;
  --mh-green:#59a85c;
  --mh-ink:#183638;
  --mh-muted:#667a7c;
  --mh-line:#dde7e6;
  --mh-soft:#f3f7f7;
  --mh-white:#fff;
  width:100%;
  overflow:hidden;
  color:#fff;
  direction:rtl;
  text-align:right;
  font-family:var(--dnt-body-font,"MV Typewriter","MV Boli",Faruma,sans-serif);
}
.dne-mh-inner *,
.dne-mh-inner *::before,
.dne-mh-inner *::after{box-sizing:border-box;}
.dne-mh-inner .mh-container{width:min(calc(100% - 64px),1360px);margin-inline:auto;}
.dne-mh-inner .mh-inner-hero{
  position:relative;
  isolation:isolate;
  min-height:390px;
  display:grid;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(115deg,rgba(2,48,49,.98) 0%,rgba(0,103,100,.96) 58%,rgba(28,151,151,.90) 100%),
    var(--mh-inner-image,none) center/cover no-repeat;
}
.dne-mh-inner .mh-inner-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  opacity:.5;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(90deg,transparent,black 24%,black 82%,transparent);
}
.dne-mh-inner .mh-inner-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  z-index:-1;
  height:5px;
  background:linear-gradient(90deg,var(--mh-green),var(--mh-accent),rgba(255,255,255,.78));
}
.dne-mh-inner .mh-inner-hero__shape{position:absolute;z-index:-1;border-radius:50%;border:1px solid rgba(255,255,255,.12);}
.dne-mh-inner .mh-inner-hero__shape--one{width:470px;height:470px;inset:-260px auto auto -95px;box-shadow:inset 0 0 0 90px rgba(255,255,255,.025);}
.dne-mh-inner .mh-inner-hero__shape--two{width:290px;height:290px;inset:auto -115px -165px auto;box-shadow:inset 0 0 0 55px rgba(255,255,255,.025);}
.dne-mh-inner .mh-inner-hero__grid{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(260px,.7fr);gap:72px;align-items:center;padding-block:68px 72px;}
.dne-mh-inner .mh-inner-hero__copy{max-width:780px;}
.dne-mh-inner .mh-inner-breadcrumb{display:flex;align-items:center;gap:10px;margin-bottom:18px;color:rgba(255,255,255,.67);font-size:.76rem;font-weight:600;}
.dne-mh-inner .mh-inner-breadcrumb i{width:26px;height:1px;background:rgba(255,255,255,.38);}
.dne-mh-inner .mh-inner-eyebrow{display:inline-flex;align-items:center;min-height:30px;padding:2px 12px;margin-bottom:13px;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:rgba(255,255,255,.08);backdrop-filter:blur(10px);color:rgba(255,255,255,.88);font-family:var(--dnt-meta-font,Arial,sans-serif);font-size:.68rem;font-weight:700;letter-spacing:.11em;}
.dne-mh-inner .mh-inner-hero h1{max-width:780px;margin:0 0 15px;color:#fff;font-size:clamp(2.35rem,4.5vw,4.25rem);font-weight:700;line-height:1.35;letter-spacing:-.02em;text-shadow:0 12px 30px rgba(0,29,31,.2);}
.dne-mh-inner .mh-inner-hero__copy>p{max-width:710px;margin:0;color:rgba(255,255,255,.82);font-size:.96rem;line-height:2.1;}
.dne-mh-inner .mh-inner-button{display:inline-flex;align-items:center;justify-content:center;min-height:45px;margin-top:23px;padding:0 20px;border-radius:10px;background:#fff;color:var(--mh-primary-dark);font-size:.78rem;font-weight:700;transition:.2s ease;}
.dne-mh-inner .mh-inner-button:hover{transform:translateY(-2px);color:var(--mh-primary-dark);box-shadow:0 14px 28px rgba(0,0,0,.14);}
.dne-mh-inner .mh-inner-hero__visual{display:flex;justify-content:flex-start;}
.dne-mh-inner .mh-inner-card{position:relative;width:min(100%,330px);min-height:245px;padding:31px 30px 29px;border:1px solid rgba(255,255,255,.22);border-radius:24px;background:linear-gradient(145deg,rgba(255,255,255,.17),rgba(255,255,255,.07));box-shadow:0 26px 70px rgba(0,35,37,.22);backdrop-filter:blur(18px);}
.dne-mh-inner .mh-inner-card::before{content:"";position:absolute;inset:12px;border:1px solid rgba(255,255,255,.09);border-radius:16px;pointer-events:none;}
.dne-mh-inner .mh-inner-card__icon{position:relative;width:66px;height:66px;display:grid;place-items:center;margin-bottom:24px;border-radius:18px;background:#fff;color:var(--mh-primary);box-shadow:0 12px 26px rgba(0,38,40,.18);}
.dne-mh-inner .mh-inner-card__icon .elementor-icon{display:grid;place-items:center;font-size:27px;line-height:1;}
.dne-mh-inner .mh-inner-card__icon svg{width:27px;height:27px;fill:currentColor;}
.dne-mh-inner .mh-inner-card>span{display:block;margin-bottom:5px;color:rgba(255,255,255,.64);font-size:.72rem;font-weight:600;}
.dne-mh-inner .mh-inner-card>strong{display:block;color:#fff;font-size:1.2rem;line-height:1.7;}
.dne-mh-inner .mh-inner-card>p{margin:6px 0 0;color:rgba(255,255,255,.72);font-size:.78rem;line-height:1.9;}
.dne-mh-inner .mh-inner-card>b{position:absolute;right:30px;bottom:23px;width:45px;height:3px;border-radius:10px;background:linear-gradient(90deg,var(--mh-green),#fff);}
.dne-mh-inner--news .mh-inner-card__icon{color:#116b67;}
.dne-mh-inner--downloads .mh-inner-card__icon{color:#317f52;}
[data-theme=dark] .dne-mh-inner .mh-inner-hero{background:linear-gradient(115deg,#032b2d 0%,#075c5b 64%,#127d7b 100%),var(--mh-inner-image,none) center/cover no-repeat;}
@media(max-width:900px){
  .dne-mh-inner .mh-inner-hero{min-height:auto;}
  .dne-mh-inner .mh-inner-hero__grid{grid-template-columns:1fr;gap:34px;padding-block:58px 62px;}
  .dne-mh-inner .mh-inner-hero__copy{max-width:none;}
  .dne-mh-inner .mh-inner-hero__visual{justify-content:flex-end;}
  .dne-mh-inner .mh-inner-card{width:min(100%,420px);min-height:205px;}
}
@media(max-width:600px){
  .dne-mh-inner .mh-container{width:min(calc(100% - 36px),1360px);}
  .dne-mh-inner .mh-inner-hero__grid{padding-block:45px 52px;}
  .dne-mh-inner .mh-inner-hero h1{font-size:clamp(2rem,11vw,3rem);}
  .dne-mh-inner .mh-inner-hero__copy>p{font-size:.86rem;line-height:2;}
  .dne-mh-inner .mh-inner-hero__visual{justify-content:stretch;}
  .dne-mh-inner .mh-inner-card{width:100%;padding:26px 24px;border-radius:19px;}
  .dne-mh-inner .mh-inner-card__icon{width:58px;height:58px;border-radius:15px;}
}


/* Maalhendhoo Web 3.0.3: icon contrast and complete dark-mode surfaces. */
.dne-mh-home .mh-directory-icon,
.dne-mh-home .mh-hero-panel__icon,
.dne-mh-about .mh-fact__icon{
  color:#fff!important;
}
.dne-mh-home .mh-directory-icon .elementor-icon,
.dne-mh-home .mh-directory-icon i,
.dne-mh-home .mh-directory-icon svg,
.dne-mh-home .mh-directory-icon svg *,
.dne-mh-home .mh-hero-panel__icon .elementor-icon,
.dne-mh-home .mh-hero-panel__icon i,
.dne-mh-home .mh-hero-panel__icon svg,
.dne-mh-home .mh-hero-panel__icon svg *,
.dne-mh-about .mh-fact__icon .elementor-icon,
.dne-mh-about .mh-fact__icon i,
.dne-mh-about .mh-fact__icon svg,
.dne-mh-about .mh-fact__icon svg *{
  color:#fff!important;
  fill:#fff!important;
  stroke:#fff!important;
}

[data-theme=dark] .dne-mh-home,
[data-theme=dark] .dne-mh-about{
  --mh-primary:#50c7c0;
  --mh-accent:#66d3d7;
  --mh-green:#83cf88;
  --mh-border:var(--dnt-border,#33484b);
}
[data-theme=dark] .dne-mh-home .mh-statistics,
[data-theme=dark] .dne-mh-home .mh-directory,
[data-theme=dark] .dne-mh-about .mh-purpose,
[data-theme=dark] .dne-mh-about .mh-logo-section,
[data-theme=dark] .dne-mh-about .mh-team-section:nth-of-type(even){
  background:var(--dnt-surface,#102024)!important;
}
[data-theme=dark] .dne-mh-home .mh-directory-grid,
[data-theme=dark] .dne-mh-about .mh-story-photo,
[data-theme=dark] .dne-mh-about .mh-value,
[data-theme=dark] .dne-mh-about .mh-meaning,
[data-theme=dark] .dne-mh-about .mh-person__image{
  background:var(--mh-white)!important;
  border-color:var(--mh-line,var(--mh-border))!important;
}
[data-theme=dark] .dne-mh-about .mh-emblem{
  background:var(--mh-soft)!important;
  border-color:var(--mh-border)!important;
}
[data-theme=dark] .dne-mh-home .mh-directory-card:hover{
  background:var(--mh-soft)!important;
}
[data-theme=dark] .dne-mh-home .mh-hero-panel h2,
[data-theme=dark] .dne-mh-home .mh-intro-card h2,
[data-theme=dark] .dne-mh-home .mh-stat__number,
[data-theme=dark] .dne-mh-about .mh-intro-card h2,
[data-theme=dark] .dne-mh-about .mh-fact strong{
  color:#7edbd5!important;
}
[data-theme=dark] .dne-mh-home .mh-stat__icon,
[data-theme=dark] .dne-mh-home .mh-purpose-card__icon,
[data-theme=dark] .dne-mh-about .mh-purpose-icon{
  background:color-mix(in srgb,var(--mh-primary) 18%,var(--mh-white))!important;
  color:var(--mh-primary)!important;
}
[data-theme=dark] .dne-mh-home .mh-stat h3,
[data-theme=dark] .dne-mh-home .mh-directory-card h3,
[data-theme=dark] .dne-mh-about .mh-purpose-card h2,
[data-theme=dark] .dne-mh-about .mh-story-copy h2,
[data-theme=dark] .dne-mh-about .mh-logo-copy h2,
[data-theme=dark] .dne-mh-about .mh-person h3,
[data-theme=dark] .dne-mh-about .mh-value{
  color:var(--mh-ink)!important;
}

/* ======================================================================
   Maalhendhoo Web Elements 3.0.6 — modern council member cards
   This is a presentation-only enhancement. It targets the existing team
   widget and does not replace or rewrite Elementor page data.
   ====================================================================== */
.elementor-widget-dne-maalhendhoo-team .dne-mh-about {
  overflow:visible;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-section {
  --mh-team-grid-max:1500px;
  --mh-team-card-min-height:360px;
  --mh-team-photo-size:156px;
  --mh-team-photo-top:24px;
  --mh-team-photo-bottom:18px;
  --mh-team-content-min-height:128px;
  --mh-team-content-padding:18px 16px 22px;
  --mh-team-gap:24px;
  --mh-team-radius:18px;
  position:relative;
  padding:clamp(64px,6vw,96px) 0 clamp(70px,7vw,108px);
  overflow:hidden;
  background:
    radial-gradient(circle at 50% -15%,rgba(0,107,104,.055),transparent 38%),
    linear-gradient(180deg,#ffffff 0%,#fbfdfd 100%);
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-section::before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(110deg,transparent 0%,rgba(27,159,172,.022) 48%,transparent 72%);
}

.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-size--compact {
  --mh-team-grid-max:1500px;
  --mh-team-card-min-height:360px;
  --mh-team-photo-size:156px;
  --mh-team-photo-top:24px;
  --mh-team-photo-bottom:18px;
  --mh-team-content-min-height:128px;
  --mh-team-content-padding:18px 16px 22px;
  --mh-team-gap:24px;
  --mh-team-radius:18px;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-size--standard {
  --mh-team-grid-max:1800px;
  --mh-team-card-min-height:432px;
  --mh-team-photo-size:clamp(158px,11.2vw,210px);
  --mh-team-photo-top:32px;
  --mh-team-photo-bottom:24px;
  --mh-team-content-min-height:162px;
  --mh-team-content-padding:25px 18px 28px;
  --mh-team-gap:clamp(20px,2vw,38px);
  --mh-team-radius:22px;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-size--large {
  --mh-team-grid-max:1900px;
  --mh-team-card-min-height:480px;
  --mh-team-photo-size:224px;
  --mh-team-photo-top:38px;
  --mh-team-photo-bottom:28px;
  --mh-team-content-min-height:176px;
  --mh-team-content-padding:28px 22px 32px;
  --mh-team-gap:40px;
  --mh-team-radius:24px;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-size--custom {
  --mh-team-grid-max:1500px;
  --mh-team-card-min-height:360px;
  --mh-team-photo-size:156px;
  --mh-team-photo-top:24px;
  --mh-team-photo-bottom:18px;
  --mh-team-content-min-height:128px;
  --mh-team-content-padding:18px 16px 22px;
  --mh-team-gap:24px;
  --mh-team-radius:18px;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-section > .mh-container {
  position:relative;
  z-index:1;
  width:min(calc(100% - 72px),1800px);
  max-width:1800px;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head {
  max-width:920px;
  margin:0 auto clamp(54px,5vw,76px);
  padding-bottom:39px;
  position:relative;
  text-align:center;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head::before,
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head::after {
  content:"";
  position:absolute;
  bottom:8px;
  width:136px;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--mh-accent));
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head::before {
  left:calc(50% - 166px);
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head::after {
  right:calc(50% - 166px);
  transform:scaleX(-1);
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head h2::after {
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  width:16px;
  height:16px;
  border-radius:2px;
  background:var(--mh-accent);
  box-shadow:0 0 0 6px rgba(27,159,172,.08);
  transform:translate(-50%,0) rotate(45deg);
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid {
  width:100%;
  max-width:var(--mh-team-grid-max,1500px);
  margin-inline:auto;
  display:grid;
  gap:var(--mh-team-gap,24px);
  align-items:stretch;
  justify-content:center;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-1 { grid-template-columns:minmax(250px,350px); }
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-2 { grid-template-columns:repeat(2,minmax(250px,350px)); }
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-3 { grid-template-columns:repeat(3,minmax(220px,1fr)); max-width:min(var(--mh-team-grid-max,1500px),1040px); }
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-4 { grid-template-columns:repeat(4,minmax(195px,1fr)); max-width:min(var(--mh-team-grid-max,1500px),1300px); }
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-5 { grid-template-columns:repeat(5,minmax(175px,1fr)); max-width:var(--mh-team-grid-max,1500px); }
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person {
  position:relative;
  min-width:0;
  min-height:var(--mh-team-card-min-height,360px);
  padding:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  border:1px solid #d9e6e6;
  border-radius:var(--mh-team-radius,18px);
  background:linear-gradient(180deg,#fff 0%,#fff 60%,#fbfefe 100%);
  box-shadow:0 18px 38px rgba(15,65,69,.075);
  text-align:center;
  isolation:isolate;
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person::before {
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:58%;
  z-index:-1;
  background:radial-gradient(circle at 50% 38%,rgba(22,151,158,.065),transparent 58%);
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person:hover {
  transform:translateY(-7px);
  border-color:rgba(0,107,104,.34);
  box-shadow:0 26px 52px rgba(15,65,69,.13);
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person__image {
  width:var(--mh-team-photo-size,156px);
  height:var(--mh-team-photo-size,156px);
  flex:0 0 auto;
  margin:var(--mh-team-photo-top,24px) auto var(--mh-team-photo-bottom,18px);
  padding:7px;
  position:relative;
  border:2px solid rgba(8,116,116,.15);
  border-radius:50%;
  background:#f1f8f8;
  box-shadow:
    0 11px 19px rgba(20,68,72,.12),
    inset 0 0 0 4px #fff;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person__image::after {
  content:"";
  position:absolute;
  inset:-7px;
  border:1px solid rgba(0,107,104,.09);
  border-radius:50%;
  pointer-events:none;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person__image img {
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  object-position:center top;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person.is-placeholder .mh-person__image {
  background:
    radial-gradient(circle at 50% 35%,rgba(0,107,104,.18) 0 20%,transparent 21%),
    radial-gradient(circle at 50% 100%,rgba(0,107,104,.13) 0 42%,transparent 43%),
    #eef6f6;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person__content {
  width:100%;
  min-height:var(--mh-team-content-min-height,128px);
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:var(--mh-team-content-padding,18px 16px 22px);
  border-top:2px solid rgba(0,128,126,.58);
  background:linear-gradient(180deg,rgba(246,251,251,.76),rgba(251,253,253,.98));
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person h3 {
  max-width:100%;
  margin:0 0 11px;
  color:#173537;
  font-size:clamp(1.12rem,1.24vw,1.48rem);
  font-weight:700;
  line-height:1.65;
  overflow-wrap:anywhere;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person p {
  margin:0;
  color:#088b8d;
  font-size:clamp(.88rem,.82vw,1rem);
  font-weight:700;
  line-height:1.65;
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-size--compact .mh-person h3 {
  font-size:clamp(1.02rem,1.05vw,1.28rem);
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-size--standard .mh-person h3,
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-size--large .mh-person h3 {
  font-size:clamp(1.12rem,1.24vw,1.48rem);
}
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-size--standard .mh-person p,
.elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-size--large .mh-person p {
  font-size:clamp(.91rem,.9vw,1.08rem);
}

@media (max-width:1399px) {
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-section > .mh-container {
    width:min(calc(100% - 48px),1240px);
  }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-4,
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-5 {
    grid-template-columns:repeat(3,minmax(220px,1fr));
    max-width:1120px;
  }
}
@media (max-width:899px) {
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-section > .mh-container {
    width:min(calc(100% - 32px),760px);
  }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-2,
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-3,
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-4,
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-5 {
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:760px;
  }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person {
    min-height:min(var(--mh-team-card-min-height,360px),390px);
  }
}
@media (max-width:560px) {
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-section {
    padding:58px 0 72px;
  }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-section > .mh-container {
    width:min(calc(100% - 28px),390px);
  }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head {
    margin-bottom:45px;
  }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head::before,
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head::after {
    width:82px;
  }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head::before { left:calc(50% - 110px); }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-section-head::after { right:calc(50% - 110px); }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-2,
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-3,
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-4,
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-grid--auto-5 {
    grid-template-columns:1fr;
  }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person {
    width:100%;
    max-width:350px;
    min-height:min(var(--mh-team-card-min-height,360px),405px);
    margin-inline:auto;
  }
  .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person__image {
    width:min(var(--mh-team-photo-size,156px),190px);
    height:min(var(--mh-team-photo-size,156px),190px);
  }
}

[data-theme=dark] .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-team-section {
  background:
    radial-gradient(circle at 50% -15%,rgba(79,199,192,.08),transparent 38%),
    linear-gradient(180deg,var(--dnt-surface,#102024),var(--dnt-bg,#0b171a));
}
[data-theme=dark] .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person {
  border-color:var(--dnt-border,#30474b);
  background:linear-gradient(180deg,#14272b 0%,#14272b 60%,#102125 100%);
  box-shadow:0 18px 38px rgba(0,0,0,.2);
}
[data-theme=dark] .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person:hover {
  border-color:rgba(80,199,192,.52);
  box-shadow:0 26px 52px rgba(0,0,0,.3);
}
[data-theme=dark] .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person__content {
  border-top-color:rgba(80,199,192,.72);
  background:linear-gradient(180deg,rgba(20,42,46,.95),rgba(15,34,38,.98));
}
[data-theme=dark] .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person h3 {
  color:#f2fbfb!important;
}
[data-theme=dark] .elementor-widget-dne-maalhendhoo-team .dne-mh-about .mh-person p {
  color:#63d5cf!important;
}

/* Maalhendhoo Web Elements 3.0.7: compact default and editable team card sizing controls. */
