/* Ubuntu / Vanilla-inspired public theme
   https://ubuntu.com/desktop  — Vanilla colour tokens
   https://vanillaframework.io/docs/settings/color-settings
*/
:root {
    --color-x-light: #fff;
    --color-light: #f7f7f7;
    --color-mid-x-light: #e5e5e5;
    --color-mid-light: #d9d9d9;
    --color-mid-dark: #666;
    --color-dark: #111;
    --color-x-dark: #000;
    --color-brand: #1A76D1;
    --color-brand-dark: #0D47A1;
    --color-brand-mid: #1565C0;
    --color-brand-light: #42A5F5;
    --color-brand-soft: #E3F2FD;
    --color-link: #1565C0;
    --color-accent: #1A76D1;
    --color-header: #0B3A6A;
    --font: "Ubuntu", "IBM Plex Sans Arabic", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--color-x-light);
    color: var(--color-dark);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

body.lang-ar {
    font-family: "IBM Plex Sans Arabic", "Ubuntu", Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark);
    font-weight: 100;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 100; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3, h4 { font-size: 1.3rem; font-weight: 400; }

p { margin: 0 0 1rem; color: var(--color-dark); }

.container {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

@media (max-width: 575px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
}

.preloader { display: none !important; }

/* ---- Header: transparent, then blur on scroll ---- */
.u-header,
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10080;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-topbar,
.header .topbar {
    display: none;
}

.header .header-inner {
    background: transparent;
}

.home-page .header:not(.sticky) .nav li a,
.home-page .header:not(.sticky) .lang-switch-btn,
.home-page .header:not(.sticky) .mobile-lang-switch {
    color: #fff !important;
}

.header.sticky,
.header.sticky .header-inner,
.inner-page .header,
.inner-page .header .header-inner {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header.sticky .nav li a,
.inner-page .header .nav li a,
.header.sticky .lang-switch-btn,
.inner-page .header .lang-switch-btn,
.header.sticky .mobile-lang-switch,
.inner-page .header .mobile-lang-switch {
    color: var(--color-brand-dark) !important;
}

.header.sticky .lang-switch-btn,
.inner-page .header .lang-switch-btn,
.header.sticky .mobile-lang-switch,
.inner-page .header .mobile-lang-switch {
    border-color: var(--color-mid-light) !important;
}

.header .inner {
    min-height: 3.5rem;
    padding: 0.5rem 0;
}

.header .inner .row {
    align-items: center;
}

.header .logo {
    margin: 0;
    float: none;
}

.header .logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header .nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header .nav li {
    float: none;
    margin: 0;
    position: relative;
}

.header .nav li a {
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.header .nav li a::before { display: none !important; }

.header .nav li.active a,
.header .nav li:hover > a {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    text-decoration: none;
}

.header.sticky .nav li.active a,
.header.sticky .nav li:hover > a,
.inner-page .header .nav li.active a,
.inner-page .header .nav li:hover > a {
    background: var(--color-brand-soft) !important;
    color: var(--color-brand-dark) !important;
}

.header .nav li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 0.35rem 0;
    margin: 0;
    list-style: none;
    z-index: 20;
    box-shadow: 0 8px 24px rgba(13, 71, 161, 0.12);
}

.header .nav li:hover .dropdown { display: block; }

.header .nav li .dropdown li a {
    color: var(--color-brand-dark) !important;
}

.header .nav li .dropdown li a:hover,
.header .nav li .dropdown li.active a {
    background: var(--color-brand-soft) !important;
    color: var(--color-brand-dark) !important;
}

.header .donate-now-btn {
    background: var(--color-brand) !important;
    border-color: var(--color-brand) !important;
}

.header .donate-now-btn:hover {
    background: var(--color-brand-dark) !important;
    border-color: var(--color-brand-dark) !important;
    color: #fff !important;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

.p-button--positive,
.donate-now-btn,
.btn,
a.btn,
.cp-submit-btn,
.pd-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand) !important;
    border: 1px solid var(--color-brand) !important;
    color: #fff !important;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    padding: 0.75rem 1.25rem !important;
    border-radius: 0.125rem;
    text-decoration: none !important;
    box-shadow: none !important;
    text-transform: none !important;
    height: auto;
}

.p-button--positive:hover,
.donate-now-btn:hover,
.btn:hover,
a.btn:hover {
    background: var(--color-brand-dark) !important;
    border-color: var(--color-brand-dark) !important;
    color: #fff !important;
}

.p-button,
.lang-switch-btn,
.mobile-lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: 1px solid var(--color-mid-dark) !important;
    color: var(--color-dark) !important;
    font-family: var(--font);
    font-size: 1rem;
    padding: 0.75rem 1.25rem !important;
    border-radius: 0.125rem;
    text-decoration: none !important;
}

.header .lang-switch-btn,
.header .mobile-lang-switch {
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: #fff !important;
}

.header .lang-switch-btn:hover,
.header .mobile-lang-switch:hover {
    background: var(--color-brand-soft) !important;
    border-color: var(--color-brand-soft) !important;
    color: var(--color-brand-dark) !important;
}

/* Shared navbar control size — do not force display; Bootstrap handles show/hide */
.header .nav li a,
.header .donate-now-btn,
.header .lang-switch-btn,
.header .mobile-lang-switch {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 1 !important;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-sizing: border-box !important;
    white-space: nowrap;
    margin: 0;
}

.header .nav li a {
    display: inline-flex;
}

.header .nav > li > a {
    border: 1px solid transparent;
}

.header .nav li a i {
    font-size: 12px;
    line-height: 1;
    margin-inline-start: 4px;
}

.header .nav li .dropdown li a {
    height: auto !important;
    min-height: 40px !important;
    max-height: none !important;
    width: 100%;
    justify-content: flex-start;
    border-radius: 0;
}

@media (max-width: 991.98px) {
    .header .donate-now-btn,
    .header .lang-switch-btn {
        display: none !important;
    }

    .header .mobile-lang-switch {
        display: inline-flex !important;
    }

    .header .slicknav_menu {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .header .mobile-lang-switch,
    .header .mobile-nav {
        display: none !important;
    }

    .header .donate-now-btn,
    .header .lang-switch-btn {
        display: inline-flex !important;
    }
}

.inner-page .site-main {
    padding-top: 72px;
}

.header .inner .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.header .inner .row > [class*="col-"] {
    max-width: none;
}

/* ---- Hero ---- */
.p-strip,
.section,
.page-block,
.contact-page,
.blog,
.services,
.why-choose,
.testimonials,
.clients,
.team,
.schedule {
    padding: 4rem 0;
    background: var(--color-x-light);
    margin: 0;
    height: auto;
}

.p-strip--light:not(.u-dark-texture) {
    background: var(--color-brand-soft) !important;
}

.u-dark-texture {
    position: relative;
    background-color: #0B3A6A !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 0v56M0 28h56' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='1'/%3E%3Ccircle cx='28' cy='28' r='2' fill='%23ffffff' fill-opacity='0.09'/%3E%3C/svg%3E");
    color: #fff;
}

.u-dark-texture .section-title h2,
.u-dark-texture .section-title p,
.u-dark-texture .nrc-section-title h2,
.u-dark-texture .nrc-section-title p {
    color: #fff !important;
}

.u-hero--full {
    position: relative;
    padding: 0;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    background: #0b1f3a;
}

.u-hero--full .hero-slider,
.u-hero--full .owl-stage-outer,
.u-hero--full .owl-stage,
.u-hero--full .owl-item,
.u-hero--full .single-slider {
    height: 100vh;
    min-height: 100vh;
}

.u-hero--full .single-slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.u-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    background: rgba(8, 28, 58, 0.48);
    pointer-events: none;
}

.u-hero-overlay .container,
.u-hero-overlay .u-hero-copy,
.u-hero-overlay a {
    pointer-events: auto;
}

.home-page .u-hero--full .u-hero-overlay {
    align-items: center;
    padding-bottom: 9rem;
}

.u-hero--full .u-hero-copy {
    max-width: 36rem;
}

.u-hero--full h1 {
    color: #fff !important;
    margin-bottom: 1rem;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 400;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.u-hero--full .p-heading--4,
.u-hero--full .u-hero-copy p {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 1.08rem;
    max-width: 32rem;
}

.u-hero--full .p-button {
    border-color: rgba(255, 255, 255, 0.8) !important;
    color: #fff !important;
}

.u-hero--full .p-button:hover {
    background: #fff !important;
    color: var(--color-brand-dark) !important;
}

.u-strip-banner {
    padding: 1.25rem 0;
    border-top: 1px solid var(--color-mid-x-light);
    border-bottom: 1px solid var(--color-mid-x-light);
}

.u-strip-banner .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.u-strip-banner-text {
    margin: 0;
    font-weight: 400;
}

.u-strip-banner a {
    font-weight: 400;
    white-space: nowrap;
}

/* ---- Section titles: same left/right edge as page content ---- */
.section-title,
.nrc-section-title {
    text-align: start;
    max-width: none;
    width: 100%;
    margin: 0 0 2.5rem;
    padding: 0;
}

.section-title .section-badge,
.nrc-section-title .section-badge {
    display: none;
}

.section-title h2,
.nrc-section-title h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 100;
    color: var(--color-dark);
    margin: 0 0 1.25rem;
    max-width: none;
}

.section-title h2::before,
.section-title h2::after,
.nrc-section-title h2::before,
.nrc-section-title h2::after {
    display: none !important;
}

.section-title p,
.nrc-section-title p {
    color: var(--color-mid-dark);
    font-size: 1.125rem;
    font-weight: 300;
    margin: 0;
    max-width: none;
}

body.lang-ar .section-title,
body.lang-ar .nrc-section-title {
    text-align: start;
}

/* ---- Features / pillars ---- */
.schedule .schedule-inner {
    transform: none;
    position: relative;
}

.home-page .u-features--overlap {
    padding: 0 0 4rem;
    margin-top: -8.5rem;
    background: transparent;
    height: auto;
    position: relative;
    z-index: 6;
}

.home-page .u-features--overlap .schedule-inner {
    position: relative;
    z-index: 6;
}

.home-page .u-features--overlap .single-schedule {
    box-shadow: 0 18px 40px rgba(8, 28, 58, 0.16);
}

.u-feature-card {
    --feature-bg: #1A76D1;
    --feature-glow: rgba(26, 118, 209, 0.32);
    border: 0;
    background: var(--feature-bg);
    padding: 1.6rem 1.45rem 1.45rem;
}

.u-feature-card--enable {
    --feature-bg: #1A76D1;
    --feature-glow: rgba(26, 118, 209, 0.38);
}

.u-feature-card--create {
    --feature-bg: #0F9F8A;
    --feature-glow: rgba(15, 159, 138, 0.38);
}

.u-feature-card--connect {
    --feature-bg: #E06B2F;
    --feature-glow: rgba(224, 107, 47, 0.36);
}

.u-feature-card span,
.u-feature-card h4,
.u-feature-card p {
    color: #fff !important;
}

.u-feature-card span {
    opacity: 0.88;
}

.u-feature-card p {
    opacity: 0.92;
}

.home-page .u-features--overlap .u-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px var(--feature-glow);
}

.single-schedule h4,
.ms-card-body h3,
.ms-card-body h3 a,
.nrc-person-name,
.about-who-title,
.page-heading,
.pd-title,
.cp-form-header h2 {
    color: var(--color-dark) !important;
    font-weight: 400 !important;
}

.single-schedule p,
.ms-card-body p,
.nrc-person-role,
.page-lead,
.about-body-text,
.cp-form-header p,
.single-testimonial p {
    color: var(--color-mid-dark) !important;
    font-weight: 300;
}

.single-schedule a:before { display: none; }

/* ---- Modern cards ---- */
.single-schedule,
.ms-card.nrc-story,
.nrc-person.ms-card {
    background: #fff;
    border: 1px solid #e6eef6;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(13, 71, 161, 0.06);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-schedule {
    padding: 1.5rem 1.4rem 1.35rem;
}

.single-schedule .inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0.85rem;
}

.single-schedule .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-brand-soft);
    color: var(--color-brand-dark);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.single-schedule.u-feature-card {
    background: var(--feature-bg) !important;
    border: 0 !important;
    padding: 1.6rem 1.45rem 1.45rem;
}

.single-schedule.u-feature-card span,
.single-schedule.u-feature-card h4,
.single-schedule.u-feature-card p {
    color: #fff !important;
}

.single-schedule.u-feature-card p {
    margin-bottom: 0;
    min-height: 0;
}

.single-schedule .single-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.single-schedule span {
    color: var(--color-brand);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.single-schedule h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.single-schedule p {
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 6em;
}

.single-schedule a,
.ms-link,
.about-read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    color: var(--color-link) !important;
    background: none !important;
    border: 0 !important;
    padding: 0 !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
}

.single-schedule a:hover,
.ms-link:hover,
.about-read-more-link:hover {
    color: var(--color-brand-dark) !important;
    text-decoration: underline !important;
}

.projects-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--color-brand) !important;
    color: #fff !important;
    border: 1px solid var(--color-brand) !important;
    padding: 0.7rem 1.25rem !important;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none !important;
}

.projects-view-all-btn:hover {
    background: var(--color-brand-dark) !important;
    border-color: var(--color-brand-dark) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.ms-card.nrc-story:hover,
.nrc-person.ms-card:hover,
.single-schedule:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(13, 71, 161, 0.12);
}

.home-page .u-features--overlap .single-schedule.u-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px var(--feature-glow);
    border: 0;
}

.ms-card,
.nrc-story,
.nrc-person {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ms-card-media,
.nrc-story-media,
.nrc-person-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--color-header);
}

.ms-card-media img,
.nrc-story-media img,
.nrc-person-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.ms-card.nrc-story:hover .ms-card-media img {
    transform: scale(1.04);
}

.nrc-person-media {
    position: relative;
    display: block;
    overflow: hidden;
    height: auto !important;
    aspect-ratio: 3 / 4;
}

.nrc-person-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
}

.nrc-person-img.is-fallback {
    object-fit: contain;
    padding: 2rem;
    background: var(--color-brand-soft);
}

.nrc-person-caption,
.ms-card-body {
    position: static;
    background: #fff;
    padding: 1.15rem 1.25rem 1.3rem;
    color: var(--color-dark);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ms-card-body h3 {
    margin-bottom: 0.45rem;
}

.nrc-story .ms-card-body h3,
.nrc-story .ms-card-body h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.5em;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.nrc-story .ms-card-body h3 a {
    min-height: 0;
    margin-bottom: 0;
    color: inherit !important;
}

.ms-card-body p {
    flex: 1;
    margin-bottom: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nrc-story .ms-card-body .ms-link {
    margin-top: auto;
}

.nrc-story-date {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    color: var(--color-brand-dark);
    background: var(--color-brand-soft);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    margin-bottom: 0.65rem;
}

.nrc-story-caption { display: none; }

.nrc-person-name {
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nrc-person-role {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nrc-person-social {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    z-index: 2;
}

.nrc-person-social a {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0 !important;
    margin: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--color-brand-dark);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
    text-decoration: none !important;
    line-height: 1 !important;
    box-sizing: border-box;
}

.nrc-person-social a i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 1em;
    height: 1em;
    font-size: 14px;
    line-height: 1;
    text-align: center;
}

.nrc-person-social a:hover {
    background: var(--color-brand);
    color: #fff;
}

.goals-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    width: 100%;
}

.goals-wrapper .goal-item {
    grid-column: span 1;
    min-width: 0;
    display: flex;
}

.goals-wrapper .ms-card {
    width: 100%;
}

.u-features .row,
.projects-grid-row,
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.u-features .row > [class*="col-"],
.projects-grid-row > [class*="col-"],
.team-grid > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding: 0;
    margin: 0;
    display: flex;
    min-width: 0;
}

.u-features .single-schedule,
.projects-grid-row .ms-card,
.team-grid .nrc-person {
    width: 100%;
}

.nrc-person-caption p {
    flex: 0 0 auto;
}

/* ---- About ---- */
.about-text-wrap,
.about-side-wrap {
    background: #fff;
    border: 1px solid #e6eef6;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(13, 71, 161, 0.06);
    padding: 1.5rem 1.5rem 1.35rem;
    height: 100%;
}

.about-who-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
    flex-wrap: nowrap;
}

.about-who-title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.25;
    flex: 1;
    min-width: 0;
}

.about-body-text {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.about-read-more-link {
    margin: 0 0 1.25rem;
}

.about-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-contact-chip {
    border: 0;
    background: var(--color-brand-soft);
    padding: 0.55rem 0.85rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    color: var(--color-brand-dark);
    font-size: 0.9rem;
}

.about-social-links {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.social-card {
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0 !important;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand-soft);
    color: var(--color-brand-dark);
    text-decoration: none !important;
    line-height: 1;
    box-sizing: border-box;
}

.social-card .social-icon,
.social-card i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-size: 14px;
}

.social-card.facebook-card {
    background: #1877F2;
    color: #fff;
}

.social-card.twitter-card {
    background: #0F1419;
    color: #fff;
}

.social-card.linkedin-card {
    background: #0A66C2;
    color: #fff;
}

.about-side-wrap .social-card {
    width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
    gap: 0;
}

.about-side-wrap .social-card .social-label,
.about-side-wrap .social-card .social-arrow {
    display: none;
}

.social-card:hover {
    opacity: 0.88;
    color: #fff;
    text-decoration: none !important;
    transform: translateY(-2px);
}

.about-side-heading {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.about-logo-panel {
    text-align: center;
    margin-bottom: 1.25rem;
}

.about-inline-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.25rem;
}

.about-divider {
    border: 0;
    border-top: 1px solid #e8eef6;
    margin: 1rem 0 1.15rem;
}

.about-logo-panel-img,
.about-inline-logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.about-org-name {
    font-weight: 500;
    color: var(--color-dark);
}

.about-org-tagline {
    color: var(--color-mid-dark);
    font-size: 0.875rem;
}

.about-two-col > [class*="col-"] {
    display: flex;
}

.about-file-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e6eef6;
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
    margin: 0 0 0.5rem;
    color: var(--color-brand-dark);
}

.about-file-ext {
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 2.4rem;
    color: var(--color-brand-dark);
}

.about-file-dl {
    color: var(--color-brand);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.lang-ar .single-schedule a .fa-long-arrow-right,
body.lang-ar .projects-view-all-btn .fa-long-arrow-right {
    transform: scaleX(-1);
}

.about-body-text.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-body-text.is-expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* ---- Testimonials / partners ---- */
.quote-card,
.single-testimonial.quote-card {
    background: #fff;
    border: 1px solid #e6eef6;
    border-radius: 16px;
    padding: 1.5rem 1.35rem 1.25rem;
    height: 100%;
    min-height: 230px;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: 0 8px 28px rgba(8, 28, 58, 0.16);
}

.quote-card p {
    position: relative;
    margin: 0;
    flex: 1;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #334155;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.quote-card p::before {
    content: "“";
    display: block;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--color-brand);
    font-family: Georgia, serif;
    margin-bottom: 0.35rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.quote-author img,
.single-testimonial.quote-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0;
    background: var(--color-brand-soft);
}

.quote-author .name {
    margin: 0 0 0.15rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.quote-role {
    display: block;
    font-size: 0.8rem;
    color: var(--color-mid-dark);
}

.partner-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 0.25rem;
}

.partner-marquee-track {
    display: flex;
    width: max-content;
    animation: partner-marquee 32s linear infinite;
}

.partner-marquee-group {
    display: flex;
    gap: 1rem;
    padding-inline-end: 1rem;
}

.partner-card {
    background: #fff;
    border: 1px solid #e6eef6;
    border-radius: 12px;
    padding: 1.1rem 0.9rem 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 168px;
    min-width: 168px;
    min-height: 140px;
    text-align: center;
}

.partner-marquee:hover .partner-marquee-track {
    animation-play-state: paused;
}

@keyframes partner-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

body.lang-ar .partner-marquee-track {
    animation-name: partner-marquee-rtl;
}

@keyframes partner-marquee-rtl {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .partner-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: auto;
        justify-content: center;
    }

    .partner-marquee-group[aria-hidden="true"] {
        display: none;
    }
}

.partner-logo-wrap {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
}

.partner-logo {
    max-height: 56px;
    max-width: 120px;
    width: auto;
    margin: 0;
    object-fit: contain;
    filter: grayscale(0.15);
}

.partner-card:hover .partner-logo {
    filter: none;
}

.partner-name {
    display: block;
    text-align: center;
    margin-top: 0;
    font-size: 0.8rem;
    color: var(--color-brand-dark);
    font-weight: 500;
    line-height: 1.3;
}

.testimonial-marquee {
    overflow: hidden;
    width: 100%;
}

.testimonial-marquee-track {
    display: flex;
    width: max-content;
    animation: partner-marquee 42s linear infinite;
}

.testimonial-marquee-group {
    display: flex;
    gap: 1rem;
    padding-inline-end: 1rem;
}

.testimonial-marquee:hover .testimonial-marquee-track {
    animation-play-state: paused;
}

body.lang-ar .testimonial-marquee-track {
    animation-name: partner-marquee-rtl;
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: auto;
        justify-content: center;
    }

    .testimonial-marquee-group[aria-hidden="true"] {
        display: none;
    }
}

/* ---- Breadcrumbs / inner page header ---- */
.breadcrumbs,
.breadcrumbs.overlay {
    min-height: 0;
    height: auto;
    padding: 1.5rem 0 1.25rem !important;
    background: #fff !important;
    border-bottom: 1px solid #e8eef6;
}

.inner-page .breadcrumbs {
    margin-top: 0;
}

.breadcrumbs.overlay::before,
.breadcrumbs.overlay::after {
    display: none !important;
}

.breadcrumbs .bread-inner br { display: none; }

.page-header h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin: 0 0 0.5rem;
    color: var(--color-dark);
    line-height: 1.25;
    max-width: none;
    text-align: start;
}

.breadcrumbs .bread-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--color-mid-dark);
    font-size: 0.9rem;
}

.breadcrumbs .bread-list a { color: var(--color-link); }
.breadcrumbs .bread-list .active { color: var(--color-dark); font-weight: 500; }
.breadcrumbs .bread-list i { font-size: 0.75rem; opacity: 0.6; }

.inner-page .section,
.inner-page .home-projects-section,
.inner-page .why-choose,
.inner-page .page-block,
.inner-page .contact-page,
.inner-page .team,
.inner-page .testimonials {
    padding-top: 2.5rem;
}

.cp-form-card,
.donation-card,
.content-card,
.pd-main-card,
.pd-sidebar-card,
.error-card,
.article-hero-card,
.article-body-card,
.comment-form-card,
.comment-card,
.stat-card {
    background: #fff;
    border: 1px solid #e6eef6;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(13, 71, 161, 0.06);
    padding: 1.5rem;
}

.cp-info-card {
    background: #fff;
    border: 1px solid #e6eef6;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}

.cp-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-brand-soft);
    color: var(--color-brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cp-info-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-mid-dark);
    margin-bottom: 0.15rem;
}

.cp-social-row {
    display: flex;
    gap: 0.5rem;
}

.cp-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-brand-soft);
    color: var(--color-brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.cp-social-btn:hover {
    background: var(--color-brand);
    color: #fff;
}

.stat-card {
    text-align: center;
    padding: 1.25rem 1rem;
}

.stat-card strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-brand-dark);
}

.stat-card span {
    color: var(--color-mid-dark);
    font-size: 0.9rem;
}

.pd-hero-img img,
.article-cover img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.pd-thumbs,
.pd-sidebar-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.pd-thumb img,
.pd-sg-item img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.pd-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pd-info-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #eef3f8;
}

.pd-sidebar-title {
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.impact-list {
    padding-left: 1.1rem;
    margin: 0 0 1rem;
}

body.lang-ar .impact-list {
    padding-left: 0;
    padding-right: 1.1rem;
}

.donation-visual-card img {
    max-height: 220px;
    object-fit: contain;
}

.error-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.error-code {
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-brand);
    line-height: 1;
    margin-bottom: 0.75rem;
}

/* ---- Forms ---- */
.cp-form-header h2 { margin-bottom: 0.5rem; }

.cp-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
}

.cp-input-wrap,
.cp-input-wrap input,
.cp-input-wrap textarea {
    width: 100%;
    border: 1px solid var(--color-mid-light);
    border-radius: 0;
    background: #fff;
}

.cp-input-wrap {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
}

.cp-input-wrap input,
.cp-input-wrap textarea {
    border: 0;
    padding: 0.7rem 0.5rem;
    font-family: var(--font);
}

.cp-input-wrap input:focus,
.cp-input-wrap textarea:focus {
    outline: 1px solid var(--color-link);
}

.pd-hero-img img,
.article-cover img {
    width: 100%;
    display: block;
    border-radius: 0;
}

.pd-hero-img { margin-bottom: 0; }

.pd-main-card {
    padding: 0;
    overflow: hidden;
}

.pd-body {
    padding: 1.5rem 1.6rem 1.75rem;
}

.pd-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pd-date {
    font-size: 0.85rem;
    color: var(--color-mid-dark);
}

.pd-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.pd-divider {
    height: 1px;
    background: #e8eef6;
    margin: 0 0 1.25rem;
}

.pd-content,
.rich-content,
.article-body {
    color: var(--color-dark);
    font-size: 1.02rem;
    line-height: 1.75;
}

.pd-content h1,
.pd-content h2,
.pd-content h3,
.rich-content h1,
.rich-content h2,
.rich-content h3,
.article-body h1,
.article-body h2,
.article-body h3 {
    margin: 1.25rem 0 0.6rem;
    color: var(--color-dark);
    font-weight: 500;
    line-height: 1.3;
}

.pd-content p,
.rich-content p,
.article-body p {
    margin: 0 0 1rem;
}

.pd-content img,
.rich-content img,
.article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
    border-radius: 10px;
}

.pd-content ul,
.pd-content ol,
.rich-content ul,
.rich-content ol,
.article-body ul,
.article-body ol {
    margin: 0 0 1rem;
    padding-inline-start: 1.25rem;
}

.pd-content table,
.rich-content table,
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.pd-content td,
.pd-content th,
.rich-content td,
.rich-content th,
.article-body td,
.article-body th {
    border: 1px solid #e6eef6;
    padding: 0.5rem 0.7rem;
}

.pd-content iframe,
.rich-content iframe {
    max-width: 100%;
}

.pd-back-row {
    margin-top: 1.25rem;
}

.pd-gallery {
    background: #0B3A6A;
}

.pd-hero-img img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.pagination {
    gap: 0.35rem;
}

.pagination .page-link {
    color: var(--color-link);
    border: 1px solid #e6eef6;
    border-radius: 8px;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
}

.pagination .page-item.active .page-link {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #fff;
}

/* ---- Footer ---- */
.footer,
.footer-top,
.nrc-footer {
    background-color: #0B3A6A;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 0v56M0 28h56' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1'/%3E%3Ccircle cx='28' cy='28' r='2' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E");
    color: #fff;
    padding: 0;
}

.footer-top { padding: 3.5rem 0 2.5rem; }

.footer h2,
.footer .footer-brand-name {
    color: #fff !important;
    font-size: 1.125rem;
    font-weight: 400;
}

.footer p,
.footer li,
.footer a,
.footer-contact-list li,
.footer-copyright p {
    color: rgba(255, 255, 255, 0.78) !important;
}

.footer a:hover { color: #fff !important; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 4px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 0.65rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-social {
    display: flex;
    gap: 0.45rem;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    margin: 0;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
    background: #fff;
    color: var(--color-brand-dark) !important;
}

.footer .footer-download-text {
    text-align: start !important;
    text-justify: auto;
    hyphens: none;
    max-width: 22rem;
}

.footer a.footer-download-btn,
.footer a.footer-download-btn:visited {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    min-height: 44px;
    padding: 0 1.15rem !important;
    border-radius: 6px !important;
    background: #fff !important;
    border: 1px solid #fff !important;
    color: var(--color-brand-dark) !important;
    font-size: 0.95rem !important;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none !important;
}

.footer a.footer-download-btn span,
.footer a.footer-download-btn i {
    color: var(--color-brand-dark) !important;
}

.footer a.footer-download-btn:hover {
    background: var(--color-brand-soft) !important;
    border-color: var(--color-brand-soft) !important;
    color: var(--color-brand-dark) !important;
    text-decoration: none !important;
}

.footer a.footer-download-btn:hover span,
.footer a.footer-download-btn:hover i {
    color: var(--color-brand-dark) !important;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 1rem 0;
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.35);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#scrollUp {
    background: var(--color-brand) !important;
    border-radius: 0;
}

.home-page .header:not(.sticky) .slicknav_menu {
    background: transparent !important;
}

.slicknav_menu {
    background: transparent !important;
    padding: 0 !important;
    overflow: visible !important;
}

.slicknav_btn {
    background: var(--color-brand) !important;
    height: 40px !important;
    width: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    margin: 0;
    float: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Mobile nav: full-screen white panel, only when open */
.nav-drawer-overlay {
    display: none !important;
}

.nav-drawer-panel {
    display: none;
}

@media (max-width: 991.98px) {
    .header,
    .header .header-inner,
    .header-actions,
    .header .mobile-nav,
    .header .slicknav_btn {
        z-index: 10090;
        pointer-events: auto;
    }

    .header .mobile-nav,
    .header .slicknav_menu,
    .header .slicknav_btn {
        position: relative;
        z-index: 10091;
    }

    body.nav-drawer-open {
        overflow: hidden;
    }

    .nav-drawer-panel {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 10070;
        width: 100%;
        height: 100dvh;
        margin: 0;
        padding: 0 0 2rem;
        overflow-x: hidden;
        overflow-y: auto;
        background: #fff;
        color: var(--color-dark);
        transform: translateY(-110%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }

    body.nav-drawer-open .nav-drawer-panel {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
        z-index: 10100;
    }

    .nav-drawer-panel .slicknav_nav,
    .nav-drawer-panel ul.slicknav_nav {
        display: block !important;
        position: static !important;
        inset: auto !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        transform: none !important;
        visibility: visible !important;
        pointer-events: auto !important;
        background: #fff !important;
        box-shadow: none !important;
        border: 0 !important;
        float: none !important;
    }

    .nav-drawer-head {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
        margin-bottom: 0;
        border-bottom: 1px solid #e5e5e5;
        flex-shrink: 0;
    }

    .nav-drawer-logo {
        width: 40px;
        height: 40px;
        object-fit: contain;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 0;
        padding: 4px;
    }

    .nav-drawer-title {
        flex: 1;
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.3;
        color: var(--color-header);
    }

    .nav-drawer-close {
        width: 36px;
        height: 36px;
        border: 1px solid #d9d9d9;
        background: #fff;
        color: var(--color-dark);
        font-size: 1.6rem;
        line-height: 1;
        border-radius: 0;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .nav-drawer-close:hover,
    .nav-drawer-close:focus {
        background: #fff;
        border-color: var(--color-brand);
        color: var(--color-brand);
    }

    .nav-drawer-panel .slicknav_nav > li {
        float: none !important;
        display: block;
        margin: 0 !important;
        background: transparent !important;
        border-bottom: 1px solid #e5e5e5;
    }

    .nav-drawer-panel .slicknav_nav a,
    .nav-drawer-panel .slicknav_nav .slicknav_item,
    .nav-drawer-panel .slicknav_nav .slicknav_row,
    .nav-drawer-panel .slicknav_nav li a {
        color: var(--color-dark) !important;
        background: transparent !important;
        font-size: 1.05rem !important;
        font-weight: 400 !important;
        min-height: 52px !important;
        height: auto !important;
        max-height: none !important;
        padding: 0.9rem 1.25rem !important;
        border-radius: 0 !important;
        border: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        white-space: normal;
        box-shadow: none !important;
    }

    .nav-drawer-panel .slicknav_nav a:hover,
    .nav-drawer-panel .slicknav_nav .slicknav_item:hover,
    .nav-drawer-panel .slicknav_nav .slicknav_row:hover,
    .nav-drawer-panel .slicknav_nav .slicknav_open > a,
    .nav-drawer-panel .slicknav_nav li.active > a {
        background: transparent !important;
        color: var(--color-brand) !important;
        box-shadow: inset 3px 0 0 var(--color-brand);
    }

    body.lang-ar .nav-drawer-panel .slicknav_nav a:hover,
    body.lang-ar .nav-drawer-panel .slicknav_nav .slicknav_item:hover,
    body.lang-ar .nav-drawer-panel .slicknav_nav .slicknav_row:hover,
    body.lang-ar .nav-drawer-panel .slicknav_nav .slicknav_open > a,
    body.lang-ar .nav-drawer-panel .slicknav_nav li.active > a {
        box-shadow: inset -3px 0 0 var(--color-brand);
    }

    .nav-drawer-panel .slicknav_nav .dropdown,
    .nav-drawer-panel .slicknav_nav ul,
    .nav-drawer-panel .slicknav_nav ul ul {
        background: #fff !important;
        position: static !important;
        box-shadow: none !important;
        border: 0 !important;
        padding: 0 !important;
        width: auto !important;
        min-width: 0 !important;
    }

    .nav-drawer-panel .slicknav_nav .dropdown li,
    .nav-drawer-panel .slicknav_nav ul ul li {
        border-bottom: 1px solid #eee;
        margin: 0 !important;
    }

    .nav-drawer-panel .slicknav_nav .dropdown li a,
    .nav-drawer-panel .slicknav_nav ul ul a {
        padding-inline-start: 2rem !important;
        font-size: 0.95rem !important;
        min-height: 46px !important;
        color: #555 !important;
    }

    .nav-drawer-panel .slicknav_nav .slicknav_arrow {
        color: #888 !important;
    }
}

.owl-carousel .owl-nav {
    z-index: 3;
}

.owl-carousel .owl-nav div {
    background: var(--color-dark) !important;
    color: #fff !important;
    border-radius: 0 !important;
}

@media (max-width: 991px) {
    .home-page .u-hero--full .u-hero-overlay {
        padding-bottom: 6rem;
    }

    .home-page .u-features--overlap {
        margin-top: -4.5rem;
        padding: 0 0 3rem;
    }

    .goals-wrapper,
    .u-features .row,
    .projects-grid-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .u-hero--full,
    .u-hero--full .hero-slider,
    .u-hero--full .owl-stage-outer,
    .u-hero--full .owl-stage,
    .u-hero--full .owl-item,
    .u-hero--full .single-slider,
    .u-hero--full .single-slider img {
        height: 100svh;
        min-height: 100svh;
        margin-top: 0;
    }

    .p-strip,
    .section,
    .page-block,
    .contact-page {
        padding: 3rem 0;
    }

    .header .nav { display: none; }
}

@media (max-width: 767px) {
    .home-page .u-hero--full .u-hero-overlay {
        padding-bottom: 4.5rem;
    }

    .home-page .u-features--overlap {
        margin-top: -2.75rem;
        padding: 0 0 2.5rem;
    }

    .goals-wrapper,
    .u-features .row,
    .projects-grid-row,
    .team-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
    }

    .about-two-col > [class*="col-"] + [class*="col-"] {
        margin-top: 1rem;
    }

    .about-who-head {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .cp-form-card,
    .donation-card,
    .content-card,
    .pd-main-card,
    .pd-sidebar-card,
    .article-hero-card,
    .article-body-card,
    .comment-form-card {
        padding: 1.15rem;
    }
}

/* ---- Language alignment & justification ---- */
body.lang-en {
    direction: ltr;
    text-align: start;
}

body.lang-ar {
    direction: rtl;
    text-align: start;
}

.u-hero-copy,
.section-title,
.nrc-section-title,
.single-schedule,
.ms-card-body,
.nrc-person-caption,
.about-text-wrap,
.about-side-wrap,
.cp-form-card,
.donation-card,
.pd-body,
.article-hero-card,
.single-testimonial,
.footer .single-footer {
    text-align: start;
}

.section-title,
.nrc-section-title {
    text-align: start;
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

body.lang-en .section-title,
body.lang-en .nrc-section-title,
body.lang-ar .section-title,
body.lang-ar .nrc-section-title {
    text-align: start;
    margin-left: 0;
    margin-right: 0;
}

body.lang-en .u-hero-copy h1,
body.lang-en .section-title h2,
body.lang-ar .u-hero-copy h1,
body.lang-ar .section-title h2 {
    text-align: start;
}

body.lang-en p,
body.lang-en .u-hero-copy p,
body.lang-en .section-title p,
body.lang-en .about-body-text,
body.lang-en .ms-card-body p,
body.lang-en .single-schedule p,
body.lang-en .single-testimonial p,
body.lang-en .page-lead,
body.lang-en .pd-content,
body.lang-en .rich-content,
body.lang-en .cp-form-header p,
body.lang-en .donation-card p,
body.lang-en .footer p,
body.lang-en .goals-wrapper .nrc-story p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    text-align-last: start;
}

body.lang-ar p,
body.lang-ar .u-hero-copy p,
body.lang-ar .section-title p,
body.lang-ar .about-body-text,
body.lang-ar .ms-card-body p,
body.lang-ar .single-schedule p,
body.lang-ar .single-testimonial p,
body.lang-ar .page-lead,
body.lang-ar .pd-content,
body.lang-ar .rich-content,
body.lang-ar .cp-form-header p,
body.lang-ar .donation-card p,
body.lang-ar .footer p,
body.lang-ar .goals-wrapper .nrc-story p {
    text-align: justify;
    text-justify: inter-word;
    text-align-last: start;
}

body.lang-en h1,
body.lang-en h2,
body.lang-en h3,
body.lang-en h4,
body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar h4 {
    text-align: start;
}

.u-hero-copy {
    text-align: start;
}

.u-hero-copy p {
    max-width: 28rem;
}

body.lang-ar .u-hero-copy p {
    margin-left: 0;
    margin-right: 0;
}

.u-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

body.lang-ar .u-hero-actions {
    justify-content: flex-start;
}

.u-hero-media,
.hero-slider,
.owl-carousel.u-hero-media {
    direction: ltr;
}

body.lang-ar .header .nav li .dropdown {
    left: auto;
    right: 0;
}

body.lang-ar .header-actions {
    justify-content: flex-start;
}

body.lang-en .header-actions {
    justify-content: flex-end;
}

.breadcrumbs .bread-list {
    justify-content: flex-start;
}

.cp-field,
.cp-field label {
    text-align: start;
}

.ms-card-body h3,
.nrc-person-name,
.partner-name {
    text-align: start;
}

.partner-card,
.single-clients {
    text-align: center;
}

.page-header h1 {
    text-align: start;
}

body.lang-ar .text-left,
body.lang-ar .text-right,
body.lang-en .text-left,
body.lang-en .text-right {
    text-align: start !important;
}

body.lang-ar .about-contact-strip,
body.lang-ar .about-social-links {
    justify-content: flex-start;
}
