@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Roboto:wght@400;500;700;900&display=swap');

html,
body,
body * {
    font-family: 'Tajawal', sans-serif !important;
}

.brand-en,
.brand-en * {
    font-family: 'Roboto', sans-serif !important;
}

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

html {
    scroll-behavior: smooth;
}

.feat-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8f5f5, #C7DDE1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.feat-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--teal);
    flex-shrink: 0;
}

:root {
    --teal: #007F80;
    --teal-dark: #006375;
    --teal-light: #e8f6f6;
    --teal-mid: rgba(0, 127, 128, 0.1);
    --teal-glow: rgba(0, 127, 128, 0.28);
    --ink: #05141f;
    --text: #0d2b2e;
    --muted: #5a8a8e;
    --border: rgba(0, 99, 117, 0.1);
    --white: #ffffff;

    --bg-white: #ffffff;
    --bg-pale: #f2f8f8;

    --header-h: 68px;
}

body {
    background: var(--bg-white);
    color: var(--text);
    direction: rtl;
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow .3s;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 99, 117, 0.08);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-left: 10px;
}

.header-logo img {
    height: 24px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    transition: background .2s, color .2s;
}

.nav-link:hover,
.nav-link.active {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.nav-link .chevron {
    width: 14px;
    height: 14px;
    transition: transform .25s;
    opacity: .5;
    flex-shrink: 0;
}

.nav-item.open .nav-link .chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-switcher a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.lang-switcher a:hover {
    color: var(--teal);
}

.lang-switcher span {
    opacity: .4;
}

.btn-demo {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-light);
}

.simple-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 99, 117, .1);
    min-width: 180px;
    padding: 8px;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
    z-index: 999;
}

.nav-item.open .simple-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.simple-dropdown a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: background .15s;
}

.simple-dropdown a:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
}


.mega-backdrop {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(13, 43, 46, .15);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.mega-backdrop.visible {
    opacity: 1;
    pointer-events: all;
}


.mega-wrapper {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
}

.mega-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h));
    background: white;
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: all .25s ease;
    overflow-y: auto;
}

.mega-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    max-height: 600px;
}

.mega-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100%;
}

.mega-tabs {
    background: #f7fbfb;
    border-left: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-tab-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    text-align: right;
    transition: all .2s;
    border-right: 3px solid transparent;
    width: 100%;
}

.mega-tab-btn:hover {
    color: var(--text);
    background: var(--teal-light);
}

.mega-tab-btn.active {
    color: var(--teal-dark);
    background: white;
    border-right-color: var(--teal);
    font-weight: 800;
}

.mega-tab-btn .tab-arrow {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity .2s;
    color: var(--teal);
    flex-shrink: 0;
}

.mega-tab-btn.active .tab-arrow {
    opacity: 1;
}

.mega-content {
    padding: 28px 32px;
    background: white;
    overflow: hidden;
}

.mega-panel {
    display: none;
    animation: panelIn .2s ease;
}

.mega-panel.active {
    display: block;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateX(-6px);
    }

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

.mega-panel-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-panel-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sol-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .2s ease;
}

.sol-card:hover {
    background: var(--teal-light);
    border-color: rgba(0, 127, 128, .15);
    transform: translateY(-1px);
}

.sol-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.sol-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 3px;
}

.sol-desc {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
}

.sol-icon.blue {
    background: #e8f0fe;
}

.sol-icon.teal {
    background: var(--teal-light);
}

.sol-icon.orange {
    background: #fff3e8;
}

.sol-icon.purple {
    background: #f0eaff;
}

.sol-icon.green {
    background: #e8f8ef;
}

.sol-icon.red {
    background: #fce8ea;
}

.sol-icon.yellow {
    background: #fffae8;
}

.sol-icon.pink {
    background: #fce8f5;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.ind-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .18s;
}

.ind-item:hover {
    background: var(--teal-light);
    border-color: rgba(0, 127, 128, .12);
}

.ind-icon {
    font-size: 18px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.ind-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.mega-footer {
    grid-column: 1/-1;
    border-top: 1px solid var(--border);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f7fbfb;
}

.mega-footer-tag {
    font-size: 12px;
    color: var(--muted);
}

.mega-footer-tag strong {
    color: var(--teal-dark);
}


#hero-sticky-wrapper {
    position: relative;
    height: calc(100vh - var(--header-h));
}

#slider {
    position: sticky;
    top: var(--header-h);
    width: 100%;
    height: calc(100vh - var(--header-h));
    min-height: 520px;
    background: #f5fcfc;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
}

#scroll-content {
    position: relative;
    z-index: 10;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
    box-shadow: 0 -28px 60px rgba(5, 20, 31, 0.18);
    background: var(--bg-white);
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
}

.hero-text {
    animation: fadeUpAnim .75s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-h1 {
    font-size: clamp(32px, 3.6vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    color: #0d2b33;
    margin-bottom: 16px;
    padding-top: 102px;
    letter-spacing: -0.025em;
}

.hero-h1 .hl {
    color: #006375 !important;
}

.hero-p {
    font-size: 15.5px;
    color: #006375;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 380px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #006375;
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    padding: 15px 34px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(0, 99, 117, .28);
    transition: background .2s, transform .2s, box-shadow .2s;
}

.hero-cta:hover {
    background: #004f5e;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 99, 117, .36);
    color: #fff;
    text-decoration: none;
}

.cta-arrow {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.dots {
    position: absolute;
    bottom: 36px;
    left: 44px;
    width: 108px;
    height: 108px;
    background-image: radial-gradient(rgba(0, 99, 117, .2) 1.5px, transparent 1.5px);
    background-size: 13px 13px;
    pointer-events: none;
}

.hero-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInSlide .85s cubic-bezier(.16, 1, .3, 1) .1s both;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-18px);
    }

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

.circle-wrap {
    position: relative;
    width: min(420px, 42vw);
    aspect-ratio: 1/1;
}

.circle-ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 99, 117, .18);
    animation: spin 28s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.circle-glow {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 99, 117, .12) 0%, transparent 70%);
    pointer-events: none;
}

.circle-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 20px 60px rgba(0, 99, 117, .18), 0 4px 16px rgba(0, 0, 0, .08);
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 23%;
    display: block;
}

.hero-waves {
    position: absolute;
    inset: -60px;
    pointer-events: none;
    overflow: visible;
}

.ring-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #006375;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 99, 117, .4);
}

.ring-dot-1 {
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.ring-dot-2 {
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.ring-dot-3 {
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
}


.section-wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
    flex-shrink: 0;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: 56px;
}

.wave-to-pale path {
    fill: var(--bg-pale);
}

.wave-to-white path {
    fill: var(--bg-white);
}

.wave-to-hero path {
    fill: #e8f2f4;
}


.hero-section2 {
    background: var(--bg-white);
    overflow: hidden;
    position: relative;
}

.hero2-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 50% -5%, rgba(0, 127, 128, .06) 0%, transparent 65%),
        radial-gradient(ellipse 45% 40% at 8% 100%, rgba(199, 221, 225, .24) 0%, transparent 60%);
}

.hero2-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 127, 128, .12) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
    opacity: .18;
}

.hero2-inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 54px 24px 26px;
    text-align: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 127, 128, .07);
    border: 1px solid rgba(0, 127, 128, .18);
    color: var(--teal);
    padding: 7px 18px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 1.1rem;
    animation: fadeDown .7s ease both;
}

.hero-pill-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.hero2-h1 {
    font-size: clamp(1.85rem, 3.6vw, 3.05rem);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin-bottom: .85rem;
    color: #0d1f1f;
}

.hero2-h1 .line-accent {
    display: inline-block;
    margin-right: 6px;
    color: var(--teal) !important;
}

.hero2-sub {
    font-size: clamp(.98rem, 1.45vw, 1.08rem);
    font-weight: 400;
    color: #4b6060;
    line-height: 1.9;
    max-width: 720px;
    margin: 0 auto 1.4rem;
}

.hero2-sub strong {
    color: #0d4040;
    font-weight: 800;
}

.hero-btns {
    display: flex;
    gap: .9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
    border: 2px solid var(--teal);
    padding: 13px 30px;
    border-radius: 100px;
    font-size: .98rem;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all .25s ease;
    box-shadow: 0 10px 28px rgba(0, 127, 128, .18);
}

.btn-primary:hover {
    background: #005f60;
    border-color: #005f60;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 127, 128, .25);
    color: #fff;
    text-decoration: none;
}

.btn-ghost {
    background: #fff;
    color: var(--teal);
    border: 2px solid rgba(0, 127, 128, .45);
    padding: 13px 30px;
    border-radius: 100px;
    font-size: .98rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all .25s ease;
}

.btn-ghost:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-stats-section {
    position: relative;
    z-index: 2;
    padding: 34px 0 54px;
    background: var(--bg-pale);
}

.hero-stats-head {
    margin: 0 auto 1.6rem;
    max-width: 900px;
    text-align: center;
    padding: 0 18px;
}

.hero-stats-title {
    font-size: clamp(1.35rem, 2.3vw, 1.85rem);
    font-weight: 900;
    color: #05141f;
    margin-bottom: .55rem;
}

.hero-stats-sub {
    font-size: 1.03rem;
    line-height: 1.85;
    color: #4b6060;
    max-width: 780px;
    margin: 0 auto;
}

.hero-mockup {
    position: relative;
    animation: fadeUpAnim .9s ease .25s both;
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.mockup-frame {
    background: #fff;
    border: 1.5px solid #deedf0;
    border-radius: 20px;
    padding: 12px 12px 0;
    box-shadow: 0 40px 100px rgba(0, 127, 128, .12), 0 12px 30px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 10px;
}

.mockup-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) {
    background: #ff5f57;
}

.mockup-dot:nth-child(2) {
    background: #febc2e;
}

.mockup-dot:nth-child(3) {
    background: #28c840;
}

.mockup-screen {
    background: #f4f9fa;
    border-radius: 8px 8px 0 0;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mockup-placeholder {
    width: 100%;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .95rem;
}

.mock-card {
    background: #fff;
    border: 1.5px solid #d0e8ea;
    border-radius: 14px;
    padding: 1.05rem;
    text-align: right;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.mock-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 127, 128, .35);
    box-shadow: 0 18px 40px rgba(0, 127, 128, .10);
}

.mock-card-num {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--teal);
}

.mock-card-label {
    font-size: .76rem;
    color: #6b7280;
    margin-top: 6px;
}

.mock-bar {
    height: 5px;
    background: #e8f3f4;
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
}

.mock-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--teal);
}

.mockup-glow {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    height: 90px;
    background: radial-gradient(ellipse, rgba(0, 127, 128, .16) 0%, transparent 70%);
    filter: blur(14px);
    pointer-events: none;
}


.section {
    padding: 4.5rem 2rem;
    margin: auto;
}

.section-light {
    background: var(--bg-white);
}

.section-pale {
    background: var(--bg-pale);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.sec-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sec-tag {
    display: inline-block;
    background: rgba(0, 127, 128, .1);
    border: 1px solid rgba(0, 127, 128, .22);
    color: var(--teal);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}

.sec-title {
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: .7rem;
}

.sec-sub {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

.sec-sub-light {
    color: #6b7280;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 1.5rem;
}

.feat-card {
    background: #fff;
    border: 1.5px solid #deedf0;
    border-radius: 20px;
    padding: 2.05rem 1.9rem;
    position: relative;
    overflow: hidden;
    transition: all .28s ease;
}

.feat-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #C7DDE1, #007F80);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .32s ease;
}

.feat-card:hover {
    border-color: rgba(0, 127, 128, .3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 127, 128, .12);
}

.feat-card:hover::after {
    transform: scaleX(1);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8f5f5, #C7DDE1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.feat-card h3 {
    font-size: 1.06rem;
    font-weight: 900;
    color: #05141f;
    margin-bottom: .5rem;
}

.feat-card p {
    font-size: .88rem;
    color: #6b7280;
    line-height: 1.75;
}

.feat-benefit {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-top: 1rem;
    font-size: .92rem;
    color: #005f60;
    font-weight: 800;
    line-height: 1.55;
}

.feat-benefit::before {
    content: "";
    width: 64px;
    height: 25px;
    margin-left: 8px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23007F80' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23007F80' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.sectors-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.2rem;
    align-items: center;
}

.sectors-img {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #deedf0;
    aspect-ratio: 4/3;
    background: #C7DDE1;
    box-shadow: 0 20px 60px rgba(0, 127, 128, .15);
}

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

.sectors-img-badge {
    position: absolute;
    bottom: -29px;
    right: -20px;
    background: var(--teal);
    color: #fff;
    border-radius: 16px;
    padding: 1rem 1.4rem;
    box-shadow: 0 12px 30px rgba(0, 127, 128, .4);
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.4;
}

.sectors-img-badge span {
    font-size: 1.4rem;
    font-weight: 900;
    display: block;
}

.sectors-content h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: #05141f;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.sectors-content>p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.sectors-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
}

.sectors-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .91rem;
    color: #374151;
    font-weight: 600;
}

.sectors-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}


.app-tray {
    background: #C7DDE1;
    border-radius: 24px;
    padding: 44px 28px 36px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 8px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    cursor: pointer;
    min-width: 105px;
    opacity: 0;
    transform: translateY(28px) scale(.88);
    animation: appPop .6s cubic-bezier(.34, 1.58, .64, 1) forwards;
}

@keyframes appPop {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.app-icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    overflow: hidden;
    filter: drop-shadow(0 5px 14px rgba(0, 0, 0, .24));
    transition: transform .38s cubic-bezier(.34, 1.58, .64, 1), filter .28s ease;
}

.app-item:hover .app-icon-wrap {
    transform: translateY(-9px) scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .32));
}

.app-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-label {
    font-size: .86rem;
    font-weight: 700;
    color: #1a3838;
    text-align: center;
    line-height: 1.4;
    transition: color .22s;
}

.app-item:hover .app-label {
    color: #005f60;
}


.clients-section {
    background: var(--bg-white);
    padding: 80px 32px 60px;
}

.clients-header {
    text-align: center;
    margin-bottom: 40px;
}

.clients-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 10px;
}

.clients-title em {
    color: var(--teal);
    font-style: italic;
}

.clients-sub {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.7;
}

.counter-bar {
    display: flex;
    justify-content: center;
    background: #e8f6f6;
    border: 1px solid rgba(0, 127, 128, .18);
    border-radius: 18px;
    overflow: hidden;
    max-width: 580px;
    margin: 0 auto 50px;
}

.counter-item {
    flex: 1;
    text-align: center;
    padding: 28px 40px;
    position: relative;
}

.counter-item+.counter-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: rgba(0, 127, 128, .18);
}

.site-footer-new {
    background: #006375;
    color: rgba(255, 255, 255, 0.80);
    direction: rtl;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-links-group {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-brand img,
.footer-logo-text {
    height: 30px;
    width: auto;
    margin-bottom: 16px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 900;
    color: white;
    line-height: 30px;
    filter: none;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.60);
    max-width: 260px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all .22s ease;
}

.footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.footer-social-btn svg {
    width: 17px;
    height: 17px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 560px) {
    .footer-links-group {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    margin-bottom: 11px;
    transition: color .2s;
    line-height: 1.4;
}

.footer-col a:hover {
    color: white;
}

.footer-contact-item {
    display: flex !important;
    align-items: center;
    gap: 9px;
}

.footer-contact-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.55;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 22px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.40);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    margin-top: 0;
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.40);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links span {
    opacity: 0.3;
}


.counter-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #006375;
    line-height: 1;
    display: block;
    transition: transform .1s ease;
}

.counter-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 7px;
    display: block;
    font-weight: 600;
}

.featured-label {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.featured-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 740px;
    margin: 0 auto 44px;
}

.featured-card {
    background: #fff;
    border: 1.5px solid rgba(0, 99, 117, .1);
    border-radius: 14px;
    padding: 24px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 99, 117, .04);
    transition: transform .25s, box-shadow .25s;
}

.featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 127, 128, .1);
}

.featured-card img {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: opacity .5s ease, transform .5s ease;
}

.featured-card img.swapping {
    opacity: 0;
    transform: scale(0.88);
}

.tier-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tier-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 127, 128, .18) 50%, transparent);
}

.tier-divider-text {
    font-size: 1rem;
    font-weight: 700;
    color: #3a6060;
    letter-spacing: .04em;
    white-space: nowrap;
}

.ticker-wrapper {
    position: relative;
    overflow: hidden;
}

.ticker-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.ticker-fade-right {
    right: 0;
    background: linear-gradient(to left, #fff 35%, rgba(255, 255, 255, 0));
}

.ticker-fade-left {
    left: 0;
    background: linear-gradient(to right, #fff 35%, rgba(255, 255, 255, 0));
}

.ticker-track {
    display: flex;
    will-change: transform;
    direction: ltr;
    gap: 14px;
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    min-width: 150px;
    height: 78px;
    background: #fff;
    border: 1px solid rgba(0, 127, 128, .09);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
    flex-shrink: 0;
}

.ticker-item img {
    max-width: 140px !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}


.testimonials-section {
    background: var(--bg-pale);
    padding: 80px 0 90px;
    overflow: hidden;
    position: relative;
}

.t-header {
    text-align: center;
    padding: 0 32px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.t-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    border: 1px solid rgba(0, 127, 128, .2);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.t-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: blink 2s ease-in-out infinite;
}

.t-title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
}

.t-title em {
    font-style: italic;
    color: var(--teal);
    font-weight: 700;
}

.t-track-wrap {
    position: relative;
}

.t-fade-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, var(--bg-pale), transparent);
    z-index: 2;
    pointer-events: none;
}

.t-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, var(--bg-pale), transparent);
    z-index: 2;
    pointer-events: none;
}

.t-track {
    display: flex;
    gap: 20px;
    padding: 12px 48px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    justify-content: center;
}

.t-track::-webkit-scrollbar {
    display: none;
}

.t-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: white;
    border-radius: 20px;
    padding: 28px 26px 24px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0, 99, 117, .05);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}

.t-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s ease;
}

.t-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 99, 117, .12);
}

.t-card:hover::before {
    transform: scaleX(1);
}

.t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.t-stars span {
    color: #f59e0b;
    font-size: 15px;
}

.t-quote-mark {
    font-size: 52px;
    line-height: .7;
    color: var(--teal);
    opacity: .15;
    margin-bottom: 8px;
    display: block;
}

.t-text {
    font-size: 14px;
    line-height: 1.8;
    color: #3a6568;
    flex: 1;
    margin-bottom: 24px;
}

.t-sep {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.t-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    border: 2px solid var(--teal-light);
}

.t-author-info {
    flex: 1;
}

.t-author-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.t-author-title {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.t-company-logo {
    height: 60px;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(.2) opacity(.9);
    transition: filter .3s;
}

.t-card:hover .t-company-logo {
    filter: grayscale(0) opacity(1);
}

.t-logo-placeholder {
    height: 32px;
    min-width: 64px;
    background: var(--teal-light);
    border: 1px solid rgba(0, 127, 128, .2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--teal-dark);
    letter-spacing: .03em;
    padding: 0 10px;
}

.t-arrows {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.t-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 127, 128, .25);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 2px 8px rgba(0, 99, 117, .06);
}

.t-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
    transition: stroke .2s;
}

.t-arrow:hover {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 127, 128, .3);
}

.t-arrow:hover svg {
    stroke: white;
}

.t-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 127, 128, .2);
    cursor: pointer;
    transition: all .3s;
}

.t-dot.active {
    background: var(--teal);
    width: 24px;
    border-radius: 4px;
}

@media (max-width:899px) {
    .t-arrows {
        display: flex !important;
    }

    .t-dots {
        display: flex !important;
    }

    .t-card {
        flex: 0 0 300px;
    }

    .t-fade-left,
    .t-fade-right {
        display: none;
    }
}

@media (min-width:900px) {
    .t-track {
        overflow-x: visible;
        flex-wrap: nowrap;
        padding: 12px 32px 20px;
    }
}

.cta-section {
    background: var(--bg-white);
    padding: 3.5rem 1.5rem;
}

.cta-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.cta-card {
    width: min(920px, 100%);
    background: linear-gradient(150deg, #e4f6f7 0%, #c8eaec 45%, #a8d8dc 100%);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 26px;
    padding: 2.8rem 2.5rem;
    text-align: center;
    box-shadow: 0 26px 70px rgba(0, 127, 128, .22);
    position: relative;
    overflow: hidden;
}

.cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .10) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .10;
    pointer-events: none;
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(0, 127, 128, .3);
    color: #006375;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 1.1rem;
}

.cta-title {
    font-size: clamp(1.55rem, 3.2vw, 2.25rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: .8rem;
    color: #0d2b2e;
}

.cta-title span {
    display: block;
    font-size: clamp(1rem, 2.1vw, 1.25rem);
    font-weight: 700;
    color: #006375;
    margin-top: .35rem;
}

.cta-desc {
    max-width: 760px;
    margin: 0 auto 1.6rem;
    font-size: 1.03rem;
    line-height: 1.85;
    color: #3a6060;
}

.cta-btns {
    display: flex;
    gap: .9rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #007F80;
    color: #fff;
    border: 2px solid #007F80;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .98rem;
    text-decoration: none;
    display: inline-block;
    transition: transform .2s, box-shadow .2s, background .2s;
    box-shadow: 0 10px 26px rgba(0, 127, 128, .25);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    background: #005f60;
    border-color: #005f60;
    box-shadow: 0 16px 34px rgba(0, 127, 128, .3);
    text-decoration: none;
    color: #fff;
}

.btn-cta-ghost {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(0, 127, 128, .5);
    color: #005f60;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .98rem;
    text-decoration: none;
    display: inline-block;
    transition: all .25s ease;
}

.btn-cta-ghost:hover {
    background: #007F80;
    color: #fff;
    border-color: #007F80;
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #4a7070;
    font-weight: 600;
}

.trust-item span {
    color: var(--teal);
    font-weight: 800;
}


@keyframes fadeUpAnim {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

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

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}




@media (max-width:768px) {
    .sectors-wrap {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .sectors-list {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-item {
        padding: 20px 22px;
    }

    .counter-num {
        font-size: 1.7rem;
    }

    .mockup-placeholder {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:720px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 60px 28px 40px;
        gap: 36px;
    }

    #slider {
        height: calc(100vh - var(--header-h));
        max-height: none;
        min-height: 480px;
    }

    #hero-sticky-wrapper {
        height: calc(100vh - var(--header-h));
    }

    .hero-text {
        text-align: center;
    }

    .hero-p {
        margin: 0 auto 32px;
    }

    .circle-wrap {
        width: min(280px, 70vw);
    }

    .dots {
        display: none;
    }

    #scroll-content {
        border-radius: 18px 18px 0 0;
    }
}

@media (max-width:520px) {
    .mockup-placeholder {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 2rem 1.3rem;
        border-radius: 22px;
    }
}

::selection {
    background: #007F80;
    color: #ffffff;
}

::-moz-selection {
    background: #007F80;
    color: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Tajawal, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    color: #05141f;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

:root {
    --teal: #007F80;
    --teal-dark: #006375;
    --border: rgba(0, 99, 117, 0.15);
    --shadow: 0 12px 30px rgba(0, 0, 0, .12);
    --bg: #fff;
    --surface: #ffffff;
    --muted: #5a8a8e;
}

.mega-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
    z-index: 998;
}

.mega-backdrop.visible {
    opacity: 1;
    visibility: visible;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.header-logo img {
    height: 24px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 10px 10px;
    border-radius: 10px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: #0d2b2e;
    font-weight: 600;
    font-size: 14px;
}

.nav-link:hover {
    background: rgba(0, 127, 128, .08);
}

.nav-link.active {
    background: rgba(0, 127, 128, .12);
    color: var(--teal-dark);
}

.chevron {
    width: 16px;
    height: 16px;
    opacity: .9;
}

.simple-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: .18s ease;
    z-index: 1000;
}

.nav-item.open .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-dropdown a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 14px;
}

.simple-dropdown a:hover {
    background: rgba(0, 127, 128, .08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
}

.lang-switcher a {
    color: var(--teal-dark);
    font-weight: 600;
}

.btn-demo.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--teal-dark);
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 13px;
}

.btn-demo.btn-outline:hover {
    background: rgba(0, 127, 128, .08);
}

.mega-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 150;
}

.mega-backdrop.visible {
    display: block;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    background: #fff;
    z-index: 200;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e4eaf0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 5;
}

.mobile-title {
    font-size: 17px;
    font-weight: 900;
    color: #006375;
    font-family: 'Tajawal', sans-serif;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #5a6a74;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1;
}

.mobile-nav {
    padding: 12px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'Tajawal', sans-serif;
}

.m-link {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    color: #2d3a42;
    text-decoration: none;
    border-radius: 8px;
}

.m-link:hover {
    background: #f0f9fb;
    color: #006375;
}

.m-accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #2d3a42;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    text-align: right;
}

.m-accordion.open,
.m-accordion:hover {
    background: #f0f9fb;
    color: #006375;
}

.m-chev {
    font-size: 16px;
    transition: transform 0.2s;
    display: inline-block;
}

.m-accordion.open .m-chev {
    transform: rotate(180deg);
}

.m-panel {
    display: none;
    padding: 4px 0 4px 16px;
    flex-direction: column;
    gap: 1px;
}

.m-panel.open {
    display: flex;
}

.m-sublink {
    display: block;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #5a6a74;
    text-decoration: none;
    border-radius: 6px;
}

.m-sublink:hover {
    background: #f0f9fb;
    color: #006375;
}

.mobile-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e4eaf0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    font-size: 13px;
    color: #5a6a74;
    align-items: center;
}

.lang-switcher a {
    color: #006375;
    text-decoration: none;
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2d3a42;
    border-radius: 2px;
    transition: all 0.25s;
}

@media (max-width: 980px) {
    .header-inner {
        display: grid !important;
        grid-template-columns: 40px 1fr 40px !important;
        align-items: center !important;
        padding: 0 16px !important;
        gap: 0 !important;
    }

    .header-logo {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hamburger {
        grid-column: 1 !important;
        grid-row: 1 !important;
        justify-self: start !important;
        align-self: center !important;
        display: flex !important;
        margin: 0 !important;
    }

    .header-nav,
    .header-actions {
        display: none !important;
    }
}

.site-header,
#siteHeader,
.header-wrap,
.sticky-header,
.sticky-top {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    z-index: auto !important;
    transform: none !important;
}

html,
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.sol-icon svg,
.ind-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--teal, #007F80);
    flex-shrink: 0;
}

.ind-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--teal-light, #e8f6f6);
    flex-shrink: 0;
}


.sol-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--teal-light, #e8f6f6);
    flex-shrink: 0;
}

#gotoTop {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(103, 58, 183, 0.35);
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease;
    pointer-events: none;
}

#gotoTop.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#gotoTop:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 14px 32px rgba(103, 58, 183, 0.45);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--teal);
}


#gotoTop:active {
    transform: scale(0.95);
}