/* Alsafwa Core Plugin v1.0.0 - scoped frontend styles only. */
.alsafwa-core-wrap,
.alsafwa-core-wrap * {
    box-sizing: border-box;
}

.alsafwa-core-wrap {
    --asw-primary: #2563eb;
    --asw-cyan: #22d3ee;
    --asw-dark: #020617;
    --asw-slate-900: #0f172a;
    --asw-slate-800: #1e293b;
    --asw-slate-700: #334155;
    --asw-slate-600: #475569;
    --asw-slate-500: #64748b;
    --asw-slate-400: #94a3b8;
    --asw-slate-300: #cbd5e1;
    --asw-slate-100: #f1f5f9;
    --asw-slate-50: #f8fafc;
    --asw-white: #ffffff;
    font-family: Tajawal, Arial, sans-serif;
    color: var(--asw-slate-800);
    background: var(--asw-slate-900);
}

.alsafwa-core-wrap a {
    text-decoration: none;
}

.alsafwa-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.alsafwa-archive-hero {
    padding: clamp(120px, 12vw, 170px) 0 clamp(56px, 8vw, 90px);
    background: radial-gradient(circle at top right, rgba(37, 99, 235, .24), transparent 36%), linear-gradient(135deg, #020617 0%, #0f172a 64%, #082f49 100%);
    color: var(--asw-white);
}

.alsafwa-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(32px, 5vw, 64px);
}

.alsafwa-section-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--asw-white);
}

.alsafwa-section-subtitle {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.9;
    color: var(--asw-slate-400);
}

.alsafwa-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    width: fit-content;
    max-width: 100%;
    margin-bottom: clamp(24px, 4vw, 42px);
    padding: .5rem .9rem;
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: var(--asw-slate-600);
    font-size: .875rem;
    line-height: 1.3;
    overflow-x: auto;
    scrollbar-width: none;
}

.alsafwa-breadcrumbs::-webkit-scrollbar {
    display: none;
}

.alsafwa-breadcrumbs a {
    color: inherit;
    font-weight: 700;
    white-space: nowrap;
}

.alsafwa-breadcrumbs a:hover {
    color: var(--asw-primary);
}

.alsafwa-breadcrumbs span {
    color: var(--asw-primary);
    font-weight: 800;
    white-space: nowrap;
}

.alsafwa-breadcrumbs a::after {
    content: '/';
    display: inline-block;
    margin-inline-start: .5rem;
    color: var(--asw-slate-400);
}

.alsafwa-breadcrumbs-dark {
    background: rgba(2, 6, 23, .62);
    color: var(--asw-slate-300);
    border-color: rgba(148, 163, 184, .2);
    backdrop-filter: blur(16px);
}

.alsafwa-breadcrumbs-dark span {
    color: var(--asw-cyan);
}

.alsafwa-project-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    margin-top: 18px;
}

.alsafwa-filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: .55rem 1rem;
    border: 1px solid rgba(203, 213, 225, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--asw-slate-300);
    font-weight: 800;
    font-size: .9rem;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.alsafwa-filter-link:hover,
.alsafwa-filter-link.is-active {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--asw-primary), #06b6d4);
    color: var(--asw-white);
    border-color: transparent;
}

.alsafwa-projects-section {
    padding: clamp(48px, 7vw, 86px) 0;
    background: var(--asw-slate-900);
}

.alsafwa-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
}

.alsafwa-project-card {
    position: relative;
    min-height: 280px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 24px;
    background: var(--asw-slate-800);
    box-shadow: 0 24px 55px rgba(2, 6, 23, .32);
    isolation: isolate;
}

.alsafwa-project-card-link {
    position: absolute;
    inset: 0;
    display: block;
    color: var(--asw-white);
}

.alsafwa-project-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .78;
    transform: scale(1);
    transition: transform .7s cubic-bezier(.16, 1, .3, 1), opacity .4s ease;
}

.alsafwa-project-card:hover .alsafwa-project-card-image {
    transform: scale(1.1);
    opacity: 1;
}

.alsafwa-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, .92), rgba(15, 23, 42, .45), transparent);
    z-index: 1;
}

.alsafwa-project-card-content {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding: clamp(20px, 3vw, 30px);
    transform: translateY(16px);
    transition: transform .35s ease;
}

.alsafwa-project-card:hover .alsafwa-project-card-content {
    transform: translateY(0);
}

.alsafwa-card-line {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: var(--asw-cyan);
    opacity: .95;
}

.alsafwa-project-card-badge {
    width: fit-content;
    padding: .25rem .6rem;
    border-radius: .5rem;
    background: rgba(37, 99, 235, .92);
    color: var(--asw-white);
    font-size: .76rem;
    font-weight: 900;
}

.alsafwa-project-card-title {
    color: var(--asw-white);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.35;
    font-weight: 900;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.alsafwa-project-card-meta {
    color: var(--asw-cyan);
    font-size: .92rem;
    font-weight: 800;
    opacity: .98;
}

.alsafwa-empty-state {
    padding: clamp(40px, 8vw, 84px) 24px;
    border: 2px dashed rgba(203, 213, 225, .32);
    border-radius: 28px;
    background: rgba(255, 255, 255, .04);
    color: var(--asw-slate-300);
    text-align: center;
    font-weight: 800;
}

.alsafwa-pagination {
    margin-top: 42px;
    color: var(--asw-white);
}

.alsafwa-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.alsafwa-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: .5rem .8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--asw-white);
    font-weight: 800;
}

.alsafwa-pagination .page-numbers.current,
.alsafwa-pagination .page-numbers:hover {
    background: var(--asw-primary);
}

.alsafwa-single-hero {
    position: relative;
    min-height: min(740px, 75vh);
    display: flex;
    align-items: flex-end;
    padding: 140px 0 70px;
    color: var(--asw-white);
    overflow: hidden;
    background: var(--asw-slate-900);
}

.alsafwa-single-bg,
.alsafwa-single-shade {
    position: absolute;
    inset: 0;
}

.alsafwa-single-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.alsafwa-single-shade {
    background: linear-gradient(to top, rgba(2, 6, 23, .98), rgba(15, 23, 42, .72), rgba(15, 23, 42, .24));
}

.alsafwa-single-hero-inner {
    position: relative;
    z-index: 2;
}

.alsafwa-single-topbar {
    position: absolute;
    left: 0;
    right: 0;
    top: -90px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.alsafwa-back-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: .55rem 1rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: var(--asw-white);
    font-weight: 800;
    backdrop-filter: blur(16px);
    white-space: nowrap;
}

.alsafwa-back-link:hover {
    color: var(--asw-cyan);
    background: rgba(255, 255, 255, .16);
}

.alsafwa-project-type-pill {
    display: inline-flex;
    margin-bottom: 18px;
    padding: .35rem .8rem;
    border-radius: .5rem;
    background: var(--asw-primary);
    color: var(--asw-white);
    font-size: .88rem;
    font-weight: 900;
}

.alsafwa-single-title {
    max-width: 920px;
    margin: 0;
    color: var(--asw-white);
    font-size: clamp(2.2rem, 6vw, 5rem);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.04em;
    text-shadow: 0 12px 36px rgba(0, 0, 0, .35);
}

.alsafwa-single-content-section {
    padding: clamp(48px, 7vw, 86px) 0;
    background: var(--asw-slate-50);
}

.alsafwa-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, .9fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: start;
}

.alsafwa-single-content h2 {
    margin: 0 0 14px;
    color: var(--asw-slate-900);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.3;
    font-weight: 900;
}

.alsafwa-title-line {
    display: block;
    width: 64px;
    height: 4px;
    border-radius: 999px;
    background: var(--asw-cyan);
    margin-bottom: 28px;
}

.alsafwa-project-description {
    color: var(--asw-slate-700);
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    line-height: 2;
}

.alsafwa-project-description p {
    margin-bottom: 1.4em;
}

.alsafwa-project-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.alsafwa-project-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
}

.alsafwa-project-overview {
    position: sticky;
    top: 110px;
}

.alsafwa-overview-card {
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 28px;
    background: var(--asw-white);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .09);
}

.alsafwa-overview-card h3 {
    margin: 0 0 24px;
    color: var(--asw-slate-900);
    font-size: 1.35rem;
    font-weight: 900;
}

.alsafwa-overview-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alsafwa-overview-card li {
    padding: 0 0 22px;
    margin: 0 0 22px;
    border-bottom: 1px solid var(--asw-slate-100);
}

.alsafwa-overview-card li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.alsafwa-overview-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--asw-slate-500);
    font-size: .9rem;
    font-weight: 800;
}

.alsafwa-overview-card strong {
    display: block;
    color: var(--asw-slate-800);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 900;
}

.alsafwa-projects-widget {
    background: transparent;
}

.alsafwa-projects-widget .alsafwa-section-title {
    color: inherit;
}

@media (max-width: 1024px) {
    .alsafwa-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alsafwa-single-layout {
        grid-template-columns: 1fr;
    }

    .alsafwa-project-overview {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .alsafwa-container {
        width: min(100% - 24px, 1180px);
    }

    .alsafwa-archive-hero {
        padding-top: 115px;
    }

    .alsafwa-project-grid {
        grid-template-columns: 1fr;
    }

    .alsafwa-project-card {
        min-height: 250px;
        aspect-ratio: 16 / 11;
        border-radius: 20px;
    }

    .alsafwa-project-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .alsafwa-project-filters::-webkit-scrollbar {
        display: none;
    }

    .alsafwa-filter-link {
        flex: 0 0 auto;
    }

    .alsafwa-single-hero {
        min-height: 520px;
        padding-top: 165px;
        padding-bottom: 50px;
    }

    .alsafwa-single-topbar {
        position: static;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .alsafwa-back-link {
        align-self: flex-end;
    }

    .alsafwa-project-gallery {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .alsafwa-core-wrap *,
    .alsafwa-core-wrap *::before,
    .alsafwa-core-wrap *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* Posts archive/single templates - scoped to Alsafwa wrappers. */
.alsafwa-posts-archive,
.alsafwa-post-single {
    background: var(--asw-slate-50);
}

.alsafwa-post-archive-hero {
    padding: clamp(115px, 12vw, 150px) 0 clamp(44px, 7vw, 76px);
    background: linear-gradient(180deg, var(--asw-slate-50) 0%, #ffffff 100%);
    color: var(--asw-slate-900);
}

.alsafwa-post-heading .alsafwa-section-title {
    color: var(--asw-slate-900);
}

.alsafwa-post-heading .alsafwa-section-subtitle {
    color: var(--asw-slate-600);
}

.alsafwa-posts-section {
    padding: clamp(40px, 7vw, 78px) 0 clamp(70px, 9vw, 110px);
    background: var(--asw-slate-50);
}

.alsafwa-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2.6vw, 32px);
}

.alsafwa-post-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 30px;
    background: var(--asw-white);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.alsafwa-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 80px rgba(15, 23, 42, .13);
}

.alsafwa-post-image-link {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
}

.alsafwa-post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .65s cubic-bezier(.16, 1, .3, 1);
}

.alsafwa-post-card:hover .alsafwa-post-card-image {
    transform: scale(1.08);
}

.alsafwa-post-date-pill {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: var(--asw-primary);
    font-size: .78rem;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.alsafwa-post-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: clamp(22px, 3vw, 32px);
}

.alsafwa-post-card-title {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.42;
    font-weight: 900;
}

.alsafwa-post-card-title a {
    color: var(--asw-slate-800);
    transition: color .25s ease;
}

.alsafwa-post-card-title a:hover {
    color: var(--asw-primary);
}

.alsafwa-post-card-excerpt {
    margin: 0 0 24px;
    color: var(--asw-slate-600);
    font-size: .98rem;
    line-height: 1.85;
}

.alsafwa-post-readmore {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    color: var(--asw-slate-800);
    font-weight: 900;
    transition: color .25s ease, transform .25s ease;
}

.alsafwa-post-readmore:hover {
    color: var(--asw-primary);
    transform: translateX(-4px);
}

html[dir="ltr"] .alsafwa-post-readmore:hover {
    transform: translateX(4px);
}

.alsafwa-post-pagination .page-numbers {
    background: var(--asw-white);
    color: var(--asw-slate-800);
    border: 1px solid rgba(148, 163, 184, .18);
}

.alsafwa-post-pagination .page-numbers.current,
.alsafwa-post-pagination .page-numbers:hover {
    background: var(--asw-primary);
    color: var(--asw-white);
}

.alsafwa-post-empty {
    background: var(--asw-white);
    color: var(--asw-slate-500);
}

.alsafwa-post-single-hero {
    position: relative;
    min-height: min(700px, 70vh);
    display: flex;
    align-items: flex-end;
    padding: 155px 0 80px;
    overflow: hidden;
    background: var(--asw-slate-900);
    color: var(--asw-white);
}

.alsafwa-post-single-hero-inner {
    position: relative;
    z-index: 2;
}

.alsafwa-post-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem 1rem;
    margin-bottom: 24px;
}

.alsafwa-post-category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .35rem .85rem;
    border: 1px solid rgba(34, 211, 238, .3);
    border-radius: 999px;
    background: rgba(37, 99, 235, .28);
    color: #cffafe;
    font-size: .88rem;
    font-weight: 900;
    backdrop-filter: blur(14px);
}

.alsafwa-post-hero-meta {
    color: var(--asw-slate-300);
    font-size: .95rem;
    font-weight: 800;
}

.alsafwa-post-single-title {
    max-width: 980px;
    margin: 0;
    color: var(--asw-white);
    font-size: clamp(2rem, 5vw, 4.8rem);
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -0.045em;
    text-shadow: 0 14px 38px rgba(0, 0, 0, .35);
}

.alsafwa-post-single-content-section {
    padding: clamp(42px, 7vw, 84px) 0 clamp(70px, 9vw, 120px);
    background: var(--asw-slate-50);
}

.alsafwa-post-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, .88fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: start;
}

.alsafwa-post-content-card {
    padding: clamp(26px, 5vw, 58px);
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: clamp(26px, 4vw, 42px);
    background: var(--asw-white);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .08);
}

.alsafwa-post-lead {
    margin: 0 0 34px;
    padding-inline-start: 20px;
    border-inline-start: 4px solid var(--asw-cyan);
    color: var(--asw-slate-800);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.8;
    font-weight: 900;
}

.alsafwa-post-content {
    color: var(--asw-slate-600);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    line-height: 2.1;
}

.alsafwa-post-content p,
.alsafwa-post-content ul,
.alsafwa-post-content ol,
.alsafwa-post-content blockquote {
    margin-bottom: 1.5em;
}

.alsafwa-post-content h2,
.alsafwa-post-content h3,
.alsafwa-post-content h4 {
    margin: 1.5em 0 .75em;
    color: var(--asw-slate-900);
    line-height: 1.35;
    font-weight: 900;
}

.alsafwa-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
}

.alsafwa-post-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 24px;
}

.alsafwa-post-sidebar-card {
    padding: clamp(22px, 4vw, 32px);
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 28px;
    background: var(--asw-white);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .08);
}

.alsafwa-post-sidebar-card h3 {
    margin: 0 0 22px;
    color: var(--asw-slate-900);
    font-size: 1.22rem;
    font-weight: 900;
}

.alsafwa-share-links {
    display: grid;
    gap: 10px;
}

.alsafwa-share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 14px;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 900;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.alsafwa-share-links a:hover {
    transform: translateY(-2px);
    background: var(--asw-primary);
    color: var(--asw-white);
}

.alsafwa-related-posts {
    display: grid;
    gap: 16px;
}

.alsafwa-related-post-link {
    display: grid;
    gap: 7px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--asw-slate-100);
}

.alsafwa-related-post-link:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.alsafwa-related-post-link strong {
    color: var(--asw-slate-800);
    font-size: .98rem;
    line-height: 1.55;
    transition: color .25s ease;
}

.alsafwa-related-post-link span {
    color: var(--asw-slate-400);
    font-size: .8rem;
    font-weight: 800;
}

.alsafwa-related-post-link:hover strong {
    color: var(--asw-primary);
}

@media (max-width: 1024px) {
    .alsafwa-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alsafwa-post-single-layout {
        grid-template-columns: 1fr;
    }

    .alsafwa-post-sidebar {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .alsafwa-post-archive-hero {
        padding-top: 105px;
    }

    .alsafwa-post-grid {
        grid-template-columns: 1fr;
    }

    .alsafwa-post-image-link {
        height: 205px;
    }

    .alsafwa-post-card {
        border-radius: 24px;
    }

    .alsafwa-post-single-hero {
        min-height: 520px;
        padding-top: 160px;
        padding-bottom: 48px;
    }

    .alsafwa-post-meta-row {
        align-items: flex-start;
        flex-direction: column;
        gap: .55rem;
    }

    .alsafwa-post-content-card,
    .alsafwa-post-sidebar-card {
        border-radius: 24px;
    }

    .alsafwa-share-links {
        grid-template-columns: 1fr;
    }
}

/* Alsafwa Elementor component pack v1.4.2 */
.alsafwa-widget-wrap,.alsafwa-widget-wrap *{box-sizing:border-box}.alsafwa-widget-wrap{font-family:Tajawal,Arial,sans-serif}.alsafwa-widget-heading{text-align:center;max-width:760px;margin:0 auto clamp(28px,5vw,56px)}.alsafwa-widget-title{margin:0 0 14px;font-size:clamp(2rem,4vw,3.4rem);line-height:1.2;font-weight:900;letter-spacing:-.035em}.alsafwa-widget-subtitle{margin:0;font-size:clamp(1rem,1.8vw,1.16rem);line-height:1.9;color:#64748b}.alsafwa-hero-widget{position:relative;min-height:min(760px,82vh);display:flex;align-items:center;overflow:hidden;padding:clamp(120px,14vw,190px) 24px clamp(80px,10vw,130px);background:#0f172a;background-size:cover;background-position:center;color:#fff;border-radius:0}.alsafwa-hero-shade{position:absolute;inset:0;background:linear-gradient(135deg,rgba(2,6,23,.94),rgba(15,23,42,.75),rgba(8,47,73,.55))}.alsafwa-hero-inner{position:relative;z-index:2;width:min(1180px,100%);margin:auto}.alsafwa-hero-eyebrow{display:inline-flex;margin-bottom:20px;padding:.45rem .85rem;border-radius:999px;background:rgba(255,255,255,.12);color:#cffafe;font-weight:900}.alsafwa-hero-title{max-width:850px;margin:0 0 24px;font-size:clamp(2.4rem,6vw,5.6rem);line-height:1.12;font-weight:950;letter-spacing:-.06em}.alsafwa-hero-subtitle{max-width:680px;margin:0 0 34px;color:#cbd5e1;font-size:clamp(1.05rem,2vw,1.35rem);line-height:1.9}.alsafwa-hero-actions{display:flex;flex-wrap:wrap;gap:14px}.alsafwa-hero-btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:.85rem 1.35rem;border-radius:999px;font-weight:900;transition:.25s}.alsafwa-hero-primary{background:#2563eb;color:#fff}.alsafwa-hero-secondary{border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.1);color:#fff}.alsafwa-hero-btn:hover{transform:translateY(-2px);filter:brightness(1.05)}.alsafwa-stats-widget{padding:34px 24px;border-radius:28px;background:#0f172a}.alsafwa-stats-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;width:min(1180px,100%);margin:auto}.alsafwa-stat-item{text-align:center;padding:20px;border-radius:22px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08)}.alsafwa-stat-number{display:block;color:#fff;font-size:clamp(2rem,4vw,3.4rem);line-height:1;font-weight:950}.alsafwa-stat-label{display:block;margin-top:10px;color:#cbd5e1;font-weight:800}.alsafwa-features-grid,.alsafwa-services-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.alsafwa-feature-card,.alsafwa-service-card{display:block;padding:clamp(24px,3vw,34px);border-radius:24px;background:#fff;border:1px solid rgba(148,163,184,.16);box-shadow:0 24px 55px rgba(15,23,42,.08);transition:.3s;color:inherit;text-decoration:none}.alsafwa-feature-card:hover,.alsafwa-service-card:hover{transform:translateY(-8px);box-shadow:0 34px 80px rgba(15,23,42,.13)}.alsafwa-feature-icon,.alsafwa-service-icon{display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;margin-bottom:20px;border-radius:16px;background:#2563eb;color:#fff;font-weight:950}.alsafwa-feature-title,.alsafwa-service-title{margin:0 0 12px;color:#0f172a;font-size:1.35rem;line-height:1.35;font-weight:900}.alsafwa-feature-card p,.alsafwa-service-text{margin:0;color:#64748b;line-height:1.85}.alsafwa-service-image{width:100%;height:190px;object-fit:cover;border-radius:18px;margin-bottom:20px}.alsafwa-partners-widget{overflow:hidden}.alsafwa-partners-track{display:flex;gap:18px;width:max-content;animation:alsafwa-marquee var(--alsafwa-carousel-speed,24s) linear infinite}.alsafwa-partners-widget:hover .alsafwa-partners-track{animation-play-state:paused}.alsafwa-partner-card{display:flex;align-items:center;justify-content:center;min-width:180px;height:110px;padding:18px;border-radius:18px;background:#fff;border:1px solid rgba(148,163,184,.16);box-shadow:0 14px 32px rgba(15,23,42,.07);color:#334155;font-weight:900;text-decoration:none}.alsafwa-partner-card img{max-width:100%;max-height:56px;object-fit:contain;filter:grayscale(1);opacity:.75;transition:.25s}.alsafwa-partner-card:hover img{filter:grayscale(0);opacity:1}.alsafwa-partner-card:hover{color:#2563eb}@keyframes alsafwa-marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}[dir=rtl] .alsafwa-partners-track{animation-name:alsafwa-marquee-rtl}@keyframes alsafwa-marquee-rtl{from{transform:translateX(0)}to{transform:translateX(50%)}}@media(max-width:1024px){.alsafwa-stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.alsafwa-features-grid,.alsafwa-services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:767px){.alsafwa-hero-widget{min-height:620px;padding:110px 18px 70px}.alsafwa-hero-title{font-size:clamp(2.2rem,11vw,3.6rem)}.alsafwa-hero-actions{flex-direction:column}.alsafwa-hero-btn{width:100%}.alsafwa-stats-grid,.alsafwa-features-grid,.alsafwa-services-grid{grid-template-columns:1fr}.alsafwa-partner-card{min-width:150px;height:96px}.alsafwa-service-image{height:170px}}

/* v1.4.2 WoodMart full-width correction for Alsafwa dynamic templates only. */
body.alsafwa-core-template .main-page-wrapper,
body.alsafwa-core-template .site-content,
body.alsafwa-core-template .content-area,
body.alsafwa-core-template .wd-content-layout,
body.alsafwa-core-template .content-layout-wrapper {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.alsafwa-core-template .main-page-wrapper > .container,
body.alsafwa-core-template .site-content > .container,
body.alsafwa-core-template .content-area > .container,
body.alsafwa-core-template .wd-content-layout > .container,
body.alsafwa-core-template .content-layout-wrapper > .container,
body.alsafwa-core-template .main-page-wrapper > .container-fluid,
body.alsafwa-core-template .site-content > .container-fluid {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.alsafwa-core-template .alsafwa-core-wrap {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-inline-start: calc(50% - 50vw) !important;
    margin-inline-end: calc(50% - 50vw) !important;
    overflow-x: hidden;
}

body.alsafwa-core-template .alsafwa-projects-archive,
body.alsafwa-core-template .alsafwa-project-single,
body.alsafwa-core-template .alsafwa-projects-taxonomy,
body.alsafwa-core-template .alsafwa-posts-archive,
body.alsafwa-core-template .alsafwa-post-single {
    display: block;
    min-width: 100vw;
}

body.alsafwa-core-template .main-page-wrapper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* v1.4.2 Global site content full-width correction + hide default WoodMart breadcrumbs/page title. */
body:not(.wp-admin) .main-page-wrapper,
body:not(.wp-admin) .site-content,
body:not(.wp-admin) .content-area,
body:not(.wp-admin) .wd-content-layout,
body:not(.wp-admin) .content-layout-wrapper,
body:not(.wp-admin) .site-content-contain,
body:not(.wp-admin) .page-content,
body:not(.wp-admin) .entry-content {
    max-width: none !important;
    width: 100% !important;
}

body:not(.wp-admin) .main-page-wrapper,
body:not(.wp-admin) .site-content,
body:not(.wp-admin) .content-area,
body:not(.wp-admin) .wd-content-layout,
body:not(.wp-admin) .content-layout-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body:not(.wp-admin) .main-page-wrapper > .container,
body:not(.wp-admin) .site-content > .container,
body:not(.wp-admin) .content-area > .container,
body:not(.wp-admin) .wd-content-layout > .container,
body:not(.wp-admin) .content-layout-wrapper > .container,
body:not(.wp-admin) .main-page-wrapper > .container-fluid,
body:not(.wp-admin) .site-content > .container-fluid,
body:not(.wp-admin) .content-area > .container-fluid,
body:not(.wp-admin) .wd-content-layout > .container-fluid,
body:not(.wp-admin) .content-layout-wrapper > .container-fluid {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}


body:not(.wp-admin) .main-page-wrapper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body:not(.wp-admin) .site-content,
body:not(.wp-admin) .main-page-wrapper {
    overflow-x: hidden;
}

/* Hide theme default page title/breadcrumb areas, while preserving Alsafwa custom breadcrumbs. */
body:not(.wp-admin) .page-title,
body:not(.wp-admin) .wd-page-title,
body:not(.wp-admin) .title-size-default,
body:not(.wp-admin) .page-title-default,
body:not(.wp-admin) .woodmart-page-title,
body:not(.wp-admin) .wd-breadcrumbs,
body:not(.wp-admin) .yoast-breadcrumb,
body:not(.wp-admin) .rank-math-breadcrumb,
body:not(.wp-admin) .woocommerce-breadcrumb,
body:not(.wp-admin) .breadcrumbs:not(.alsafwa-breadcrumbs):not(.asw-bc),
body:not(.wp-admin) nav.breadcrumbs:not(.alsafwa-breadcrumbs):not(.asw-bc),
body:not(.wp-admin) .wd-page-title-el,
body:not(.wp-admin) .page-title-el {
    display: none !important;
}

/* Keep Alsafwa page sections full-bleed even when rendered inside a future Elementor page. */
body:not(.wp-admin) .alsafwa-core-wrap,
body:not(.wp-admin) .alsafwa-widget-wrap {
    width: 100% !important;
    max-width: 100% !important;
}


/* v1.4.2 Elementor Boxed restore override. */


/* v1.4.2 Elementor width controls protection.
   Page wrappers remain full width, but Elementor section/container width controls are no longer overridden. */
body:not(.wp-admin) .elementor-section.elementor-section-boxed > .elementor-container,
body:not(.wp-admin) .e-con.e-con-boxed > .e-con-inner,
body:not(.wp-admin) .e-con-boxed > .e-con-inner {
    margin-left: auto;
    margin-right: auto;
}

/* v1.5.1 advanced Elementor controls */
.alsafwa-feature-icon{
    background: var(--alsafwa-feature-icon-bg, #2563eb);
    color: var(--alsafwa-feature-icon-color, currentColor);
    overflow:hidden;
    line-height:1;
}
.alsafwa-feature-icon img{
    width:62%;
    height:62%;
    object-fit:contain;
    display:block;
}
.alsafwa-feature-icon svg{
    width:1em;
    height:1em;
    fill:currentColor;
    display:block;
}
.alsafwa-hero-eyebrow{
    gap:.55rem;
    border:1px solid rgba(34,211,238,.24);
    box-shadow:0 14px 38px rgba(2,6,23,.18);
}
.alsafwa-hero-eyebrow-dot{
    display:inline-block;
    width:.58em;
    height:.58em;
    border-radius:999px;
    flex:0 0 auto;
    background:#22d3ee;
    box-shadow:0 0 18px #22d3ee;
}
.alsafwa-hero-btn{
    gap:.65rem;
    min-height:58px;
    padding:1rem 1.85rem;
    border-radius:16px;
    box-shadow:0 18px 45px rgba(2,6,23,.22);
}
.alsafwa-hero-primary{
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
}
.alsafwa-hero-secondary{
    background:rgba(15,23,42,.46);
    color:#fff;
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}
.alsafwa-hero-btn-icon svg{
    width:1em;
    height:1em;
    fill:currentColor;
    display:block;
}

/* v1.5.2 About Split widget - mirrors uploaded HTML home about preview */
.alsafwa-about-split-widget{
    padding:clamp(64px,8vw,96px) 24px;
    background:#ffffff;
    overflow:hidden;
}
.alsafwa-about-split-container{
    width:100%;
    max-width:1180px;
    margin-inline:auto;
    display:flex;
    align-items:center;
    gap:clamp(48px,6vw,64px);
}
.alsafwa-about-media{
    width:50%;
    position:relative;
    flex:0 0 50%;
}
.alsafwa-about-main-image{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    aspect-ratio:4/3;
    box-shadow:0 25px 60px rgba(15,23,42,.22);
}
.alsafwa-about-main-image img,
.alsafwa-about-overlay-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.alsafwa-about-image-tint{
    position:absolute;
    inset:0;
    background:rgba(30,64,175,.2);
    mix-blend-mode:multiply;
    pointer-events:none;
}
.alsafwa-about-overlay-image{
    position:absolute;
    bottom:-40px;
    inset-inline-start:-40px;
    width:66.666%;
    overflow:hidden;
    border:8px solid #fff;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(15,23,42,.24);
    background:#fff;
}
.alsafwa-about-overlay-image img{
    aspect-ratio:16/9;
}
.alsafwa-about-content{
    width:50%;
    flex:1;
    text-align:start;
}
.alsafwa-about-label{
    margin:0 0 8px;
    font-size:clamp(.75rem,1.3vw,.875rem);
    line-height:1.2;
    font-weight:800;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:#2563eb;
}
.alsafwa-about-title{
    margin:0 0 clamp(16px,2vw,24px);
    font-size:clamp(1.5rem,3vw,2.25rem);
    line-height:1.24;
    font-weight:900;
    letter-spacing:-.035em;
    color:#0f172a;
}
.alsafwa-about-description{
    margin:0 0 clamp(24px,3vw,32px);
    font-size:clamp(1rem,1.7vw,1.125rem);
    line-height:1.8;
    color:#475569;
}
.alsafwa-about-checklist{
    display:inline-flex;
    flex-direction:column;
    gap:clamp(12px,1.6vw,16px);
    margin:0 0 clamp(32px,4vw,40px);
    padding:0;
    list-style:none;
    text-align:start;
}
.alsafwa-about-checklist li{
    display:flex;
    align-items:center;
    gap:12px;
    color:#334155;
    font-size:clamp(.9rem,1.4vw,1rem);
    line-height:1.5;
    font-weight:700;
}
.alsafwa-about-check-icon{
    display:inline-flex;
    width:20px;
    height:20px;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    color:#06b6d4;
}
.alsafwa-about-check-icon svg{
    width:20px;
    height:20px;
    fill:currentColor;
}
.alsafwa-about-button-wrap{
    display:flex;
    justify-content:flex-start;
}
.alsafwa-about-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:56px;
    padding:14px 32px;
    border-radius:12px;
    background:#0f172a;
    color:#fff;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 18px 34px rgba(15,23,42,.18);
    transition:all .25s ease;
}
.alsafwa-about-button:hover{
    transform:translateY(-2px);
    background:#1e293b;
    color:#fff;
}
.alsafwa-about-button-icon svg{
    width:20px;
    height:20px;
    fill:currentColor;
    transition:transform .25s ease;
}
.alsafwa-about-button:hover .alsafwa-about-button-icon svg{
    transform:translateX(-4px);
}
[dir="ltr"] .alsafwa-about-button:hover .alsafwa-about-button-icon svg{
    transform:translateX(4px);
}
@media(max-width:1024px){
    .alsafwa-about-split-container{flex-direction:column;align-items:stretch;gap:56px}
    .alsafwa-about-media,.alsafwa-about-content{width:100%;flex-basis:auto}
}
@media(max-width:767px){
    .alsafwa-about-split-widget{padding:64px 16px}
    .alsafwa-about-content{text-align:center}
    .alsafwa-about-checklist{margin-inline:auto}
    .alsafwa-about-button-wrap{justify-content:center}
    .alsafwa-about-button{width:100%}
    .alsafwa-about-overlay-image{display:none}
    .alsafwa-about-main-image{border-radius:20px}
}

/* v1.5.3 Stats widget - exact HTML floating white stats panel */
.alsafwa-stats-widget{
    position:relative;
    z-index:20;
    margin-top:-64px;
    padding:0 24px;
    background:transparent!important;
    border-radius:0;
}
.alsafwa-stats-panel{
    width:100%;
    max-width:1180px;
    margin-inline:auto;
    background:#fff;
    border:1px solid #f1f5f9;
    border-radius:16px;
    box-shadow:0 25px 50px -12px rgba(15,23,42,.25);
    padding:clamp(24px,3vw,32px);
}
.alsafwa-stats-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:clamp(24px,3vw,32px);
    width:100%;
    max-width:none;
    margin:0;
}
.alsafwa-stat-item{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    justify-content:flex-start;
    gap:clamp(16px,2vw,24px);
    padding:16px;
    text-align:start;
    border-radius:12px;
    background:transparent;
    border:0;
    box-shadow:none;
    transition:background .25s ease, transform .25s ease;
}
.alsafwa-stat-item:hover{
    background:#f8fafc;
}
.alsafwa-stat-icon{
    display:inline-flex;
    width:64px;
    height:64px;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    border-radius:16px;
    background:var(--alsafwa-stat-icon-bg,#f1f5f9);
    color:var(--alsafwa-stat-icon-color,#2563eb);
}
.alsafwa-stat-icon svg{
    width:28px;
    height:28px;
    fill:currentColor;
    display:block;
}
.alsafwa-stat-text{
    display:block;
}
.alsafwa-stat-number{
    display:block;
    margin:0 0 4px;
    color:#1e293b;
    font-size:clamp(1.5rem,2.4vw,1.875rem);
    line-height:1.12;
    font-weight:950;
}
.alsafwa-stat-label{
    display:block;
    margin:0;
    color:#64748b;
    font-size:clamp(.875rem,1.4vw,1rem);
    line-height:1.5;
    font-weight:500;
}
@media(max-width:1024px){
    .alsafwa-stats-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .alsafwa-stat-item{flex-direction:column;align-items:center;text-align:center}
}
@media(max-width:767px){
    .alsafwa-stats-widget{margin-top:32px;padding:0 16px}
    .alsafwa-stats-grid{grid-template-columns:1fr;gap:16px}
    .alsafwa-stat-item{flex-direction:column;align-items:center;text-align:center;padding:16px}
}

/* v1.5.4 HTML fidelity audit fixes: Features + Hero buttons */
.alsafwa-features-widget .alsafwa-feature-card{
    padding:clamp(24px,3vw,32px);
    border-radius:24px;
    border:1px solid #f1f5f9;
    box-shadow:0 1px 2px rgba(15,23,42,.04);
    transition:all .3s ease;
    text-align:start;
}
.alsafwa-features-widget .alsafwa-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 32px rgba(15,23,42,.12);
}
.alsafwa-features-widget .alsafwa-feature-icon{
    width:64px;
    height:64px;
    margin-bottom:24px;
    border-radius:16px;
    color:#fff;
    box-shadow:0 12px 26px rgba(37,99,235,.22);
    transition:transform .3s ease;
}
.alsafwa-features-widget .alsafwa-feature-card:hover .alsafwa-feature-icon{
    transform:scale(1.1);
}
.alsafwa-features-widget .alsafwa-feature-icon svg{
    width:32px;
    height:32px;
    stroke:currentColor;
    fill:none;
}
.alsafwa-features-widget .alsafwa-feature-card:nth-child(1) .alsafwa-feature-icon:not([style*="--alsafwa-feature-icon-bg"]){
    background:linear-gradient(135deg,#3b82f6,#2563eb);
}
.alsafwa-features-widget .alsafwa-feature-card:nth-child(2) .alsafwa-feature-icon:not([style*="--alsafwa-feature-icon-bg"]){
    background:linear-gradient(135deg,#06b6d4,#3b82f6);
}
.alsafwa-features-widget .alsafwa-feature-card:nth-child(3) .alsafwa-feature-icon:not([style*="--alsafwa-feature-icon-bg"]){
    background:linear-gradient(135deg,#2563eb,#4f46e5);
}
.alsafwa-features-widget .alsafwa-feature-title{
    margin-bottom:12px;
    font-size:clamp(1.125rem,1.8vw,1.25rem);
}
.alsafwa-features-widget .alsafwa-feature-card p{
    font-size:clamp(.9rem,1.4vw,1rem);
    line-height:1.75;
}
.alsafwa-hero-widget .alsafwa-hero-primary{
    background:linear-gradient(90deg,#2563eb,#06b6d4);
    color:#fff;
    border:0;
    box-shadow:0 20px 40px rgba(37,99,235,.30);
    transform:translateY(0) scale(1);
}
.alsafwa-hero-widget .alsafwa-hero-primary:hover{
    background:linear-gradient(90deg,#3b82f6,#22d3ee);
    color:#fff;
    transform:scale(1.05);
    filter:none;
}
.alsafwa-hero-widget .alsafwa-hero-secondary{
    background:rgba(255,255,255,.05);
    color:#fff;
    border:1px solid rgba(255,255,255,.20);
    box-shadow:none;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}
.alsafwa-hero-widget .alsafwa-hero-secondary:hover{
    background:rgba(255,255,255,.10);
    color:#fff;
    transform:none;
    filter:none;
}
.alsafwa-hero-widget .alsafwa-hero-btn{
    border-radius:12px;
    min-height:56px;
    padding:14px 32px;
    transition:all .25s ease;
}
.alsafwa-hero-widget .alsafwa-hero-btn-icon{
    display:inline-flex;
    transition:transform .25s ease;
}
.alsafwa-hero-widget .alsafwa-hero-btn-icon svg{
    width:20px;
    height:20px;
    fill:none;
    stroke:currentColor;
}
.alsafwa-hero-widget[dir="rtl"] .alsafwa-hero-primary:hover .alsafwa-hero-btn-icon{
    transform:translateX(-4px);
}
.alsafwa-hero-widget[dir="ltr"] .alsafwa-hero-primary:hover .alsafwa-hero-btn-icon{
    transform:translateX(4px);
}
.alsafwa-hero-widget[dir="rtl"] .alsafwa-hero-btn-default-arrow svg{
    transform:scaleX(-1);
}
@media(max-width:767px){
    .alsafwa-features-widget .alsafwa-feature-card{text-align:center}
    .alsafwa-features-widget .alsafwa-feature-icon{margin-inline:auto}
}

/* v1.5.4 additional HTML fidelity audit for remaining Elementor components */
.alsafwa-services-widget{
    background:#f8fafc;
}
.alsafwa-services-widget .alsafwa-service-card{
    position:relative;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    padding:0;
    border-radius:24px;
    background:#fff;
    border:1px solid #f1f5f9;
    box-shadow:0 1px 2px rgba(15,23,42,.04);
    transition:all .5s ease;
}
.alsafwa-services-widget .alsafwa-service-card:hover{
    transform:none;
    box-shadow:0 25px 50px -12px rgba(15,23,42,.25);
}
.alsafwa-services-widget .alsafwa-service-media{
    position:relative;
    display:block;
    height:clamp(160px,18vw,192px);
    overflow:hidden;
}
.alsafwa-services-widget .alsafwa-service-image{
    width:100%;
    height:100%;
    object-fit:cover;
    margin:0;
    border-radius:0;
    transition:transform .7s ease;
}
.alsafwa-services-widget .alsafwa-service-card:hover .alsafwa-service-image{
    transform:scale(1.1);
}
.alsafwa-services-widget .alsafwa-service-image-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,#0f172a,transparent);
    opacity:.8;
}
.alsafwa-services-widget .alsafwa-service-corner-icon{
    position:absolute;
    inset-inline-end:16px;
    bottom:16px;
    color:#fff;
    opacity:.5;
    transition:opacity .25s ease;
}
.alsafwa-services-widget .alsafwa-service-card:hover .alsafwa-service-corner-icon{
    opacity:1;
}
.alsafwa-services-widget .alsafwa-service-corner-icon svg{
    width:24px;
    height:24px;
}
.alsafwa-services-widget .alsafwa-service-body{
    position:relative;
    display:block;
    flex-grow:1;
    padding:clamp(24px,3vw,32px);
    background:#fff;
}
.alsafwa-services-widget .alsafwa-service-icon{
    position:absolute;
    top:-20px;
    inset-inline-end:24px;
    width:40px;
    height:40px;
    margin:0;
    border-radius:999px;
    background:#2563eb;
    color:#fff;
    box-shadow:0 12px 24px rgba(59,130,246,.3);
    font-size:.875rem;
    font-weight:800;
}
.alsafwa-services-widget .alsafwa-service-title{
    padding-top:8px;
    margin-bottom:12px;
    font-size:clamp(1.25rem,2vw,1.5rem);
    line-height:1.25;
}
.alsafwa-services-widget .alsafwa-service-text{
    font-size:clamp(.9rem,1.4vw,1rem);
    line-height:1.7;
}
.alsafwa-projects-widget .alsafwa-project-card{
    border-radius:16px;
    aspect-ratio:16/9;
    box-shadow:0 10px 15px -3px rgba(15,23,42,.25);
}
@media(min-width:768px){
    .alsafwa-projects-widget .alsafwa-project-card{aspect-ratio:4/3}
}
.alsafwa-projects-widget .alsafwa-project-card-image{
    transition:transform .7s ease, opacity .3s ease;
    opacity:.8;
}
.alsafwa-projects-widget .alsafwa-project-card:hover .alsafwa-project-card-image{
    transform:scale(1.1);
    opacity:1;
}
.alsafwa-projects-widget .alsafwa-project-overlay{
    background:linear-gradient(to top,rgba(2,6,23,.95),rgba(15,23,42,.40),transparent)!important;
    opacity:.9;
    transition:opacity .3s ease;
}
.alsafwa-projects-widget .alsafwa-project-card-content{
    transform:translateY(16px);
    transition:transform .3s ease;
}
@media(min-width:768px){
    .alsafwa-projects-widget .alsafwa-project-card-content{transform:translateY(32px)}
}
.alsafwa-projects-widget .alsafwa-project-card:hover .alsafwa-project-card-content{
    transform:translateY(0);
}
.alsafwa-projects-widget .alsafwa-card-line,
.alsafwa-projects-widget .alsafwa-project-card-meta{
    opacity:1;
    transition:opacity .5s ease;
}
@media(min-width:768px){
    .alsafwa-projects-widget .alsafwa-card-line,
    .alsafwa-projects-widget .alsafwa-project-card-meta{opacity:0}
    .alsafwa-projects-widget .alsafwa-project-card:hover .alsafwa-card-line,
    .alsafwa-projects-widget .alsafwa-project-card:hover .alsafwa-project-card-meta{opacity:1}
}
.alsafwa-posts-grid-widget .asw-post-card{
    border-radius:24px;
    overflow:hidden;
    border:1px solid #f1f5f9;
    box-shadow:0 10px 24px rgba(226,232,240,.5);
    transition:all .3s ease;
}
.alsafwa-posts-grid-widget .asw-post-card:hover{
    transform:none;
    box-shadow:0 20px 35px rgba(226,232,240,.75);
}
.alsafwa-posts-grid-widget .asw-post-img img{
    transition:transform .7s ease;
}
.alsafwa-posts-grid-widget .asw-post-card:hover .asw-post-img img{
    transform:scale(1.05);
}
.alsafwa-posts-grid-widget .asw-date{
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    color:#2563eb;
}
.alsafwa-posts-grid-widget .asw-post-title a{
    transition:color .25s ease;
}
.alsafwa-posts-grid-widget .asw-post-card:hover .asw-post-title a,
.alsafwa-posts-grid-widget .asw-post-card:hover .asw-read{
    color:#2563eb;
}
.alsafwa-partners-widget .alsafwa-partner-card{
    flex-direction:column;
    gap:6px;
    min-width:180px;
    height:110px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(148,163,184,.16);
    box-shadow:0 14px 32px rgba(15,23,42,.07);
}
.alsafwa-partner-mark{
    display:block;
    color:#1e293b;
    font-weight:900;
    font-size:.85rem;
}
.alsafwa-partner-name{
    display:block;
    color:#64748b;
    font-weight:800;
    font-size:.75rem;
}
.alsafwa-partners-widget .alsafwa-partner-card:hover .alsafwa-partner-mark,
.alsafwa-partners-widget .alsafwa-partner-card:hover .alsafwa-partner-name{
    color:#2563eb;
}


/* v1.6.1 Fix primary hero button arrow color */
.alsafwa-hero-widget .alsafwa-hero-primary .alsafwa-hero-btn-icon,
.alsafwa-hero-widget .alsafwa-hero-primary .alsafwa-hero-btn-icon svg,
.alsafwa-hero-widget .alsafwa-hero-primary .alsafwa-hero-btn-icon svg *{
    color:#ffffff!important;
    stroke:#ffffff!important;
    opacity:1!important;
}
.alsafwa-hero-widget .alsafwa-hero-primary .alsafwa-hero-btn-icon svg{
    fill:#ffffff!important;
}
.alsafwa-hero-widget .alsafwa-hero-primary .alsafwa-hero-btn-default-arrow svg,
.alsafwa-hero-widget .alsafwa-hero-primary .alsafwa-hero-btn-default-arrow svg *{
    fill:none!important;
}

/* v1.6.3 Page fidelity sync: HTML-matching static pages */
.asw-page-container{
    width:min(1180px,calc(100% - 32px));
    margin-inline:auto;
}
.asw-page-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    margin-bottom:clamp(28px,4vw,48px);
    color:#64748b;
    font-size:clamp(.875rem,1.4vw,1rem);
    line-height:1.4;
    font-weight:700;
}
.asw-page-breadcrumb a{
    color:#334155;
    text-decoration:none;
    transition:color .2s ease;
}
.asw-page-breadcrumb a:hover{color:#2563eb}
.asw-page-breadcrumb-current{color:#2563eb}
.asw-page-header{
    padding:clamp(56px,7vw,80px) 0 clamp(36px,5vw,64px);
    background:#f8fafc;
}
.asw-page-heading{
    max-width:768px;
    margin-inline:auto;
    text-align:center;
}
.asw-page-title{
    margin:0 0 clamp(16px,2vw,24px);
    color:#0f172a;
    font-size:clamp(2rem,4.4vw,3rem);
    line-height:1.18;
    font-weight:950;
    letter-spacing:-.035em;
}
.asw-page-subtitle{
    margin:0;
    color:#64748b;
    font-size:clamp(1rem,1.8vw,1.125rem);
    line-height:1.8;
}
.asw-services-page-grid .alsafwa-services-widget,
.asw-articles-page-grid .alsafwa-posts-grid-widget{
    padding:0 24px clamp(64px,8vw,80px);
    background:#f8fafc;
}
.asw-services-page-grid .alsafwa-services-grid,
.asw-articles-page-grid .asw-post-grid{
    width:min(1180px,100%);
    margin-inline:auto;
}
.asw-home-features .alsafwa-features-widget{
    padding:clamp(80px,10vw,128px) 24px clamp(64px,8vw,80px);
    background:#f8fafc;
}
.asw-home-features .alsafwa-features-grid{
    width:min(1180px,100%);
    margin-inline:auto;
}
.asw-home-partners .alsafwa-partners-widget{
    padding:clamp(48px,6vw,64px) 24px;
    background:#0f172a;
    color:#fff;
}
.asw-home-partners .alsafwa-widget-heading{
    max-width:1180px;
    margin-inline:auto;
}
.asw-home-partners .alsafwa-widget-title{
    color:#94a3b8;
    font-size:.875rem;
    line-height:1.3;
    text-transform:uppercase;
    letter-spacing:.16em;
}
.asw-home-partners .alsafwa-widget-subtitle{display:none}

.asw-about-page{
    min-height:100vh;
    padding:clamp(96px,12vw,128px) 0 clamp(64px,8vw,80px);
    background:#f8fafc;
}
.asw-about-page-heading{
    max-width:768px;
    margin:0 auto clamp(48px,7vw,80px);
    text-align:center;
}
.asw-about-page-title{
    margin:0 0 clamp(16px,2vw,24px);
    color:#0f172a;
    font-size:clamp(2rem,4.4vw,3rem);
    line-height:1.18;
    font-weight:950;
    letter-spacing:-.035em;
}
.asw-about-page-desc{
    margin:0;
    color:#64748b;
    font-size:clamp(1rem,1.8vw,1.25rem);
    line-height:1.9;
    font-weight:300;
}
.asw-about-cards-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:clamp(32px,4vw,40px);
    max-width:1024px;
    margin-inline:auto;
}
.asw-about-card{
    position:relative;
    overflow:hidden;
    padding:clamp(32px,4vw,40px);
    border-radius:24px;
    background:#fff;
    box-shadow:0 20px 45px rgba(226,232,240,.70);
    border:1px solid rgba(241,245,249,.9);
    text-align:start;
}
.asw-about-card-bg{
    position:absolute;
    z-index:0;
    top:0;
    inset-inline-end:0;
    width:128px;
    height:128px;
    border-bottom-left-radius:999px;
    background:var(--asw-card-bubble,#eff6ff);
    transform:scale(1);
    transform-origin:top right;
    transition:transform .5s ease;
}
[dir="rtl"] .asw-about-card-bg{border-bottom-left-radius:0;border-bottom-right-radius:999px;transform-origin:top left}
.asw-about-card:hover .asw-about-card-bg{transform:scale(1.5)}
.asw-about-card-icon{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    margin-bottom:24px;
    border-radius:16px;
    background:var(--asw-card-bubble,#eff6ff);
    color:var(--asw-card-accent,#2563eb);
}
.asw-about-card-icon svg{width:30px;height:30px}
.asw-about-card-title{
    position:relative;
    z-index:1;
    margin:0 0 16px;
    color:#1e293b;
    font-size:clamp(1.5rem,3vw,1.875rem);
    line-height:1.2;
    font-weight:900;
}
.asw-about-card-text{
    position:relative;
    z-index:1;
    margin:0;
    color:#64748b;
    font-size:clamp(.95rem,1.6vw,1.125rem);
    line-height:1.8;
}

.asw-contact-page{
    position:relative;
    min-height:100vh;
    padding:clamp(96px,12vw,128px) 0 clamp(64px,8vw,80px);
    background:#f8fafc;
    overflow:hidden;
}
.asw-contact-skew{
    position:absolute;
    top:0;
    inset-inline-end:0;
    width:50%;
    height:100%;
    background:rgba(37,99,235,.05);
    transform:skewX(-12deg) translateX(25%);
    pointer-events:none;
}
[dir="rtl"] .asw-contact-skew{transform:skewX(12deg) translateX(-25%)}
.asw-contact-container{position:relative;z-index:1;max-width:1180px}
.asw-contact-heading{
    max-width:768px;
    margin:0 auto clamp(48px,6vw,64px);
    text-align:center;
}
.asw-contact-title{
    margin:0 0 clamp(16px,2vw,24px);
    color:#0f172a;
    font-size:clamp(2rem,4.4vw,3rem);
    line-height:1.18;
    font-weight:950;
    letter-spacing:-.035em;
}
.asw-contact-subtitle{
    margin:0;
    color:#64748b;
    font-size:clamp(1rem,1.8vw,1.125rem);
    line-height:1.7;
}
.asw-contact-card{
    display:flex;
    overflow:hidden;
    border-radius:clamp(24px,4vw,40px);
    background:#fff;
    border:1px solid #f1f5f9;
    box-shadow:0 25px 50px rgba(203,213,225,.75);
}
.asw-contact-info{
    position:relative;
    width:40%;
    min-height:520px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    overflow:hidden;
    padding:clamp(32px,5vw,64px);
    background:#0f172a;
    color:#fff;
}
.asw-contact-glow{
    position:absolute;
    top:-40px;
    inset-inline-end:-50px;
    width:256px;
    height:256px;
    border-radius:999px;
    background:#3b82f6;
    filter:blur(100px);
    opacity:.4;
}
.asw-contact-info h2{
    position:relative;
    z-index:1;
    margin:0 0 clamp(32px,4vw,40px);
    color:#fff;
    font-size:clamp(1.5rem,3vw,1.875rem);
    line-height:1.2;
    font-weight:850;
}
.asw-contact-info ul{
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    gap:clamp(24px,4vw,40px);
    margin:0;
    padding:0;
    list-style:none;
}
.asw-contact-info li{
    display:flex;
    align-items:flex-start;
    gap:clamp(16px,2vw,20px);
}
.asw-contact-info-icon{
    display:flex;
    width:56px;
    height:56px;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    border-radius:16px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.10);
    color:#22d3ee;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}
.asw-contact-info-icon svg{width:28px;height:28px}
.asw-contact-info em{
    display:block;
    margin-bottom:4px;
    color:#94a3b8;
    font-size:.78rem;
    line-height:1.2;
    font-style:normal;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.asw-contact-info strong{
    display:block;
    color:#fff;
    font-size:clamp(.95rem,1.5vw,1.125rem);
    line-height:1.6;
    font-weight:650;
}
.asw-contact-form-wrap{width:60%;padding:clamp(24px,5vw,64px);background:#fff}
.asw-contact-form{display:flex;flex-direction:column;gap:clamp(20px,2.8vw,24px)}
.asw-contact-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(20px,2.8vw,24px)}
.asw-contact-form label{display:block;margin:0}
.asw-contact-form label span{
    display:block;
    margin-bottom:8px;
    color:#334155;
    font-size:clamp(.78rem,1.3vw,.9rem);
    line-height:1.2;
    font-weight:800;
}
.asw-contact-form input,
.asw-contact-form textarea{
    width:100%;
    border:2px solid transparent;
    outline:none;
    background:#f8fafc;
    border-radius:16px;
    padding:clamp(13px,2vw,16px) clamp(16px,2vw,20px);
    color:#0f172a;
    font-size:clamp(.9rem,1.4vw,1rem);
    line-height:1.5;
    transition:all .25s ease;
}
.asw-contact-form textarea{resize:none}
.asw-contact-form input:focus,
.asw-contact-form textarea:focus{background:#fff;border-color:#3b82f6}
.asw-contact-form button{
    width:100%;
    min-height:60px;
    margin-top:clamp(8px,2vw,16px);
    border:0;
    border-radius:16px;
    background:linear-gradient(90deg,#2563eb,#06b6d4);
    color:#fff;
    font-size:clamp(1rem,1.6vw,1.125rem);
    line-height:1.2;
    font-weight:850;
    cursor:pointer;
    box-shadow:0 20px 40px rgba(59,130,246,.30);
    transition:all .25s ease;
}
.asw-contact-form button:hover{transform:translateY(-4px);background:linear-gradient(90deg,#3b82f6,#22d3ee)}
@media(max-width:1024px){
    .asw-contact-card{flex-direction:column}
    .asw-contact-info,.asw-contact-form-wrap{width:100%}
    .asw-contact-info{min-height:auto}
}
@media(max-width:767px){
    .asw-page-container{width:min(100% - 32px,1180px)}
    .asw-about-cards-grid{grid-template-columns:1fr}
    .asw-about-card{text-align:center}
    .asw-about-card-icon{margin-inline:auto}
    .asw-contact-skew{width:100%;opacity:.75}
    .asw-contact-form-grid{grid-template-columns:1fr}
    .asw-contact-info-icon{width:48px;height:48px;border-radius:14px}
    .asw-contact-info-icon svg{width:24px;height:24px}
}


/* v1.6.6 Articles grid fidelity: matches uploaded HTML spacing/card behavior */
.alsafwa-posts-grid-widget .asw-post-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:clamp(24px,2.5vw,32px);
}
.alsafwa-posts-grid-widget .asw-post-card{
    display:flex;
    flex-direction:column;
    overflow:hidden;
    cursor:pointer;
    border-radius:24px;
    background:#ffffff;
    border:1px solid #f1f5f9;
    box-shadow:0 10px 15px -3px rgba(226,232,240,.5),0 4px 6px -4px rgba(226,232,240,.5);
    transition:box-shadow .3s ease, border-color .3s ease;
}
.alsafwa-posts-grid-widget .asw-post-card:hover{
    transform:none;
    box-shadow:0 20px 25px -5px rgba(226,232,240,.65),0 8px 10px -6px rgba(226,232,240,.65);
}
.alsafwa-posts-grid-widget .asw-post-img{
    position:relative;
    display:block;
    height:14rem;
    overflow:hidden;
}
.alsafwa-posts-grid-widget .asw-post-img img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    margin:0;
    transition:transform .7s ease;
}
.alsafwa-posts-grid-widget .asw-post-card:hover .asw-post-img img{
    transform:scale(1.05);
}
.alsafwa-posts-grid-widget .asw-date{
    position:absolute;
    top:12px;
    inset-inline-end:12px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:26px;
    padding:4px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.9);
    color:#2563eb;
    font-size:12px;
    line-height:1;
    font-weight:800;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}
.alsafwa-posts-grid-widget .asw-post-body{
    display:flex;
    flex-direction:column;
    flex-grow:1;
    padding:32px;
    background:#fff;
}
.alsafwa-posts-grid-widget .asw-post-title{
    margin:0 0 16px;
    color:#1e293b;
    font-size:24px;
    line-height:1.25;
    font-weight:800;
    letter-spacing:0;
}
.alsafwa-posts-grid-widget .asw-post-title a{
    color:#1e293b;
    text-decoration:none;
    transition:color .25s ease;
}
.alsafwa-posts-grid-widget .asw-excerpt{
    flex-grow:1;
    margin:0 0 32px;
    color:#475569;
    font-size:16px;
    line-height:1.625;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.alsafwa-posts-grid-widget .asw-read{
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:fit-content;
    margin-top:auto;
    color:#1e293b;
    font-size:16px;
    line-height:1.2;
    font-weight:800;
    text-decoration:none;
    transition:color .25s ease;
}
.alsafwa-posts-grid-widget .asw-read-icon{
    display:inline-flex;
    width:20px;
    height:20px;
}
.alsafwa-posts-grid-widget .asw-read-icon svg{
    width:100%;
    height:100%;
}
.alsafwa-posts-grid-widget .asw-post-card:hover .asw-post-title a,
.alsafwa-posts-grid-widget .asw-post-card:hover .asw-read{
    color:#2563eb;
}
@media(max-width:1024px){
    .alsafwa-posts-grid-widget .asw-post-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:767px){
    .alsafwa-posts-grid-widget .asw-post-grid{grid-template-columns:1fr;gap:24px;}
    .alsafwa-posts-grid-widget .asw-post-img{height:12rem;}
    .alsafwa-posts-grid-widget .asw-post-body{padding:24px;}
    .alsafwa-posts-grid-widget .asw-post-title{font-size:20px;margin-bottom:12px;}
    .alsafwa-posts-grid-widget .asw-excerpt{font-size:14px;margin-bottom:24px;}
    .alsafwa-posts-grid-widget .asw-read{font-size:14px;}
}

/* v1.7.0 Dynamic Service CPT */
.alsafwa-service-single .alsafwa-service-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    margin-top:22px;
    padding:14px 18px;
    border-radius:999px;
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:#fff;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 18px 32px rgba(37,99,235,.28);
    transition:transform .25s ease, box-shadow .25s ease;
}
.alsafwa-service-single .alsafwa-service-cta:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 24px 42px rgba(37,99,235,.35);
}
.alsafwa-service-taxonomy .alsafwa-services-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}
@media(max-width:1024px){.alsafwa-service-taxonomy .alsafwa-services-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:767px){.alsafwa-service-taxonomy .alsafwa-services-grid{grid-template-columns:1fr;}}

/* v1.7.1 Elementor Header/Footer components copied from uploaded HTML */
.asw-header-scope{position:relative;z-index:9999}.alsafwa-site-header{position:fixed;top:0;left:0;width:100%;z-index:9999;transition:background .3s ease,box-shadow .3s ease,padding .3s ease,backdrop-filter .3s ease;background:transparent;padding:20px 0}.alsafwa-site-header[data-solid="true"]{background:rgba(15,23,42,.95);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);box-shadow:0 12px 30px rgba(2,6,23,.28);padding:12px 0}.asw-header-container{width:min(100%,1280px);margin-inline:auto;padding-inline:16px}.asw-header-row{display:flex;align-items:center;justify-content:space-between;gap:20px}.asw-header-logo-link{display:flex;align-items:center;text-decoration:none}.asw-header-logo-box{height:67px;display:flex;align-items:center;justify-content:center;padding:6px;border-radius:12px;background:rgba(255,255,255,.95);box-shadow:0 10px 24px rgba(59,130,246,.20);backdrop-filter:blur(8px);transition:transform .3s ease}.asw-header-logo-link:hover .asw-header-logo-box{transform:scale(1.05)}.asw-header-logo-box img{height:100%;width:auto;max-width:160px;object-fit:contain}.asw-header-nav{display:flex;align-items:center;gap:32px}.asw-header-nav a{position:relative;text-decoration:none;text-transform:uppercase;font-size:14px;line-height:1.25;font-weight:700;letter-spacing:.03em;color:rgba(255,255,255,.9);filter:drop-shadow(0 1px 1px rgba(0,0,0,.18));transition:color .2s ease}.alsafwa-site-header[data-solid="true"] .asw-header-nav a{color:#cbd5e1;filter:none}.asw-header-nav a:hover{color:#fff}.asw-header-active-line{position:absolute;inset-inline-start:0;bottom:-8px;width:100%;height:2px;border-radius:999px;opacity:0}.asw-header-actions{display:flex;align-items:center;gap:12px}.asw-header-lang{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;border-radius:999px;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.10);color:#fff;text-decoration:none;font-size:13px;font-weight:800;backdrop-filter:blur(8px);transition:background .2s ease}.alsafwa-site-header[data-solid="true"] .asw-header-lang{background:#1e293b;border-color:#334155}.asw-header-lang:hover{background:rgba(255,255,255,.2);color:#fff}.asw-header-lang svg,.asw-header-mobile-toggle svg{width:16px;height:16px}.asw-header-cta{display:inline-flex;align-items:center;justify-content:center;padding:9px 20px;border-radius:999px;background:linear-gradient(90deg,#2563eb,#06b6d4);color:#fff;text-decoration:none;font-size:14px;font-weight:800;box-shadow:0 12px 28px rgba(59,130,246,.25);transition:transform .25s ease,box-shadow .25s ease,background .25s ease}.asw-header-cta:hover{color:#fff;transform:translateY(-2px);background:linear-gradient(90deg,#3b82f6,#22d3ee)}.asw-header-mobile-toggle{display:none;position:relative;padding:8px;border:0;border-radius:8px;background:rgba(255,255,255,.20);color:#fff;backdrop-filter:blur(8px);cursor:pointer}.alsafwa-site-header[data-solid="true"] .asw-header-mobile-toggle{background:#1e293b}.asw-header-mobile-toggle svg{width:24px;height:24px}.asw-header-mobile-toggle .asw-x-icon{display:none}.asw-header-scope.is-open .asw-header-mobile-toggle .asw-menu-icon{display:none}.asw-header-scope.is-open .asw-header-mobile-toggle .asw-x-icon{display:inline-flex}.asw-mobile-menu{display:none;position:absolute;top:100%;inset-inline-start:0;width:100%;max-height:0;opacity:0;visibility:hidden;overflow:hidden;border-top:1px solid #1e293b;box-shadow:0 25px 50px rgba(2,6,23,.35);transition:max-height .3s ease,opacity .3s ease,visibility .3s ease}.asw-header-scope.is-open .asw-mobile-menu{max-height:500px;opacity:1;visibility:visible}.asw-mobile-menu-inner{display:flex;flex-direction:column;gap:8px;padding:16px;background:rgba(15,23,42,.95);backdrop-filter:blur(12px)}.asw-mobile-menu a{display:block;padding:12px 16px;border-radius:12px;color:#cbd5e1;text-decoration:none;font-weight:800;text-align:start;transition:background .2s ease,color .2s ease}.asw-mobile-menu a:hover{background:#1e293b;color:#fff}@media(min-width:768px){.asw-header-logo-box{height:77px;padding:8px}.asw-header-container{padding-inline:32px}}@media(max-width:1023px){.asw-header-nav{display:none}.asw-header-mobile-toggle{display:inline-flex}.asw-mobile-menu{display:block}.asw-header-row{gap:12px}}@media(max-width:767px){.alsafwa-site-header{padding:14px 0}.alsafwa-site-header[data-solid="true"]{padding:10px 0}.asw-header-logo-box{height:58px}.asw-header-cta{display:none}.asw-header-lang{padding:7px 12px;font-size:12px}.asw-header-actions{gap:8px}}

.alsafwa-site-footer{position:relative;overflow:hidden;background:#020617;color:#94a3b8;padding:64px 0 32px;border-top:1px solid #0f172a}.asw-footer-glow{position:absolute;top:0;inset-inline-end:0;width:384px;height:384px;border-radius:999px;background:rgba(37,99,235,.05);filter:blur(64px)}.asw-footer-container{position:relative;z-index:1;width:min(1180px,100%);margin-inline:auto;padding-inline:16px}.asw-footer-grid{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));gap:40px;margin-bottom:48px}.asw-footer-brand{max-width:560px}.asw-footer-logo{display:flex;width:fit-content;margin-bottom:24px}.asw-footer-logo img{display:block;width:96px;height:auto;padding:8px;border-radius:12px;background:#fff;box-shadow:0 12px 30px rgba(2,6,23,.25);transition:transform .3s ease}.asw-footer-logo:hover img{transform:scale(1.05)}.asw-footer-brand p{max-width:448px;margin:0 0 32px;font-size:14px;line-height:1.75;color:#94a3b8}.asw-footer-socials{display:flex;gap:16px}.asw-social{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:999px;background:#0f172a;color:#94a3b8;transition:all .3s ease}.asw-social svg{width:20px;height:20px}.asw-social:hover{color:#fff}.asw-social-facebook:hover{background:#2563eb}.asw-social-instagram:hover{background:#db2777}.asw-social-tiktok:hover{background:#171717}.asw-social-whatsapp:hover{background:#16a34a}.asw-footer-title{position:relative;display:inline-block;margin:0 0 24px;color:#fff;font-size:18px;font-weight:800}.asw-footer-title-line{position:absolute;bottom:-8px;inset-inline-start:0;width:50%;height:2px;background:#06b6d4}.asw-footer-list,.asw-footer-contact{display:flex;flex-direction:column;gap:12px;margin:0;padding:0;list-style:none}.asw-footer-link{display:flex;align-items:center;gap:8px;color:#94a3b8;text-decoration:none;font-size:14px;transition:color .2s ease}.asw-footer-link:hover{color:#22d3ee}.asw-footer-chev{display:inline-flex;color:#3b82f6;transition:transform .2s ease}.asw-footer-chev svg{width:16px;height:16px}.asw-footer-link:hover .asw-footer-chev{transform:translateX(4px)}[dir="rtl"] .asw-footer-link:hover .asw-footer-chev{transform:translateX(-4px)}.asw-footer-contact li{display:flex;align-items:flex-start;gap:12px;font-size:14px}.asw-contact-icon{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;flex:0 0 32px;border-radius:6px;background:#0f172a;color:#22d3ee}.asw-contact-icon svg{width:16px;height:16px}.asw-footer-bottom{display:flex;flex-direction:column;align-items:center;justify-content:space-between;gap:16px;padding-top:32px;border-top:1px solid rgba(30,41,59,.5);font-size:14px;text-align:center}.asw-footer-bottom p{margin:0}.asw-footer-bottom div{display:flex;gap:24px;font-weight:600}.asw-footer-bottom span{cursor:pointer;transition:color .2s ease}.asw-footer-bottom span:hover{color:#fff}@media(min-width:640px){.asw-footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}@media(min-width:1024px){.alsafwa-site-footer{padding-top:80px}.asw-footer-grid{grid-template-columns:2fr 1fr 1fr;gap:48px;margin-bottom:64px}.asw-footer-bottom{flex-direction:row;text-align:start}}@media(max-width:767px){.alsafwa-site-footer{padding:56px 0 28px}.asw-footer-grid{gap:36px}.asw-footer-logo img{width:80px}.asw-footer-socials{gap:12px;flex-wrap:wrap}}


/* v1.7.2 WoodMart automatic layout integration (legacy CSS retained) */
.asw-header-scope,
.elementor-widget-alsafwa_site_header,
.elementor-widget-alsafwa_site_header > .elementor-widget-container,
.elementor-widget-alsafwa_site_footer,
.elementor-widget-alsafwa_site_footer > .elementor-widget-container,
.alsafwa-site-footer{
    width:100vw!important;
    max-width:100vw!important;
    margin-left:calc(50% - 50vw)!important;
    margin-right:calc(50% - 50vw)!important;
}
body.admin-bar .alsafwa-site-header{top:32px;}
@media(max-width:782px){body.admin-bar .alsafwa-site-header{top:46px;}}

/* v1.7.3 Elementor-controlled WoodMart layout integration */
body.asw-force-full-width .wd-content-layout {
    padding-block: 0px !important;
}
.asw-layout-template,
.asw-layout-template > .elementor,
.asw-layout-template .elementor-section,
.asw-layout-template .elementor-container,
.asw-layout-template .elementor-column,
.asw-layout-template .elementor-widget-wrap,
.asw-layout-template .elementor-widget,
.asw-layout-template .elementor-widget-container {
    max-width: none !important;
}
.asw-layout-template-header {
    position: relative;
    z-index: 10000;
}
.asw-layout-template-header .elementor-section,
.asw-layout-template-footer .elementor-section,
.asw-layout-template-header .elementor-widget-wrap,
.asw-layout-template-footer .elementor-widget-wrap {
    padding: 0 !important;
    margin: 0 !important;
}
.asw-layout-template-header .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.asw-layout-template-footer .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 0 !important;
}

/* Header fidelity pass: match the uploaded static HTML spacing and mobile behavior. */
.asw-header-scope .alsafwa-site-header {
    position: fixed !important;
    inset-inline-start: 0;
    width: 100% !important;
    z-index: 10000 !important;
    padding: 20px 0 !important;
    background: transparent;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease, backdrop-filter .3s ease !important;
}
.asw-header-scope .alsafwa-site-header[data-solid="true"] {
    padding: 12px 0 !important;
    background: rgba(15, 23, 42, .95) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 28px rgba(2, 6, 23, .30) !important;
}
.asw-header-scope .asw-header-container {
    width: min(100%, 1280px) !important;
    margin-inline: auto !important;
    padding-inline: 16px !important;
}
.asw-header-scope .asw-header-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}
.asw-header-scope .asw-header-logo-box {
    height: 67px !important;
    padding: 6px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,.95) !important;
    box-shadow: 0 10px 24px rgba(59,130,246,.20) !important;
}
.asw-header-scope .asw-header-logo-box img {
    height: 100% !important;
    width: auto !important;
    object-fit: contain !important;
}
.asw-header-scope .asw-header-nav {
    display: flex !important;
    align-items: center !important;
    gap: 32px !important;
}
.asw-header-scope .asw-header-nav a {
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: .03em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,.9) !important;
    text-decoration: none !important;
}
.asw-header-scope .alsafwa-site-header[data-solid="true"] .asw-header-nav a {
    color: #cbd5e1 !important;
}
.asw-header-scope .asw-header-nav a:hover {
    color: #fff !important;
}
.asw-header-scope .asw-header-lang {
    padding: 8px 14px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.20) !important;
    background: rgba(255,255,255,.10) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}
.asw-header-scope .alsafwa-site-header[data-solid="true"] .asw-header-lang {
    background: #1e293b !important;
    border-color: #334155 !important;
}
.asw-header-scope .asw-header-cta {
    padding: 9px 20px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #2563eb, #06b6d4) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    box-shadow: 0 12px 28px rgba(59,130,246,.25) !important;
}
.asw-header-scope .asw-mobile-menu {
    position: absolute !important;
    top: 100% !important;
    inset-inline-start: 0 !important;
    width: 100% !important;
    border-top: 1px solid #1e293b !important;
    box-shadow: 0 25px 50px rgba(2,6,23,.35) !important;
}
.asw-header-scope .asw-mobile-menu-inner {
    padding: 16px !important;
    gap: 8px !important;
    background: rgba(15,23,42,.95) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.asw-header-scope .asw-mobile-menu a {
    padding: 12px 16px !important;
    border-radius: 12px !important;
    font-weight: 800 !important;
    color: #cbd5e1 !important;
    text-align: start !important;
}
.asw-header-scope .asw-mobile-menu a:hover {
    background: #1e293b !important;
    color: #fff !important;
}
@media (min-width: 768px) {
    .asw-header-scope .asw-header-container { padding-inline: 32px !important; }
    .asw-header-scope .asw-header-logo-box { height: 77px !important; padding: 8px !important; }
}
@media (max-width: 1023px) {
    .asw-header-scope .asw-header-nav { display: none !important; }
    .asw-header-scope .asw-header-mobile-toggle { display: inline-flex !important; }
    .asw-header-scope .asw-mobile-menu { display: block !important; }
}
@media (max-width: 767px) {
    .asw-header-scope .alsafwa-site-header { padding: 14px 0 !important; }
    .asw-header-scope .alsafwa-site-header[data-solid="true"] { padding: 10px 0 !important; }
    .asw-header-scope .asw-header-logo-box { height: 58px !important; }
    .asw-header-scope .asw-header-cta { display: none !important; }
    .asw-header-scope .asw-header-lang { padding: 7px 12px !important; font-size: 12px !important; }
}

/* v1.7.4 Footer icons now render from Elementor/WordPress icon library controls. */
.asw-social .asw-footer-social-icon,
.asw-contact-icon .asw-contact-library-icon,
.asw-footer-chev .asw-footer-chev-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.asw-social i,
.asw-social svg {
    display: block;
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 1;
}
.asw-contact-icon i,
.asw-contact-icon svg {
    display: block;
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 1;
}
.asw-footer-chev i,
.asw-footer-chev svg {
    display: block;
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 1;
}
.asw-footer-chev .asw-footer-chev-icon {
    transition: transform .2s ease;
}
html[dir="ltr"] .asw-footer-chev .fa-chevron-left,
[dir="ltr"] .asw-footer-chev .fa-chevron-left {
    transform: rotate(180deg);
}

/* v1.7.5 Header hamburger visibility and HTML-matched mobile button */
@media (min-width: 1024px) {
    .asw-header-scope .asw-header-mobile-toggle {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    .asw-header-scope .asw-mobile-menu {
        display: none !important;
        visibility: hidden !important;
    }
    .asw-header-scope .asw-header-nav {
        display: flex !important;
    }
}
.asw-header-scope .asw-header-mobile-toggle {
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 8px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.20) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
    line-height: 1 !important;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.asw-header-scope .alsafwa-site-header[data-solid="true"] .asw-header-mobile-toggle {
    background: #1e293b !important;
    color: #ffffff !important;
}
.asw-header-scope .asw-header-mobile-toggle:hover,
.asw-header-scope .asw-header-mobile-toggle:focus {
    background: rgba(255,255,255,.25) !important;
    color: #ffffff !important;
}
.asw-header-scope .alsafwa-site-header[data-solid="true"] .asw-header-mobile-toggle:hover,
.asw-header-scope .alsafwa-site-header[data-solid="true"] .asw-header-mobile-toggle:focus {
    background: #334155 !important;
}
.asw-header-scope .asw-header-mobile-toggle svg {
    width: 24px !important;
    height: 24px !important;
    stroke: currentColor !important;
}
.asw-header-scope .asw-header-mobile-toggle .asw-menu-icon,
.asw-header-scope .asw-header-mobile-toggle .asw-x-icon {
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important;
}
.asw-header-scope .asw-header-mobile-toggle .asw-x-icon {
    display: none !important;
}
.asw-header-scope.is-open .asw-header-mobile-toggle .asw-menu-icon {
    display: none !important;
}
.asw-header-scope.is-open .asw-header-mobile-toggle .asw-x-icon {
    display: inline-flex !important;
}
@media (max-width: 1023px) {
    .asw-header-scope .asw-header-mobile-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

/* v1.7.6 Remove the normal-flow spacer created by the Elementor header template wrapper. */
body.asw-custom-header-active,
body.asw-custom-header-active .website-wrapper,
body.asw-custom-header-active .wd-page-wrapper,
body.asw-custom-header-active .wd-page-content,
body.asw-custom-header-active .main-page-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.asw-custom-header-active #asw-elementor-header,
body.asw-custom-header-active .asw-layout-template-header,
body.asw-custom-header-active .asw-layout-template-header > .elementor,
body.asw-custom-header-active .asw-layout-template-header .elementor-section,
body.asw-custom-header-active .asw-layout-template-header .elementor-container,
body.asw-custom-header-active .asw-layout-template-header .elementor-column,
body.asw-custom-header-active .asw-layout-template-header .elementor-widget-wrap,
body.asw-custom-header-active .asw-layout-template-header .elementor-widget,
body.asw-custom-header-active .asw-layout-template-header .elementor-widget-container,
body.asw-custom-header-active .asw-layout-template-header .asw-header-scope {
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border: 0 !important;
    overflow: visible !important;
}
body.asw-custom-header-active .asw-layout-template-header .alsafwa-site-header {
    top: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}
body.asw-custom-header-active .wd-skip-links {
    display: none !important;
}
body.asw-custom-header-active .elementor-139,
body.asw-custom-header-active .elementor-108,
body.asw-custom-header-active .alsafwa-hero-widget {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* v1.7.7 Restore hero-safe spacing under the fixed transparent header.
   v1.7.6 correctly collapsed the Elementor header wrapper, but it also reset
   the hero top padding. The original HTML keeps the hero content below the
   fixed header using top spacing on the hero/container. */
body.asw-custom-header-active .alsafwa-hero-widget {
    margin-top: 0 !important;
    padding-top: clamp(150px, 16vw, 220px) !important;
}
@media (min-width: 1024px) {
    body.asw-custom-header-active .alsafwa-hero-widget {
        min-height: min(820px, 92vh) !important;
        padding-top: clamp(170px, 18vh, 235px) !important;
        padding-bottom: clamp(82px, 10vw, 130px) !important;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    body.asw-custom-header-active .alsafwa-hero-widget {
        min-height: 760px !important;
        padding-top: 165px !important;
        padding-bottom: 88px !important;
    }
}
@media (max-width: 767px) {
    body.asw-custom-header-active .alsafwa-hero-widget {
        min-height: 680px !important;
        padding-top: 138px !important;
        padding-bottom: 72px !important;
    }
}


/* v1.8.1 Portfolio archive/page visual restore + consistent page header spacing.
   The /portfolio/ route may be served as an Elementor page after URL migration;
   these scoped rules make it match the earlier Projects archive visual style. */
.asw-page-header{
    padding-top:clamp(96px,12vw,128px)!important;
    padding-bottom:clamp(36px,5vw,64px)!important;
}
.asw-portfolio-page-header .asw-page-header{
    padding:clamp(120px,12vw,170px) 0 clamp(56px,8vw,90px)!important;
    background:radial-gradient(circle at top right, rgba(37,99,235,.24), transparent 36%),linear-gradient(135deg,#020617 0%,#0f172a 64%,#082f49 100%)!important;
    color:#fff!important;
}
.asw-portfolio-page-header .asw-page-title{
    color:#fff!important;
    font-size:clamp(2rem,5vw,4rem)!important;
    line-height:1.15!important;
    letter-spacing:-.04em!important;
}
.asw-portfolio-page-header .asw-page-subtitle{
    color:#94a3b8!important;
}
.asw-portfolio-page-header .asw-page-breadcrumb{
    width:fit-content!important;
    max-width:100%!important;
    margin-bottom:clamp(24px,4vw,42px)!important;
    padding:.5rem .9rem!important;
    border:1px solid rgba(148,163,184,.25)!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.94)!important;
    color:#475569!important;
    overflow-x:auto!important;
    scrollbar-width:none!important;
}
.asw-portfolio-page-header .asw-page-breadcrumb a{
    color:inherit!important;
}
.asw-portfolio-page-header .asw-page-breadcrumb-current{
    color:#2563eb!important;
}
.asw-portfolio-page-grid .alsafwa-projects-widget{
    padding:clamp(48px,7vw,86px) 24px!important;
    background:#0f172a!important;
    color:#fff!important;
}
.asw-portfolio-page-grid .alsafwa-projects-widget .alsafwa-project-grid{
    width:min(1180px,100%)!important;
    margin-inline:auto!important;
}
.asw-portfolio-page-grid .alsafwa-projects-widget .alsafwa-section-heading{
    max-width:760px!important;
    margin-inline:auto!important;
}
.asw-portfolio-page-grid .alsafwa-projects-widget .alsafwa-section-title{
    color:#fff!important;
}
.asw-portfolio-page-grid .alsafwa-projects-widget .alsafwa-section-subtitle{
    color:#94a3b8!important;
}
@media(max-width:767px){
    .asw-page-header{
        padding-top:96px!important;
        padding-bottom:52px!important;
    }
    .asw-page-breadcrumb{
        margin-bottom:30px!important;
        max-width:100%!important;
        overflow-x:auto!important;
        white-space:nowrap!important;
        justify-content:flex-start!important;
    }
    .asw-portfolio-page-header .asw-page-header{
        padding-top:112px!important;
        padding-bottom:58px!important;
    }
    .asw-portfolio-page-grid .alsafwa-projects-widget{
        padding:48px 16px 64px!important;
    }
}


/* v1.8.2 Portfolio mobile containment + Elementor-controlled footer icon colors */
.asw-footer-social-icon svg,
.asw-footer-social-icon svg path,
.asw-contact-library-icon svg,
.asw-contact-library-icon svg path,
.asw-footer-chev-icon svg,
.asw-footer-chev-icon svg path{
    color:currentColor!important;
    fill:currentColor!important;
}
.asw-social svg,
.asw-social svg path,
.asw-contact-icon svg,
.asw-contact-icon svg path,
.asw-footer-chev svg,
.asw-footer-chev svg path{
    color:currentColor!important;
    fill:currentColor!important;
}
.asw-portfolio-page-header,
.asw-portfolio-page-grid,
.asw-portfolio-page-header .elementor-container,
.asw-portfolio-page-grid .elementor-container,
.asw-portfolio-page-header .elementor-widget-container,
.asw-portfolio-page-grid .elementor-widget-container{
    max-width:100%!important;
    overflow-x:hidden!important;
}
.asw-portfolio-page-grid .alsafwa-core-wrap,
.asw-portfolio-page-grid .alsafwa-projects-widget,
.asw-portfolio-page-grid .alsafwa-project-grid{
    box-sizing:border-box!important;
    max-width:100%!important;
    overflow-x:hidden!important;
}
@media(max-width:767px){
    body .asw-portfolio-page-header,
    body .asw-portfolio-page-grid{
        width:100%!important;
        max-width:100%!important;
        margin-left:0!important;
        margin-right:0!important;
        overflow-x:hidden!important;
    }
    .asw-portfolio-page-header .asw-page-container,
    .asw-portfolio-page-grid .alsafwa-project-grid{
        width:100%!important;
        max-width:100%!important;
        margin-inline:auto!important;
    }
    .asw-portfolio-page-grid .alsafwa-projects-widget{
        width:100%!important;
        max-width:100%!important;
        padding:44px 16px 60px!important;
        overflow:hidden!important;
    }
    .asw-portfolio-page-grid .alsafwa-project-grid{
        display:grid!important;
        grid-template-columns:minmax(0,1fr)!important;
        gap:20px!important;
        padding:0!important;
    }
    .asw-portfolio-page-grid .alsafwa-project-card{
        width:100%!important;
        max-width:100%!important;
        min-width:0!important;
        min-height:230px!important;
        aspect-ratio:16/11!important;
        border-radius:20px!important;
    }
    .asw-portfolio-page-grid .alsafwa-project-card-link,
    .asw-portfolio-page-grid .alsafwa-project-card-content{
        max-width:100%!important;
        min-width:0!important;
    }
    .asw-portfolio-page-grid .alsafwa-project-card-content{
        padding:20px!important;
        transform:none!important;
    }
    .asw-portfolio-page-grid .alsafwa-project-card-title,
    .asw-portfolio-page-grid .alsafwa-project-card-meta,
    .asw-portfolio-page-grid .alsafwa-project-card-badge{
        max-width:100%!important;
        white-space:normal!important;
        overflow-wrap:anywhere!important;
        word-break:normal!important;
    }
    .asw-portfolio-page-grid .alsafwa-project-card-title{
        font-size:clamp(1.05rem,5.2vw,1.25rem)!important;
        line-height:1.35!important;
    }
    .asw-portfolio-page-grid .alsafwa-project-card-meta{
        font-size:.86rem!important;
        line-height:1.45!important;
    }
}
@media(min-width:768px) and (max-width:1024px){
    .asw-portfolio-page-grid .alsafwa-project-grid{
        grid-template-columns:repeat(2,minmax(0,1fr))!important;
        width:min(100%,1180px)!important;
    }
    .asw-portfolio-page-grid .alsafwa-project-card{
        min-width:0!important;
        max-width:100%!important;
    }
}


/* v1.8.3 Footer bottom cleanup: policy/terms links removed. */
.asw-footer-bottom{
    justify-content:center!important;
}
.asw-footer-bottom > div{
    display:none!important;
}

/* v1.8.4 Project single gallery carousel */
.alsafwa-project-carousel {
    position: relative;
    width: 100%;
    margin-top: clamp(24px, 4vw, 34px);
    border-radius: 24px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .16);
}
.alsafwa-project-carousel-viewport {
    width: 100%;
    overflow: hidden;
}
.alsafwa-project-carousel-track {
    display: flex;
    width: 100%;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}
.alsafwa-project-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    margin: 0;
    aspect-ratio: 16 / 10;
    background: #0f172a;
}
.alsafwa-project-carousel-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.alsafwa-project-carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.22)!important;
    border-radius: 999px!important;
    background: rgba(15,23,42,.58)!important;
    color: #fff!important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .22)!important;
    cursor: pointer;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: background .2s ease, transform .2s ease;
}
.alsafwa-project-carousel-btn:hover,
.alsafwa-project-carousel-btn:focus {
    background: rgba(37,99,235,.86)!important;
    transform: translateY(-50%) scale(1.04);
}
.alsafwa-project-carousel-btn span {
    display: block;
    font-size: 34px;
    line-height: 1;
    margin-top: -2px;
}
.alsafwa-project-carousel-prev {
    left: 16px;
}
.alsafwa-project-carousel-next {
    right: 16px;
}
.alsafwa-project-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(15,23,42,.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.alsafwa-project-carousel-dot {
    width: 9px!important;
    height: 9px!important;
    min-width: 9px!important;
    padding: 0!important;
    border: 0!important;
    border-radius: 999px!important;
    background: rgba(255,255,255,.55)!important;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}
.alsafwa-project-carousel-dot.is-active {
    width: 24px!important;
    background: #22d3ee!important;
}
@media (max-width: 767px) {
    .alsafwa-project-carousel {
        margin-top: 22px;
        border-radius: 18px;
    }
    .alsafwa-project-carousel-slide {
        aspect-ratio: 4 / 3;
    }
    .alsafwa-project-carousel-btn {
        width: 38px;
        height: 38px;
    }
    .alsafwa-project-carousel-prev {
        left: 10px;
    }
    .alsafwa-project-carousel-next {
        right: 10px;
    }
    .alsafwa-project-carousel-dots {
        bottom: 10px;
        gap: 6px;
        padding: 7px 9px;
    }
}


/* v1.8.5 Scoped button position reset + project carousel dots removed */
.alsafwa-core-wrap :is(.btn,.button,button,[type=submit],[type=button]),
.asw-header-scope :is(.btn,.button,button,[type=submit],[type=button]),
.alsafwa-site-footer :is(.btn,.button,button,[type=submit],[type=button]) {
    position: revert-rule;
}
.alsafwa-project-carousel-dots,
.alsafwa-project-carousel-dot {
    display: none !important;
}

/* v1.8.6 Project carousel image fill + arrow positioning fix */
.alsafwa-project-carousel {
    background: transparent !important;
    line-height: 0 !important;
}
.alsafwa-project-carousel-viewport,
.alsafwa-project-carousel-track,
.alsafwa-project-carousel-slide {
    background: transparent !important;
}
.alsafwa-project-carousel-slide {
    display: block !important;
    overflow: hidden !important;
}
.alsafwa-project-carousel-slide img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}
.alsafwa-project-carousel .alsafwa-project-carousel-btn,
.alsafwa-core-wrap .alsafwa-project-carousel .alsafwa-project-carousel-btn,
.alsafwa-core-wrap :is(.alsafwa-project-carousel-prev,.alsafwa-project-carousel-next) {
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    z-index: 5 !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
}
.alsafwa-project-carousel .alsafwa-project-carousel-prev,
.alsafwa-core-wrap .alsafwa-project-carousel .alsafwa-project-carousel-prev {
    left: 16px !important;
    right: auto !important;
}
.alsafwa-project-carousel .alsafwa-project-carousel-next,
.alsafwa-core-wrap .alsafwa-project-carousel .alsafwa-project-carousel-next {
    right: 16px !important;
    left: auto !important;
}
.alsafwa-project-carousel .alsafwa-project-carousel-btn:hover,
.alsafwa-project-carousel .alsafwa-project-carousel-btn:focus {
    transform: translateY(-50%) scale(1.04) !important;
}
@media (max-width: 767px) {
    .alsafwa-project-carousel .alsafwa-project-carousel-prev,
    .alsafwa-core-wrap .alsafwa-project-carousel .alsafwa-project-carousel-prev {
        left: 10px !important;
    }
    .alsafwa-project-carousel .alsafwa-project-carousel-next,
    .alsafwa-core-wrap .alsafwa-project-carousel .alsafwa-project-carousel-next {
        right: 10px !important;
    }
}

/* v1.8.8 Portfolio infinite scroll loader */
.alsafwa-projects-loader {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 34px auto 0;
    color: #cbd5e1;
    font-weight: 700;
    text-align: center;
}
.alsafwa-projects-loader.is-visible {
    display: flex;
}
.alsafwa-projects-loader span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 999px;
    background: rgba(15, 23, 42, .62);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .18);
}
.alsafwa-projects-loader span::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid rgba(203, 213, 225, .35);
    border-top-color: #22d3ee;
    animation: aswProjectsSpin .75s linear infinite;
}
.alsafwa-projects-load-more-fallback {
    display: none;
    margin: 34px auto 0 !important;
    padding: 12px 22px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #2563eb, #06b6d4) !important;
    color: #fff !important;
    font-weight: 800 !important;
    cursor: pointer;
}
.alsafwa-projects-load-more-fallback:disabled {
    opacity: .6;
    cursor: wait;
}
.alsafwa-projects-sentinel {
    width: 100%;
    height: 1px;
}
@keyframes aswProjectsSpin {
    to { transform: rotate(360deg); }
}

/* v1.9.0 Single service/project mobile + tablet hero breadcrumb fidelity */
@media (max-width: 1024px) {
    .alsafwa-project-single .alsafwa-single-hero,
    .alsafwa-service-single .alsafwa-single-hero {
        min-height: 590px !important;
        padding-top: 126px !important;
        padding-bottom: 48px !important;
        align-items: flex-end !important;
    }
    .alsafwa-project-single .alsafwa-single-hero-inner,
    .alsafwa-service-single .alsafwa-single-hero-inner {
        width: min(100% - 28px, 1180px) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .alsafwa-project-single[dir="rtl"] .alsafwa-single-hero-inner,
    .alsafwa-service-single[dir="rtl"] .alsafwa-single-hero-inner {
        align-items: flex-end !important;
        text-align: right !important;
    }
    .alsafwa-project-single .alsafwa-single-topbar,
    .alsafwa-service-single .alsafwa-single-topbar {
        position: static !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 14px !important;
        margin-bottom: clamp(58px, 10vw, 96px) !important;
    }
    .alsafwa-project-single[dir="rtl"] .alsafwa-single-topbar,
    .alsafwa-service-single[dir="rtl"] .alsafwa-single-topbar {
        align-items: stretch !important;
    }
    .alsafwa-project-single .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark,
    .alsafwa-service-single .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark {
        max-width: min(100%, 390px) !important;
        margin: 0 !important;
        padding: .48rem .9rem !important;
        border-color: rgba(148, 163, 184, .24) !important;
        background: rgba(2, 6, 23, .68) !important;
        color: #cbd5e1 !important;
        box-shadow: 0 14px 34px rgba(2, 6, 23, .18) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        font-size: .8rem !important;
        line-height: 1.25 !important;
    }
    .alsafwa-project-single[dir="rtl"] .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark,
    .alsafwa-service-single[dir="rtl"] .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark {
        align-self: flex-end !important;
    }
    .alsafwa-project-single[dir="ltr"] .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark,
    .alsafwa-service-single[dir="ltr"] .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark {
        align-self: flex-start !important;
    }
    .alsafwa-project-single .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark a,
    .alsafwa-service-single .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark a {
        color: #e2e8f0 !important;
    }
    .alsafwa-project-single .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark span,
    .alsafwa-service-single .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark span {
        color: #22d3ee !important;
    }
    .alsafwa-project-single .alsafwa-back-link,
    .alsafwa-service-single .alsafwa-back-link {
        margin: 0 !important;
        min-height: 38px !important;
        padding: .52rem .95rem !important;
        background: rgba(255, 255, 255, .11) !important;
        border-color: rgba(255, 255, 255, .22) !important;
        color: #fff !important;
        box-shadow: 0 14px 34px rgba(2, 6, 23, .16) !important;
        font-size: .86rem !important;
    }
    .alsafwa-project-single[dir="rtl"] .alsafwa-back-link,
    .alsafwa-service-single[dir="rtl"] .alsafwa-back-link {
        align-self: flex-start !important;
    }
    .alsafwa-project-single[dir="ltr"] .alsafwa-back-link,
    .alsafwa-service-single[dir="ltr"] .alsafwa-back-link {
        align-self: flex-end !important;
    }
    .alsafwa-project-single .alsafwa-project-type-pill,
    .alsafwa-service-single .alsafwa-project-type-pill {
        margin-bottom: 16px !important;
        font-size: .86rem !important;
    }
    .alsafwa-project-single .alsafwa-single-title,
    .alsafwa-service-single .alsafwa-single-title {
        max-width: 100% !important;
        font-size: clamp(2.25rem, 7vw, 3.45rem) !important;
        line-height: 1.22 !important;
        letter-spacing: -0.035em !important;
    }
}
@media (max-width: 767px) {
    .alsafwa-project-single .alsafwa-single-hero,
    .alsafwa-service-single .alsafwa-single-hero {
        min-height: 560px !important;
        padding-top: 104px !important;
        padding-bottom: 42px !important;
    }
    .alsafwa-project-single .alsafwa-single-hero-inner,
    .alsafwa-service-single .alsafwa-single-hero-inner {
        width: min(100% - 24px, 1180px) !important;
    }
    .alsafwa-project-single .alsafwa-single-topbar,
    .alsafwa-service-single .alsafwa-single-topbar {
        gap: 13px !important;
        margin-bottom: clamp(58px, 15vw, 82px) !important;
    }
    .alsafwa-project-single .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark,
    .alsafwa-service-single .alsafwa-breadcrumbs.alsafwa-breadcrumbs-dark {
        max-width: calc(100vw - 44px) !important;
        font-size: .74rem !important;
        padding: .43rem .78rem !important;
    }
    .alsafwa-project-single .alsafwa-back-link,
    .alsafwa-service-single .alsafwa-back-link {
        min-height: 36px !important;
        padding: .48rem .82rem !important;
        font-size: .82rem !important;
    }
    .alsafwa-project-single .alsafwa-single-title,
    .alsafwa-service-single .alsafwa-single-title {
        font-size: clamp(2.05rem, 10vw, 2.9rem) !important;
        line-height: 1.22 !important;
    }
}

/* v1.9.1 Mobile/tablet single hero structure matching uploaded HTML, desktop unchanged */
.alsafwa-single-mobile-top-layer {
    display: none;
}
@media (max-width: 1024px) {
    .alsafwa-project-single .alsafwa-single-hero,
    .alsafwa-service-single .alsafwa-single-hero {
        min-height: 70vh !important;
        padding: 0 0 48px !important;
        align-items: flex-end !important;
    }
    .alsafwa-project-single .alsafwa-single-mobile-top-layer,
    .alsafwa-service-single .alsafwa-single-mobile-top-layer {
        display: block !important;
        position: absolute !important;
        top: 112px !important;
        inset-inline-start: 0 !important;
        width: 100% !important;
        z-index: 20 !important;
        pointer-events: none;
    }
    .alsafwa-project-single .alsafwa-single-mobile-topbar,
    .alsafwa-service-single .alsafwa-single-mobile-topbar {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
        pointer-events: auto;
    }
    .alsafwa-project-single .alsafwa-single-hero-inner > .alsafwa-single-topbar,
    .alsafwa-service-single .alsafwa-single-hero-inner > .alsafwa-single-topbar {
        display: none !important;
    }
    .alsafwa-project-single .alsafwa-single-hero-inner,
    .alsafwa-service-single .alsafwa-single-hero-inner {
        position: relative !important;
        z-index: 10 !important;
        display: block !important;
        width: min(100% - 32px, 1180px) !important;
        text-align: inherit !important;
    }
    .alsafwa-project-single[dir="rtl"] .alsafwa-single-hero-inner,
    .alsafwa-service-single[dir="rtl"] .alsafwa-single-hero-inner {
        text-align: right !important;
    }
    .alsafwa-project-single[dir="ltr"] .alsafwa-single-hero-inner,
    .alsafwa-service-single[dir="ltr"] .alsafwa-single-hero-inner {
        text-align: left !important;
    }
    .alsafwa-project-single .alsafwa-mobile-breadcrumbs,
    .alsafwa-service-single .alsafwa-mobile-breadcrumbs {
        display: flex !important;
        align-items: center !important;
        gap: .375rem !important;
        width: fit-content !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: .375rem .875rem !important;
        border: 1px solid #1e293b !important;
        border-radius: 999px !important;
        background: rgba(2, 6, 23, .60) !important;
        color: #cbd5e1 !important;
        font-size: .875rem !important;
        line-height: 1.35 !important;
        white-space: nowrap !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        -webkit-backdrop-filter: blur(12px) !important;
        backdrop-filter: blur(12px) !important;
        box-shadow: none !important;
    }
    .alsafwa-project-single .alsafwa-mobile-breadcrumbs::-webkit-scrollbar,
    .alsafwa-service-single .alsafwa-mobile-breadcrumbs::-webkit-scrollbar {
        display: none !important;
    }
    .alsafwa-project-single .alsafwa-mobile-breadcrumbs a,
    .alsafwa-service-single .alsafwa-mobile-breadcrumbs a {
        color: #cbd5e1 !important;
        font-weight: 500 !important;
        flex: 0 0 auto !important;
        text-decoration: none !important;
    }
    .alsafwa-project-single .alsafwa-mobile-breadcrumbs a:hover,
    .alsafwa-service-single .alsafwa-mobile-breadcrumbs a:hover {
        color: #22d3ee !important;
        text-decoration: underline !important;
    }
    .alsafwa-project-single .alsafwa-mobile-breadcrumbs a::after,
    .alsafwa-service-single .alsafwa-mobile-breadcrumbs a::after {
        content: none !important;
        display: none !important;
    }
    .alsafwa-project-single .alsafwa-breadcrumb-chevron,
    .alsafwa-service-single .alsafwa-breadcrumb-chevron {
        display: inline-flex !important;
        width: .875rem !important;
        height: .875rem !important;
        color: rgba(203, 213, 225, .62) !important;
        flex: 0 0 auto !important;
    }
    .alsafwa-project-single .alsafwa-breadcrumb-chevron svg,
    .alsafwa-service-single .alsafwa-breadcrumb-chevron svg {
        width: 100% !important;
        height: 100% !important;
    }
    .alsafwa-project-single .alsafwa-mobile-breadcrumb-current,
    .alsafwa-service-single .alsafwa-mobile-breadcrumb-current {
        display: block !important;
        max-width: 20rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        color: #22d3ee !important;
        font-weight: 800 !important;
        flex: 1 1 auto !important;
    }
    .alsafwa-project-single .alsafwa-mobile-back-link,
    .alsafwa-service-single .alsafwa-mobile-back-link {
        display: inline-flex !important;
        align-items: center !important;
        gap: .5rem !important;
        min-height: 42px !important;
        margin: 0 !important;
        padding: .625rem 1.25rem !important;
        border: 1px solid rgba(255, 255, 255, .20) !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, .10) !important;
        color: #fff !important;
        font-size: 1rem !important;
        line-height: 1.25 !important;
        font-weight: 500 !important;
        box-shadow: 0 16px 34px rgba(2, 6, 23, .20) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        backdrop-filter: blur(12px) !important;
        white-space: nowrap !important;
    }
    .alsafwa-project-single .alsafwa-mobile-back-link:hover,
    .alsafwa-service-single .alsafwa-mobile-back-link:hover {
        color: #22d3ee !important;
        background: rgba(255, 255, 255, .16) !important;
    }
    .alsafwa-project-single .alsafwa-back-icon,
    .alsafwa-service-single .alsafwa-back-icon {
        display: inline-flex !important;
        width: 1.25rem !important;
        height: 1.25rem !important;
        flex: 0 0 auto !important;
    }
    .alsafwa-project-single .alsafwa-back-icon svg,
    .alsafwa-service-single .alsafwa-back-icon svg {
        width: 100% !important;
        height: 100% !important;
    }
    .alsafwa-project-single .alsafwa-project-type-pill,
    .alsafwa-service-single .alsafwa-project-type-pill {
        display: inline-block !important;
        margin: 0 0 1rem !important;
        padding: .25rem .75rem !important;
        border-radius: .375rem !important;
        background: #2563eb !important;
        color: #fff !important;
        font-size: .875rem !important;
        line-height: 1.25 !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: .025em !important;
    }
    .alsafwa-project-single .alsafwa-single-title,
    .alsafwa-service-single .alsafwa-single-title {
        max-width: 56rem !important;
        margin: 0 !important;
        color: #fff !important;
        font-size: clamp(2.25rem, 5vw, 3.75rem) !important;
        line-height: 1.15 !important;
        font-weight: 900 !important;
        letter-spacing: -0.035em !important;
        text-shadow: 0 16px 34px rgba(2, 6, 23, .35) !important;
    }
}
@media (max-width: 767px) {
    .alsafwa-project-single .alsafwa-single-hero,
    .alsafwa-service-single .alsafwa-single-hero {
        min-height: 480px !important;
        padding: 176px 0 32px !important;
    }
    .alsafwa-project-single .alsafwa-single-mobile-top-layer,
    .alsafwa-service-single .alsafwa-single-mobile-top-layer {
        top: 96px !important;
    }
    .alsafwa-project-single .alsafwa-single-mobile-topbar,
    .alsafwa-service-single .alsafwa-single-mobile-topbar {
        width: min(100% - 24px, 1180px) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
    }
    .alsafwa-project-single[dir="rtl"] .alsafwa-single-mobile-topbar,
    .alsafwa-service-single[dir="rtl"] .alsafwa-single-mobile-topbar {
        align-items: flex-start !important;
    }
    .alsafwa-project-single .alsafwa-mobile-back-link,
    .alsafwa-service-single .alsafwa-mobile-back-link {
        align-self: flex-end !important;
        min-height: 38px !important;
        padding: .5rem 1rem !important;
        font-size: .875rem !important;
    }
    .alsafwa-project-single .alsafwa-mobile-breadcrumbs,
    .alsafwa-service-single .alsafwa-mobile-breadcrumbs {
        max-width: 100% !important;
        font-size: .75rem !important;
        padding: .375rem .875rem !important;
    }
    .alsafwa-project-single .alsafwa-mobile-breadcrumb-current,
    .alsafwa-service-single .alsafwa-mobile-breadcrumb-current {
        max-width: 120px !important;
    }
    .alsafwa-project-single .alsafwa-single-title,
    .alsafwa-service-single .alsafwa-single-title {
        font-size: clamp(1.875rem, 9vw, 2.75rem) !important;
        line-height: 1.2 !important;
    }
}


/* v1.9.2 Portfolio card image fill fix + legacy project image update support */
.alsafwa-projects-widget .alsafwa-project-card,
.asw-portfolio-page-grid .alsafwa-project-card {
    overflow: hidden !important;
    background: #020617 !important;
    isolation: isolate !important;
}
.alsafwa-projects-widget .alsafwa-project-card-link,
.asw-portfolio-page-grid .alsafwa-project-card-link {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 100% !important;
}
.alsafwa-projects-widget .alsafwa-project-card-image,
.asw-portfolio-page-grid .alsafwa-project-card-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: .82 !important;
}
.alsafwa-projects-widget .alsafwa-project-card:hover .alsafwa-project-card-image,
.asw-portfolio-page-grid .alsafwa-project-card:hover .alsafwa-project-card-image {
    transform: scale(1.06) !important;
    opacity: 1 !important;
}
.alsafwa-projects-widget .alsafwa-project-overlay,
.asw-portfolio-page-grid .alsafwa-project-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}
.alsafwa-projects-widget .alsafwa-project-card-content,
.asw-portfolio-page-grid .alsafwa-project-card-content {
    position: absolute !important;
    inset-inline: 0 !important;
    bottom: 0 !important;
    z-index: 2 !important;
}
@media (max-width: 767px) {
    .asw-portfolio-page-grid .alsafwa-project-card-image,
    .alsafwa-projects-widget .alsafwa-project-card-image {
        object-position: center center !important;
    }
}


/* v1.9.3 Extra hardening for portfolio archive image layers after rendered-page audit */
.asw-portfolio-page-grid .alsafwa-project-card > a.alsafwa-project-card-link img.alsafwa-project-card-image,
.alsafwa-projects-widget .alsafwa-project-card > a.alsafwa-project-card-link img.alsafwa-project-card-image {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform-origin: center center !important;
}

/* v1.9.5 Footer contact repeaters */
.asw-footer-contact .asw-contact-text{display:flex;flex-direction:column;gap:2px;min-width:0;line-height:1.45}.asw-footer-contact .asw-contact-text em{font-style:normal;font-size:11px;font-weight:700;letter-spacing:.02em;color:#64748b;text-transform:uppercase}.asw-footer-contact .asw-contact-text strong{font-size:14px;font-weight:500;color:#94a3b8;overflow-wrap:anywhere}.asw-footer-contact .asw-contact-text a{color:inherit;text-decoration:none;transition:color .2s ease}.asw-footer-contact .asw-contact-text a:hover{color:#fff}@media(max-width:767px){.asw-footer-contact .asw-contact-text strong{font-size:13.5px}}
