@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
    --base-100: #2e2e2e;
    --base-200: #4e4e4e;
    --base-300: #f5f5f5;
    --accent: #D47328;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: "Host Grotesk", sans-serif;
    background-color: var(--base-300);
    color: var(--base-100);
    overflow-x: clip;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

::selection {
    background-color: rgba(212, 115, 40, 0.25);
    color: var(--base-100);
}

::-moz-selection {
    background-color: rgba(212, 115, 40, 0.25);
    color: var(--base-100);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--base-300);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 115, 40, 0.4);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D47328;
}

.top-logo {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    text-decoration: none;
}

.menu-btn {
    position: fixed;
    bottom: clamp(1.5rem, 5vw, 2.5rem);
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 20000 !important;
    transition: opacity 0.4s ease;
    transform: none !important;
    will-change: bottom;
}

.btn {
    pointer-events: auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    padding: clamp(0.35rem, 1vw, 0.5rem) clamp(0.35rem, 1vw, 0.5rem) clamp(0.35rem, 1vw, 0.5rem) clamp(1rem, 3vw, 2rem);
    border-radius: 4rem;
    background-color: var(--white);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.4s ease, border-color 0.4s ease;
    cursor: none;
    width: max-content;
    text-decoration: none;
    will-change: transform;
}

.btn-icon {
    width: clamp(2.2rem, 5vw, 2.8rem);
    height: clamp(2.2rem, 5vw, 2.8rem);
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    will-change: transform;
}

.btn-icon ion-icon {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--white);
    --ionicon-stroke-width: 32px;
}

.btn-label {
    overflow: hidden;
    height: clamp(1.4rem, 2.5vw, 1.8rem);
    display: flex;
    align-items: center;
}

.btn-label span {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    display: inline-block;
    line-height: normal;
}

.menu-btn.active .btn {
    background-color: var(--base-300);
    color: var(--base-100);
    border-color: rgba(0, 0, 0, 0.08);
}

.btn:hover {
    background-color: var(--base-300);
    border-color: var(--accent) !important;
    transform: scale(1.05);
    cursor: none !important;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background-color: #363636;
    z-index: 10000;
    display: flex;
    padding: 1rem;
    gap: 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    pointer-events: none;
}

.menu-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3.5rem;
    padding: 2.5rem 0 2.5rem 1.5rem;
    color: #ffffff;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.menu-link-item {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-link-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-link-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(1.2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    padding: 0.35em 0;
    transform: translateY(110%);
    transition: color 0.3s ease, letter-spacing 0.4s ease;
    position: relative;
}

.menu-link-item a:hover {
    color: var(--accent);
    letter-spacing: -0.02em;
}

.menu-link-item a sup {
    position: absolute;
    left: 10px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: clamp(1rem, 2.2vw, 2rem);
    font-weight: 500;
    opacity: 0.6;
    letter-spacing: 0.1rem;
    top: 50%;
    transform: translateY(-50%);
}

.menu-brand {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.menu-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 115, 40, 0.2);
}

.menu-right {
    flex: 0.75;
    border-radius: 3rem;
    overflow: hidden;
    background: #222;
}

@media (max-width: 900px) {
    .menu-right {
        flex: 0.5;
        border-radius: 2rem;
    }

    .menu-link-item a {
        padding: 0.6em 0;
    }

    .menu-left {
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .menu-overlay {
        padding: 0;
        gap: 0;
        height: 100%;
    }

    .menu-right {
        display: none;
    }

    .menu-left {
        flex: 1;
        padding: 3rem 1.5rem 8rem;
        justify-content: space-between;
        height: 100%;
    }

    .menu-brand {
        margin-bottom: 0;
    }

    .menu-links {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .menu-link-item a {
        font-size: clamp(1.4rem, 8vw, 2.5rem);
        padding: 0.8em 0;
    }
}

.banner-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 1.5rem;
    border-radius: 3.5rem;
    background-color: var(--base-100);
}

.banner-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(24, 23, 23, 0.4) 0%, rgba(24, 23, 23, 0.9) 100%);
    z-index: 1;
}

.banner-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    width: 100%;
}

.banner-content {
    max-width: 800px;
    transform: translateY(-3rem);
}

@keyframes dot-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.5;
    }
}

.banner-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 6vw, 6.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    word-break: keep-all;
}

.banner-desc {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--base-300);
    opacity: 0.8;
    max-width: 600px;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.banner-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-accent {
    position: relative;
    padding: 1.2rem 3rem;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(212, 115, 40, 0.15);
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-accent:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 115, 40, 0.25);
}

.btn-accent:hover::before {
    left: 100%;
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    right: 8%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--base-300);
    opacity: 0.4;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@media (max-width: 1024px) {
    .scroll-hint {
        display: none !important;
    }
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--base-300), transparent);
    animation: scroll-pulse 2.2s infinite ease-in-out;
}

@keyframes scroll-pulse {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.horizontal-scroll-section {
    position: relative;
    width: 100%;
    background-color: var(--base-300);
}

.scroll-pin-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: -2.5px;
}

.scroll-intro-pinned {
    flex-shrink: 0;
    width: 35vw;
    height: 100%;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--base-100);
    color: var(--accent);
    border-radius: 0 5rem 5rem 0;
    position: relative;
    z-index: 5;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.15);
}

.scroll-intro-pinned h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--base-300);
}

.scroll-intro-pinned p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 300px;
    color: var(--base-300);
}

.scroll-intro-pinned .small-label {
    display: inline-block;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.horizontal-scroll-container {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 10vw;
    gap: 4rem;
    will-change: transform;
}

.h-service-card {
    flex-shrink: 0;
    width: 650px;
    height: 85vh;
    min-height: 700px;
    background-color: var(--base-100);
    border-radius: 3rem;
    padding: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.h-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.h-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.h-service-card:hover .h-card-image img,
.h-service-card.mobile-active .h-card-image img {
    transform: scale(1.1);
}

.h-num {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
    z-index: 10;
    line-height: 1;
}

.h-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    backdrop-filter: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 3rem 3rem 0 0;
    max-height: 100%;
    overflow: hidden;
}

.h-card-description {
    width: 100%;
    overflow-y: auto;
    flex: 1;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    padding-right: 5px;
}

.h-card-description::-webkit-scrollbar {
    display: none;
}

.h-service-card:hover .h-card-content,
.h-service-card.mobile-active .h-card-content {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    height: auto;
    padding-top: 5rem;
}

.h-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    color: #ffffff !important;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    flex: 0 0 auto;
}

.h-card-description,
.h-card-list {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.h-card-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.h-card-list li {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    background: rgba(212, 115, 40, 0.1);
    color: var(--accent);
    border-radius: 2rem;
    font-weight: 500;
}

.split-why-section {
    background-color: var(--base-100);
    color: var(--white);
    position: relative;
    padding: 10rem 4rem;
    margin-top: -100px;
    border-radius: 6rem 6rem 0 0;
    z-index: 10;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 10vw;
}

.split-left {
    flex: 1;
}

.split-sticky-content {
    position: sticky;
    top: 15vh;
}

.split-sticky-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.split-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.75;
    max-width: 450px;
}

.split-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.split-card {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.split-media {
    flex-shrink: 0;
    width: 280px;
    height: 380px;
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.split-card:hover .split-media img {
    transform: scale(1.1);
}

.split-content {
    flex: 1;
}

.split-card:last-child {
    border-bottom: none;
}

.split-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-weight: 600 !important;
}

.split-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.split-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.7;
}

.split-card:hover {
    transform: translateX(20px);
}

@media (max-width: 1200px) {
    .split-media {
        width: 220px;
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
        gap: 4rem;
    }

    .split-sticky-content {
        position: relative;
        top: 0;
    }

    .split-right {
        gap: 4rem;
    }

    .split-card {
        flex-direction: column;
        gap: 2rem;
        padding-bottom: 2.5rem;
    }

    .split-media {
        width: 100%;
        height: 250px;
    }

    .split-why-section {
        margin-top: 0;
        padding: 4rem 2rem 6rem;
        border-radius: 4rem 4rem 0 0;
    }

    .horizontal-scroll-section {
        overflow: hidden;
        padding-bottom: 3rem;
    }

    .scroll-pin-wrapper {
        flex-direction: column;
        height: auto;
        overflow: visible;
        display: flex;
    }

    .scroll-intro-pinned {
        width: 100%;
        height: auto;
        flex: 0 0 auto;
        border-right: none;
        padding: 2.5rem 1.5rem 2rem;
        box-shadow: none;
        border-radius: 0 0 3rem 3rem;
        z-index: 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .scroll-intro-pinned h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .scroll-intro-pinned p {
        display: block !important;
        font-size: 0.85rem !important;
        opacity: 0.75;
        max-width: 90%;
        line-height: 1.5;
    }

    .horizontal-scroll-container {
        padding: 1.5rem;
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 2rem;
        display: flex;
        transform: none !important;
    }

    .scroll-intro-pinned h2 br {
        display: none;
    }

    .h-service-card {
        width: 100%;
        max-width: 400px;
        flex: 0 0 auto;
        height: 450px;
        min-height: auto;
        max-height: none;
    }

    .h-num {
        top: 1.5rem;
        left: 1.5rem;
        font-size: 2.5rem;
    }

    .h-card-content {
        padding: 1.5rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
        max-height: 80%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .h-card-description {
        overflow-y: auto;
        flex: 1;
        scrollbar-width: none;
        margin-bottom: 2.5rem;
    }

    .h-card-description::-webkit-scrollbar {
        display: none;
    }

    .h-card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
        flex: 0 0 auto;
    }

    .h-card-content p {
        font-size: 0.85rem;
        line-height: 1.35;
        margin-bottom: 1rem;
    }

    .h-learn-more {
        flex: 0 0 auto;
    }

    .h-service-card.mobile-active .h-card-content {
        backdrop-filter: blur(12px);
        background: rgba(0, 0, 0, 0.6);
        padding-top: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .why-bento {
        grid-template-columns: 1fr;
    }

    .card-span-6,
    .card-span-4,
    .card-span-8 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .banner-section {
        margin: 0;
        border-radius: 0;
        min-height: 90vh;
        padding-top: 3rem;
        padding-bottom: 2rem;
        justify-content: center;
    }

    .banner-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateY(-4rem);
    }

    .banner-headline {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .banner-desc {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .banner-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 0 1rem;
    }

    .split-why-section {
        padding: 6rem 1.5rem 8rem;
    }
}




:root {
    --base-100: #2e2e2e;
    --base-200: #4e4e4e;
    --base-300: #f5f5f5;
    --em-accent: #D47328;
    --section-pad: 8rem;
    --container-pad: 6%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--base-300);
    color: var(--base-100);
    overflow-x: hidden;
    direction: rtl;
}

.menu-link-item-ar {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-link-item-ar:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-link-item-ar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(1.2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    padding: 0.35em 0;
    transform: translateY(110%);
    transition: color 0.3s ease, letter-spacing 0.4s ease;
    position: relative;
}

.menu-link-item-ar a:hover {
    color: var(--accent);
    letter-spacing: -0.02em;
}

.menu-link-item-ar a sup {
    position: absolute;
    right: 10px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: clamp(1rem, 2.2vw, 2rem);
    font-weight: 500;
    opacity: 0.6;
    letter-spacing: 0.1rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .menu-link-item-ar a {
        padding: 0.6em 0;
    }

    .menu-link-item-ar a {
        font-size: clamp(1.4rem, 8vw, 2.5rem);
        padding: 0.8em 0;
    }
}

.split-why-section {
    padding-bottom: 7rem !important;
}

@media (hover: hover) and (pointer: fine) {

    body,
    body * {
        cursor: none !important;
    }
}

@media (hover: none) {

    body,
    body * {
        cursor: none !important;
    }
}

.reveal-info,
.reveal-form {
    opacity: 1;
}

html,
body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--nw-b300);
    color: var(--nw-b100);
    direction: rtl;
}

@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .menu-overlay {
        padding: 0 !important;
        gap: 0 !important;
        height: 100%;
    }

    .banner-section {
        margin: 0;
        border-radius: 0;
        min-height: 90vh;
        padding-top: 3rem;
        padding-bottom: 2rem;
        justify-content: center;
    }

    .banner-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateY(-4rem);
    }

    .banner-headline {
        font-size: clamp(1rem, 10vw, 6.5rem);
        font-weight: 500;
        line-height: 1.1;
        color: var(--white);
        margin-bottom: 1rem;
        word-break: keep-all;
    }

    .split-why-section {
        padding: 6rem 1.5rem 8rem;
    }

    .form-row {
        flex-direction: column;
        gap: 2.5rem;
    }
}

body,
html,
button,
input,
textarea,
p,
h1,
h2,
h3,
h4,
span,
a,
li {
    font-family: 'Tajawal', 'Host Grotesk', sans-serif !important;
}

body,
html {
    direction: rtl;
    text-align: right;
}

em,
i {
    font-style: normal !important;
}

.scroll-hint {
    left: 5%;
    right: auto;
}

@media (max-width: 768px) {
    .scroll-hint {
        left: 20px;
        right: auto;
    }
}

.h-card-content {
    text-align: center;
}

.split-content {
    text-align: right;
}

.split-sticky-content {
    text-align: right;
}

.banner-content {
    text-align: right;
}

.scroll-intro-pinned {
    border-radius: 5rem 0 0 5rem;
}

@media (max-width: 1024px) {
    .scroll-intro-pinned {
        border-radius: 0 0 3rem 3rem !important;
    }
}

.h-learn-more {
    align-self: flex-end;
}

.h-learn-more:hover {
    transform: translateX(-5px) scaleX(1) !important;
}

.h-learn-more:hover ion-icon {
    transform: translateX(-4px) scaleX(1) !important;
}


.h-card-content .btn { align-self: flex-end; }

