/* Fix bilingual footer alignment and spacing */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Cairo:wght@400;500;600;700;800&display=swap');

.topbar {
    display: none !important;
}

.navbar button[data-bs-target="#manpowerRequestModal"] {
    display: none !important;
}

html {
    font-family: 'Poppins', 'Inter', sans-serif;
    overflow-x: hidden;
}

body {
    font-family: inherit;
    overflow-x: hidden;
}

html[dir="rtl"] body {
    font-family: 'Cairo', 'Tajawal', 'Poppins', sans-serif;
}

html[lang="en"] .arabic-text,
html[lang="en"] .brand-text-ar {
    display: none !important;
}

body.lang-ar [data-i18n-bilingual-source="true"] {
    display: none !important;
}

body.lang-en [data-i18n-bilingual-target="true"] {
    display: none !important;
}

body.lang-ar .english-text {
    display: none !important;
}

body.lang-en .arabic-text {
    display: none !important;
}

body.lang-ar a[data-i18n-bilingual-source="true"],
body.lang-ar button[data-i18n-bilingual-source="true"] {
    display: block !important;
}

body.lang-ar .footer .btn.btn-link,
body.lang-ar .footer .footer-menu a,
body.lang-ar .navbar .btn,
body.lang-ar .navbar button {
    text-align: right;
    direction: rtl;
}

.footer .company-info-list > div {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.45rem;
}

.footer .company-info-list > div:last-child {
    margin-bottom: 0;
}

.footer .company-info-list span {
    min-width: 110px;
    flex: 0 0 110px;
    color: rgba(255, 255, 255, 0.78);
}

.footer .company-info-list strong {
    flex: 1;
    color: #fff;
}

.footer .footer-verified-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer .footer-verified-badges span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
}

.client-success-section {
    position: relative;
    margin-bottom: 3.25rem;
}

.client-success-shell {
    position: relative;
    padding: clamp(1.2rem, 2.8vw, 2rem);
    border-radius: 26px;
    border: 1px solid rgba(23, 63, 138, 0.1);
    background:
        radial-gradient(circle at top right, rgba(23, 63, 138, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(185, 150, 67, 0.1), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f6f9ff 56%, #ffffff 100%);
    box-shadow: 0 22px 54px rgba(15, 33, 69, 0.09);
    overflow: hidden;
}

.client-success-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(23, 63, 138, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
}

.client-success-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.client-success-title {
    flex: 1;
}

.client-success-title h2 {
    margin-bottom: 0.4rem;
}

.client-success-title p {
    max-width: 58rem;
}

.client-success-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(23, 63, 138, 0.08);
    border: 1px solid rgba(23, 63, 138, 0.12);
    color: #123f8a;
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}

.client-success-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.client-success-card {
    position: relative;
    padding: 1.15rem 1.15rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(23, 63, 138, 0.1);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 30px rgba(12, 30, 61, 0.07);
    backdrop-filter: blur(6px);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.client-success-card:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 63, 138, 0.2);
    box-shadow: 0 20px 36px rgba(12, 30, 61, 0.12);
}

.client-success-icon {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #1f4dd6 0%, #133a8d 100%);
    box-shadow: 0 10px 18px rgba(23, 63, 138, 0.2);
    margin-bottom: 0.85rem;
}

.client-success-card h3 {
    margin-bottom: 0.6rem;
    color: #0f2f66;
    font-size: 1.14rem;
    line-height: 1.25;
}

.client-success-card p {
    margin-bottom: 0.8rem;
    color: #4b5b74;
}

.client-success-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.client-success-card li {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.68rem;
    border-radius: 999px;
    background: rgba(23, 63, 138, 0.06);
    border: 1px solid rgba(23, 63, 138, 0.08);
    color: #23407c;
    font-size: 0.82rem;
    font-weight: 600;
}

.client-success-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.client-success-strip > div {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(23, 63, 138, 0.07), rgba(23, 63, 138, 0.03));
    border: 1px solid rgba(23, 63, 138, 0.08);
}

.client-success-strip strong {
    display: block;
    margin-bottom: 0.18rem;
    color: #0f2f66;
}

.client-success-strip span {
    color: #5b6b84;
    font-size: 0.94rem;
}

body.stw-demand-lock,
html.stw-demand-lock {
    overflow: hidden;
    overscroll-behavior: contain;
}

.stw-demand-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(6, 16, 34, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
}

.stw-demand-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.stw-demand-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding: 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 3001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease, transform 300ms ease;
    will-change: opacity, transform;
}

.stw-demand-popup.is-visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.stw-demand-popup-shell {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(980px, 100%);
    margin: auto;
    padding: clamp(1rem, 2.3vw, 1.5rem);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background:
        radial-gradient(circle at top right, rgba(216, 180, 88, 0.14), transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.92));
    box-shadow: 0 30px 80px rgba(4, 16, 40, 0.38);
    overflow: visible;
}

.stw-demand-popup-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border-top: 3px solid rgba(185, 150, 67, 0.85);
    pointer-events: none;
}

.stw-demand-popup-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: flex-start;
    gap: 1rem;
}

.stw-demand-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.stw-demand-brand img {
    width: 72px;
    height: auto;
    flex: 0 0 auto;
}

.stw-demand-brand p {
    margin: 0.35rem 0 0;
    color: #52617b;
    font-size: 0.95rem;
}

.stw-demand-popup-header > :nth-child(2) {
    align-self: center;
}

.stw-demand-popup-header > :nth-child(2),
.stw-demand-popup-header > :nth-child(2) * {
    text-align: center;
}

.stw-demand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1342a8, #0f2f66);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: stwDemandPulse 2.8s ease-in-out infinite;
}

.stw-demand-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f2f66;
    background: rgba(15, 47, 102, 0.08);
    transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.stw-demand-close:hover {
    transform: rotate(12deg) scale(1.05);
    background: rgba(15, 47, 102, 0.14);
    color: #061427;
}

.stw-demand-popup-body {
    position: relative;
    z-index: 1;
    overflow: visible;
    padding-inline: 0.25rem;
}

.stw-demand-copy h2 {
    margin-bottom: 0.55rem;
    color: #0f2f66;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.08;
}

.stw-demand-copy {
    text-align: center;
}

.stw-demand-subtitle {
    margin-bottom: 1rem;
    color: #506079;
    font-size: 1.02rem;
}

.stw-demand-poster-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(11, 28, 58, 0.18);
    transform: translateY(0);
}

.stw-demand-poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.stw-demand-poster {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(34vh, 280px);
    object-fit: contain;
    object-position: center center;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 320ms ease, transform 320ms ease;
}

.stw-demand-popup.is-visible .stw-demand-poster {
    opacity: 1;
    transform: translateY(0);
}

.stw-demand-benefits,
.stw-demand-facts,
.stw-demand-ctas {
    display: grid;
    gap: 0.75rem;
    margin-inline: auto;
}

.stw-demand-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1rem;
    max-width: 900px;
}

.stw-demand-benefit,
.stw-demand-fact {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 320ms ease, transform 320ms ease, box-shadow 220ms ease, border-color 220ms ease;
    transition-delay: var(--stw-delay, 0ms);
}

.stw-demand-popup.is-visible .stw-demand-benefit,
.stw-demand-popup.is-visible .stw-demand-fact,
.stw-demand-popup.is-visible .stw-demand-btn {
    opacity: 1;
    transform: translateY(0);
}

.stw-demand-benefit {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 0.85rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 47, 102, 0.08);
    box-shadow: 0 12px 26px rgba(11, 28, 58, 0.06);
}

.stw-demand-benefit i {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #1f4dd6, #133a8d);
    flex: 0 0 auto;
}

.stw-demand-benefit span {
    color: #203350;
    font-weight: 700;
}

.stw-demand-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1rem;
    max-width: 900px;
}

.stw-demand-fact {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 47, 102, 0.06), rgba(15, 47, 102, 0.03));
    border: 1px solid rgba(15, 47, 102, 0.08);
}

.stw-demand-fact span {
    display: block;
    color: #607089;
    font-size: 0.84rem;
    margin-bottom: 0.25rem;
}

.stw-demand-fact strong {
    color: #0d2b61;
    font-size: 1rem;
}

.stw-demand-ctas {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1rem;
    max-width: 760px;
}

.stw-demand-btn {
    justify-content: center;
    border-radius: 999px;
    padding: 0.85rem 1rem;
    font-weight: 700;
    transform: translateY(12px);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
    transition-delay: var(--stw-delay, 0ms);
}

.stw-demand-btn:hover {
    transform: translateY(-2px) scale(1.01);
}

.stw-demand-btn--primary {
    background: linear-gradient(135deg, #1342a8 0%, #0f2f66 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(19, 66, 168, 0.26);
}

.stw-demand-btn--secondary {
    background: #fff;
    color: #1342a8;
    border: 1px solid rgba(19, 66, 168, 0.18);
}

.stw-demand-btn--secondary:hover {
    background: rgba(19, 66, 168, 0.04);
}

.stw-demand-btn--ghost {
    background: rgba(185, 150, 67, 0.1);
    color: #7b5b16;
    border: 1px solid rgba(185, 150, 67, 0.18);
}

.stw-demand-footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(15, 47, 102, 0.1);
    color: #4d5c75;
    font-size: 0.93rem;
}

.stw-demand-footer span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.stw-demand-footer i {
    color: #1342a8;
}

@keyframes stwDemandPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(19, 66, 168, 0.32);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(19, 66, 168, 0);
    }
}

@media (max-width: 991.98px) {
    .stw-demand-popup {
        padding: 0.75rem;
    }

    .stw-demand-popup-shell {
        width: min(900px, 100%);
    }

    .stw-demand-benefits,
    .stw-demand-facts,
    .stw-demand-ctas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .stw-demand-popup {
        padding: 0.5rem;
    }

    .stw-demand-popup-shell {
        padding: 0.9rem;
        border-radius: 22px;
    }

    .stw-demand-popup-header {
        align-items: center;
    }

    .stw-demand-brand img {
        width: 58px;
    }

    .stw-demand-brand p {
        font-size: 0.88rem;
    }

    .stw-demand-benefits,
    .stw-demand-facts,
    .stw-demand-ctas {
        grid-template-columns: 1fr;
    }

    .stw-demand-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 991.98px) {
    .client-success-header,
    .client-success-grid,
    .client-success-strip {
        grid-template-columns: 1fr;
    }

    .client-success-header {
        display: grid;
    }

    .client-success-kicker {
        justify-self: start;
    }
}

@media (max-width: 767.98px) {
    .client-success-shell {
        border-radius: 22px;
    }

    .client-success-card,
    .client-success-strip > div {
        border-radius: 18px;
    }
}

html[lang="ar"] .brand-text > span:first-child {
    display: none !important;
}

html[dir="rtl"] .modal-title,
html[dir="rtl"] .modal-body,
html[dir="rtl"] .modal .form-label,
html[dir="rtl"] .modal .form-control,
html[dir="rtl"] .modal .form-select {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .modal .btn-link,
html[dir="rtl"] .modal .btn-primary,
html[dir="rtl"] .modal .btn-secondary {
    direction: rtl;
}

.language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.stw-lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 999px;
    padding: 0.34rem 0.7rem;
    line-height: 1;
    font-size: 0.8rem;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.stw-lang-trigger i {
    font-size: 0.7rem;
}

.stw-lang-trigger:hover,
.language-switcher.is-open .stw-lang-trigger {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.2);
}

.stw-lang-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    width: min(340px, calc(100vw - 1.4rem));
    max-height: 310px;
    overflow: auto;
    border-radius: 16px;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(23, 63, 138, 0.12);
    box-shadow: 0 24px 48px rgba(9, 28, 59, 0.18);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 1400;
}

.language-switcher.is-open .stw-lang-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.stw-lang-option {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.52rem 0.58rem;
    border-radius: 12px;
    text-align: left;
    color: #16386d;
}

.stw-lang-option:hover,
.stw-lang-option:focus-visible,
.stw-lang-option.is-active {
    background: rgba(23, 63, 138, 0.08);
}

.stw-lang-flag,
.stw-lang-trigger-flag {
    font-size: 1rem;
    line-height: 1;
}

.stw-lang-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.stw-lang-label {
    font-size: 0.84rem;
    font-weight: 700;
}

.stw-lang-native {
    font-size: 0.76rem;
    color: #59719b;
}

.language-switcher .is-active,
.language-switcher a.is-active,
.language-switcher button.is-active {
    color: var(--primary);
}

.stw-lang-suggest {
    position: fixed;
    inset: 0;
    z-index: 3500;
}

.stw-lang-suggest__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 43, 0.66);
    backdrop-filter: blur(8px);
}

.stw-lang-suggest__dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(520px, calc(100vw - 1.4rem));
    border-radius: 18px;
    border: 1px solid rgba(23, 63, 138, 0.14);
    background: #ffffff;
    padding: 1.1rem;
    box-shadow: 0 26px 52px rgba(9, 28, 59, 0.3);
}

.stw-lang-suggest__dialog h3 {
    margin-bottom: 0.45rem;
    color: #0f2f66;
}

.stw-lang-suggest__dialog p {
    margin-bottom: 0.4rem;
}

.stw-lang-suggest__actions {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.stw-lang-switching body {
    filter: blur(3px);
    opacity: 0.86;
    transition: filter 300ms ease, opacity 300ms ease;
}

.enterprise-mega {
    position: static;
}

.enterprise-mega-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    border: 0;
}

.enterprise-mega-toggle i {
    font-size: 0.72rem;
    transition: transform 0.28s ease;
}

.enterprise-mega.is-open .enterprise-mega-toggle i {
    transform: rotate(180deg);
}

.enterprise-mega-panel {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(1320px, calc(100vw - 2.25rem));
    opacity: 0;
    pointer-events: none;
    z-index: 1300;
    transition: opacity 0.24s ease, transform 0.28s ease;
}

.enterprise-mega-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(249, 252, 255, 0.995));
    border: 1px solid rgba(23, 63, 138, 0.11);
    border-radius: 22px;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.16);
    padding: 1rem 1.1rem 0.7rem;
    max-height: 420px;
    overflow: hidden;
}

.enterprise-mega.is-open .enterprise-mega-panel {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.enterprise-mega-grid {
    display: grid;
    gap: 0;
    grid-template-columns: 1.15fr 1.15fr 1.15fr 1.15fr 0.92fr;
    max-height: 342px;
    overflow: auto;
    scrollbar-width: thin;
}

.enterprise-mega-column {
    background: transparent;
    border: 0;
    border-inline-end: 1px solid rgba(23, 63, 138, 0.12);
    border-radius: 0;
    padding: 0 1rem 0.35rem;
    margin-inline-end: 0.7rem;
}

.enterprise-mega-column summary {
    list-style: none;
    cursor: default;
}

.enterprise-mega-column summary::-webkit-details-marker {
    display: none;
}

.enterprise-mega-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}

.enterprise-mega-title i {
    color: #b38900;
    font-size: 0.84rem;
}

.enterprise-mega-links {
    display: grid;
    gap: 0.18rem;
    margin-top: 0.45rem;
}

.enterprise-mega-item {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    text-decoration: none;
    color: var(--dark);
    line-height: 1.25;
    font-size: 0.9rem;
    padding: 0.34rem 0.36rem;
    border-radius: 10px;
    transition: background-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
    animation: enterpriseMegaItemIn 0.32s ease both;
}

.enterprise-mega-item:hover,
.enterprise-mega-item:focus-visible {
    background: rgba(23, 63, 138, 0.07);
    color: var(--primary);
    transform: translateX(2px);
}

.enterprise-mega-item-icon {
    color: rgba(23, 63, 138, 0.45);
    margin-top: 0.12rem;
    font-size: 0.78rem;
}

.enterprise-mega-item-copy {
    display: grid;
    gap: 0.05rem;
}

.enterprise-mega-item-title {
    font-weight: 600;
    color: inherit;
}

.enterprise-mega-item-desc {
    font-size: 0.77rem;
    color: rgba(23, 32, 51, 0.72);
}

.enterprise-mega-aside {
    border-inline-end: 0;
    margin-inline-end: 0;
    padding-inline-end: 0.2rem;
}

.enterprise-mega-aside-title {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.enterprise-mega-aside-title i {
    color: #b38900;
    font-size: 0.82rem;
}

.enterprise-mega-aside-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.enterprise-mega-aside-points li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.45rem;
    align-items: start;
    font-size: 0.84rem;
    color: rgba(23, 32, 51, 0.82);
}

.enterprise-mega-aside-points li i {
    color: #3f79d7;
    margin-top: 0.18rem;
    font-size: 0.75rem;
}

.enterprise-mega-aside-cta {
    display: inline-flex;
    margin-top: 0.72rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
}

.enterprise-mega-foot {
    border-top: 1px solid rgba(23, 63, 138, 0.11);
    margin-top: 0.55rem;
    padding-top: 0.52rem;
    text-align: center;
}

.enterprise-mega-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.enterprise-mega-view-all:hover,
.enterprise-mega-view-all:focus-visible,
.enterprise-mega-aside-cta:hover,
.enterprise-mega-aside-cta:focus-visible {
    color: #b38900;
}

@keyframes enterpriseMegaItemIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199.98px) {
    .enterprise-mega-panel {
        width: min(1140px, calc(100vw - 1.8rem));
    }

    .enterprise-mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: 330px;
    }

    .enterprise-mega-aside {
        grid-column: 1 / -1;
        border-inline-end: 0;
        border-top: 1px solid rgba(23, 63, 138, 0.11);
        margin-top: 0.45rem;
        padding-top: 0.7rem;
    }
}

@media (max-width: 991.98px) {
    .enterprise-mega-panel {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        pointer-events: auto;
        margin-top: 0.55rem;
        display: none;
    }

    .enterprise-mega.is-open .enterprise-mega-panel {
        display: block;
        transform: none;
    }

    .enterprise-mega-shell {
        border-radius: 16px;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
        padding: 0.78rem;
        max-height: none;
        overflow: visible;
    }

    .enterprise-mega-grid {
        grid-template-columns: 1fr;
        max-height: none;
        overflow: visible;
    }

    .enterprise-mega-column {
        padding: 0;
        overflow: hidden;
        border-inline-end: 0;
        border-bottom: 1px solid rgba(23, 63, 138, 0.09);
        margin-inline-end: 0;
    }

    .enterprise-mega-column summary {
        cursor: pointer;
        padding: 0.72rem 0.55rem;
        border-bottom: 1px solid rgba(23, 63, 138, 0.08);
    }

    .enterprise-mega-column .enterprise-mega-links {
        display: none;
        padding: 0.15rem 0.52rem 0.72rem;
        margin-top: 0;
    }

    .enterprise-mega-column[open] .enterprise-mega-links {
        display: grid;
    }

    .enterprise-mega-aside {
        border-bottom: 0;
        padding: 0.55rem 0.55rem 0.3rem;
    }

    .enterprise-mega-foot {
        margin-top: 0.2rem;
    }
}

html[dir="rtl"] .enterprise-mega-item:hover,
html[dir="rtl"] .enterprise-mega-item:focus-visible {
    transform: translateX(-2px);
}

.lang-switcher-floating {
    position: fixed;
    top: 18px;
    inset-inline-end: 18px;
    z-index: 2000;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(33, 36, 177, 0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

html[dir="rtl"] .lang-switcher-floating {
    inset-inline-start: 18px;
    inset-inline-end: auto;
}

.lang-switcher-floating .language-switcher {
    gap: 0.7rem;
}

.lang-switcher-floating .language-switcher button,
.lang-switcher-floating .language-switcher a {
    color: rgba(255, 255, 255, 0.72);
}

.lang-switcher-floating .language-switcher .is-active,
.lang-switcher-floating .language-switcher a.is-active,
.lang-switcher-floating .language-switcher button.is-active {
    color: #ffffff;
}

.footer .arabic-text {
    display: block;
    direction: rtl;
    text-align: right;
    margin-bottom: 0.2rem;
    margin-top: 0.1rem;
    font-size: 0.98em;
    line-height: 1.5;
}

.footer .row.g-5 > div {
    min-width: 220px;
    margin-bottom: 1.2rem;
}

@media (max-width: 991.98px) {
    .footer .row.g-5 > div {
        min-width: 180px;
        margin-bottom: 1.5rem;
    }
}

.footer .btn.btn-link + .arabic-text {
    margin-bottom: 0.5rem;
    margin-top: -0.2rem;
}

.footer .arabic-text.mb-4 {
    margin-bottom: 0.4rem !important;
}
.carousel-control-prev,
.carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.95;
    box-shadow: 0 4px 16px rgba(33,36,177,0.10);
    transition: background 0.2s, opacity 0.2s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--secondary);
    opacity: 1;
}
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    border-color: #fff;
}
/********** Template CSS **********/
:root {
    --primary: #173f8a;
    --secondary: #2f74da;
    --accent: #0ea5b7;
    --light: #f6f9fd;
    --dark: #172033;
    --surface: #ffffff;
    --border: rgba(23, 32, 51, 0.08);
}

body {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}


/* Blog cards animation & hover */
.blog-card-animated {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-animated:hover {
    transform: translateY(-6px);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
}
h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
    flex-shrink: 0;
    min-width: 0;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 40px 0;
    font-size: 1.15rem;
    color: var(--dark) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--dark);
}

.navbar-light .navbar-brand img {
    max-height: 150px;
    transition: .5s;
}

.navbar-brand .logo-white,
.navbar-brand .logo-blue {
    height: 150px;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 120px;
}

.sticky-top.navbar-light .navbar-brand .logo-white,
.sticky-top.navbar-light .navbar-brand .logo-blue {
    height: 126px;
}

.navbar-brand .brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand .brand-text-ar {
    font-size: 0.8em;
}

html[dir="rtl"] .navbar-nav .nav-item {
    align-items: flex-end;
}

html[dir="rtl"] .navbar-nav .nav-item .arabic-text {
    text-align: right;
}

.navbar-nav .nav-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.navbar-nav .nav-item .arabic-text {
    color: #000 !important;
    font-size: 0.82rem;
    line-height: 1.1;
    margin-top: -6px;
    display: block;
}

.inner-page-navbar .navbar-nav .nav-item .arabic-text {
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        display: block;
    }

    .navbar-nav .nav-item .arabic-text {
        margin-top: 0;
    }
}

/* Swap white and blue logos based on navbar state */
.navbar-brand .logo-blue {
    display: none;
    position: relative;
    top: 4px; /* nudge blue logo slightly down to center */
}

.sticky-top.navbar-light .navbar-brand .logo-white {
    display: none;
}

.sticky-top.navbar-light .navbar-brand .logo-blue {
    display: inline-block;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
        margin-left: 0;
        color: var(--dark) !important;
        font-size: 1.15rem;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 60px;
    }

    /* On mobile, always use the blue logo (white logo on white navbar is hard to see) */
    .navbar-brand .logo-white {
        display: none;
    }

    .navbar-brand .logo-blue {
        display: inline-block;
    }
}

@media (max-width: 600px) {
    .navbar-brand .logo-white,
    .navbar-brand .logo-blue {
        height: 80px !important;
        max-height: 80px !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}

/* Inner page navbar (Blogs, Jobs, etc.) */
.inner-page-navbar {
    position: relative !important;
    width: 100%;
    background-color: var(--primary);
}

.inner-page-navbar .navbar-nav .nav-link,
.inner-page-navbar .navbar-brand h1 {
    color: var(--dark) !important;
}

.inner-page-navbar .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

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

/* On mobile, inner-page navbars should match the white navbar style */
@media (max-width: 991.98px) {
    .inner-page-navbar {
        background-color: #FFFFFF;
    }

    .inner-page-navbar .navbar-nav .nav-link,
    .inner-page-navbar .navbar-brand h1 {
        color: var(--dark) !important;
    }
}

/* Hide topbar on small (mobile) screens only */
@media (max-width: 767.98px) {
    .topbar {
        display: none !important;
    }
}


/*** Hero Header ***/
/* Hero Image Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
}

.hero-carousel-img {
    height: 520px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.82);
}

.hero-carousel .carousel-caption {
    bottom: 2.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

.hero-carousel .carousel-caption h5 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.hero-carousel .carousel-caption p {
    font-size: 1rem;
    opacity: 0.92;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.65;
}

.hero-carousel .carousel-indicators .active {
    opacity: 1;
    background-color: #fff;
}

@media (max-width: 768px) {
    .hero-carousel-img {
        height: 260px;
    }
    .hero-carousel .carousel-caption h5 {
        font-size: 1.1rem;
    }
    .hero-carousel .carousel-caption p {
        font-size: 0.82rem;
    }
}

/* Hero Section */
.hero-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(47, 116, 218, 0.12), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(14, 165, 183, 0.10), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #eff4fb 100%);
}

.hero-header::before,
.hero-header::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-header::before {
    width: 280px;
    height: 280px;
    right: -110px;
    top: -90px;
    background: radial-gradient(circle, rgba(23, 63, 138, 0.12) 0%, rgba(23, 63, 138, 0) 70%);
    animation: floatSlow 14s ease-in-out infinite;
}

.hero-header::after {
    width: 200px;
    height: 200px;
    left: -80px;
    bottom: -70px;
    background: radial-gradient(circle, rgba(14, 165, 183, 0.12) 0%, rgba(14, 165, 183, 0) 70%);
    animation: floatSlow 18s ease-in-out infinite reverse;
}

.hero-shell {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 70px rgba(23, 32, 51, 0.10);
    backdrop-filter: blur(14px);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(23, 63, 138, 0.08);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero-kicker::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(14, 165, 183, 0.12);
}

.hero-header h1,
.hero-header p {
    color: var(--dark) !important;
}

.hero-header .btn-outline-light {
    color: var(--primary);
    border-color: rgba(23, 63, 138, 0.22);
    background: rgba(255, 255, 255, 0.7);
}

.hero-header .btn-light {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.hero-header .btn-light:hover,
.hero-header .btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(23, 63, 138, 0.18);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-metric {
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(23, 32, 51, 0.06);
}

.hero-metric strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    line-height: 1.15;
}

body.service-page .hero-header,
body.service-page .stw-theme-hero {
    background: #ffffff !important;
}

body.home-page .topbar {
    background: #ffffff !important;
    color: var(--dark) !important;
    border-bottom: 1px solid var(--border);
}

body.home-page .topbar a,
body.home-page .topbar small {
    color: var(--dark) !important;
}

body.home-page .topbar .text-light,
body.home-page .topbar [class*="text-light"],
body.home-page .topbar i {
    color: var(--dark) !important;
}

body.home-page .topbar .btn,
body.home-page .topbar .btn * {
    color: #ffffff !important;
}

body.home-page .navbar-light {
    background: #ffffff !important;
}

body.home-page .navbar-light .navbar-brand h1,
body.home-page .navbar-light .navbar-nav .nav-link {
    color: var(--dark) !important;
}

body.home-page .navbar-light .navbar-toggler {
    color: var(--dark) !important;
    border-color: rgba(23, 32, 51, 0.16);
}

body.service-page .hero-header::before,
body.service-page .hero-header::after,
body.service-page .stw-theme-hero::before,
body.service-page .stw-theme-hero::after {
    display: none !important;
}

body.service-page .hero-header,
body.service-page .hero-header h1,
body.service-page .hero-header p,
body.service-page .hero-header .lead,
body.service-page .hero-header .hero-kicker,
body.service-page .stw-theme-hero,
body.service-page .stw-theme-hero h1,
body.service-page .stw-theme-hero p,
body.service-page .stw-theme-hero .lead,
body.service-page .stw-theme-hero .badge {
    color: var(--dark) !important;
}

body.service-page .hero-header .text-white,
body.service-page .stw-theme-hero .text-white {
    color: var(--dark) !important;
}

body.service-page .hero-header .badge,
body.service-page .stw-theme-hero .badge {
    background: rgba(23, 63, 138, 0.08) !important;
    border: 1px solid rgba(23, 63, 138, 0.12) !important;
    color: var(--primary) !important;
}

body.service-page .hero-header .btn-light,
body.service-page .stw-theme-hero .btn-light {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

body.service-page .hero-header .btn-outline-light,
body.service-page .stw-theme-hero .btn-outline-light {
    color: var(--primary) !important;
    border-color: rgba(23, 63, 138, 0.22) !important;
    background: rgba(255, 255, 255, 0.82) !important;
}

body.service-page .hero-header .btn-outline-light:hover,
body.service-page .hero-header .btn-light:hover,
body.service-page .stw-theme-hero .btn-outline-light:hover,
body.service-page .stw-theme-hero .btn-light:hover {
    box-shadow: 0 14px 30px rgba(23, 63, 138, 0.14);
}

body.service-page .hero-header .card,
body.service-page .stw-theme-hero .card,
body.service-page .card[style*="linear-gradient"] {
    background: #ffffff !important;
    color: var(--dark) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 18px 44px rgba(23, 32, 51, 0.08) !important;
}

body.service-page .card[style*="linear-gradient"] {
    background-image: none !important;
}

body.service-page .card[style*="linear-gradient"] h1,
body.service-page .card[style*="linear-gradient"] h2,
body.service-page .card[style*="linear-gradient"] h3,
body.service-page .card[style*="linear-gradient"] p,
body.service-page .card[style*="linear-gradient"] .lead {
    color: var(--dark) !important;
}

.hero-metric span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(23, 32, 51, 0.72);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-panel {
    position: relative;
    width: min(100%, 460px);
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(235, 243, 252, 0.96));
    border: 1px solid var(--border);
    box-shadow: 0 22px 50px rgba(23, 32, 51, 0.10);
    animation: heroLift 1.1s ease both;
}

.hero-visual img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 18px 28px rgba(23, 32, 51, 0.18));
    animation: floatSlow 8s ease-in-out infinite;
}

.hero-float-card {
    position: absolute;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    box-shadow: 0 14px 28px rgba(23, 32, 51, 0.10);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    animation: floatSlow 10s ease-in-out infinite;
}

.hero-float-card strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
}

.hero-float-card--top {
    top: 14px;
    left: 14px;
}

.hero-float-card--bottom {
    right: 12px;
    bottom: 14px;
    animation-delay: 1.5s;
}

@keyframes floatSlow {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes heroLift {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* About section image styling */
.about-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

/* Mission / Vision / Values cards */
.mission-vision-card {
    border-radius: 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* Team page horizontal cards */
.team-horizontal-card {
    border-radius: 18px;
    background-color: #ffffff;
    padding: 2rem 2.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.team-photo {
    flex: 0 0 320px;
}

.team-photo img {
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
}

/* Founder card previously had a larger image; now all cards share the same size. */

.team-card-left,
.team-card-right {
    max-width: 1000px;
}

.team-card-left {
    margin-right: auto;
}

.team-card-right {
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .team-horizontal-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.5rem 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .team-horizontal-card > .team-photo,
    .team-horizontal-card .team-photo {
        margin: 0 auto 1rem auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .team-horizontal-card .team-photo img {
        width: 180px !important;
        height: 180px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
    }
    .team-card-left,
    .team-card-right {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Meet Our Team cards (compact grid) */
.team-org-chart {
    max-width: 100%;
    margin: 0 auto;
    gap: 1.5rem;
}

.team-org-node {
    width: 260px;
    max-width: 100%;
    text-align: center;
    padding: 1.3rem 1.7rem 1.45rem 1.7rem;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-weight: 500;
}


.team-org-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem auto;
    background-color: #f4f6fb;
}

.team-org-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-org-photo .fa-user {
    font-size: 3.5rem;
    color: #2124B1;
}

.team-org-node h5 {
    font-size: 1rem;
}

.team-org-node p {
    font-size: 0.9rem;
}

.team-org-connector {
    display: none;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(23, 32, 51, .06);
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform .5s ease;
}

.service-item:hover .service-card-img {
    transform: scale(1.02);
}

.service-item:hover {
    background: linear-gradient(180deg, #1e4d9d 0%, #173f8a 100%);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 18px 44px rgba(23, 63, 138, 0.18);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--light);
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}

.section-title h2,
.section-title h6 {
    letter-spacing: -0.02em;
}

.wow {
    will-change: transform, opacity;
}

@media (max-width: 991.98px) {
    .hero-shell {
        padding: 1.35rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-header::before,
    .hero-header::after,
    .hero-visual-panel,
    .hero-visual img,
    .hero-float-card {
        animation: none !important;
    }
}


/*** Project Portfolio ***/
.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}

.portfolio-card {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.portfolio-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .portfolio-card {
        height: 220px;
    }
}

.featured-portfolio-card {
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.featured-portfolio-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
    border-color: var(--secondary);
}


/*** Footer ***/
.footer {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-top: 1px solid rgba(23, 63, 138, 0.08);
    padding-top: 2.4rem !important;
    padding-bottom: 1rem !important;
    color: var(--dark);
}

.footer .container.py-5 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.footer .row.g-5 {
    row-gap: 1rem !important;
}

.footer h5.mb-4, .footer .arabic-text.mb-4 {
    margin-bottom: 0.7rem !important;
}

.footer .btn.btn-social {
    margin-right: 6px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(23, 63, 138, .12);
    border-radius: 999px;
    background: rgba(23, 63, 138, 0.04);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.footer .btn.btn-social:hover {
    transform: translateY(-2px);
    background: rgba(23, 63, 138, 0.06);
    border-color: rgba(23, 63, 138, 0.18);
}

.footer .btn.btn-link {
    color: var(--dark) !important;
    text-decoration: none;
    padding-left: 0;
    transition: opacity .2s ease, transform .2s ease;
    letter-spacing: 0;
    margin-bottom: 0.15rem;
    opacity: .88;
}

.footer .btn.btn-link:hover {
    letter-spacing: 0;
    box-shadow: none;
    color: var(--primary) !important;
    text-decoration: underline;
    opacity: 1;
}

.footer .copyright {
    padding: 12px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(23, 63, 138, .08);
}

.footer .copyright a {
    color: var(--primary);
}

.footer p {
    color: rgba(23, 32, 51, 0.78);
}

.footer .btn-link,
.footer .btn-link:focus,
.footer .btn-link:active {
    color: rgba(23, 32, 51, 0.88) !important;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(23, 63, 138, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .company-info-panel {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(23, 63, 138, 0.08);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

.footer .company-info-panel h5,
.footer .company-info-panel .arabic-text,
.footer .footer-link-groups h6 {
    color: var(--dark);
}

.footer .footer-link-groups {
    display: grid;
    gap: 0.9rem;
}

.footer .footer-link-groups h6 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.footer .footer-link-groups .link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
}

.footer .footer-link-groups .link-row a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer .footer-link-groups .link-row a:hover {
    color: #b38900;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 110px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #ffffff;
}

/* Navbar AI search styling */
.ai-search-form .form-control {
    border-radius: 50px;
    font-size: 0.85rem;
    padding-inline: 0.9rem;
}

.ai-search-btn {
    border-radius: 50px;
    font-weight: 500;
    padding: 0.3rem 1.1rem;
    font-size: 0.85rem;
    background-color: #ffffff;
    color: #0d6efd;
    border: 1px solid #ffffff;
}

.ai-search-btn:hover {
    background-color: #f3f6ff;
    color: #0b5ed7;
    border-color: #f3f6ff;
}

/* Clients (brands) grid */
.client-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
    padding: 30px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
}

@media (min-width: 992px) {
    .client-col-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Make Bootstrap carousel arrows blue on main image slider */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: none;
    background-image: none;
    position: relative;
}
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    border: solid #fff;
    border-width: 0 6px 6px 0;
    padding: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: transparent;
    border-radius: 4px;
}
.carousel-control-next-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.carousel-control-prev-icon::after {
    transform: translate(-50%, -50%) rotate(135deg);
}

/* ===== Corporate Design System 2026 ===== */
:root {
    --stw-brand-blue: #173f8a;
    --stw-white: #ffffff;
    --stw-light-gray: #eef3f8;
    --stw-gold: #b99643;
    --stw-text: #1b2a43;
    --stw-radius: 14px;
    --stw-shadow: 0 14px 34px rgba(14, 28, 56, 0.09);
    --stw-header-offset: 0px;
}

body {
    color: var(--stw-text);
    background: linear-gradient(180deg, #ffffff 0%, var(--stw-light-gray) 100%);
}

body.stw-layout-ready {
    padding-top: var(--stw-header-offset);
}

body.stw-layout-ready > .stw-nav-shell + * {
    margin-top: 0 !important;
}

.stw-nav-shell {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

.stw-header.navbar-light {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
}

html {
    scroll-padding-top: calc(var(--stw-header-offset) + 10px);
}

[id] {
    scroll-margin-top: calc(var(--stw-header-offset) + 10px);
}


.stw-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    min-height: 96px;
    align-items: center;
}

.stw-header-home {
    background: #ffffff;
    border-bottom: 1px solid rgba(23, 63, 138, 0.1);
}

.stw-header-inner,
.sticky-top.stw-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(23, 63, 138, 0.1);
}

.stw-brand {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.58rem, 0.95vw, 0.95rem);
    min-width: 0;
}

.stw-brand .logo-white,
.stw-brand .logo-blue {
    height: clamp(62px, 4.25vw, 78px);
    margin-inline-end: 0;
    transition: transform 0.24s ease;
}

.stw-brand-link {
    text-decoration: none;
}

.stw-brand-link:hover .logo-white,
.stw-brand-link:hover .logo-blue,
.stw-brand-link:focus-visible .logo-white,
.stw-brand-link:focus-visible .logo-blue {
    transform: scale(1.05);
}

.stw-brand .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.08rem;
    min-width: 0;
}

.stw-brand .stw-brand-name {
    display: block;
    max-width: clamp(280px, 24vw, 430px);
    font-size: clamp(1.47rem, 1.67vw, 1.98rem);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: 0.01em;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
}

.stw-brand .stw-brand-tagline {
    display: block;
    max-width: clamp(280px, 24vw, 430px);
    font-size: clamp(0.83rem, 0.87vw, 0.99rem);
    font-weight: 500;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    color: rgba(26, 45, 78, 0.62);
}

.stw-brand .stw-brand-tagline-ar {
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
}

.stw-header-inner .stw-brand-name,
.sticky-top.stw-header .stw-brand-name {
    color: #112f64;
}

.stw-header-inner .stw-brand-tagline,
.sticky-top.stw-header .stw-brand-tagline {
    color: rgba(23, 63, 138, 0.7);
}

.stw-header .navbar-collapse {
    min-width: 0;
}

.stw-header .navbar-nav {
    align-items: center;
    gap: clamp(4px, 0.7vw, 18px);
    white-space: nowrap;
}

.stw-header .navbar-nav .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding: 0.55rem clamp(0.38rem, 0.72vw, 0.9rem);
    border-radius: 999px;
    font-size: clamp(0.79rem, 0.79vw, 0.93rem);
    font-weight: 600;
    line-height: 1.1;
}

.stw-header .navbar-nav .nav-link:hover,
.stw-header .navbar-nav .nav-link.active {
    background: rgba(23, 63, 138, 0.08);
    color: var(--stw-brand-blue) !important;
}

.stw-header-actions {
    align-items: center;
    gap: clamp(0.3rem, 0.6vw, 0.55rem);
    margin-inline-start: 0.55rem;
    min-width: max-content;
}

.stw-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    font-size: clamp(0.72rem, 0.66vw, 0.82rem);
    font-weight: 700;
    padding: 0.36rem clamp(0.44rem, 0.72vw, 0.72rem);
    white-space: nowrap;
}

.stw-wa-btn {
    padding-inline: clamp(0.42rem, 0.7vw, 0.68rem);
}

.stw-call-short {
    display: none;
}

.stw-header .language-switcher {
    padding-inline: 0.22rem;
    white-space: nowrap;
}

.stw-header .language-switcher .stw-lang-trigger {
    font-size: 0.75rem;
}

.stw-header-inner .language-switcher .stw-lang-trigger,
.sticky-top.stw-header .language-switcher .stw-lang-trigger {
    color: var(--stw-brand-blue);
    border-color: rgba(23, 63, 138, 0.34);
    background: rgba(23, 63, 138, 0.05);
}

.stw-header-inner .language-switcher .stw-lang-trigger:hover,
.sticky-top.stw-header .language-switcher .stw-lang-trigger:hover,
.stw-header-inner .language-switcher.is-open .stw-lang-trigger,
.sticky-top.stw-header .language-switcher.is-open .stw-lang-trigger {
    color: #0d2c64;
    border-color: rgba(23, 63, 138, 0.5);
    background: rgba(23, 63, 138, 0.12);
}

.stw-header-inner .stw-wa-btn,
.sticky-top.stw-header .stw-wa-btn {
    border-color: rgba(23, 63, 138, 0.42);
    color: var(--stw-brand-blue);
    background: #ffffff;
}

.stw-header-inner .stw-wa-btn:hover,
.sticky-top.stw-header .stw-wa-btn:hover {
    border-color: var(--stw-brand-blue);
    color: #ffffff;
    background: var(--stw-brand-blue);
}

.stw-header .btn-warning,
.stw-header .btn-warning:hover {
    background: #1f5fb5;
    border-color: #1f5fb5;
    color: #ffffff;
}

.stw-mobile-actions {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stw-mobile-lang {
    width: 100%;
    justify-content: flex-start;
}

.stw-mobile-lang .stw-lang-trigger {
    color: var(--stw-brand-blue);
    border-color: rgba(23, 63, 138, 0.25);
    background: rgba(23, 63, 138, 0.04);
}

.stw-mobile-btn {
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

@media (min-width: 992px) {
    .stw-header {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        column-gap: clamp(0.35rem, 0.8vw, 1rem);
    }

    .stw-header .navbar-brand {
        grid-column: 1;
        min-width: 0;
        max-width: min(33vw, 470px);
    }

    .stw-header .navbar-collapse {
        grid-column: 2;
        display: flex !important;
        justify-content: center;
    }

    .stw-header .navbar-nav {
        margin-left: 0 !important;
        margin-right: 0 !important;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .stw-header-actions {
        grid-column: 3;
    }

    .stw-header .navbar-toggler {
        display: none;
    }
}

@media (min-width: 1600px) {
    .stw-header .navbar-brand {
        max-width: 520px;
    }

    .stw-header .navbar-nav {
        gap: clamp(10px, 1vw, 24px);
    }
}

@media (min-width: 1200px) and (max-width: 1439.98px) {
    .stw-brand .stw-brand-name {
        max-width: 380px;
    }

    .stw-brand .stw-brand-tagline {
        max-width: 380px;
    }

    .stw-header .navbar-nav {
        gap: clamp(4px, 0.58vw, 11px);
    }

    .stw-call-full,
    .stw-call-ar {
        display: none;
    }

    .stw-call-short {
        display: inline;
    }
}

@media (min-width: 1024px) and (max-width: 1199.98px) {
    .stw-brand .stw-brand-name {
        max-width: 330px;
    }

    .stw-brand .stw-brand-tagline {
        max-width: 330px;
        font-size: 0.72rem;
    }

    .stw-header .navbar-nav {
        gap: clamp(2px, 0.35vw, 7px);
    }

    .stw-header .navbar-nav .nav-link {
        padding-inline: 0.34rem;
        font-size: 0.8rem;
    }

    .stw-header-btn {
        padding-inline: 0.42rem;
        font-size: 0.74rem;
    }

    .stw-call-full,
    .stw-call-ar {
        display: none;
    }

    .stw-call-short {
        display: inline;
    }
}

@media (min-width: 992px) and (max-width: 1023.98px) {
    .stw-brand .stw-brand-name {
        max-width: 300px;
    }

    .stw-brand .stw-brand-tagline {
        max-width: 300px;
        font-size: 0.7rem;
    }

    .stw-header .navbar-nav {
        gap: 2px;
    }

    .stw-header .navbar-nav .nav-link {
        padding-inline: 0.27rem;
        font-size: 0.75rem;
    }

    .stw-header-btn {
        padding-inline: 0.35rem;
        font-size: 0.72rem;
    }

    .stw-call-full,
    .stw-call-ar {
        display: none;
    }

    .stw-call-short {
        display: inline;
    }
}

.enterprise-mega-panel {
    top: calc(100% + 0.25rem);
    width: min(860px, calc(100vw - 2rem));
}

.enterprise-mega-shell {
    border-radius: var(--stw-radius);
    border: 1px solid rgba(23, 63, 138, 0.12);
    box-shadow: var(--stw-shadow);
    background: #ffffff;
}

.enterprise-mega-item {
    border-radius: 10px;
}

.enterprise-mega-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.18rem 0.5rem;
}

@media (min-width: 1200px) {
    .enterprise-mega-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .enterprise-mega-links {
        grid-template-columns: 1fr;
    }
}

.enterprise-mega-item:hover,
.enterprise-mega-item:focus-visible {
    background: rgba(23, 63, 138, 0.06);
}

.stw-footer {
    background: #ffffff;
    border-top: 1px solid rgba(23, 63, 138, 0.1);
    padding-top: 1.4rem !important;
    padding-bottom: 0.4rem !important;
}

.stw-footer .container {
    max-width: 1280px;
}

.stw-footer h5 {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
    color: var(--stw-brand-blue);
}

.stw-footer p,
.stw-footer a {
    font-size: 0.88rem;
    color: #30405d;
}

.stw-footer .footer-menu a {
    text-decoration: none;
    border: 0;
    margin: 0;
    padding: 0.08rem 0;
}

.stw-footer .footer-menu a:hover {
    color: var(--stw-brand-blue);
}

.stw-footer-logo {
    width: 126px;
    height: auto;
}

.stw-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.stw-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(23, 63, 138, 0.16);
    background: var(--stw-light-gray);
    font-size: 0.76rem;
}

.stw-newsletter .form-control,
.stw-newsletter .btn {
    border-radius: 9px;
}

.stw-footer .copyright {
    border-top: 1px solid rgba(23, 63, 138, 0.09);
    font-size: 0.8rem;
    padding-top: 0.6rem;
}

.stw-card,
.stw-job-card {
    border: 1px solid rgba(23, 63, 138, 0.1);
    border-radius: var(--stw-radius);
    background: #ffffff;
    box-shadow: var(--stw-shadow);
    padding: 1.1rem;
}

.stw-jobs-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    border-radius: var(--stw-radius);
    background: linear-gradient(125deg, #173f8a, #2f74da);
    color: #ffffff;
    padding: 1.35rem;
}

.stw-kicker {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.76rem;
    margin-bottom: 0.55rem;
}

.stw-jobs-hero h1 {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.stw-jobs-hero p {
    margin-bottom: 0.25rem;
}

.stw-sticky-apply {
    position: sticky;
    top: 110px;
}

.stw-job-filters {
    background: #ffffff;
    border-radius: var(--stw-radius);
    border: 1px solid rgba(23, 63, 138, 0.1);
    box-shadow: var(--stw-shadow);
    padding: 1rem;
}

.stw-job-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.stw-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(14, 28, 56, 0.14);
}

.stw-job-card h3 {
    font-size: 1.08rem;
    margin: 0.6rem 0;
}

.stw-job-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.32rem;
}

.stw-job-card li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.86rem;
}

.stw-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.stw-job-meta span {
    background: rgba(23, 63, 138, 0.08);
    color: var(--stw-brand-blue);
    border-radius: 999px;
    padding: 0.18rem 0.56rem;
    font-size: 0.74rem;
    font-weight: 600;
}

.stw-timeline {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.45rem;
}

.stw-video-carousel .carousel-item,
.stw-slide {
    min-height: clamp(360px, 48vw, 620px);
}

.stw-slide {
    position: relative;
    overflow: hidden;
}

.stw-hero-video,
.stw-hero-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stw-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
}

.stw-slide-overlay {
    position: absolute;
    z-index: 2;
    left: 7%;
    bottom: 12%;
    color: #ffffff;
    max-width: 560px;
}

.stw-slide-overlay h2 {
    color: #ffffff;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}

.stw-home-enhancements .stw-logo-track {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(23, 63, 138, 0.08);
    background: #f8fbff;
    padding: 0.6rem;
}

.stw-home-enhancements .stw-logo-track-row {
    display: inline-flex;
    gap: 0.5rem;
    white-space: nowrap;
}

.stw-home-enhancements .stw-logo-track-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(23, 63, 138, 0.12);
    background: #ffffff;
    font-size: 0.78rem;
}

.stw-counter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.stw-counter-grid strong {
    display: block;
    color: var(--stw-brand-blue);
    font-size: 1.4rem;
    line-height: 1;
}

.stw-counter-grid span {
    font-size: 0.82rem;
    color: #42506b;
}

/* ===== AWARDS & RECOGNITION — PREMIUM REDESIGN ===== */

@keyframes awardsGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes awardsFloatA {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-18px) translateX(8px); }
    66% { transform: translateY(10px) translateX(-6px); }
}

@keyframes awardsFloatB {
    0%, 100% { transform: translateY(0) translateX(0); }
    40% { transform: translateY(14px) translateX(-10px); }
    70% { transform: translateY(-8px) translateX(12px); }
}

@keyframes awardsLightReflect {
    0% { transform: translateX(-120%) skewX(-18deg); }
    100% { transform: translateX(260%) skewX(-18deg); }
}

@keyframes awardsSkeletonPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.65; }
}

@keyframes awardsTitleGlow {
    0%, 100% { filter: drop-shadow(0 0 22px rgba(212,175,55,0.13)); }
    50% { filter: drop-shadow(0 0 40px rgba(212,175,55,0.26)); }
}

.home-awards-section {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 5.5vw, 5.5rem) 0;
    background:
        radial-gradient(ellipse 80% 55% at 50% -5%, rgba(212,175,55,0.055) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 82% 95%, rgba(26,56,120,0.38) 0%, transparent 55%),
        radial-gradient(ellipse 50% 38% at 8% 55%, rgba(18,41,93,0.32) 0%, transparent 50%),
        linear-gradient(158deg, #081938 0%, #0b1e4d 36%, #12295d 66%, #1a3878 100%);
    background-size: 200% 200%;
    animation: awardsGradientShift 20s ease infinite;
}

.home-awards-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px 300px;
    pointer-events: none;
    z-index: 0;
}

.home-awards-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 38% at 50% 12%, rgba(212,175,55,0.038) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.stw-awards-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(72px);
    opacity: 0.045;
    will-change: transform;
}

.stw-awards-shape--a {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #1a3878, transparent 70%);
    top: -100px;
    left: -120px;
    animation: awardsFloatA 24s ease-in-out infinite;
}

.stw-awards-shape--b {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, #d4af37, transparent 70%);
    bottom: -70px;
    right: -90px;
    animation: awardsFloatB 30s ease-in-out infinite;
    opacity: 0.03;
}

.stw-awards-shape--c {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, #12295d, transparent 70%);
    top: 42%;
    right: 14%;
    animation: awardsFloatA 36s ease-in-out infinite reverse;
    opacity: 0.035;
}

.stw-awards-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.stw-awards-shell {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 2.5rem);
    border-radius: 32px;
    border: 1px solid rgba(212,175,55,0.2);
    background: linear-gradient(152deg, rgba(255,255,255,0.075) 0%, rgba(255,255,255,0.028) 100%);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 32px 80px rgba(4,12,31,0.38), inset 0 1px 0 rgba(255,255,255,0.07);
}

.stw-awards-copy {
    max-width: 53rem;
    margin: 0 auto 3rem;
    text-align: center;
    color: rgba(255,255,255,0.92);
}

.stw-awards-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    margin-bottom: 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.38);
    background: linear-gradient(135deg, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.08) 100%);
    color: #f2d98d;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 18px rgba(212,175,55,0.12), inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}

.stw-awards-kicker i {
    color: #d4af37;
    font-size: 0.9rem;
}

.stw-awards-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(175deg, #ffffff 0%, #f0e6b4 52%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: awardsTitleGlow 4.5s ease-in-out infinite;
}

.stw-awards-title i {
    -webkit-text-fill-color: #d4af37;
    color: #d4af37;
    flex-shrink: 0;
}

.stw-awards-subtitle {
    margin-bottom: 0.9rem;
    color: rgba(242,217,140,0.9);
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stw-awards-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.25rem auto 1.5rem;
    max-width: 400px;
}

.stw-awards-divider::before,
.stw-awards-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), rgba(212,175,55,0.9), rgba(212,175,55,0.5), transparent);
}

.stw-awards-divider__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.42);
    color: #d4af37;
    font-size: 0.78rem;
    flex-shrink: 0;
    box-shadow: 0 0 18px rgba(212,175,55,0.28), 0 0 36px rgba(212,175,55,0.1);
}

.stw-awards-description {
    max-width: 53rem;
    margin: 0 auto;
    color: rgba(215,228,255,0.8);
    line-height: 1.88;
    font-size: clamp(0.9rem, 1.1vw, 1.04rem);
    text-align: center;
}

.stw-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.stw-award-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-align: left;
    transition: transform 500ms cubic-bezier(.22,.68,0,1.15), box-shadow 500ms ease, border-color 500ms ease;
    overflow: hidden;
    will-change: transform;
}

.stw-award-card::before {
    content: "";
    position: absolute;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.055) 45%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.055) 55%, transparent 100%);
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 2;
    animation: awardsLightReflect 6s ease-in-out infinite;
    animation-delay: var(--stw-reflect-delay, 0s);
}

.stw-award-card::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 56px;
    background: radial-gradient(ellipse, rgba(212,175,55,0.22) 0%, transparent 70%);
    filter: blur(18px);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 500ms ease;
    pointer-events: none;
    z-index: 0;
}

.stw-award-card:hover::after {
    opacity: 1;
}

.stw-award-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212,175,55,0.65);
    box-shadow: 0 40px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,175,55,0.18), 0 0 60px rgba(212,175,55,0.07);
}

.stw-award-card__badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.88rem;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.36);
    background: linear-gradient(135deg, rgba(180,130,20,0.28) 0%, rgba(212,175,55,0.14) 100%);
    color: #f4d870;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 14px rgba(212,175,55,0.1);
    position: relative;
    z-index: 1;
}

.stw-award-card__badge i {
    font-size: 0.7rem;
    color: #d4af37;
}

.stw-award-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    flex: 1;
    z-index: 1;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stw-award-card__skeleton {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.03) 100%);
    animation: awardsSkeletonPulse 1.8s ease-in-out infinite;
    z-index: 2;
    transition: opacity 400ms ease;
}

.stw-award-card__skeleton.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.stw-award-card__media img {
    display: block;
    width: 90%;
    margin: 0 auto;
    height: auto;
    min-height: 280px;
    max-height: 440px;
    object-fit: cover;
    border-radius: 14px;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.28));
    transition: transform 600ms cubic-bezier(.22,.68,0,1.15), opacity 450ms ease;
    opacity: 0;
    padding: 0.5rem 0;
}

.stw-award-card__media img.is-loaded {
    opacity: 1;
}

.stw-award-card:hover .stw-award-card__media img {
    transform: scale(1.04);
}

.stw-award-card__media::after {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.14), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 3;
    transition: none;
}

.stw-award-card:hover .stw-award-card__media::after {
    left: 160%;
    transition: left 550ms ease;
}

.stw-award-card__meta {
    display: grid;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.stw-award-card__title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.stw-awards-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.stw-award-stat {
    display: grid;
    gap: 0.42rem;
    padding: 1.25rem 1rem;
    border-radius: 22px;
    border: 1px solid rgba(212,175,55,0.16);
    background: linear-gradient(152deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
    box-shadow: 0 16px 36px rgba(5,14,34,0.24);
    backdrop-filter: blur(12px);
    color: #ffffff;
    transition: transform 400ms ease, border-color 400ms ease;
}

.stw-award-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.3);
}

.stw-award-stat__icon {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.95), rgba(174,131,18,0.9));
    color: #0b1f4d;
    box-shadow: 0 8px 22px rgba(212,175,55,0.22);
}

.stw-award-stat strong {
    color: #f8e4a2;
    font-size: clamp(1.3rem, 2vw, 1.85rem);
    line-height: 1.1;
}

.stw-award-stat span {
    font-size: 0.96rem;
    font-weight: 600;
}

.stw-award-stat small {
    color: rgba(235,244,255,0.62);
    font-size: 0.8rem;
}

.stw-reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--stw-award-delay, 0ms);
    will-change: opacity, transform;
}

.stw-reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .stw-awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stw-awards-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .stw-awards-shell {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .stw-awards-title {
        flex-direction: column;
        gap: 0.5rem;
        font-size: clamp(1.7rem, 7vw, 2.4rem);
    }

    .stw-awards-grid,
    .stw-awards-stats {
        grid-template-columns: 1fr;
    }

    .stw-award-card__media {
        min-height: 240px;
    }

    .stw-award-card__media img {
        min-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-awards-section {
        animation: none;
    }

    .stw-award-card,
    .stw-reveal-up,
    .stw-award-card__media img {
        transition: none !important;
        animation: none !important;
    }

    .stw-award-card:hover {
        transform: none;
    }

    .stw-reveal-up {
        opacity: 1;
        transform: none;
    }

    .stw-awards-shape,
    .stw-awards-title {
        animation: none;
    }
}

.page-transition-ready {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.page-transition-ready.page-transition-enter {
    opacity: 1;
    transform: translateY(0);
}

body.stw-scrolled .stw-header {
    backdrop-filter: blur(11px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(18, 33, 61, 0.12);
    min-height: 76px;
}

body.stw-scrolled .stw-brand .logo-white,
body.stw-scrolled .stw-brand .logo-blue {
    height: 54px;
}

body.stw-scrolled .stw-header .navbar-nav .nav-link {
    padding-block: 0.48rem;
}

.stw-header.sticky-top .navbar-nav .nav-link,
.sticky-top.stw-header .navbar-nav .nav-link {
    padding: 0.48rem clamp(0.34rem, 0.68vw, 0.84rem) !important;
    font-size: clamp(0.77rem, 0.78vw, 0.91rem) !important;
}

.stw-header.sticky-top .stw-brand .logo-white,
.stw-header.sticky-top .stw-brand .logo-blue,
.sticky-top.stw-header .stw-brand .logo-white,
.sticky-top.stw-header .stw-brand .logo-blue {
    height: 54px !important;
    max-height: 54px !important;
}

body.stw-scrolled .stw-header-home .nav-link {
    color: #1d2a46 !important;
}

body:not(.stw-scrolled) .stw-header-home .nav-link {
    color: #1d2a46 !important;
}

body:not(.stw-scrolled) .stw-header-home .stw-brand-name {
    color: #1d2a46;
}

body:not(.stw-scrolled) .stw-header-home .stw-brand-tagline {
    color: rgba(27, 42, 67, 0.72);
}

body:not(.stw-scrolled) .stw-header-home .language-switcher .stw-lang-trigger,
body:not(.stw-scrolled) .stw-header-home .stw-wa-btn {
    color: var(--stw-brand-blue);
    border-color: rgba(23, 63, 138, 0.34);
    background: #ffffff;
}

body:not(.stw-scrolled) .stw-header-home .language-switcher .stw-lang-trigger:hover,
body:not(.stw-scrolled) .stw-header-home .language-switcher.is-open .stw-lang-trigger,
body:not(.stw-scrolled) .stw-header-home .stw-wa-btn:hover {
    color: #ffffff;
    background: var(--stw-brand-blue);
    border-color: var(--stw-brand-blue);
}

.stw-header .nav-link {
    transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.stw-header .nav-link:hover {
    transform: translateY(-1px);
}

.stw-header .navbar-collapse {
    transition: all 0.24s ease;
}

.enterprise-mega-title {
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.enterprise-mega-item-desc {
    line-height: 1.35;
}

html[dir="rtl"] .enterprise-mega-grid {
    direction: rtl;
}

html[dir="rtl"] .enterprise-mega-item-icon {
    transform: scaleX(-1);
}

.btn {
    position: relative;
    overflow: hidden;
}

.stw-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    transform: scale(0);
    animation: stwRipple 0.5s ease-out;
    pointer-events: none;
    will-change: transform, opacity;
}

@keyframes stwRipple {
    to {
        transform: scale(2.3);
        opacity: 0;
    }
}

.stw-field-focus {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

.stw-field-focus .form-control,
.stw-field-focus .form-select,
.stw-field-focus textarea {
    border-color: rgba(23, 63, 138, 0.42);
    box-shadow: 0 0 0 0.22rem rgba(23, 63, 138, 0.1);
}

.stw-reading-progress {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    z-index: 3001;
    background: rgba(23, 63, 138, 0.08);
}

.stw-reading-progress > span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #173f8a, #b99643);
    transition: width 0.1s linear;
    will-change: width;
}

.stw-contact-widget {
    position: fixed;
    right: 20px;
    bottom: 170px;
    z-index: 1500;
}

.stw-contact-toggle {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(140deg, #173f8a, #2f74da);
    box-shadow: 0 14px 28px rgba(15, 32, 67, 0.2);
}

.stw-contact-panel {
    display: none;
    margin-bottom: 0.55rem;
    background: #fff;
    border: 1px solid rgba(23, 63, 138, 0.12);
    border-radius: 12px;
    box-shadow: var(--stw-shadow);
    padding: 0.35rem;
}

.stw-contact-widget.is-open .stw-contact-panel {
    display: grid;
}

.stw-contact-panel a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #1f2f4a;
    text-decoration: none;
    padding: 0.34rem 0.5rem;
    border-radius: 8px;
    font-size: 0.82rem;
}

.stw-contact-panel a:hover {
    background: rgba(23, 63, 138, 0.07);
}

.stw-job-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.18rem 0.5rem;
    background: rgba(23, 63, 138, 0.11);
    color: #173f8a;
}

.stw-job-badge.urgent {
    background: rgba(185, 150, 67, 0.18);
    color: #6f4b00;
}

#jobCards.stw-list-view > div {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

#jobCards.stw-list-view .stw-job-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
}

.stw-skeleton-card {
    animation: stwPulse 1.2s ease-in-out infinite;
}

.stw-skeleton-line {
    height: 12px;
    border-radius: 999px;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #eef2f8 20%, #f7f9fc 45%, #eef2f8 70%);
}

.stw-skeleton-line.w-50 { width: 50%; }
.stw-skeleton-line.w-75 { width: 75%; }
.stw-skeleton-line.w-90 { width: 90%; }
.stw-skeleton-line.w-100 { width: 100%; }

@keyframes stwPulse {
    0%, 100% { opacity: 0.72; }
    50% { opacity: 1; }
}

.stw-mini-card {
    border: 1px solid rgba(23, 63, 138, 0.12);
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    background: #f9fbff;
}

.stw-mini-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #173f8a;
}

.stw-mini-card p {
    margin: 0;
    font-size: 0.8rem;
}

.stw-coverage-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.stw-coverage-copy {
    max-width: 34rem;
    color: #4c5872;
    font-size: 0.92rem;
}

.stw-coverage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: flex-start;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(23, 63, 138, 0.14);
    background: rgba(23, 63, 138, 0.06);
    color: #173f8a;
    font-size: 0.8rem;
    font-weight: 700;
}

.stw-coverage-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(23, 63, 138, 0.08);
    background: linear-gradient(135deg, #eef4ff 0%, #f9fbff 100%);
    padding: 1rem;
}

.stw-coverage-panel__route {
    border-radius: 14px;
    border: 1px solid rgba(23, 63, 138, 0.1);
    background: rgba(255, 255, 255, 0.78);
    padding: 0.9rem;
}

.stw-coverage-panel__route--accent {
    background: linear-gradient(160deg, #173f8a, #2f74da);
    color: #fff;
    box-shadow: 0 16px 28px rgba(23, 63, 138, 0.18);
}

.stw-coverage-panel__route--accent .stw-coverage-panel__label {
    color: rgba(255, 255, 255, 0.82);
}

.stw-coverage-panel__route p {
    font-size: 0.84rem;
    line-height: 1.55;
}

.stw-coverage-panel__label {
    display: block;
    margin-bottom: 0.65rem;
    color: #173f8a;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stw-coverage-panel__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.stw-coverage-panel__chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(23, 63, 138, 0.12);
    color: #173f8a;
    font-size: 0.75rem;
    font-weight: 600;
}

.stw-world-map {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(23, 63, 138, 0.1);
    background: radial-gradient(circle at 25% 35%, rgba(47, 116, 218, 0.16), transparent 34%),
        linear-gradient(180deg, #f8fbff, #eef3fb);
    min-height: 120px;
    overflow: hidden;
}

.stw-world-map .pin {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #173f8a;
    box-shadow: 0 0 0 8px rgba(23, 63, 138, 0.14);
    animation: stwPing 2.2s ease infinite;
}

.stw-world-map .pin-uae { top: 52%; left: 61%; }
.stw-world-map .pin-europe { top: 36%; left: 54%; animation-delay: 0.7s; }
.stw-world-map .pin-asia { top: 45%; left: 70%; animation-delay: 1.1s; }

@keyframes stwPing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.stw-final-cta {
    background: linear-gradient(160deg, #173f8a, #2f74da);
    color: #fff;
}

.stw-strength-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.stw-counter-grid--premium {
    gap: 0.8rem;
}

.stw-counter-grid--premium > div {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(23, 63, 138, 0.08);
}

.stw-counter-grid--premium > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.stw-strength-list {
    display: grid;
    gap: 0.65rem;
}

.stw-strength-list > div {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #173f8a;
}

.stw-strength-list i {
    width: 1.9rem;
    height: 1.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(23, 63, 138, 0.08);
    color: #173f8a;
}

.stw-final-cta h3,
.stw-final-cta p {
    color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--stw-gold);
    outline-offset: 2px;
}

@media (max-width: 991.98px) {
    .stw-header {
        background: #ffffff;
        min-height: 84px;
        flex-wrap: nowrap;
    }

    .stw-header .navbar-brand {
        max-width: calc(100% - 64px);
        min-width: 0;
    }

    .stw-header .navbar-toggler {
        margin-left: auto;
        flex: 0 0 auto;
    }

    .stw-brand .stw-brand-name {
        max-width: 220px;
        font-size: 1.29rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .stw-brand .stw-brand-tagline {
        display: none;
    }

    .stw-brand .logo-white,
    .stw-brand .logo-blue {
        height: 65px !important;
        max-height: 65px !important;
    }

    .stw-header .navbar-nav .nav-link {
        padding: 0.6rem 0.7rem;
        border-radius: 10px;
    }

    .stw-jobs-hero {
        grid-template-columns: 1fr;
    }

    .stw-sticky-apply {
        position: static;
    }

    .stw-hero-video {
        display: none;
    }

    .stw-contact-widget {
        right: 14px;
        bottom: 152px;
    }

    #jobCards.stw-list-view .stw-job-card {
        grid-template-columns: 1fr;
    }
}

/* Contact page: premium global offices section */
.stw-global-offices {
    position: relative;
    margin-top: 0.5rem;
    padding: clamp(1rem, 2vw, 1.7rem);
    border-radius: 24px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(240, 247, 255, 0.76));
    border: 1px solid rgba(23, 63, 138, 0.12);
    box-shadow: 0 24px 54px rgba(17, 40, 79, 0.12);
    backdrop-filter: blur(14px);
}

.stw-global-offices::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 15% 10%, rgba(47, 116, 218, 0.18), transparent 42%),
        radial-gradient(circle at 88% 88%, rgba(23, 63, 138, 0.12), transparent 36%);
    pointer-events: none;
}

.stw-global-offices > * {
    position: relative;
    z-index: 1;
}

.stw-global-offices-title-wrap {
    margin-bottom: 1.1rem;
    opacity: 0;
    transform: translateY(14px);
    animation: stwOfficeTitleFade 0.65s ease forwards;
}

.stw-global-offices-title {
    color: #123c85;
    font-size: clamp(1.5rem, 2.1vw, 2.05rem);
    letter-spacing: 0.01em;
    margin-bottom: 0.35rem;
}

.stw-office-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stw-office-grid .stw-office-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 1.35rem;
}

.stw-office-card {
    --stw-card-radius: 22px;
    position: relative;
    padding: 1rem;
    border-radius: var(--stw-card-radius);
    border: 1px solid rgba(23, 63, 138, 0.14);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(236, 245, 255, 0.84));
    box-shadow: 0 14px 34px rgba(16, 46, 95, 0.12);
    backdrop-filter: blur(10px);
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
    opacity: 0;
    transform: translateY(24px);
    animation: stwOfficeCardIn 0.65s ease forwards;
    animation-delay: var(--stw-delay, 0s);
    overflow: hidden;
}

.stw-office-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    transition: border-color 300ms ease;
    pointer-events: none;
}

.stw-office-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 24px 48px rgba(13, 42, 88, 0.18);
}

.stw-office-card:hover::before {
    border-color: rgba(47, 116, 218, 0.58);
}

.stw-office-card-featured {
    margin-bottom: 1rem;
    padding: 1.25rem;
    border-color: rgba(23, 63, 138, 0.22);
    box-shadow: 0 20px 46px rgba(14, 40, 84, 0.18);
}

.stw-office-card-featured .stw-office-meta {
    columns: 2;
    column-gap: 1rem;
}

.stw-office-head {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
}

.stw-office-grid .stw-office-head {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.8rem;
    text-align: center;
    margin-bottom: 0;
}

.stw-office-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.stw-office-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(140deg, #1b4ea2, #2f74da);
    box-shadow: 0 8px 20px rgba(23, 63, 138, 0.24);
    transition: transform 300ms ease;
}

.stw-office-card:hover .stw-office-icon {
    transform: rotate(-9deg);
}

.stw-office-name {
    color: #153f89;
    font-size: 1.12rem;
}

.stw-office-grid .stw-office-name {
    font-size: clamp(1.375rem, 1.9vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.35rem !important;
}

.stw-branch-office-copy {
    display: grid;
    justify-items: center;
    gap: 0.12rem;
}

.stw-branch-city {
    color: #193f85;
    font-size: clamp(1.125rem, 1.6vw, 1.25rem);
    font-weight: 600;
    line-height: 1.35;
}

.stw-branch-country {
    color: rgba(22, 49, 97, 0.78);
    font-size: clamp(0.95rem, 1.2vw, 1rem);
    font-weight: 500;
    line-height: 1.35;
}

.stw-office-type {
    color: rgba(22, 49, 97, 0.72);
    font-size: 0.88rem;
    font-weight: 600;
}

.stw-office-badge {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f3a82;
    background: rgba(47, 116, 218, 0.16);
    border: 1px solid rgba(47, 116, 218, 0.3);
}

.stw-office-meta {
    display: grid;
    gap: 0.44rem;
    margin-bottom: 0.95rem !important;
}

.stw-office-meta li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 0.5rem;
    align-items: start;
    font-size: 0.9rem;
    color: #23385d;
    break-inside: avoid;
}

.stw-office-meta li i {
    color: #1f64cb;
    margin-top: 0.18rem;
}

.stw-office-meta li a {
    color: #124291;
    text-decoration: none;
}

.stw-office-meta li a:hover {
    text-decoration: underline;
}

.stw-office-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.stw-office-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.stw-office-actions .btn:hover {
    transform: translateY(-2px);
}

.stw-office-map {
    margin-top: 1.1rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(23, 63, 138, 0.16);
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.92), rgba(230, 241, 255, 0.8));
    box-shadow: 0 16px 34px rgba(15, 42, 83, 0.12);
}

.stw-office-map-header h4 {
    color: #123f8a;
}

.stw-office-map-header p {
    color: rgba(20, 49, 94, 0.72);
}

.stw-office-map-tabs {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stw-office-map-tab {
    border: 1px solid rgba(23, 63, 138, 0.2);
    background: #ffffff;
    color: #143f8b;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 300ms ease;
}

.stw-office-map-tab:hover,
.stw-office-map-tab.is-active {
    color: #ffffff;
    background: linear-gradient(130deg, #1a4ea3, #2f74da);
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(23, 63, 138, 0.24);
}

.stw-office-map-points {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.stw-office-map-points span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(23, 63, 138, 0.2);
    color: rgba(24, 54, 102, 0.75);
    padding: 0.22rem 0.58rem;
    font-size: 0.76rem;
    transition: all 300ms ease;
}

.stw-office-map-points span.is-active {
    border-color: rgba(47, 116, 218, 0.52);
    color: #17438e;
    background: rgba(47, 116, 218, 0.12);
}

.stw-office-map-frame-wrap {
    margin-top: 0.85rem;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(23, 63, 138, 0.12);
}

#stwOfficeMapFrame {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

@keyframes stwOfficeTitleFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stwOfficeCardIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199.98px) {
    .stw-office-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stw-office-card-featured .stw-office-meta {
        columns: 1;
    }
}

@media (max-width: 767.98px) {
    .stw-global-offices {
        padding: 0.9rem;
        border-radius: 20px;
    }

    .stw-office-grid {
        grid-template-columns: 1fr;
    }

    .stw-office-grid .stw-office-card {
        min-height: 210px;
    }

    .stw-office-card,
    .stw-office-card-featured,
    .stw-office-map {
        border-radius: 20px;
    }

    .stw-office-head {
        grid-template-columns: auto auto 1fr;
    }

    .stw-office-badge {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 0.2rem;
    }

    #stwOfficeMapFrame {
        height: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stw-global-offices-title-wrap,
    .stw-office-card {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .stw-office-card,
    .stw-office-card::before,
    .stw-office-icon,
    .stw-office-actions .btn,
    .stw-office-map-tab,
    .stw-office-map-points span {
        transition: none !important;
    }
}

/* Our Team page: premium enterprise motion system */
.stw-team-page .hero-header.stw-team-hero {
    overflow: hidden;
}

.stw-team-page .stw-team-hero-content {
    position: relative;
}

.stw-team-page .stw-hero-fade-item {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition: opacity 520ms ease, transform 520ms ease;
    will-change: transform, opacity;
}

.stw-team-page .stw-team-hero-content.is-visible .stw-hero-fade-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.stw-team-page .stw-team-hero-content .stw-hero-fade-item:nth-child(2) {
    transition-delay: 90ms;
}

.stw-team-page .inner-page-content.stw-team-scene {
    position: relative;
    isolation: isolate;
    --stw-team-parallax-y: 0px;
}

.stw-team-page .inner-page-content.stw-team-scene::before,
.stw-team-page .inner-page-content.stw-team-scene::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.46;
    transform: translate3d(0, calc(var(--stw-team-parallax-y) * 0.5), 0);
    will-change: transform;
}

.stw-team-page .inner-page-content.stw-team-scene::before {
    width: 220px;
    height: 220px;
    top: 36px;
    inset-inline-start: -88px;
    background: radial-gradient(circle, rgba(47, 116, 218, 0.2) 0%, rgba(47, 116, 218, 0) 72%);
}

.stw-team-page .inner-page-content.stw-team-scene::after {
    width: 260px;
    height: 260px;
    bottom: 120px;
    inset-inline-end: -112px;
    background: radial-gradient(circle, rgba(23, 63, 138, 0.18) 0%, rgba(23, 63, 138, 0) 72%);
}

.stw-team-page .inner-page-content.stw-team-scene > * {
    position: relative;
    z-index: 1;
}

.stw-team-page .stw-reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 600ms ease, transform 600ms ease;
    transition-delay: var(--stw-reveal-delay, 0ms);
    will-change: transform, opacity;
}

.stw-team-page .stw-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.stw-team-page .stw-team-title-block .stw-title-underline {
    position: relative;
    display: inline-block;
}

.stw-team-page .stw-team-title-block .stw-title-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #173f8a, #2f74da, #0ea5b7);
    transform: scale3d(0, 1, 1);
    transform-origin: left center;
    transition: transform 540ms ease;
}

.stw-team-page[dir="rtl"] .stw-team-title-block .stw-title-underline::after,
html[dir="rtl"] .stw-team-page .stw-team-title-block .stw-title-underline::after {
    transform-origin: right center;
}

.stw-team-page .stw-team-title-block.is-visible .stw-title-underline::after {
    transform: scale3d(1, 1, 1);
}

.stw-team-page .team-horizontal-card,
.stw-team-page .team-org-node {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translate3d(0, 0, 0);
    transition: transform 300ms ease, box-shadow 300ms ease;
    will-change: transform;
}

.stw-team-page .team-horizontal-card > *,
.stw-team-page .team-org-node > * {
    position: relative;
    z-index: 1;
}

.stw-team-page .team-horizontal-card::before,
.stw-team-page .team-org-node::before {
    content: "";
    position: absolute;
    inset: -42%;
    background: conic-gradient(from 0deg, rgba(47, 116, 218, 0) 0deg, rgba(47, 116, 218, 0.9) 90deg, rgba(14, 165, 183, 0.7) 180deg, rgba(47, 116, 218, 0) 280deg);
    opacity: 0;
    transform: rotate(0deg) translateZ(0);
    transform-origin: center;
    transition: opacity 300ms ease;
    z-index: 0;
    pointer-events: none;
}

.stw-team-page .team-horizontal-card::after,
.stw-team-page .team-org-node::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
}

.stw-team-page .team-horizontal-card:hover,
.stw-team-page .team-org-node:hover {
    transform: translate3d(0, -12px, 0);
    box-shadow: 0 22px 52px rgba(17, 41, 86, 0.2);
}

.stw-team-page .team-horizontal-card:hover::before,
.stw-team-page .team-org-node:hover::before {
    opacity: 0.95;
    animation: stwTeamBorderSpin 4s linear infinite;
}

.stw-team-page .team-photo img,
.stw-team-page .team-org-photo img {
    transition: transform 300ms ease, box-shadow 300ms ease;
    will-change: transform;
}

.stw-team-page .team-photo,
.stw-team-page .team-org-photo {
    position: relative;
    border-radius: 14px;
}

.stw-team-page .team-org-photo {
    border-radius: 50%;
}

.stw-team-page .team-photo::after,
.stw-team-page .team-org-photo::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    border: 1px solid rgba(47, 116, 218, 0.35);
    box-shadow: 0 0 0 0 rgba(47, 116, 218, 0.22);
    transition: box-shadow 300ms ease;
    pointer-events: none;
}

.stw-team-page .stw-chairman-profile .team-photo img {
    border-radius: 20px;
    object-fit: cover;
    object-position: center 18%;
    box-shadow: 0 16px 34px rgba(17, 41, 86, 0.22);
}

.stw-team-page .stw-chairman-profile h3 {
    color: #173f8a;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.stw-team-page .stw-leadership-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.stw-team-page .stw-leadership-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(23, 63, 138, 0.18);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(238, 246, 255, 0.82));
    color: #173f8a;
    font-size: 0.84rem;
    font-weight: 600;
}

.stw-team-page .stw-leadership-highlights i {
    color: #c58a25;
}

.stw-team-page .stw-chairman-company-logo img {
    max-height: 70px;
    width: auto;
}

.stw-team-page .team-horizontal-card:hover .team-photo img,
.stw-team-page .team-org-node:hover .team-org-photo img {
    transform: scale3d(1.05, 1.05, 1);
}

.stw-team-page .team-horizontal-card:hover .team-photo::after,
.stw-team-page .team-org-node:hover .team-org-photo::after {
    box-shadow: 0 0 0 8px rgba(47, 116, 218, 0.14), 0 0 24px rgba(47, 116, 218, 0.28);
}

.stw-team-page .stw-team-stats {
    margin: 2rem 0 0.6rem;
}

.stw-team-page .stw-team-stat-card {
    height: 100%;
    border-radius: 18px;
    border: 1px solid rgba(23, 63, 138, 0.14);
    background: linear-gradient(175deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.86));
    padding: 1rem 0.9rem;
    box-shadow: 0 12px 28px rgba(17, 40, 79, 0.1);
    transition: transform 300ms ease, box-shadow 300ms ease;
    transform: translate3d(0, 0, 0);
}

.stw-team-page .stw-team-stat-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 18px 34px rgba(17, 40, 79, 0.16);
}

.stw-team-page .stw-team-stat-card strong {
    display: block;
    color: #173f8a;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1;
    margin-bottom: 0.45rem;
}

.stw-team-page .stw-team-stat-card span {
    display: block;
    font-size: 0.84rem;
    color: rgba(23, 32, 51, 0.78);
    line-height: 1.35;
}

.stw-team-page .stw-team-stat-card .arabic-text {
    margin-top: 0.2rem;
}

@keyframes stwTeamBorderSpin {
    from {
        transform: rotate(0deg) translateZ(0);
    }
    to {
        transform: rotate(360deg) translateZ(0);
    }
}

@media (max-width: 991.98px) {
    .stw-team-page .team-horizontal-card:hover,
    .stw-team-page .team-org-node:hover {
        transform: translate3d(0, -8px, 0);
    }

    .stw-team-page .inner-page-content.stw-team-scene::before {
        inset-inline-start: -120px;
    }

    .stw-team-page .inner-page-content.stw-team-scene::after {
        inset-inline-end: -140px;
    }
}

@media (max-width: 767.98px) {
    .stw-team-page .stw-leadership-team h2 {
        text-align: center;
    }

    .stw-team-page .stw-chairman-profile .stw-leadership-highlights {
        justify-content: center;
    }

    .stw-team-page .stw-chairman-company-logo {
        justify-content: center !important;
    }

    .stw-team-page .stw-team-stats {
        margin-top: 1.5rem;
    }

    .stw-team-page .stw-team-stat-card {
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stw-team-page .stw-hero-fade-item,
    .stw-team-page .stw-reveal,
    .stw-team-page .team-horizontal-card,
    .stw-team-page .team-org-node,
    .stw-team-page .team-photo img,
    .stw-team-page .team-org-photo img,
    .stw-team-page .stw-team-stat-card {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }

    .stw-team-page .stw-hero-fade-item,
    .stw-team-page .stw-reveal {
        opacity: 1 !important;
    }

    .stw-team-page .inner-page-content.stw-team-scene::before,
    .stw-team-page .inner-page-content.stw-team-scene::after,
    .stw-team-page .team-horizontal-card::before,
    .stw-team-page .team-org-node::before {
        display: none !important;
    }
}

/* Global UAE Pride showcase section above footer */
.stw-uae-pride {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.stw-uae-pride-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(23, 63, 138, 0.12);
    background:
        radial-gradient(circle at 86% 16%, rgba(47, 116, 218, 0.13), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f4f8ff 50%, #ffffff 100%);
    box-shadow: 0 18px 44px rgba(15, 33, 69, 0.1);
    padding: clamp(1rem, 2.4vw, 1.85rem);
}

.stw-uae-pride-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, rgba(23, 63, 138, 0.035) 1px, transparent 1px),
        linear-gradient(300deg, rgba(23, 63, 138, 0.03) 1px, transparent 1px);
    background-size: 28px 28px, 34px 34px;
    opacity: 0.22;
    pointer-events: none;
    animation: stwUaePatternDrift 20s linear infinite;
}

.stw-uae-pride-shell::after {
    content: "";
    position: absolute;
    inset-inline-end: -64px;
    top: -42px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(47, 116, 218, 0.12) 0%, rgba(47, 116, 218, 0) 68%);
    border-radius: 50%;
    pointer-events: none;
    animation: stwUaeBgPulse 14s ease-in-out infinite;
}

.stw-uae-pride-shell > .row {
    position: relative;
    z-index: 1;
}

.stw-uae-gold-line {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(185, 150, 67, 0.08) 0%, #b99643 35%, #efd08a 70%, rgba(185, 150, 67, 0.06) 100%);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 760ms ease;
}

html[dir="rtl"] .stw-uae-gold-line {
    transform-origin: right center;
}

.stw-uae-media {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(23, 63, 138, 0.12);
    box-shadow: 0 16px 36px rgba(14, 33, 67, 0.16);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.15) 20%, transparent 46%),
        linear-gradient(145deg, #e6effd 0%, #f9fbff 52%, #eaf3ff 100%);
    min-height: clamp(250px, 30vw, 360px);
    opacity: 0;
    transform: translate3d(-34px, 0, 0);
    transition: opacity 620ms ease, transform 620ms ease;
    will-change: transform, opacity;
}

.stw-uae-flag-stage {
    position: relative;
    width: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    perspective: 900px;
    perspective-origin: 18% 50%;
}

.stw-uae-flag-pole {
    position: absolute;
    inset-inline-start: 24px;
    top: 14px;
    width: 8px;
    height: calc(100% - 28px);
    border-radius: 999px;
    background: linear-gradient(180deg, #e8edf6 0%, #b7c4dc 32%, #7d90b1 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 4px 12px rgba(10, 24, 48, 0.14);
}

.stw-uae-flag-shadow {
    position: absolute;
    inset-inline-start: 52px;
    top: 50%;
    width: 70%;
    height: 62%;
    transform: translateY(-50%);
    border-radius: 20px;
    background: radial-gradient(circle at 30% 50%, rgba(15, 35, 74, 0.16) 0%, rgba(15, 35, 74, 0.08) 42%, rgba(15, 35, 74, 0) 72%);
    filter: blur(14px);
    opacity: 0.72;
    animation: stwUaeShadowSway 3.4s ease-in-out infinite;
}

.stw-uae-flag {
    position: relative;
    width: min(100%, 330px);
    aspect-ratio: 5 / 3;
    margin-inline-start: 42px;
    border-radius: 10px 18px 18px 10px;
    overflow: hidden;
    box-shadow: 0 18px 32px rgba(12, 30, 61, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    transform-origin: 16% 50%;
    animation: stwUaeFlagWave 4.2s ease-in-out infinite;
    will-change: transform;
    filter: drop-shadow(0 10px 16px rgba(12, 30, 61, 0.12));
    background: #ffffff;
}

.stw-uae-flag-band,
.stw-uae-flag-bands {
    position: absolute;
    top: 0;
    bottom: 0;
}

.stw-uae-flag-band {
    display: block;
}

.stw-uae-flag-band--red {
    inset-inline-start: 0;
    width: 24%;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 28%),
        linear-gradient(180deg, #e12634 0%, #cc1a28 50%, #a70f1d 100%);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.28);
}

.stw-uae-flag-bands {
    inset-inline-start: 24%;
    width: 76%;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
}

.stw-uae-flag-bands > .stw-uae-flag-band {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
}

.stw-uae-flag-band--green {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, #1aa24f 0%, #0f8f43 100%);
}

.stw-uae-flag-band--white {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
}

.stw-uae-flag-band--black {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 28%),
        linear-gradient(180deg, #141414 0%, #000000 100%);
}

.stw-uae-flag-gloss,
.stw-uae-flag-fabric {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stw-uae-flag-gloss {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.1) 18%, rgba(255, 255, 255, 0) 40%);
    mix-blend-mode: screen;
    opacity: 0.72;
    animation: stwUaeGlossSweep 4.4s ease-in-out infinite;
}

.stw-uae-flag-fabric {
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 22%),
        radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 24%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 6px, rgba(0, 0, 0, 0.075) 6px 12px);
    opacity: 0.22;
    mix-blend-mode: soft-light;
    animation: stwUaeFabricRipples 4.2s ease-in-out infinite;
}

@keyframes stwUaeFlagWave {
    0%,
    100% {
        transform: translate3d(0, 0, 0) perspective(900px) rotateY(0deg) skewY(0deg) scaleY(1);
    }
    20% {
        transform: translate3d(0, -1px, 0) perspective(900px) rotateY(-7deg) skewY(-0.6deg) scaleY(1.01);
    }
    40% {
        transform: translate3d(0, 1px, 0) perspective(900px) rotateY(6deg) skewY(0.5deg) scaleY(0.995);
    }
    60% {
        transform: translate3d(0, -1px, 0) perspective(900px) rotateY(-5deg) skewY(-0.4deg) scaleY(1.008);
    }
    80% {
        transform: translate3d(0, 0, 0) perspective(900px) rotateY(4deg) skewY(0.3deg) scaleY(0.998);
    }
}

@keyframes stwUaeGlossSweep {
    0%,
    100% {
        transform: translateX(-16%);
    }
    50% {
        transform: translateX(16%);
    }
}

@keyframes stwUaeFabricRipples {
    0%,
    100% {
        opacity: 0.18;
        transform: translateX(0);
    }
    50% {
        opacity: 0.26;
        transform: translateX(10px);
    }
}

.stw-uae-content {
    opacity: 0;
    transform: translate3d(34px, 0, 0);
    transition: opacity 620ms ease, transform 620ms ease;
    will-change: transform, opacity;
}

.stw-uae-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.36rem 0.76rem;
    border: 1px solid rgba(23, 63, 138, 0.16);
    background: rgba(23, 63, 138, 0.06);
    color: #123f8a;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.stw-uae-title {
    color: #0f2f66;
    font-size: clamp(1.42rem, 2.2vw, 2.02rem);
    line-height: 1.25;
    font-weight: 700;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity 540ms ease, transform 540ms ease;
}

.stw-uae-copy {
    color: rgba(23, 32, 51, 0.82);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.72;
    max-width: 780px;
    margin-top: 0.85rem;
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition: opacity 540ms ease, transform 540ms ease;
}

.stw-uae-btn {
    margin-top: 1rem;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.58rem 1.18rem;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    transition: opacity 520ms ease, transform 520ms ease;
}

.stw-uae-pride-reveal {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 640ms ease, transform 640ms ease;
    will-change: transform, opacity;
}

.stw-uae-pride-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.stw-uae-pride-reveal.is-visible .stw-uae-gold-line {
    transform: scaleX(1);
}

.stw-uae-pride-reveal.is-visible .stw-uae-media {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.stw-uae-pride-reveal.is-visible .stw-uae-content {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.stw-uae-pride-reveal.is-visible .stw-uae-title {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 100ms;
}

.stw-uae-pride-reveal.is-visible .stw-uae-copy {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 240ms;
}

.stw-uae-pride-reveal.is-visible .stw-uae-btn {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 360ms;
}

@keyframes stwUaePatternDrift {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 140px 0, -140px 0;
    }
}

@keyframes stwUaeBgPulse {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate3d(-8px, 8px, 0) scale(1.04);
        opacity: 0.8;
    }
}

@keyframes stwUaeFlagWave {
    0%,
    100% {
        transform: translate3d(0, 0, 0) skewY(0deg) perspective(900px) rotateY(0deg) scaleY(1);
    }
    20% {
        transform: translate3d(0, 0, 0) skewY(-1.3deg) perspective(900px) rotateY(-11deg) scaleY(1.01);
    }
    40% {
        transform: translate3d(0, -1px, 0) skewY(1.2deg) perspective(900px) rotateY(9deg) scaleY(0.995);
    }
    60% {
        transform: translate3d(0, 1px, 0) skewY(-0.9deg) perspective(900px) rotateY(-7deg) scaleY(1.008);
    }
    80% {
        transform: translate3d(0, 0, 0) skewY(0.8deg) perspective(900px) rotateY(5deg) scaleY(0.998);
    }
}

@keyframes stwUaeFabricRipples {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, 0, 0) scale(1.015);
    }
}

@keyframes stwUaeGlossSweep {
    0%,
    100% {
        transform: translateX(-8%);
        opacity: 0.68;
    }
    50% {
        transform: translateX(8%);
        opacity: 0.92;
    }
}

@keyframes stwUaeShadowSway {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(6px);
    }
}

@media (max-width: 991.98px) {
    .stw-uae-media {
        min-height: 230px;
    }

    .stw-uae-content {
        transform: translate3d(0, 22px, 0);
    }
}

@media (max-width: 575.98px) {
    .stw-uae-pride-shell {
        border-radius: 18px;
    }

    .stw-uae-media {
        border-radius: 18px;
        min-height: 208px;
    }

    .stw-uae-title {
        font-size: clamp(1.2rem, 6vw, 1.48rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .stw-uae-pride-shell::before,
    .stw-uae-pride-shell::after,
    .stw-uae-pride-reveal,
    .stw-uae-media,
    .stw-uae-content,
    .stw-uae-title,
    .stw-uae-copy,
    .stw-uae-btn,
    .stw-uae-gold-line,
    .stw-uae-flag,
    .stw-uae-flag-shadow,
    .stw-uae-flag-gloss,
    .stw-uae-flag-fabric {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .stw-uae-pride-reveal,
    .stw-uae-media,
    .stw-uae-content,
    .stw-uae-title,
    .stw-uae-copy,
    .stw-uae-btn {
        opacity: 1 !important;
    }

    .stw-uae-gold-line {
        transform: scaleX(1) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-transition-ready,
    .page-transition-ready.page-transition-enter,
    .stw-ripple,
    .stw-skeleton-card,
    .stw-world-map .pin,
    .stw-global-offices-title-wrap,
    .stw-office-card,
    .stw-demand-overlay,
    .stw-demand-popup,
    .stw-demand-benefit,
    .stw-demand-fact,
    .stw-demand-btn,
    .stw-header .nav-link,
    .stw-header .navbar-collapse {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    html {
        scroll-behavior: auto !important;
    }
}
/* ===== GLOBAL AUDIT IMPROVEMENTS ===== */

/* --- Button consistency --- */
.btn {
    min-height: 42px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.btn.btn-sm {
    min-height: 34px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.btn.btn-lg {
    min-height: 52px;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.btn:focus-visible {
    outline: 2px solid var(--primary, #1565C0);
    outline-offset: 3px;
    box-shadow: none;
}

/* --- Social icon buttons: always perfect circles, never stretch --- */
.btn-square,
.btn-sm-square,
.btn-lg-square {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
}

/* --- Prevent about-section social row from breaking on mobile --- */
.stw-about-social-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.stw-about-social-icons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* --- Section breathing space --- */
section.py-5,
.container-fluid.py-5 {
    padding-top: clamp(2.5rem, 5vw, 5rem) !important;
    padding-bottom: clamp(2.5rem, 5vw, 5rem) !important;
}

/* --- Heading hierarchy consistency --- */
h1 { line-height: 1.15; }
h2 { line-height: 1.2; }
h3 { line-height: 1.25; }
h4, h5, h6 { line-height: 1.3; }

p {
    line-height: 1.75;
}

/* --- Images: prevent stretching globally --- */
img {
    max-width: 100%;
    height: auto;
}

/* --- No horizontal overflow on any element --- */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* --- Footer social icons fix --- */
.footer .btn.btn-social {
    flex-shrink: 0;
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
}

/* --- Responsive: ensure cards and grids never overflow viewport --- */
@media (max-width: 576px) {
    .btn-square { width: 36px; height: 36px; }
    .btn-sm-square { width: 30px; height: 30px; }
    .btn-lg-square { width: 44px; height: 44px; }

    .container, .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
    h3 { font-size: clamp(1.1rem, 5vw, 1.6rem); }
}

/* --- Ultrawide: cap content width --- */
@media (min-width: 1920px) {
    .container {
        max-width: 1480px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 1800px;
    }
}

/* --- Award cards: no click cursor, keep hover animations --- */
.stw-award-card {
    cursor: default !important;
}

/* Individual card hover: lift + soft glow */
.stw-award-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 32px 64px rgba(0,0,0,0.38);
}
