
@font-face {
    font-family: 'Tenor Sans', sans-serif;
    src: url('fonts/Tenor_Sans/OFL.txt') format('txt'),
    url('fonts/Tenor_Sans/TenorSans-Regular.ttf') format('ttf')
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('fonts/Plus_Jakarta_Sans/OFL.txt') format('txt'),
        url('fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf') format('ttf')
}
@font-face {
    font-family: 'jost', sans-serif;
    src: url('fonts/Jost/OFL.txt') format('txt'),
        url('fonts/Jost/Jost-VariableFont_wght.ttf') format('ttf')
}
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    transition: 0.5s;
}
html {
    scroll-behavior: smooth;
}
:root {
    --special-text-color: #e0e0b6;
    --main-color: #F5EFE6;
    --light-black: #0a0a0a;
}
body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    transition: 0.5s;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    user-select: none; 
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    &.no-scroll {
        overflow: hidden;
    }
    &::-webkit-scrollbar {
        width: 2px;
        border-radius: 20px;
    }
    &::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        width: 2px;
        margin-right: 2px;
        background-color: transparent;
        border-radius: 20px;
    }
    &::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid slategrey;
        width: 2px;
        margin-right: 2px;
        border-radius: 40px;
    }
    &::-webkit-scrollbar-thumb:hover {
        background-color: rgb(202, 202, 202);
    }
    &::-webkit-scrollbar-thumb:active {
        background-color: rgb(227, 227, 227);
    }
}
div {
    &::-webkit-scrollbar {
        width: 4px;
        border-radius: 20px;
    }
    &::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        width: 4px;
        margin-right: 2px;
        background-color: transparent;
        border-radius: 20px;
    }
    &::-webkit-scrollbar-thumb {
        background-color: black;
        outline: 1px solid slategrey;
        width: 4px;
        border-radius: 40px;
    }
    &::-webkit-scrollbar-thumb:hover {
        background-color: rgb(90, 90, 90);
    }
    &::-webkit-scrollbar-thumb:active {
        background-color: rgb(120, 120, 120);
    }
}
p {
    font-family: 'Jost', sans-serif;
}
::selection {
    color: #000;
    background-color: #fff9cd;
}
a {
    text-decoration: none;
    cursor: pointer;
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
}
.container {
    padding-top: 4.5%;
    padding-bottom: 4.5%;
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
    @media (max-width: 1024px) {
        padding-top: 4%;
        padding-bottom: 4%;
        padding-left: 5%;
        padding-right: 5%;
    }
    @media (max-width: 767px) {
        padding-top: 10%;
        padding-bottom: 7%;
        padding-left: 5%;
        padding-right: 5%;
    }
    &.top-bottom {
        padding-top: 0;
        padding-bottom: 0;
    }
    &.top {
        padding-top: 0;
    }
    &.bottom {
        padding-bottom: 0;
    }
    .inside {
        margin: 0 auto;
        max-width: 1180px;
    }
}
/* Header */
header {
    background-color: #fff;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 0 20px -10px #0000007d;
    @media screen and (max-width: 1260px) {
        height: 75px;
    }
    @media screen and (max-width: 991px) {
        height: 70px;
    }
    @media screen and (max-width: 767px) {
        height: 60px;
    }
    &.home {
        background-color: transparent;
        box-shadow: none;
        .header-container {
            nav {
                ul {
                    li {
                        a {
                            color: #fff;
                            &::after {
                                content: '';
                                position: absolute;
                                top: 50%;
                                height: 0;
                                width: 0;
                                border-radius: 20px;
                                background-color: #333333;
                                transition: 0.5s;
                                z-index: -1;
                            }
                        }
                        &.logo {
                            &.white-logo {
                                display: block;
                            }
                            &.black-logo {
                                display: none;
                            }
                        }
                    }
                    &.mobile-ul {
                        li {
                            a {
                                color: #000000;
                            }
                        }
                    }
                }
                .hamburger-icon {
                    span {
                        background-color: #fff;
                    }
                }
            }
        }
        &.scroll {
            background-color: #FFFFFF;
            box-shadow: 0 0 20px -10px #0000007d;
            .header-container {
                nav {
                    ul {
                        li {
                            a {
                                color: #000000;
                                    &::after {
                                    content: '';
                                    position: absolute;
                                    top: 50%;
                                    height: 0;
                                    width: 0;
                                    border-radius: 20px;
                                    background-color: #d7d7d7;
                                    transition: 0.5s;
                                    z-index: -1;
                                }
                            }
                            &.logo {
                                &.white-logo {
                                    display: none;
                                }
                                &.black-logo {
                                    display: block;
                                }
                            }
                            &:hover {
                                a::after {
                                    top: -50%;
                                    height: 200%;
                                    width: 140%;
                                }
                            }
                        }
                    }
                    .hamburger-icon {
                        span {
                            background-color: #000000;
                        }
                    }
                }
            }
        }
        &.toggled {
            @media (max-width: 991px) {
                background-color: #fff;
                .hamburger-icon {
                    span {
                        background-color: #000000 !important;
                    }
                }
                ul.main-ul {
                    li {
                        &.logo {
                            &.white-logo {
                                display: none;
                            }
                            &.black-logo {
                                display: block;
                            }
                        }
                    }
                }
                ul {
                    li {
                        a {
                            &::after {
                                content: '';
                                position: absolute;
                                top: 50%;
                                height: 0;
                                width: 0;
                                border-radius: 20px;
                                background-color:  #d7d7d7;
                                transition: 0.5s;
                                z-index: -1;
                            }
                        }
                    }
                }
            }
        }
    }
    &.scrolled-header {
        box-shadow: none ;
        &.scroll {
            box-shadow: 0 0 20px -10px #0000007d;
        }
    }
    .header-container {
        height: 100%;
        width: 100%;
        position: relative;
        padding: 20px 0;
        @media screen and (max-width: 1260px) {
            padding: 15px 0;
        }
        @media screen and (max-width: 991px) {
            width: 90%;
            margin: 0 auto;
            padding: 10px 0;
        }
        nav {
            height: 100%;
            @media screen and (max-width: 991px) {
                display: flex;
            }
            .mobile-ul {
                display: none;
                flex-direction: column;
                position: fixed;
                z-index: 999;
                left: 0;
                top: 69px;
                background-color: #fff;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 0;
                padding-top: 50px;
                padding-bottom: 50px;
                height: max-content;
                li {
                    height: max-content;
                    width: 90%;
                    margin: 0 auto;
                    text-align: left;
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    padding: 18px 0;
                    a {
                        font-size: 18px;
                        font-weight: 400;
                    }
                }
                @media screen and (max-width: 991px) {
                    display: none;
                    &.opened {
                        display: flex;
                    }
                }
                @media screen and (max-width: 767px) {
                    top: 49px;
                }
            }
            ul {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                gap: 25px;
                @media screen and (max-width: 991px) {
                    justify-content: flex-end;
                    &.main-ul {
                        li {
                            &.li-pages {
                                display: none;
                            }
                        }
                    }
                }
                li {
                    margin: 0 1px;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    a {
                        position: relative;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: var(--light-black);
                        text-transform: uppercase;
                        letter-spacing: 1px;
                        font-size: 13px;
                        font-weight: 500;
                        transition: 0.5s;
                        z-index: 1;
                        &::after {
                            content: '';
                            position: absolute;
                            top: 50%;
                            height: 0;
                            width: 0;
                            border-radius: 20px;
                            background-color: #d7d7d7;
                            transition: 0.5s;
                            z-index: -1;
                        }
                        &.main-link {
                            color: #FFF;
                            &::after {
                                background-color: var(--light-black);
                                top: -50%;
                                height: 200%;
                                width: 140%;
                            }
                        }
                    }
                    &:hover {
                        a::after {
                            top: -50%;
                            height: 200%;
                            width: 140%;
                        }
                    }
                    &.logo {
                        user-select: none;
                        margin: 0 1px;
                        width: max-content;
                        height: 100%;
                        direction: ltr;
                        text-transform: uppercase;
                        cursor: default;
                        font-size: 24px;
                        font-weight: 700;
                        height: 100%;
                        direction: ltr;
                        @media screen and (max-width: 991px) {
                            font-size: 16px;
                            margin-right: 0;
                            margin-left: -30px;
                            html:lang(ar) & {
                                font-size: 16px;
                                margin-right: -30px;
                                margin-left: 0;
                            }
                        }
                        &::selection {
                            background-color: transparent;
                            color: #000;
                        }
                        &::after {
                            content: '';
                            display: none;
                        }
                        img {
                            width: auto;
                            height: 100%;
                            @media screen and (max-width: 767px) {
                                width: auto;
                                height: 100%;
                            }
                        }
                        a {
                            padding:  0;
                            margin: 0;
                            margin: 0 1px;
                            width: max-content;
                            height: 100%;
                            direction: ltr;
                            text-transform: uppercase;
                            cursor: pointer !important;
                            font-size: 24px;
                            font-weight: 700;
                            height: 100%;
                            direction: ltr;
                            user-select: none;
                            &::selection {
                                background-color: transparent;
                                color: #000;
                            }
                            @media screen and (max-width: 991px) {
                                html:lang(en) & {
                                    font-size: 16px;
                                    margin-right: 0;
                                    margin-left: -30px;
                                }
                                html:lang(ar) & {
                                    font-size: 16px;
                                    margin-right: -30px;
                                    margin-left: 0;
                                }
                            }
                            &::after {
                                content: '';
                                display: none;
                            }
                            &.main-link {
                                color: #fff;
                            }
                        }
                    }
                }
            }
            .hamburger-icon {
                display: none;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 5px;
                cursor: pointer;
                position: relative;
                padding: 15px;
                @media screen and (max-width: 991px) {
                    display: flex;
                }
                span {
                    width: 22px;
                    height: 2px;
                    border-radius: 12px;
                    background-color: var(--light-black);
                    transition: 0.5s;
                    position: absolute;
                    left: 0 ;
                    html[lang="ar"] & {
                        left: auto;
                        right: 0;
                    }
                    &.top {
                        top: calc(50% - 7px);
                        &.opened {
                            transform: rotate(45deg);
                            top: 50%;
                        }
                    }
                    &.middle {
                        top: 50%;
                        width: 17px;
                        &.opened {
                            width: 0;
                        }
                    }
                    &.bottom {
                        top: calc(50% + 7px);
                        width: 10px;
                        &.opened {
                            transform: rotate(-45deg);
                            width: 22px;
                            top: 50%;
                        }
                    }
                }
            }
        }
    }
}
/* Footer */
footer {
    position: relative;
    .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1;
        video {
            width: 100%;
            min-width: 100%;
            height: 100%;
            min-height: 100%;
            object-fit: cover;
        }
        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #180300;
            opacity: 0.48;
            transition: all 0.3s;
        }
    }
    .container {
        .inside  {
            .parent {
                display: flex;
                align-items: center;
                gap: 10px;
                margin: 0 auto;
                @media (max-width: 1024px) {
                    flex-wrap: wrap;
                    justify-content: center;
                }
                .child {
                    width: 33.33333333%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    .box {
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        gap: 8px;
                    }
                    &.title {
                        @media (max-width: 1024px) {
                            width: 100%;
                            min-height: auto;
                            padding: 0;
                            margin: 0;
                        }
                        .box {
                            align-items: flex-start;
                            padding: 36px 0px 20px 0px;
                            margin: 0% 10% 0% 0%;
                            gap: 0;
                            @media (max-width: 1024px) {
                                width: 100%;
                                border-top: none;
                                align-items: center;
                                margin: 0;
                                padding: 0;
                                padding-bottom: 22px;
                            }
                            h1 {
                                font-family: 'Plus Jakarta Sans';
                                color: #FFFFFF;
                                font-size: 70px;
                                font-weight: 800;
                                line-height: 1em;
                                letter-spacing: -0.04em;
                                margin: 0;
                                padding: 0;
                                padding-bottom: 12px;
                                html[dir="rtl"] & {
                                    font-family: 'jost', sans-serif;
                                }
                                @media (max-width: 1024px) {
                                    font-size: 44px;
                                    text-align: center;
                                }
                                @media (max-width: 767px) {
                                    font-size: 30px;
                                }
                            }
                        }
                    }
                    &.location {
                        @media (max-width: 1024px) {
                            width: 50%;
                        }
                        @media (max-width: 768px) {
                            width: 100%;
                            min-height: auto;
                        }
                        .box {
                            padding: 015% 10% 15% 10%;
                            @media (max-width: 768px) {
                                width: 100%;
                                padding: 5% 5% 5% 5%;;
                            }
                            h3.country-name {
                                color: #FFFFFF;
                                font-size: 28px;
                                font-weight: 400;
                                line-height: 1;
                                padding: 0;
                                margin: 0;
                                @media screen and (min-width: 992px) {
                                    font-size: 28px;
                                }
                                @media screen and (min-width: 768px) {
                                    font-size: 24px;
                                }
                            }
                            a {
                                text-decoration: none;
                                &.home-title {
                                    color: #FFFFFFB8;
                                    font-size: 15px;
                                    line-height: 1.5em;
                                    text-align: center;
                                }
                                &.phone-number {
                                    margin-top: 30px;
                                    color: #FFFFFFB8;
                                    line-height: 1;
                                    font-size: 18px;
                                    direction: ltr;
                                    @media (max-width: 768px) {
                                        font-size: 16px;
                                    }
                                }
                                &.e-mail {
                                    color: #FFFFFFB8;
                                    line-height: 1;
                                    font-size: 18px;
                                    margin-bottom: 20px;
                                    direction: ltr;
                                    @media (max-width: 768px) {
                                        font-size: 16px;
                                    }
                                }
                            }
                        }
                    }
                }
                .separator {
                    width: 1px;
                    min-height: 250px;
                    background-color: #FFFFFF70;
                    display: inline-block;
                    @media (max-width: 767px) {
                        width: 100%;
                        min-height: 1px;
                    }
                }
                .all {
                    width: calc(100% - 33.3333%);
                    display: flex;
                    border-radius: 12px;
                    overflow: hidden;
                    @media (max-width: 1024px) {
                        width: 100%;
                    }
                    @media (max-width: 767px) {
                        flex-direction: column;
                    }
                    .child {
                        width: 100%;
                        background-color: #00000073;
                        @media (min-width: 768px) {
                            width: 50%;
                        }
                    }
                }
            }
        }
    }
}
/* Info */
.info {
    border-block-start: 1px solid #e5e5e5;
    min-height: 75px;
    padding-block: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    .container {
        .inside {
            .content {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                gap: 20px;
                .child {
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 1em;
                    p {
                        text-align: center;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.5em;
                        color: #000000B8;
                        margin: 0;
                        padding: 0;
                        cursor: default;
                        a {
                            text-decoration: underline;
                            color: #000000B8;
                            img {
                                width: 20px;
                                height: 20px;
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Translation */
.social {
    position: fixed;
    bottom: 50px;
    z-index: 999;
    right: 10px;
    border-radius: 40px;
    transition: 0.5s all ease-in-out;
    &.opened {
        right: -45px;
        @media (max-width: 768px) {
            right: -31px;
        }
        .in-social {
            @media (max-width: 768px) {
                border: 1px solid #d9d9d9;
            }
            .toggle {
                .open-close {
                    span.top {
                        transform: rotate(-45deg);
                    }
                    span.bottom {
                        transform: rotate(45deg);
                    }
                }
            }
        }
    }
    .in-social {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 15px 10px;
        padding: 10px 5px;
        border-radius: 40px;
        background-color: #3a3a3a;
        background-color: #ececee;
        background-color: #fff;
        box-shadow: 0 0 10px #d5d5d5;
        transition: 0.5s all ease-in-out;
        @media (max-width: 768px) {
            gap: 5px;
            padding: 5px 4px;
            background-color: #ececee;
            background-color: #fff;
            box-shadow: 0 0 10px #d5d5d5;
        }
        button {
            font-size: 16px;
            font-weight: 500;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 0;
            background-color: #fff;
            background-color: transparent;
            color: #000;
            border: none;
            outline: none;
            cursor: pointer;
            line-height: 0;
            transition: 0.5s all ease-in-out;
            @media (max-width: 768px) {
                font-size: 14px;
                width: 25px;
                height: 25px;
                background-color: transparent;
            }
            &:hover {
                box-shadow: 0 0 10px #e0e0e0;
            }
            img {
                width: 25px;
                @media (max-width: 768px) {
                    width: 25px;
                }
            }
            a {
                width: 100%;
                font-size: 16px;
                font-weight: 400;
                color: #000000;
                font-family: 'Jost', sans-serif;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }
        .toggle {
            position: absolute;
            left: -20px;
            top: calc(50% - 20px);
            width: 20px;
            height: 40px;
            background-color: transparent;
            cursor: pointer;
            @media (max-width: 768px) {
                left: -15px;
            }
            .open-close {
                position: relative;
                width: 100%;
                height: 100%;
                direction: ltr;
                span {
                    position: absolute;
                    display: inline-block;
                    width: 13px;
                    height: 2px;
                    border-radius: 20px;
                    background-color: #000;
                    transition: 0.5s all ease-in-out;
                    line-height: 0;
                    box-shadow: 0 0 10px #7c7c7c;
                    @media (max-width: 768px) {
                        width: 10px;
                        height: 2px;
                    }
                    &.top {
                        top: calc(50% - 5px);
                        transform: rotate(45deg);
                        @media (max-width: 768px) {
                            top: calc(50% - 4px);
                        }
                    }
                    &.bottom {
                        bottom: calc(50% - 5px);
                        transform: rotate(-45deg);
                        @media (max-width: 768px) {
                            bottom: calc(50% - 4px);
                        }
                    }
                }
            }
        }
    }
}
/* Landing Home */
.landing.home {
    height: calc(100vh - 90px);
    margin-top: calc(90px);
    margin-bottom: calc(10px + 10vh);
    @media screen and (max-width: 1260px) {
        height: calc(100vh - 75px);
        margin-top: 75px;
    }
    @media screen and (max-width: 991px) {
        height: calc(100vh - 70px);
        margin-top: 70px;
    }
    @media screen and (max-width: 767px) {
        height: 480px;
        margin-top: 60px;
        margin-bottom: 3vh;
    }
    .container {
        height: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
            perspective: 1000px;    
            .slider-home {
                position: relative;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                gap: 20px;
                transition: all 0.5s ease-in-out;
                direction: ltr;
                cursor: grab;
                &:active {
                    cursor: grabbing;
                }
                .slide {
                    scale: 0.5;
                    opacity: 0.9;
                    position: relative;
                    flex: 0 0 100%;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    right: 0;
                    width: 100%;
                    height: 100%;
                    margin: 0 auto;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: white;
                    box-sizing: border-box;
                    border-radius: 20px;
                    transition: 0.5s all ease-in-out;
                    flex-shrink: 0;
                    .bg {
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        z-index: 0;
                        background-color: #00000090;
                        border-radius: 20px;
                        overflow: hidden;
                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                    .content {
                        position: relative;
                        z-index: 1;
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        justify-content: flex-start;
                        background: linear-gradient(to bottom, #00000090 , #00000080 , #00000070 , #00000050 , #00000040 , #00000020 , #00000000);
                        border-radius: 20px;
                        padding-top: 8%;
                        html:lang(ar) & {
                            align-items: flex-end;
                        }
                        @media (max-width: 991px) {
                            padding-top: 25%;
                        }
                        @media (max-width: 767px) {
                            padding-top: 40%;
                        }
                        .top {
                            display: flex;
                            align-items: center;
                            gap: 5px;
                            padding-inline-start: 2.8%;
                            transform: translateY(60px);
                            transition: 1.5s all ease-in-out;
                            opacity: 0;
                            @media screen and (max-width: 767px) {
                                margin-bottom: 5px;
                            }
                            html:lang(ar) & {
                                flex-direction: row-reverse;
                            }
                            p {
                                padding: 4px 10px 4px 36px;
                                margin: 0% 0% 0% 9%;
                                font-size: 15px;
                                font-weight: 400;
                                text-transform: uppercase;
                                white-space: nowrap;
                                letter-spacing: 1.5px;
                                color: #FFFFFFDB;
                                @media screen and (max-width: 767px) {
                                    padding: 30% 0% 0% 10%;
                                    margin: 0% 0% 0% 5%;
                                    font-size: 13px;
                                    text-transform: uppercase;
                                    white-space: nowrap;
                                    html:lang(ar) & {
                                        padding: 4px 20px 4px 10px;
                                        margin: 0% 5% 0% 0%;
                                    }
                                }
                                html:lang(ar) & {
                                    padding: 4px 36px 4px 10px;
                                    margin: 0% 9% 0% 0%;
                                }
                            }
                            span {
                                width: 120px;
                                height: 0.5px;
                                background-color: #FFFFFFAB;
                                letter-spacing: 0;
                                @media screen and (max-width: 767px) {
                                    display: none;
                                }
                                &.special-span {
                                    color: var(--special-text-color);
                                }
                                &.normal-span {
                                    color: #F7F7F7FC;
                                }
                            }
                        }
                        .text {
                            h1 {
                                padding: 1% 16% 2% 11%;
                                color: #F7F7F7FC;
                                letter-spacing: -0.04em;
                                font-size: clamp(2.5rem, 7vw, 5.5rem);
                                font-weight: 700;
                                text-transform: capitalize;
                                font-family: 'Plus Jakarta Sans';
                                line-height: 1em;
                                transform: translateY(40px);
                                transition: 1s all ease-in-out;
                                opacity: 0;
                                html[lang="ar"] & {
                                    letter-spacing: 0px;
                                    direction: rtl;
                                    font-family: 'jost', sans-serif;
                                }
                                @media screen and (max-width: 1024px) {
                                    font-size: 52px;
                                    padding: 1% 16% 2% 15%;
                                    html[lang="ar"] & {
                                        padding: 1% 15% 2% 16%;
                                    }
                                }
                                @media screen and (max-width: 767px) {
                                    font-size: 32px;
                                    padding: 1% 16% 05% 13%;
                                    html[lang="ar"] & {
                                        padding: 1% 9% 05% 16%;
                                    }
                                }
                                .special-span {
                                    color: var(--special-text-color);
                                }
                            }
                        }
                    }
                    .small-img {
                        max-width: clamp(13.75rem, 40vw, 25rem);
                        max-height: 270px;
                        position: absolute;
                        z-index: 1;
                        bottom: 0;
                        right: 0;
                        display: flex;
                        justify-content: flex-end;
                        align-items: center;
                        margin: 02% 013% 0% 2%;
                        overflow: hidden;
                        line-height: 0;
                        opacity: 0;
                        transform: translateY(20px);
                        transition: all 1s ease-in-out;
                        html[dir="rtl"] & {
                            right: auto;
                            left: 0;
                            margin: 02% 2% 0% 013%;
                        }
                        @media (max-width: 767px) {
                            display: none;
                        }
                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                    &.active {
                        scale: 1;
                        opacity: 1;
                        transition: all 0.5s ease-in-out;
                        .content {
                            .top {
                                opacity: 1;
                                transform: translateY(0px);
                                transition: all 1s ease-in-out;
                            }
                            .text {
                                h1 {
                                    opacity: 1;
                                    transform: translateY(0px);
                                    transition: all 1s ease-in-out;
                                }
                            }
                        }
                        .small-img {
                            opacity: 1;
                            transform: translateY(0px);
                            transition: all 1s ease-in-out;
                        }
                    }
                }
            }
            .arrows {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 5px;
                color: white;
                border: none;
                padding: 10px;
                cursor: pointer;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 5px;
                z-index: 11;
                html:lang(ar) & {
                    right: unset;
                    left: 5px;
                }
                @media screen and (max-width: 991px) {
                    right: -30px;
                }
                .arrow {
                    cursor: pointer;
                    border: 0;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 20px;
                    border-radius: 5px;
                    @media screen and (max-width: 1024px) {
                        box-shadow: -1px 6px 75px -7px #000000;
                        padding: 14px;
                    }
                    svg {
                        width: 18px;
                        stroke-width: 0.5px;
                        transition: 0.3s all ease-in-out;
                        color: #000000;
                        @media screen and (max-width: 1024px) {
                            /* width: 15px; */
                        }
                    }
                    &:hover {
                        background-color: #000000;
                        svg {
                            color: #FFFFFF;
                            stroke-width: 1px;
                        }
                    }
                    &.left svg {
                        transform: rotate(180deg);
                    }
                    &.right:hover svg {
                        transform: rotate(360deg);
                    }
                    &.left:hover svg {
                        transform: rotate(-180deg);
                    }
                }
            }
        }
    }
}
/* Landing Inside Pages */
.landing.inside-pages {
    height: 70vh;
    margin-top: calc(90px + 10vh);
    margin-bottom: calc(10px + 10vh);
    @media screen and (max-width: 991px) {
        height: 70vh;
        margin-top: calc(50px + 10vh);
        margin-bottom: calc(50px + 10vh);
    }
    .container {
        height: 100%;
        width: 100%;
        .landing-slider {
            height: 100%;
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            .landing-slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border-radius: 12px;
                opacity: 0;
                transform: scale(1.3);
                transition: opacity 2s ease-in-out, transform 8s ease;
                overflow: hidden;
                &.active {
                    opacity: 1;
                    transform: scale(1);
                }
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 12px;
                }
            }
        }
    }
    &.full {
        height: 100vh;
        margin-top: 0;
        margin-bottom: 0;
        @media screen and (max-width: 991px) {
            height: 100vh;
            margin-top: 0;
            margin-bottom: 0;
        }
        .container {
            padding: 0;
            margin: 0;
            .landing-slider {
                border-radius: 0;
                .landing-slide {
                    border-radius: 0;
                    bottom: 0;
                    right: 0;
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                    img {
                        border-radius: 0;
                    }
                    .overlay {
                        position: absolute;
                        z-index: 1;
                        top: 0;
                        left: 0;
                        bottom: 0;
                        right: 0;
                        width: 100%;
                        height: 100%;
                        background-color: rgba(0, 0, 0, 0.3);
                    }
                }
                .content {
                    position: absolute;
                    z-index: 2;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    right: 0;
                    padding-inline-start: 10%;
                    width: 70%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    @media screen and (max-width: 767px) {
                        padding-inline-start: 5%;
                        width: 100%;
                    }
                    .title {
                        position: relative;
                        font-family: 'Plus Jakarta Sans';
                        color: #ffffff;
                        font-size: 35px;
                        font-weight: 800;
                        line-height: 1.1;
                        letter-spacing: 0;
                        text-align: start;
                        margin: 0;
                        padding: 0;
                        html[dir= "rtl"] & {
                            font-family: "jost", sans-serif;
                        }
                        @media screen and (max-width: 1024px) {
                            font-size: 30px;
                        }
                        @media screen and (max-width: 767px) {
                            font-size: 18px;
                        }
                        h1 {
                            max-width: 100%;
                        }
                    }
                }
            }
        }
    }
}
/* Landing About Us */
.landing.about-page {
    margin-top: 90px;
    min-height: 400px;
    position: relative;
    align-content: center;
    @media screen and (max-width: 1260px) {
        margin-top: 75px;
    }
    @media screen and (max-width: 991px) {
        margin-top: 70px;
    }
    @media screen and (max-width: 767px) {
        margin-top: 60px;
    }
    .landing-bg {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        &::after {
            content: '';
            position: absolute;
            z-index: 2;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
        }
    }
    .container {
        position: relative;
        z-index: 3;
        height: 100%;
        .content {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            .text {
                display: flex;
                flex-direction: column;
                gap: 20px;
                justify-content: center;
                align-items: center;
                text-align: center;
                color: #FFFFFF;
                @media screen and (max-width: 567px) {
                    gap: 10px;
                    max-width: 350px;
                    margin: 0 auto;
                }
                .title {
                    position: relative;
                    font-family: 'Plus Jakarta Sans';
                    color: #ffffff;
                    font-size: 45px;
                    font-weight: 800;
                    line-height: 1.1;
                    letter-spacing: -0.04em;
                    text-align: center;
                    margin: 0;
                    padding: 0;
                    html[dir= "rtl"] & {
                        font-family: "jost", sans-serif;
                    }
                    @media screen and (max-width: 1024px) {
                        font-size: 45px;
                    }
                    @media screen and (max-width: 767px) {
                        font-size: 20px;
                    }
                }
                .light-p {
                    p {
                        font-size: 16px;
                        line-height: 1.4em;
                        -webkit-text-stroke-color: #000;
                        stroke: #000;
                        color: #FFFFFF8F;
                    }
                }
            }
        }
    }
}
/* Default Sections */
section {
    position: relative;
    overflow: hidden;
    .top {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 5%;
        padding-top: 0;
        @media (min-width: 768px) {
            width: 650px;
        }
        @media (max-width: 1024px) and (min-width: 768px) {
            width: 360px;
        }
        @media (max-width: 767px) {
            width: 100%;
        }
        .title {
            .section-h1 {
                position: relative;
                font-family: 'Plus Jakarta Sans';
                color: #000000;
                font-size: 85px;
                font-weight: 800;
                line-height: 1em;
                letter-spacing: -0.04em;
                text-align: center;
                margin: 0;
                padding: 0;
                padding-bottom: 12px ;
                html[dir="rtl"] & {
                    font-family: 'jost', sans-serif;
                }
                @media (max-width: 1024px) {
                    font-size: 44px;
                }
                @media (max-width: 767px) {
                    font-size: 30px;
                }
            }
        }
        .light-section-name {
            margin: 1% 0 0 0;
            padding: 0px 0px 0px 0px;
            padding-block-start: 15px;
            padding-block-end: 15px;
            .out-span {
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                .section-name {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    color: #00000073;
                    font-size: 14px;
                    text-transform: uppercase;
                    letter-spacing: 0.09em;
                    word-spacing: 0.1em;
                    line-height: 1;
                    padding: 0 10px;
                }
                &::after, &::before {
                    content: '';
                    display: block;
                    border-block-end: 0;
                    flex-grow: 1;
                    color: #00000073;
                    border: 1px solid #00000021;
                }
            }
        }
        .section-tip {
            margin: 1% 0% 0% 0%;
            padding: 0px 0px 0px 0px;
            p {
                color: #000000CC;
                font-size: 17px;
                line-height: 1.4em;
                text-align: center;
            }
        }
    }
    .bottom {
        .parent {
            display: flex;
            gap: 7% 7%;
            @media (max-width: 767px) {
                flex-wrap: wrap;
            }
            .child {
                &.child-images {
                    width: calc(60% - 3.5%);
                    @media (max-width: 767px) {
                        padding-block-end: 7%;
                        width: 100%;
                    }
                    .slider {
                        position: relative;
                        width: 100%;
                        height: 550px;
                        overflow: hidden;
                        border-radius: 12px;
                        @media (max-width: 1024px) {
                            height: 400px;
                        }
                        .slide {
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            border-radius: 12px;
                            opacity: 0;
                            transform: scale(1);
                            transition: opacity 4s ease-in-out, transform 7s ease;
                            &.active {
                                opacity: 1;
                                transform: scale(1.2);
                            }
                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                border-radius: 12px;
                            }
                        }
                    }
                }
                &.child-text {
                    width: calc(40% - 3.5%);
                    @media (max-width: 767px) {
                        width: 100%;
                    }
                    .content {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        gap: 20px;
                        width: 100%;
                        height: 100%;
                        p.bold-p {
                            color: #000000;
                            font-size: 32px;
                            font-weight: 400;
                            line-height: 1em;
                            @media (max-width: 1024px) {
                                font-size: 20px;
                                letter-spacing: -0.6px;
                            }
                        }
                        p.light-p {
                            margin: 2% 0% 0% 0%;
                            padding: 0 0 0 0;
                            color: #000000CC;
                            font-size: 17px;
                            line-height: 1.4em;
                            letter-spacing: 0px;
                            @media (max-width: 767px) {
                                margin: 0;
                            }
                            @media (max-width: 1024px) {
                                font-size: 15px;
                            }
                        }
                        a.button {
                            margin: 5% 0% 0% 0%;
                            font-size: 18px;
                            font-weight: 500;
                            color: #000000;
                            background-color: transparent;
                            border: 2px solid #111;
                            padding: 9px 33px;
                            position: relative;
                            display: inline-block;
                            vertical-align: middle;
                            width: max-content;
                            font-family: inherit;
                            line-height: 2em;
                            text-decoration: none;
                            text-transform: none;
                            border-radius: 7px;
                            outline: 0;
                            transition: .5s all ease-in-out;
                            display: inline-flex;
                            align-items: center;
                            justify-content: center;
                            gap: 3px;
                            background: linear-gradient(to left, transparent 50%, #000000 50%) right;
                            background-size: 202%;
                            &:hover {
                                background-position: left;
                                color: #fff;
                                svg {
                                    color: #fff;
                                }
                            }
                            @media (max-width: 767px) {
                                padding: 6px 16px 6px 16px;
                                margin: 0;
                            }
                            svg {
                                width: 22px;
                                color: #000000;
                                stroke-width: 1.5px;
                                transition: .5s all ease-in-out;
                            }
                        }
                    }
                }
                @media (max-width: 767px) {
                    width: 100%;
                }
            }
        }
    }
    .show-case {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(30,30,30,.9),#000 1810%);
        z-index: 999999;
        display: none;
        .case-header {
            height: 45px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            .close {
                position: absolute;
                top: 0;
                right: 10px;
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: flex-end;
                cursor: pointer;
                html[dir="rtl"] & {
                    justify-content: flex-start;
                }
                svg {
                    width: 30px;
                    stroke-width: 3px;
                    color: #FFFFFF;
                }
            }
            .slider-counter {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 7px;
                color: #FFFFFF;
                span {
                    font-size: 14px;
                }
                i {
                    font-size: 13px;
                }
            }
        }
        .container {
            position: relative;
            width: 100%;
            height: 100%;
            .arrows {
                position: absolute;
                top: 50%;
                right: 0;
                left: 0;
                z-index: 2;
                padding-inline: 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                max-width: 100%;
                transform: translateY(-50%);
                .arrow {
                    cursor: pointer;
                    svg {
                        width: 45px;
                        stroke-width: 1.5px;
                        color: #FFFFFF;
                    }
                }
            }
            .images {
                position: relative;
                width: 100%;
                width: calc(100% * var(--total-slides), 100%);
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                iframe, embed {
                    background: #333333;
                    position: absolute;
                    z-index: 1;
                    width: 100%;
                    height: 100%;
                    border: none;
                    object-fit: contain;
                }
                img {
                    position: absolute;
                    z-index: 1;
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

        }
    }
    a.button, button.button {
        margin: 5% 0% 0% 0%;
        font-size: 18px;
        font-weight: 500;
        color: #000000;
        background-color: transparent;
        border: 2px solid #111;
        padding: 9px 33px;
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: max-content;
        font-family: inherit;
        line-height: 2em;
        text-decoration: none;
        text-transform: none;
        border-radius: 7px;
        outline: 0;
        transition: .5s all ease-in-out;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
        background: linear-gradient(to left, transparent 50%, #000000 50%) right;
        background-size: 202%;
        svg {
            width: 22px;
            color: #000000;
            stroke-width: 1.5px;
            transition: .5s all ease-in-out;
            html[dir="rtl"] & {
                rotate: 270deg;
            }
        }
        &:hover {
            background-position: left;
            color: #fff;
            svg {
                color: #fff;
                transform: translateX(5px) translateY(-2px);
                html[dir="rtl"] & {
                    transform: translateX(2px) translateY(-3px);
                }
            }
        }
        @media (max-width: 767px) {
            padding: 6px 16px 6px 16px;
            margin: 0;
        }
    }
    &.complex {
        .container {
            .inside {
                .bottom {
                    .parent {
                        height: 100%;
                        overflow: hidden;
                        gap: 7% 7%;
                        @media (min-width: 768px) {
                        max-height: 600px;
                        }
                        .child-images {
                            width: 100%;
                            border-radius: 15px;
                            overflow: hidden;
                            @media (min-width: 768px) {
                                aspect-ratio: 2 / 2.7;
                                min-width: 46%;
                            }
                            @media (max-width: 767px) {
                                min-height: 300px;
                            }
                            .slider {
                                width: 100%;
                                height: 100%;
                                border-radius: 15px;
                                overflow: hidden;
                            }
                        }
                        .child-text {
                            width: 100%;
                            padding-top: 2%;
                            padding-bottom: 5%;
                            padding-left: 5%;
                            padding-right: 5%;
                            border-radius: 15px;
                            border: 3px solid #000000;
                            .content {
                                width: 100%;
                                height: 100%;
                                display: flex;
                                flex-direction: column;
                                justify-content: flex-start;
                                align-items: flex-start;
                                .cases {
                                    padding: 20px 28px 0px 0px;
                                    display: flex;
                                    flex-direction: column;
                                    justify-content: flex-start;
                                    align-items: flex-start;
                                    .filter {
                                        padding-bottom: 34px;
                                        ul {
                                            display: flex;
                                            justify-content: flex-start;
                                            align-items: center;
                                            li {
                                                position: relative;
                                                cursor: pointer;
                                                margin: 0% 8% 0% 0%;
                                                color: #00000073;
                                                @media (max-width: 767px) {
                                                    margin: 0% 4% 0% 0%;
                                                }
                                                @media (max-width: 560px) {
                                                    margin: 0% 6% 0% 0%;
                                                }
                                                h3 {
                                                    font-size: 1.2em;
                                                    font-weight: 500;
                                                    cursor: pointer;
                                                    transition: .5s all ease-in-out;
                                                    @media screen and (min-width: 768px) {
                                                        font-size: 18px;
                                                    }
                                                    @media screen and (min-width: 992px) {
                                                        font-size: 20px;
                                                    }
                                                }
                                                &.active {
                                                    color: #000000;
                                                }
                                                &:hover {
                                                    color: #000000;
                                                }
                                                &::after {
                                                    content: "";
                                                    position: absolute;
                                                    bottom: 0;
                                                    left: 0;
                                                    width: 0;
                                                    height: 2px;
                                                    background-color: #000000;
                                                    transition: .5s all ease-in-out;
                                                }
                                                &.active::after {
                                                    width: 40%;
                                                }
                                                &:hover::after {
                                                    width: 40%;
                                                }
                                                html[dir="rtl"] & {
                                                    padding-bottom: 2px;
                                                    &::after {
                                                        left: unset;
                                                        right: 0;
                                                        bottom: 0;
                                                        height: 3px;
                                                    }
                                                    &.active::after {
                                                        width: 50%;
                                                    }
                                                    &:hover::after {
                                                        width: 50%;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                    .case {
                                        display: none;
                                        p {
                                            font-size: 16px;
                                            line-height: 1.7;
                                            transition: 0.5s all ease-in-out;
                                            margin: 0 0 1.1em 0;
                                            color: #000000B8;
                                            @media screen and (min-width: 768px) {
                                                margin: 0 0 20px 0;
                                            }
                                        }
                                        &.active {
                                            display: block;
                                        }
                                    }
                                }
                                .persentages {
                                    width: 100%;
                                    display: flex;
                                    flex-direction: column;
                                    gap: 10px;
                                    .persentage {
                                        width: 100%;
                                        display: flex;
                                        flex-direction: column;
                                        gap: 12px;
                                        .persent-title {
                                            display: flex;
                                            justify-content: space-between;
                                            align-items: center;
                                            .name {
                                                h4 {
                                                    color: #000000;
                                                    font-size: 15px;
                                                    font-weight: 600;
                                                    margin: 0px 0px 0px 0px;
                                                }
                                            }
                                            .number {
                                                p {
                                                    color: #000000;
                                                    font-size: 12px;
                                                    font-weight: 600;
                                                }
                                            }
                                        }
                                        .bar {
                                            width: 100%;
                                            height: 2px;
                                            line-height: 0;
                                            background-color: #d9d9d9;
                                            .fill {
                                                height: 100%;
                                                background-color: #000000;
                                                line-height: 0;
                                                width: 0;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.message {
        background-color: #EDF2EE;
        .container {
            .inside {
                .title {
                    margin: 0% 0% 08% 0%;
                    text-align: center;
                    h2 {
                        color: #000000;
                        font-weight: 800;
                        font-family: 'Plus Jakarta Sans';
                        letter-spacing: -0.04em;
                        font-size: 2em;
                        margin: 0.8em 0 0.8em 0;
                        line-height: 1.2;
                        @media screen and (min-width: 560px) {
                            font-size: 38px;
                        }
                        @media screen and (min-width: 768px) {
                            font-size: 74px;
                        }
                        @media screen and (min-width: 992px) {
                            font-size: 85px;
                        }
                        span {
                            color: #969C84;
                        }
                    }
                }
                .bottom {
                    display: flex;
                    align-items: stretch;
                    gap: 10px 10px;
                    @media (max-width: 767px) {
                        flex-direction: column;
                        gap: 50px;
                    }
                    .image {
                        width: calc(50% - 5px);
                        height: 500px;
                        @media (max-width: 767px) {
                            width: 100%;
                            height: 300px;
                        }
                        .img {
                            width: 100%;
                            height: 100%;
                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                border-radius: 15px;
                            }
                        }
                    }
                    .text {
                        width: calc(50% - 5px);
                        padding: 10px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: flex-start;
                        gap: 15px;
                        @media (max-width: 767px) {
                            width: 100%;
                            padding: 0;
                        }
                        .h {
                            width: 100%;
                            text-align: center;
                            h2 {
                                color: #000000;
                                font-family: 'Plus Jakarta Sans';
                                font-size: 38px;
                                font-weight: 800;
                                line-height: 1em;
                                letter-spacing: -0.04em;
                                @media (max-width: 767px) {
                                    font-size: 20px;
                                }
                            }
                        }
                        .p-message {
                            padding: 1% 5% 9% 5%;
                            @media (max-width: 767px) {
                                padding: 0;
                            }
                            p {
                                margin: 0 0 1.1em 0;
                                font-size: 16px;
                                line-height: 1.7;
                                @media screen and (min-width: 768px) {
                                    margin: 0 0 20px 0;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.lets-talk {
        margin-block-start: 150px;
        .container {
            padding-block-end: 0;
            .inside {
                .bottom {
                    display: flex;
                    justify-content: flex-start;
                    gap: 7%;
                    @media (min-width: 768px) {
                        min-height: 500px;
                    }
                    @media (max-width: 767px) {
                        flex-direction: column;
                    }
                    .start {
                        width: 100%;
                        @media (min-width: 768px) {
                            width: 55%;
                        }
                        @media (max-width: 767px) {
                            height: 300px;
                        }
                        .image {
                            width: 100%;
                            height: 100%;
                            display: flex;
                            align-items: flex-end;
                            gap: 10px;
                            @media (max-width: 767px) {
                                gap: 0;
                                height: 300px;
                                background-image: url(../images/all-images/11.webp);
                                background-size: cover;
                                background-repeat: no-repeat;
                                background-position: center left;
                            }
                            .image-bg {
                                width: calc(100% / 3);
                                height: 100%;
                                background-image: url(../images/all-images/11.webp);
                                background-size: cover;
                                background-attachment: fixed;
                                &.left {
                                    background-position: center left;
                                }
                                &.center {
                                    height: 112%;
                                    background-position: center center;
                                }
                                &.right {
                                    background-position: center right;
                                }
                                @media (max-width: 767px) {
                                    display: none;
                                }
                            }
                        }
                    }
                    .end {
                        padding-top: 9%;
                        padding-bottom: 5%;
                        padding-left: 0%;
                        padding-right: 0%;
                        display: flex;
                        justify-content: flex-start;
                        @media (max-width: 1024px) {
                            justify-content: center;
                        }
                        .text {
                            @media (max-width: 1024px) {
                                text-align: center;
                            }
                            .p {
                                p {
                                    color: #000000;
                                    font-size: 26px;
                                    font-weight: 400;
                                    line-height: 1.4;
                                    @media (max-width: 1024px) {
                                        font-size: 17px;
                                    }
                                    @media (max-width: 767px) {
                                        font-size: 18px;
                                    }
                                }
                            }
                            .bold-p {
                                h1 {
                                    color: #000000;
                                    font-size: 54px;
                                    line-height: 1em;
                                    font-family: 'Plus Jakarta Sans';
                                    max-width: 300px;
                                    @media (max-width: 1024px) {
                                        font-size: 44px;
                                        letter-spacing: -0.04em;
                                    }
                                    @media (max-width: 767px) {
                                        max-width: 100%;
                                        font-size: 30px;
                                    }
                                }
                            }
                            a.button {
                                margin: 12% 0% 0% 0%;
                            }
                        }
                    }
                }
            }
        }
    }
    &.top-boxes {
        .container {
            .inside {
                .top {
                    .button {
                        margin: 0 auto;
                        margin-top: 5%;
                    }
                }
                .bottom {
                    margin: 50px 0;
                    .row {
                        background-color: var(--main-color);
                        width: 100%;
                        border-radius: 12px;
                        overflow: hidden;
                        display: flex;
                        flex-direction: row-reverse;
                        align-items: stretch;
                        .col {
                            &.col-1 {
                                width: 38%;
                                padding: 10% 5% 10% 6%;
                                .items {
                                    display: flex;
                                    flex-direction: column;
                                    justify-content: center;
                                    align-items: flex-start;
                                    .item {
                                        margin: calc(22px / 2) 0;
                                        button {
                                            border: none;
                                            background-color: transparent;
                                            text-align: start;
                                            cursor: pointer;
                                            h4 {
                                                color: #0000009E;
                                                font-size: 44px;
                                                font-weight: 500;
                                                letter-spacing: -0.02em;
                                                line-height: 1.19048em;
                                                transition: 0.2s all ease-in-out;
                                                position: relative;
                                                &::after {
                                                    content: "";
                                                    position: absolute;
                                                    bottom: 0;
                                                    left: 0;
                                                    width: 0;
                                                    height: 4px;
                                                    background-color: #000000;
                                                    transition: 0.2s all ease-in-out;
                                                    @media (max-width: 1024px) {
                                                        height: 2px;
                                                    }
                                                }
                                                @media (max-width: 1024px) {
                                                    font-size: 26px;
                                                }
                                                @media (max-width: 767px) {
                                                    font-size: 18px;
                                                }
                                            }
                                            p {
                                                color: #00000087;
                                                font-size: 16px;
                                                margin-top: 3px;
                                                @media (max-width: 1024px) {
                                                    font-size: 14px;
                                                }
                                                @media (max-width: 767px) {
                                                    font-size: 12px;
                                                }
                                            }
                                            &:hover {
                                                h4 {
                                                    color: #000000;
                                                    &::after {
                                                        width: 100%;
                                                    }
                                                }
                                                p {
                                                    color: #000000;
                                                }
                                            }
                                            &.active {
                                                h4 {
                                                    color: #000000;
                                                    &::after {
                                                        width: 100%;
                                                    }
                                                }
                                                p {
                                                    color: #000000;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                            &.col-2 {
                                flex: 1;
                                .item-show {
                                    width: 100%;
                                    height: 100%;
                                    overflow: hidden;
                                    .images {
                                        position: relative;
                                        display: flex;
                                        height: 100%;
                                        .image {
                                            position: absolute;
                                            top: 0;
                                            left: 0;
                                            min-width: 100%;
                                            min-height: 100%;
                                            width: 100%;
                                            height: 100%;
                                            overflow: hidden;
                                            img {
                                                width: 100%;
                                                height: 100%;
                                                object-fit: cover;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.case {
        background-color: var(--main-color);
        .container {
            .inside {
                .bottom {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                    .row {
                        display: flex;
                        gap: 12px;
                        @media (max-width: 767px) {
                            flex-direction: column;
                        }
                        &:nth-child(even) {
                            flex-direction: row-reverse;
                            @media (max-width: 767px) {
                                flex-direction: column;
                            }
                        }
                        .col {
                            height: 100%;
                            cursor: pointer;
                            &.col-1 {
                                aspect-ratio: 2 / 1;
                                width: calc(100% - (100% / 3));
                                @media (max-width: 767px) {
                                    aspect-ratio: auto;
                                    width: 100%;
                                }
                            }
                            &.col-2 {
                                aspect-ratio: 1 / 1;
                                width: calc(100% / 3);
                                @media (max-width: 767px) {
                                    aspect-ratio: auto;
                                    width: 100%;
                                }
                            }
                            .img {
                                position: relative;
                                width: 100%;
                                height: 100%;
                                overflow: hidden;
                                &::after {
                                    content: "";
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background-color: #0000002E;
                                }
                                &:hover {
                                    img {
                                        scale: 1.03;
                                    }
                                }
                                img {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                }
                            }
                        }
                    }
                    .show-case {
                        position: fixed;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(rgba(30,30,30,.9),#000 1810%);
                    }
                }
            }
        }
        &.project-case {
            background-color: #FFFFFF;
            .container {
                .inside {
                    display: flex;
                    flex-direction: column;
                    .top {
                        a.button {
                            margin: 0 auto;
                            margin-top: 5%;
                        }
                    }
                    .show-case {
                        &.project-showcase-way {
                            .container {
                                .images {
                                    overflow: auto;
                                    flex-direction: column;
                                    justify-content: flex-start;
                                    align-items: flex-start;
                                    &::-webkit-scrollbar {
                                        display: none;
                                    }
                                    img {
                                        display: block !important;
                                        position: relative;
                                        z-index: 1;
                                        opacity: 1;
                                        width: 100%;
                                        height: 100%;
                                        object-fit: contain;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .button {
                cursor: pointer;
                margin: 5% auto 0 !important;
            }
        }
    }
    &.interior-process {
        .container {
            .inside {
                .top {
                    a.button {
                        margin: 0 auto;
                        margin-top: 5%;
                    }
                }
                .bottom {
                    margin-top: 12%;
                    @media (max-width: 767px) {
                        margin-top: 14%;
                        
                    }
                    .boxes {
                        display: flex;
                        justify-content: flex-start;
                        align-items: flex-start;
                        gap: 20px;
                        flex-wrap: wrap;
                        margin-top: 5%;
                        .box {
                            width: calc((100% / 4) - 20px);
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center;
                            text-align: center;
                            @media (max-width: 1024px) {
                                width: calc((100% / 3) - 20px);
                            }
                            @media (max-width: 767px) {
                                width: calc((100% / 2) - 20px);
                            }
                            @media (max-width: 480px) {
                                width: 100%;
                            }
                            .img {
                                width: 175px;
                                height: 175px;
                                margin: 0 auto;
                                img {
                                    width: 100%;
                                    height: 100%;
                                    border-radius: 5px;
                                    object-fit: cover;
                                }
                            }
                            .title {
                                margin-top: 30px;
                                h3 {
                                    color: #000000;
                                    font-size: 19px;
                                    font-weight: 500;
                                }
                            }
                            .text {
                                margin-top: 8px;
                                padding: 0% 5% 5% 5%;
                                p {
                                    color: #000000BF;
                                    font-size: 15px;
                                    font-weight: 400;
                                    line-height: 1.6em;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.stay-updated {
        background-color: var(--main-color);
        .container {
            .inside {
                .top {
                    a.button {
                        margin: 0 auto;
                        margin-top: 5%;
                    }
                }
                .bottom {
                    .boxes {
                        display: flex;
                        flex-direction: column;
                        @media screen and (min-width: 768px) {
                            gap: 28px;
                        }
                        .box {
                            a {
                                width: 100%;
                                height: 100%;
                                display: flex;
                                flex-direction: row;
                                gap: 0;
                                align-items: center;
                                @media screen and (max-width: 768px) {
                                    flex-direction: column;
                                }
                                .img {
                                    width: 50%;
                                    height: 100%;
                                    aspect-ratio: 2 / 1;
                                    @media only screen and (max-width: 768px) {
                                        width: 100%;
                                    }
                                    img {
                                        width: 100%;
                                        height: 100%;
                                        object-fit: cover;
                                        border-radius: 22px;
                                    }
                                }
                                .text {
                                    width: 50%;
                                    height: 100%;
                                    padding: 20px 27px;
                                    display: flex;
                                    flex-direction: column;
                                    justify-content: center;
                                    align-items: center;
                                    @media only screen and (max-width: 768px) {
                                        padding: 20px 0;
                                        width: 100%;
                                    }
                                    .hilight-name {
                                        span {
                                            color: #777777C7;
                                            font-size: 17px;
                                        }
                                    }
                                    .new-title {
                                        display: flex;
                                        justify-content: center;
                                        align-items: center;
                                        h3 {
                                            text-align: center;
                                            color: #000000;
                                            font-size: 31px;
                                            font-family: 'Plus Jakarta Sans';
                                            letter-spacing: 0px;
                                            word-spacing: 5px;
                                            margin-bottom: 77px;
                                            @media (max-width: 1024px) {
                                                font-size: 22px;
                                                margin-bottom: 0px;
                                            }
                                            @media (max-width: 767px) {
                                                font-size: 17px;
                                                margin-bottom: -5px;
                                            }
                                        }
                                    }
                                    &:hover {
                                        span {
                                            color: #000000;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.services {
        .container {
            padding-top: calc(9% - (10vh + 10px));
            @media (max-width: 1024px) {
                padding-top: calc(8% - (10vh + 10px));
            }
            @media (max-width: 767px) {
                padding-top: calc(20% - (10vh + 10px));
            }
        }
    }
    &.hero-loft {
        position: relative;
        width: 100%;
        overflow: hidden;
        color: #fff;
        .container {
            .inside {
                .top {
                    @media (min-width: 768px) {
                        width: 700px;
                    }
                    a.button {
                        margin-block-start: 30px;
                        margin-inline: auto;
                    }
                }
                .bottom {
                    position: relative;
                    aspect-ratio: 1180 / 470;
                    min-height: 550px;
                    min-width: 100%;
                    max-width: 100%;
                    .hero-loft__bg {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        overflow: hidden;
                        img {
                            position: absolute;
                            inset: 0;
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            opacity: 0;
                            transform: scale(1.1);
                            transition: opacity 0.8s ease, transform 12s linear;
                            will-change: opacity, transform;
                            &.is-active {
                                opacity: 1;
                                transform: scale(1.4);
                            }
                        }
                    }
                    .hero-loft__overlay {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
                        z-index: 1;
                    }
                    .hero-loft__content {
                        position: relative;
                        z-index: 2;
                        height: 100%;
                        padding: 5vh 6vw 7vh;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                        .hero-loft__text {
                            position: relative;
                            margin-top: 5vh;
                            max-width: 520px;
                            .hero-loft__title {
                                font-size: clamp(2.8rem, 4vw, 4.5rem);
                                line-height: 1.05;
                                font-size: clamp(24px, 5vw, 70px);
                                font-weight: 500;
                                .hero-loft__title-line {
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    opacity: 0;
                                    transition: all 0.5s ease;
                                    transform: translateX(-100%);
                                    &.is-active {
                                        opacity: 1;
                                        transform: translateX(0);
                                    }
                                    &.is-leaving {
                                        opacity: 0;
                                        transform: translateX(100%);
                                    }
                                    i {
                                        color: var(--special-text-color);
                                        font-style: normal;
                                    }
                                }
                            }
                        }
                    }
                    .hero-loft__thumbs {
                        display: flex;
                        gap: 1rem;
                        align-items: center;
                        align-self: flex-start;
                        margin-top: auto;
                        margin-inline: auto;
                        padding: 1rem 2px;
                        overflow-x: auto;
                        max-width: 100%;
                        scroll-snap-type: x mandatory;
                        scroll-behavior: smooth;
                        -ms-overflow-style: none;
                        scrollbar-width: none;
                        &::-webkit-scrollbar {
                            display: none;
                        }
                        .hero-loft__thumb {
                            cursor: pointer;
                            position: relative;
                            border: none;
                            outline: none;
                            background: transparent;
                            cursor: pointer;
                            border-radius: 1rem;
                            padding: 0;
                            display: flex;
                            flex-direction: column;
                            height: clamp(100px, 14vw, 140px);
                            width: clamp(150px, 14vw, 220px);
                            color: inherit;
                            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
                            &::after {
                                content: '';
                                position: absolute;
                                z-index: 1;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                background: rgba(0, 0, 0, 0.3);
                                width: 100%;
                                height: 100%;
                                border-radius: 1rem;
                            }
                            &.is-active {
                                background: rgba(255, 255, 255, 0.14);
                                box-shadow: 0 0 0 2px #fff;
                                transform: translateY(-4px);
                                &::after {
                                    background: rgba(0, 0, 0, 0.6);
                                }
                            }
                            .hero-loft__thumb-img-wrap {
                                width: 100%;
                                height: 100%;
                                overflow: hidden;
                                border-radius: 0.85rem;
                                img {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                    transform: scale(1.02);
                                    transition: transform 0.3s ease-in-out;
                                }
                            }
                            &:hover .hero-loft__thumb-img-wrap {
                                img {
                                    transform: scale(1.06);
                                }
                            }
                            .hero-loft__thumb-label {
                                position: absolute;
                                z-index: 2;
                                bottom: 1em;
                                left: 1em;
                                font-size: 1.2em;
                                font-weight: 600;
                                text-align: start;
                                html[dir="rtl"] & {
                                    left: auto;
                                    right: 1em
                                }
                            }
                        }
                    }
                    .hero-loft__nav {
                        position: absolute;
                        left: 2.5rem;
                        top: 50%;
                        transform: translateY(-50%);
                        z-index: 3;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        gap: 0.75rem;
                        .hero-loft__arrow {
                            width: 32px;
                            height: 32px;
                            border-radius: 999px;
                            background: transparent;
                            border: none;
                            cursor: pointer;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            svg {
                                width: 15px;
                                height: 15px;
                                fill: #FFFFFF;
                                stroke-width: 1.5px;
                            }
                        }
                        .hero-loft__dots {
                            display: flex;
                            flex-direction: column;
                            gap: 1.5em;
                            align-items: center;
                            .hero-loft__dot {
                                position: relative;
                                width: 6px;
                                height: 6px;
                                border-radius: 50rem;
                                border: none;
                                background: rgba(255,255,255,0.3);
                                cursor: pointer;
                                transition: background 0.2s ease, transform 0.2s ease;
                                &::after {
                                    content: "";
                                    position: absolute;
                                    top: -50%;
                                    left: -50%;
                                    border: 1px solid transparent;
                                    height: 200%;
                                    width: 200%;
                                    border-radius: 40px;
                                    transform: translate(100%, 100%);
                                    scale: 0;
                                }
                                &.is-active {
                                    background: #FFFFFF;
                                    &::after {
                                        border-width: 1px;
                                        border-style: solid;
                                        border-color: #fff;
                                        border-left: none;
                                        border-right: none;
                                        scale: 2;
                                        animation: spin 1s linear 0s infinite;
                                    }
                                }
                            }
                        }
                    }
                    @media (max-width: 768px) {
                        .hero-loft__content {
                        padding: 4.5vh 4vw 6vh;
                        }
                
                        .hero-loft__nav {
                        left: 1.4rem;
                        }
                
                        .hero-loft__thumbs {
                        padding-bottom: 0.5rem;
                        }
                
                        .hero-loft__thumb {
                        min-width: 170px;
                        }
                    }
                }
            }
        }
    }
}
/* Counters */
.counter-section {
    background-color: #F5EFE6;
    .container {
        .counters {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin: 0 auto;
            direction: ltr;
            @media (max-width: 768px) {
                flex-wrap: wrap;
            }
            .counter {
                width: calc(100% / 4);
                display: flex;
                flex-direction: column;
                justify-content: center;
                text-align: center;
                gap: 20px;
                @media (max-width: 1024px) {
                    gap: 10px;
                }
                @media (max-width: 768px) {
                    width: calc(100% / 2);
                    margin-bottom: 4vw;
                }
                h2 {
                    font-size: 120px;
                    font-weight: 500;
                    color: #000000;
                    @media (max-width: 1024px) {
                        font-size: 60px;
                    }
                }
                hr {
                    width: 130px;
                    margin: 0 auto;
                    height: 3px;
                    border-color: #000;
                    background-color: #000;
                    @media (max-width: 1024px) {
                        height: 0px;
                    }
                }
                p {
                    color: #000000DB;
                    font-size: 18px;
                    font-weight: 400;
                    text-transform: uppercase;
                    letter-spacing: 0.03em;
                    margin-top: 0px;
                    @media (max-width: 1024px) {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}
/* Partners */
.our-partner {
    .container {
        .pictures {
            padding-top: 20px;
            .parent {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
                .child {
                    padding: 10px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    img {
                        max-height: 60px;
                        max-width: 100%;
                        border: 1px solid rgba(209, 209, 209, 0.1);
                    }
                }
            }
        }
        .button {
            margin-top: 2vw;
            display: flex;
            justify-content: center;
            @media only screen and (max-width: 1200px) {
                margin-top: 20px;
            }
            a {
                max-width: max-content;
                padding: 18px 30px;
                @media only screen and (max-width: 1200px) {
                    padding: 15px 20px;
                }
            }
        }
    }
}
/* Products */
section {
    &.cover {
        padding-block: 50px;
        width: 100%;
        max-height: 500px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        img {
            width: 100%;
            max-width: 100%;
            height: 100%;
            object-fit: none;
            @media (max-width: 768px) {
                object-fit: cover;
            }
        }
    }
    .filters {
        position: relative;
        display: flex;
        justify-content: center;
        margin-bottom: 100px;
        margin-inline: auto;
        width: 250px;
        .toggle-filter {
            width: 100%;
            button {
                position: relative;
                width: 100%;
                padding: 8px 12px;
                cursor: pointer;
                border: 2px solid #000000;
                background-color: transparent;
                color: #000;
                font-size: 14px;
                font-weight: 500;
                font-family: 'jost', sans-serif;
                text-align: start;
                transition: all 0.3s ease-in-out;
                opacity: 1;
                &::after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    right: 12px;
                    transform: translateY(-50%);
                    width: 25px;
                    height: 25px;
                    background: url(../images/icons/down.svg) center center / contain no-repeat;
                }
                html[dir="rtl"] & {
                    &::after {
                        right: auto;
                        left: 12px;
                        transform: translateY(-50%);
                    }
                }
            }
        }
        ul {
            display: none;
            position: absolute;
            top: 120%;
            left: 0;
            width: 100%;
            background-color: #fff;
            border: 2px solid #000000;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            z-index: 9;
            padding: 5px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            max-height: 500px;
            overflow: auto;
            li {
                width: 100%;
                .filter-button {
                    font-family: 'Jost', sans-serif;
                    padding: 8px 12px;
                    width: 100%;
                    cursor: pointer;
                    border: 2px solid transparent;
                    background-color: transparent;
                    color: #000;
                    font-size: 14px;
                    font-weight: 500;
                    text-align: start;
                    transition: all 0.3s ease-in-out;
                    opacity: 0.65;
                    &:hover {
                        opacity: 1;
                    }
                    &.active {
                        border: 2px solid #000;
                        background-color: #fff;
                        color: #000;
                        opacity: 1;
                    }
                }
            }
            &.active {
                display: flex;
            }
        }
    }
    .childs-arrows {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        margin-top: 50px;
        button {
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 2px solid #000000;
            background-color: transparent;
            color: #000000;
            cursor: pointer;
            font-size: 20px;
            transition: 0.5s;
            a {
                color: #000000;
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                span {
                    font-size: 22px;
                    margin-top: -4px;
                    display: flex;
                    justify-content: center;
                }
            }
        }
    }
    &.products {
        padding-block-start: 20vh;
        .container {
            width: 100%;
            padding-top: calc(9% - (10vh + 10px));
            margin: 0 auto;
            @media (max-width: 1024px) {
                padding-top: calc(8% - (10vh + 10px));
            }
            @media (max-width: 767px) {
                padding-top: calc(20% - (10vh + 10px));
            }
            .inside {
                width: 100%;
                max-width: 1300px;
                .filters {
                    margin-bottom: 2em;
                }
                .parent {
                    width: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    .child {
                        flex-basis: calc(100% / 3);
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        @media (max-width: 1024px) {
                            flex-basis: calc(100% / 3);
                        }
                        @media (max-width: 768px) {
                            flex-basis: calc(100% / 2);
                        }
                        @media (max-width: 567px) {
                            flex-basis: 100%;
                        }
                        .box {
                            width: 100%;
                            height: 100%;
                            padding: 0 14px;
                            padding-top: 2em;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;
                            gap: 0;
                            @media (max-width: 767px) {
                                padding: 0;
                                margin-bottom: 0;
                                padding-bottom: 1em;
                            }
                            .child-media {
                                cursor: pointer;
                                width: 100%;
                                overflow: hidden;
                                aspect-ratio: 3 / 2;
                                @media (max-width: 567px) {
                                    aspect-ratio: 1/.8;
                                }
                                .overlay {
                                    position: absolute;
                                    bottom: 0;
                                    left: 0;
                                    top: 0;
                                    right: 0;
                                    width: 100%;
                                    height: 100%;
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    border-radius: 8px;
                                    line-height: 0;
                                    &:hover {
                                        .bg {
                                            bottom: 0;
                                        }
                                        button {
                                            transform: translateY(0);
                                        }
                                    }
                                    .bg {
                                        position: absolute;
                                        bottom: -120%;
                                        left: 0;
                                        right: 0;
                                        width: 100%;
                                        height: 100%;
                                        background-color: rgba(0, 0, 0, 0.6);
                                        border-radius: 8px;
                                        transition: 0.5s all ease-in-out;
                                        line-height: 0;
                                    }
                                    button {
                                        position: absolute;
                                        border: 0;
                                        outline: 0;
                                        border-radius: 5px;
                                        padding: 14px 19px;
                                        color: #000;
                                        font-size: 18px;
                                        background-color: transparent;
                                        cursor: pointer;
                                        background: linear-gradient(to left, transparent 50%, #000000 50%) right;
                                        background-size: 202%;
                                        transform: translateY(-500%);
                                        transition: 0.5s all ease-in-out;
                                        &:hover {
                                            background-position: left;
                                            color: #fff;
                                            box-shadow: 0 0 2cap -5px #dbdbdb;
                                        }
                                    }
                                }
                                .child-img {
                                    width: 100%;
                                    height: 100%;
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    overflow: hidden;
                                    img {
                                        width: 100%;
                                        height: 100%;
                                        object-fit: cover;
                                    }
                                }
                            }
                            .child-content {
                                width: 100%;
                                display: flex;
                                flex-direction: column;
                                justify-content: space-between;
                                align-items: flex-start;
                                gap: 5px;
                                padding: 1.8em 1.2em;
                                @media (max-width: 767px) {
                                    padding: 1.8em 1.2em;
                                }
                                .child-title {
                                    cursor: pointer;
                                    h3 {
                                        font-family: 'Plus Jakarta Sans';
                                        font-size: 1.4em;
                                        font-weight: 700;
                                        line-height: 26px;
                                        text-align: center;
                                        @media screen and (min-width: 992px) {
                                            font-size: 18px;
                                        }
                                    }
                                }
                                .buttons {
                                    display: flex;
                                    align-items: center;
                                    gap: 10px;
                                    width: 100%;
                                }
                                button, a {
                                    font-family: 'Jost', sans-serif;
                                    font-size: 15px;
                                    font-weight: 500;
                                    text-decoration: underline;
                                    color: #000000;
                                    display: flex;
                                    background-color: transparent;
                                    border: none;
                                    cursor: pointer;
                                }
                            }
                            .images {
                                display: none;
                            }
                        }
                    }
                    &.un-clickable-image {
                        .child {
                            .box {
                                .child-media {
                                    cursor: default;
                                }
                            }
                        }
                    }
                }
            }
        }
        &.catalogs {
            .container {
                .inside {
                    .parent {
                        .child {
                            .child-content {
                                flex-direction: row;
                                align-items: center;
                                gap: 20px;
                                .start {
                                    display: flex;
                                    flex-direction: column;
                                    gap: 5px;
                                }
                                .end {
                                    display: flex;
                                    flex-direction: column;
                                    justify-content: flex-start;
                                    align-items: flex-start;
                                    gap: 5px;
                                    .catalog-count {
                                        display: flex;
                                        justify-content: center;
                                        align-items: center;
                                        gap: 5px;
                                        color: #000000;
                                        font-size: 16px;
                                        font-weight: 500;
                                        svg {
                                            width: 25px;
                                            stroke-width: 1.4px;
                                            color: #000000;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.projects {
        .container {
            .parent {
                display: flex;
                flex-wrap: wrap;
                gap: 1em;
                @media (max-width: 1024px) {
                    gap: 1em;
                }
                @media (max-width: 767px) {
                    gap: 1em;
                }
                .child {
                    flex-basis: calc((100% / 3) - 1em);
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    border-radius: 8px;
                    @media (max-width: 1024px) {
                        flex-basis: calc((100% / 3) - 1em);
                    }
                    @media (max-width: 767px) {
                        flex-basis: calc((100% / 2) - 1em);
                    }
                    @media (max-width: 567px) {
                        flex-basis: 100%;
                    }
                    .box {
                        width: 100%;
                        margin: 0 auto;
                        display: flex;
                        flex-direction: row;
                        border-radius: 8px;
                        box-shadow: none;
                        @media (max-width: 768px) {
                            flex-direction: column;
                        }
                        .project-button {
                            position: relative;
                            cursor: pointer;
                            .bg {
                                .img {
                                    img {
                                        border-radius: 12px;
                                        aspect-ratio: 3 / 4;
                                        object-fit: cover;
                                    }
                                }
                                .overlay {
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    bottom: 6.5px;
                                    left: 0;
                                    width: 100%;
                                    background-color: rgba(0, 0, 0, 0.3);
                                    transition: 0.5s;
                                    z-index: 1;
                                    border-radius: 12px;
                                }
                            }
                            .content {
                                position: absolute;
                                z-index: 2;
                                top: 0;
                                left: 0;
                                bottom: 0;
                                right: 0;
                                display: flex;
                                flex-direction: column;
                                align-items: flex-start;
                                justify-content: flex-end;
                                color: #FFFFFF;
                                padding: 20px;
                                .project-name {
                                    display: flex;
                                    justify-content: flex-start;
                                    align-items: center;
                                    h2 {
                                        user-select: none;
                                        font-size: 40px;
                                        font-weight: 400;
                                        padding-bottom: 20px;
                                        line-height: 0.8;
                                        text-transform: uppercase;
                                        @media (max-width: 1024px) {
                                            font-size: 30px;
                                        }
                                        @media (max-width: 768px) {
                                            font-size: 26px;
                                        }
                                        html:lang(ar) & {
                                            line-height: 1.2;
                                        }
                                    }
                                }
                                .read-more {
                                    position: relative;
                                    &::after {
                                        content: '';
                                        position: absolute;
                                        bottom: 0;
                                        left: 0;
                                        width: 0;
                                        height: 2px;
                                        background-color: #FFFFFF;
                                        transition: 0.5s;
                                    }
                                    html[lang="ar"] & {
                                        &::after {
                                            left: unset;
                                            right: 0;
                                        }
                                    }
                                    &:hover {
                                        &::after {
                                            width: 100%;
                                        }
                                    }
                                }
                            }
                        }
                        .show-catalog {
                            user-select: none;
                            margin: 0 auto;
                            width: 100%;
                            height: 100%;
                            padding-block-start: 5vh;
                            background-color: var(--main-color);
                            background-color: #FFFFFF;
                            display: none;
                            position: fixed;
                            top: 0;
                            left: 0;
                            overflow: hidden;
                            overflow-y: auto;
                            z-index: 99999;
                            @media (max-width: 1024px) {
                                padding-block-start: 10vh;
                            }
                            .container {
                                position: relative;
                                display: flex;
                                flex-wrap: wrap;
                                flex-direction: row-reverse;
                                gap: 2em;
                                .close {
                                    position: fixed;
                                    top: 5vh;
                                    left: 5vw;
                                    display: flex;
                                    justify-content: flex-start;
                                    width: 100%;
                                    margin: 20px 0;
                                    cursor: pointer;
                                    html:lang(ar) & {
                                        left: auto;
                                        right: 5vw;
                                    }
                                    button {
                                        background-color: #000000;
                                        padding: 15px;
                                        border-radius: 5px;
                                        line-height: 0;
                                        width: max-content;
                                        height: max-content;
                                        border: none;
                                        position: relative;
                                        cursor: pointer;
                                        transition: 0.5s;
                                        &:hover {
                                            background-color: #ffffff;
                                            box-shadow: 0 0 10px #b3b3b3;
                                            span {
                                                background-color: #000000;
                                            }
                                        }
                                        span {
                                            position: absolute;
                                            display: inline-block;
                                            line-height: 0;
                                            height: 3px;
                                            width: 15px;
                                            background-color: #ffffff;
                                            border-radius: 20px;
                                            top: 47%;
                                            left: 23.5%;
                                            transition: 0.5s;
                                            &.top-close {
                                                transform: rotate(-45deg);
                                            }
                                            &.bottom-close {
                                                transform: rotate(45deg);
                                            }
                                        }
                                    }
                                }
                                .content {
                                    width: 100%;
                                    height: 100%;
                                    display: flex;
                                    flex-direction: column;
                                    gap: 5%;
                                    @media (min-width: 1024px) {
                                        position: sticky;
                                        top: 10vh;
                                        right: 0;
                                        width: calc(30% - 1em);
                                    }
                                    @media (max-width: 1024px) {
                                        padding-block-end: 1em;
                                    }
                                    .project-name {
                                        display: flex;
                                        justify-content: flex-start;
                                        align-items: center;
                                        h2 {
                                            user-select: none;
                                            font-size: 50px;
                                            font-weight: 400;
                                            padding-bottom: 20px;
                                            line-height: 0.8;
                                            text-transform: uppercase;
                                            @media (max-width: 1024px) {
                                                font-size: 30px;
                                            }
                                            @media (max-width: 768px) {
                                                font-size: 26px;
                                            }
                                            html:lang(ar) & {
                                                line-height: 1.2;
                                            }
                                        }
                                    }
                                    .ps {
                                        display: flex;
                                        flex-direction: column;
                                        gap: 0;
                                        .p {
                                            width: 100%;
                                            button {
                                                width: 100%;
                                                padding: 2% 0;
                                                display: flex;
                                                justify-content: space-between;
                                                align-items: center;
                                                background-color: transparent;
                                                border: none;
                                                border-bottom: 1px solid #ebebeb;
                                                cursor: pointer;
                                                @media (max-width: 768px) {
                                                    padding: 3% 0%;
                                                }
                                                h3 {
                                                    font-family: 'jost', sans-serif;
                                                    font-size: 18px;
                                                    font-weight: 500;
                                                    text-transform: uppercase;
                                                    color: #000000;
                                                    @media (max-width: 1024px) {
                                                        font-size: 17px;
                                                    }
                                                }
                                                .toggle-p {
                                                    position: relative;
                                                    width: 15px;
                                                    height: 15px;
                                                    span {
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        right: 0;
                                                        bottom: 0;
                                                        width: 15px;
                                                        height: 2px;
                                                        background-color: #000;
                                                        border-radius: 12px;
                                                        transition: 0.5s;
                                                        &.animated {
                                                            transform: rotate(90deg);
                                                        }
                                                    }
                                                }
                                            }
                                            .paragraph {
                                                user-select: none;
                                                transition: all 0.5s ease-in-out;
                                                height: 0;
                                                overflow: hidden;
                                                border: none;
                                                p {
                                                    user-select: none;
                                                    font-size: 17px;
                                                    line-height: 1.6;
                                                    transition: 0.5s all ease-in-out;
                                                    padding: 4% 4% 4% 4%;
                                                    @media screen and (min-width: 992px) {
                                                        line-height: 1.7;
                                                    }
                                                }
                                                iframe {
                                                    width: 100%;
                                                    height: 100%;
                                                    @media (max-width: 768px) {
                                                        height: 200px;
                                                    }
                                                }
                                            }
                                            &.opened {
                                                .paragraph {
                                                    border-bottom: 1px solid #ebebeb;
                                                    height: 250px;
                                                    transition: 0.5s all ease-in-out;
                                                    @media (max-width: 1024px) {
                                                        height: 300px;
                                                    }
                                                    @media (max-width: 768px) {
                                                        height: 350px;
                                                    }
                                                }
                                                button {
                                                    .toggle-p {
                                                        span.animated {
                                                            transform: rotate(0);
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                    .project-file-download {
                                        margin-top: 5%;
                                        a {
                                            user-select: none;
                                            margin: 5% 0% 0% 0%;
                                            font-size: 18px;
                                            font-weight: 500;
                                            color: #000000;
                                            background-color: transparent;
                                            border: 2px solid #111;
                                            padding: 9px 33px;
                                            position: relative;
                                            display: inline-block;
                                            vertical-align: middle;
                                            width: max-content;
                                            font-family: inherit;
                                            line-height: 2em;
                                            text-decoration: none;
                                            text-transform: none;
                                            border-radius: 7px;
                                            outline: 0;
                                            transition: .5s all ease-in-out;
                                            display: inline-flex;
                                            align-items: center;
                                            justify-content: center;
                                            gap: 5px;
                                            cursor: pointer;
                                            background: linear-gradient(to left, transparent 50%, #000000 50%) right;
                                            background-size: 202%;
                                            @media (max-width: 767px) {
                                                padding: 6px 16px 6px 16px;
                                                margin: 0;
                                            }
                                            &:hover {
                                                background-position: left;
                                                color: #fff;
                                                img, svg {
                                                    color: #fff;
                                                }
                                            }
                                            img, svg {
                                                width: 20px;
                                                height: 20px;
                                            }
                                        }
                                    }
                                }
                                .images {
                                    width: calc(70% - 1em);
                                    column-count: 3;
                                    column-gap: 0.8em;
                                    @media (max-width: 1024px) {
                                        width: 100%;
                                    }
                                    @media (max-width: 767px) {
                                        column-count: 1;
                                    }
                                    .img {
                                        margin-block-end: 0.8em;
                                        line-height: 0;
                                        img {
                                            border-radius: 8px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                    &:nth-child(even) {
                        .box {
                            flex-direction: row-reverse;
                            @media (max-width: 768px) {
                                flex-direction: column;
                            }
                        }
                    }
                    &.under-development {
                        opacity: 0.7;
                        pointer-events: none;
                        .box {
                            .project-button {
                                .bg {
                                    .overlay{
                                        ::after {
                                            position: absolute;
                                            content: "Under Development";
                                            top: 5px;
                                            left: 5px;
                                            padding: 5px;
                                            border-radius: 12px;
                                            display: flex;
                                            justify-content: center;
                                            align-items: center;
                                            font-size: 16px;
                                            font-weight: 500;
                                            color: #fff;
                                            background-color: rgba(213, 159, 64, 0.762);
                                            background-color: rgb(184, 139, 63);
                                        }
                                        html:lang(ar) &::after {
                                            left: unset;
                                            right: 5px;
                                            content: 'تحت الإنشاء';
                                            position: absolute;
                                            top: 5px;
                                            padding: 5px;
                                            border-radius: 12px;
                                            display: flex;
                                            justify-content: center;
                                            align-items: center;
                                            font-size: 16px;
                                            font-weight: 500;
                                            color: #fff;
                                            background-color: rgb(184, 139, 63);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.project-page {
        .landing {
            position: relative;
            height: 100vh;
            .bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-image: url(../images/all-images/15.webp);
                background-size: cover;
                background-position: center;
                background-attachment: fixed;
            }
        }
        .container {
            .inside {
                .project-info {
                    margin-top: 90px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                    .r1 {
                        width: 50%;
                        @media (max-width: 768px) {
                            width: 100%;
                        }
                        &.start {
                            display: flex;
                            flex-direction: column;
                            justify-content: flex-start;
                            align-items: flex-start;
                            gap: 20px;
                            .project-name {
                                h1 {
                                    color: #000000;
                                    line-height: 1em;
                                    letter-spacing: -0.04em;
                                    padding-bottom: 12px;
                                    font-family: 'Plus Jakarta Sans';
                                    font-weight: 700;
                                    @media screen and (min-width: 992px) {
                                        font-size: 74px;
                                    }
                                    @media (max-width: 1024px) {
                                        font-size: 44px;
                                    }
                                    @media (max-width: 767px) {
                                        font-size: 30px;
                                    }
                                }
                            }
                            .project-description {
                                padding: 0% 10% 0% 0%;
                            }
                        }
                        &.end {
                            padding-inline-start: 6%;
                            display: flex;
                            flex-direction: column;
                            justify-content: flex-end;
                            align-items: flex-start;
                            gap: 20px;
                            @media (max-width: 768px) {
                                padding-inline-start: 0;
                                padding-block-start: 20px;
                            }
                            .side-info {
                                display: flex;
                                flex-direction: column;
                                align-items: flex-start;
                                justify-content: flex-start;
                                gap: 5px;
                                p {
                                    color: #00000087;
                                    line-height: 1;
                                    font-size: 15px;
                                }
                                h4 {
                                    font-size: 1em;
                                    font-weight: 400;
                                    @media screen and (min-width: 768px) {
                                        font-size: 16px;
                                    }
                                    a {
                                        color: #000000;
                                        text-decoration: underline;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.project-show {
        .container {
            padding-inline: 0;
            .inside {
                width: 100%;
                max-width: 100%;
                .bottom {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    gap: 20px;
                    .project-slider {
                        width: 100%;
                        height: 580px;
                        overflow: hidden;
                        display: flex;
                        align-items: center;
                        gap: 3em;
                        transition: 0.5s ease-in-out all;
                        scroll-behavior: smooth;
                        direction: ltr;
                        @media (max-width: 768px) {
                            gap: 1em;
                            height: 70vh;
                        }
                        &::-webkit-scrollbar {
                            display: none;
                        }
                        .project-slide {
                            min-width: 50vw;
                            aspect-ratio: 1 / 1;
                            @media (max-width: 768px) {
                                min-width: 100vw;
                            }
                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                aspect-ratio: 1920 / 1006;
                            }
                        }
                    }
                    .dots {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 7px;
                        direction: ltr;
                        span {
                            width: 7.5px;
                            height: 7.5px;
                            border-radius: 50%;
                            background-color: #00000047;
                            cursor: pointer;
                            &:hover {
                                background-color: #000000;
                                scale: 1.4;
                            }
                            &.active {
                                background-color: #000000;
                                scale: 1.4;
                            }
                        }
                    }
                    button {
                        margin-inline: auto;
                        cursor: pointer;
                    }
                }
            }
        }
    }
    &.about-page {
        .container {
            .inside {
                .parent {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    gap: 20px;
                    @media (max-width: 1024px) {
                        flex-wrap: wrap;
                    }
                    &.rverse-parent {
                        flex-direction: row-reverse;
                        justify-content: space-between;
                        gap: 50px;
                        @media (max-width: 1024px) {
                            flex-wrap: wrap;
                            flex-direction: row;
                            gap: 20px;
                        }
                        .child {
                            &.img-child {
                                justify-content: flex-start;
                                @media (max-width: 1024px) {
                                    justify-content: center;
                                }
                            }
                        }
                    }
                    .child {
                        flex-basis: 50%;
                        @media (max-width: 1024px) {
                            flex-basis: 100%;
                        }
                        &.text-child {
                            display: flex;
                            flex-direction: column;
                            .title {
                                h1, h2 {
                                    font-size: 50px;
                                    font-weight: 500;
                                    text-transform: uppercase;
                                    @media (max-width: 1024px){
                                        font-size: 35px;
                                    }
                                    @media (max-width: 768px){
                                        font-size: 30px;
                                    }
                                }
                                h2 {
                                    padding-bottom: 35px;
                                }
                            }
                            .content {
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                gap: 10px;
                                .p {
                                    padding-bottom: 10px;
                                    p {
                                        font-size: 20px;
                                        font-weight: 400;
                                        line-height: 32px;
                                        @media (max-width: 1024px){
                                            font-size: 18px;
                                            line-height: 28px;
                                        }
                                    }
                                }
                                .ul {
                                    display: flex;
                                    flex-direction: column;
                                    gap: 10px;
                                    h3 {
                                        font-size: 20px;
                                        font-weight: 400;
                                        @media (max-width: 1024px){
                                            font-size: 18px;
                                        }
                                    }
                                    ul{
                                        &.dots-ul {
                                            list-style: inside;
                                        }
                                        li {
                                            font-size: 20px;
                                            font-weight: 400;
                                            padding: 5px 0;
                                            @media (max-width: 1024px){
                                                font-size: 18px;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        &.img-child {
                            display: flex;
                            justify-content: flex-end;
                            align-items: center;
                            @media (max-width: 1024px) {
                                justify-content: center;
                            }
                            .img {
                                display: flex;
                                justify-content: flex-end;
                                align-items: center;
                                @media (max-width: 1024px) {
                                    justify-content: center;
                                }
                            }
                        }
                    }
                }
            }
        }
        &.mission {
            .container {
                .inside {
                    .parent {
                        .child {
                            &.img-child {
                                .img {
                                    height: 350px;
                                    border-radius: 12px;
                                    overflow: hidden;
                                }
                            }
                        }
                    }
                }
            }
        }
        &.vision {
            .container {
                .inside {
                    .parent {
                        .child {
                            &.img-child {
                                .img {
                                    width: 50%;
                                }
                            }
                        }
                    }
                }
            }
        }
        &.values {
            .container {
                .inside {
                    .box {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        @media (max-width: 1024px) {
                            flex-wrap: wrap;
                        }
                        .main-title {
                            width: 25%;
                            display: flex;
                            height: 100%;
                            justify-content: center;
                            align-items: center;
                            @media (max-width: 1024px) {
                                width: 100%;
                            }
                            h2 {
                                font-size: 40px;
                                font-weight: 600;
                                line-height: 48px;
                                text-align: center;
                                text-transform: uppercase;
                                @media (max-width: 1024px) {
                                    font-size: 30px;
                                }
                            }
                        }
                        .separator {
                            width: 5%;
                            height: 400px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            background-color: transparent;
                            @media (max-width: 1024px) {
                                width: 100%;
                                height: 70px;
                            }
                            span {
                                display: inline-block;
                                width: 3px;
                                height: 100%;
                                background-color: #555;
                                @media (max-width: 1024px) {
                                    width: 100%;
                                    height: 3px;
                                }
                            }
                        }
                        .flex {
                            width: 70%;
                            height: 100%;
                            display: flex;
                            align-items: center;
                            flex-wrap: wrap;
                            @media (max-width: 1024px) {
                                width: 100%;
                            }
                            .child {
                                width: 50%;
                                margin: 20px 0;
                                padding: 0 20px;
                                display: flex;
                                gap: 10px;
                                align-items: flex-start;
                                @media (max-width: 768px) {
                                    width: 100%;
                                    padding: 0;
                                }
                                .img {
                                    img {
                                        width: 70px;
                                    }
                                }
                                .content {
                                    display: flex;
                                    flex-direction: column;
                                    gap: 10px;
                                    .title {
                                        width: 100%;
                                        h4 {
                                            font-size: 26px;
                                            font-weight: 500;
                                            text-transform: uppercase;
                                            @media (max-width: 768px) {
                                                font-size: 22px;
                                            }
                                        }
                                    }
                                    .p {
                                        width: 100%;
                                        p {
                                            font-size: 18px;
                                            font-weight: 400;
                                            line-height: 26px;
                                            @media (max-width: 768px) {
                                                font-size: 16px;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        &.message {
            .container {
                .inside {
                    .parent {
                        .child {
                            &.img-child {
                                height: 400px;
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                align-items: flex-end;
                                gap: 20px;
                                @media (max-width: 1024px) {
                                    align-items: center;
                                    height: 500px;
                                }
                                .img {
                                    max-height: 100%;
                                    img {
                                        height: 100%;
                                        max-width: 100%;
                                        border-radius: 12px;
                                    }
                                }
                                .img-title {
                                    width: 52%;
                                    p {
                                        font-size: 30px;
                                        font-weight: 500;
                                        text-align: center;
                                        text-transform: uppercase;
                                        @media (max-width: 1024px) {
                                            font-size: 26px;
                                            width: 100%;
                                        }
                                        @media (max-width: 560px) {
                                            font-size: 22px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.contact {
        padding-top: 8vw;
        .container {
            padding-bottom: 0 !important;
            .inside {
                .box {
                    max-width: 550px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin: 0 auto;
                    padding: 20px;
                    border: 2px solid #000000;
                    border-radius: 12px;
                    form {
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        gap: 10px;
                        padding-top: 20px;
                        .input {
                            width: 100%;
                            input {
                                border: none;
                                outline: none;
                                background-color: transparent;
                                font-size: 16px;
                                font-weight: 400;
                                max-width: 100%;
                                color: #000;
                                text-align: start;
                                padding: 10px 10px;
                                border-bottom: 1px solid;
                                border-color: #00000021;
                                width: 100%;
                                background-position: calc(100% - 5px) center;
                                background-repeat: no-repeat;
                                background-size: 20px;
                                &::placeholder {
                                    color: #00000087;
                                    font-size: 14px;
                                    font-weight: 400;
                                    transition: 0.3s all ease-in-out;
                                }
                                html:lang(ar) & {
                                    background-position: 5px center;
                                }
                                html:lang(ar) &[type="tel"]  {
                                    background-position: calc(100% - 5px) center;
                                }
                                &:invalid:not(:placeholder-shown) {
                                    border-color: red !important;
                                    background-image: url(../images/icons/checked-red.webp);
                                }
                                &:valid {
                                    border-color: #40c057 !important;
                                    background-image: url(../images/icons/checked-green.webp);
                                }
                                &:focus {
                                    border-color: #000000;
                                    &::placeholder {
                                        font-size: 16px;
                                    }
                                }
                            }
                            &.submit-input {
                                display: flex;
                                align-items: center;
                                justify-content: flex-start;
                                margin-top: 20px;
                                label {
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    transition: 0.3s;
                                    font-weight: 500;
                                    border-radius: 4px;
                                    padding: 10px 20px;
                                    background-color: #000000;
                                    color: #FFFFFF;
                                    cursor: pointer;
                                    &:hover {
                                        opacity: 0.8;
                                    }
                                }
                                input {
                                    display: none !important;
                                }
                            }
                        }
                        .name-mail {
                            width: 100%;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            @media screen and (max-width: 551px) {
                                flex-wrap: wrap;
                            }
                            .input {
                                flex-basis: 50%;
                                max-width: 50%;
                                @media screen and (max-width: 551px) {
                                    flex-basis: 100%;
                                    max-width: 100%;
                                }
                            }
                        }
                        textarea {
                            border: none;
                            outline: none;
                            background-color: transparent;
                            font-size: 16px;
                            font-weight: 400;
                            max-width: 100%;
                            color: #000;
                            text-align: start;
                            padding: 10px 10px;
                            border-bottom: 1px solid;
                            border-color: #00000021;
                            width: 100%;
                            height: 100px;
                            resize: vertical;
                            &::placeholder {
                                color: #00000087;
                                font-size: 14px;
                                font-weight: 400;
                                transition: 0.3s all ease-in-out;
                            }
                            &:focus {
                                border-color: #000000;
                                &::placeholder {
                                    font-size: 16px;
                                }
                            }
                        }
                    }
                }
                .homes {
                    margin-top: 80px;
                    margin-bottom: 100px;
                    overflow: hidden;
                    .locs-h {
                        h2 {
                            margin-top: 20px 0;
                            text-transform: uppercase;
                            text-align: center;
                            font-size: 30px;
                            font-weight: 600;
                        }
                    }
                    .locs {
                        margin-top: 50px;
                        display: flex;
                        justify-content: space-between;
                        align-items: flex-start;
                        border-radius: 12px;
                        border: 1px solid #000;
                        overflow: hidden;
                        @media (max-width: 1024px) {
                            flex-wrap: wrap;
                            justify-content: center;
                        }
                        .loc {
                            transition: 0.5s;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: calc(100% / 4);
                            border-right: 2px solid #e5e5e5;
                            height: 300px;
                            @media (max-width: 1024px) {
                                width: 50%;
                            }
                            @media (max-width: 767px) {
                                width: 100%;
                                min-height: auto;
                                border-right: 0;
                                border-left: 0;
                                border-bottom: 1px solid #e5e5e5;
                            }
                            html:lang(ar) & {
                                border-left: 2px solid #e5e5e5;
                                border-right: 0;
                            }
                            &:last-child {
                                border: none;
                            }
                            &:hover {
                                background-color: #f0f0f0;
                            }
                            &.top-end-loc {
                                @media (max-width: 1024px) {
                                    border-right: 0;
                                    padding-right: 1px;
                                }
                            }
                            &.top-loc {
                                @media (max-width: 1024px) {
                                    border-bottom: 2px solid #e5e5e5;
                                }
                            }
                            &:last-child {
                                @media (max-width: 768px) {
                                    border: none;
                                }
                            }
                            .loc-in {
                                padding: 015% 10% 15% 10%;
                                width: 100%;
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                align-items: center;
                                gap: 8px;
                                @media (max-width: 768px) {
                                    width: 100%;
                                    padding: 5% 5% 5% 5%;;
                                }
                                h3 {
                                    &.country-name {
                                        color: #000000;
                                        font-size: 28px;
                                        font-weight: 400;
                                        line-height: 1;
                                        padding: 0;
                                        margin: 0;
                                        @media screen and (min-width: 992px) {
                                            font-size: 28px;
                                        }
                                        @media screen and (min-width: 768px) {
                                            font-size: 24px;
                                        }
                                    }
                                }
                                a {
                                    &.phone-number {
                                        margin-top: 30px;
                                        color: #000000B8;
                                        line-height: 1;
                                        font-size: 18px;
                                        direction: ltr;
                                        @media (max-width: 768px) {
                                            font-size: 16px;
                                        }
                                    }
                                    &.e-mail {
                                        color: #000000B8;
                                        line-height: 1;
                                        font-size: 18px;
                                        margin-bottom: 20px;
                                        direction: ltr;
                                        @media (max-width: 768px) {
                                            font-size: 16px;
                                        }
                                    }
                                }
                                .home-title {
                                    color: #000000B8;
                                    font-size: 15px;
                                    line-height: 1.5em;
                                    text-align: center;
                                }
                            }
                        }
                    }
                    .separator {
                        width: 2px;
                        min-height: 300px;
                        background-color: #e5e5e5;
                        display: none;
                        &.middle-separator {
                            @media (max-width: 1024px) {
                                width: 100%;
                                background-color: #e5e5e5;
                                min-height: 2px;
                            }
                        }
                        &.top-separator,
                        &.bottom-separator {
                            @media (max-width: 1024px) {
                                width: 2px;
                                min-height: 308px;
                                background-color: #e5e5e5;
                                min-height: 2px;
                            }
                        }
                    }
                }
            }
        }
    }
    &.news  {
        padding-top: 100px;
        .container {
            .inside {
                .parent {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;
                    .child {
                        flex-basis: calc((100% / 3) - 1em);
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        border-radius: 8px;
                        @media (max-width: 1024px) {
                            flex-basis: calc((100% / 3) - 1em);
                        }
                        @media (max-width: 767px) {
                            flex-basis: calc((100% / 2) - 1em);
                        }
                        @media (max-width: 567px) {
                            flex-basis: 100%;
                        }
                        .box {
                            position: relative;
                            width: 100%;
                            height: 100%;
                            border-radius: 12px;
                            overflow: hidden;
                            line-height: 1.2;
                            a, button.show-more {
                                text-decoration: none;
                                color: #000;
                                width: 100%;
                                height: 100%;
                                display: inline-block;
                                border-radius: 12px;
                                overflow: hidden;
                                .bg {
                                .img {
                                    img {
                                        border-radius: 12px;
                                        aspect-ratio: 3 / 4;
                                        object-fit: cover;
                                    }
                                }
                                .overlay {
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    bottom: 6.5px;
                                    left: 0;
                                    width: 100%;
                                    background-color: rgba(0, 0, 0, 0.3);
                                    transition: 0.5s;
                                    z-index: 1;
                                    border-radius: 12px;
                                }
                            }
                                .content {
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    bottom: 0px;
                                    right: 0;
                                    width: 100%;
                                    height: 100%;
                                    display: flex;
                                    flex-direction: column;
                                    justify-content: flex-end;
                                    gap: 10px;
                                    z-index: 2;
                                    color: #fff;
                                    transition: 0.5s all ease-in;
                                    .blog-name {
                                        padding-inline-start: 20px;
                                        transition: 0.5s all ease-in;
                                        h2 {
                                            font-size: 22px;
                                            font-weight: 500;
                                            line-height: 1.6;
                                        }
                                    }
                                    .read-more {
                                        padding-inline-start: 20px;
                                        padding-bottom: 30px;
                                        p {
                                            font-size: 16px;
                                            font-weight: 400;
                                            line-height: 1.6;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Tags */
.tags {
    margin-top: 120px;
    .container {
        padding-bottom: 0;
        padding-top: 0;
        .inside {
            display: flex;
            flex-direction: column;
            gap: 20px;
            .tgs {
                display: flex;
                justify-content: flex-start;
                flex-wrap: wrap;
                align-items: center;
                gap: 10px 10px;
                a {
                    text-decoration: none;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 5px 10px;
                    border-radius: 20px;
                    color: #000;
                    background-color: transparent;
                    border: 1px solid #00000071;
                    transition: 0.5s;
                    &:hover {
                        border: 1px solid #00000013;
                        background-color: var(--main-color);
                    }
                    p {
                        font-size: 14px;
                        font-weight: 500;
                    }
                }
            }
        }
    }
}
/* Article */
.article {
    padding-top: 50px;
    .container.bottom {
        padding-top: 0;
        .inside {
            .article-details {
                margin: 20px 0;
                display: flex;
                align-items: center;
                gap: 20px;
                .date {
                    display: flex;
                    align-items: center;
                    gap: 1px;
                    .date-numbers {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        p {
                            font-size: 12px;
                            font-weight: 500;
                            color: #999;
                        }
                    }
                    .separator {
                        p {
                            font-size: 12px;
                            font-weight: 500;
                            color: #999;
                        }
                    }
                }
                .writer {
                    p {
                        text-transform: capitalize;
                        font-size: 16px;
                        font-weight: 500;
                    }
                }
                .actions {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    .share {
                        button {
                            cursor: pointer;
                            border: none;
                            background-color: transparent;
                            outline: none;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 5px;   
                            .icon {
                                svg {
                                    width: 20px;
                                    color: #000000;
                                    stroke-width: 1.5px;
                                    margin-bottom: -4px;
                                }
                            }
                            p {
                                text-transform: uppercase;
                                font-weight: 600;
                            }
                        }
                    }
                }
            }
            .main-img {
                max-height: 90vh;
                overflow: hidden;
                width: 100%;
                img {
                    width: 100%;
                    max-width: 100%;
                }
            }
            .article-name {
                margin-top: 20px;
                padding: 20px 10px;
                border-left: 4px solid var(--special-text-color);
                border-left: 4px solid #000;
                background-color: #f5f5f5;
                background-color: var(--main-color);
                html:lang(ar) & {
                    border-left: none;
                    border-right: 4px solid var(--special-text-color);
                    border-right: 4px solid #000;
                }
                h2 {
                    font-size: 30px;
                    font-weight: 600;
                    text-transform: capitalize;
                    @media screen and (max-width: 551px) {
                        font-size: 22px;
                        font-weight: 600;
                        text-transform: capitalize;
                    }
                }
            }
            .article-description {
                padding: 20px 40px;
                @media screen and (max-width: 551px) {
                    padding: 15px 20px;
                }
                p {
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 1.6;
                }
            }
            .part {
                display: flex;
                flex-direction: column;
                gap: 20px;
                padding: 20px 0;
                .top-part {
                    padding-bottom: 20px;
                    .part-h {
                        padding-bottom: 15px;
                        display: flex;
                        gap: 5px;
                        span, h3 {
                            font-size: 24px;
                            font-weight: 600;
                        }
                    }
                    .part-description {
                        p {
                            font-size: 16px;
                            font-weight: 400;
                        }
                    }
                }
                .list {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    padding-bottom: 20px;
                    padding-inline-start: 10px;
                    .list-h {
                        h4 {
                            font-size: 20px;
                            font-weight: 500;
                        }
                    }
                }
                .list ul {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    &.dots-list {
                        list-style: inside;
                    }
                    &.numbers-list {
                        list-style: decimal;
                        margin-inline-start: 16px;
                    }
                    li {
                        font-size: 16px;
                        font-weight: 400;
                    }
                }
                .part-img {
                    max-height: 500px;
                    overflow: hidden;
                    img {
                        width: 100%;
                        max-width: 100%;
                    }
                }
            }
            hr {
                margin-top: 50px;
            }
            .social-media {
                margin-top: 10px;
                display: flex;
                gap: 10px;
                align-items: center;
                .media {
                    a {
                        img {
                            width: 25px;
                        }
                    }
                }
            }
        }
    }
}
/* Article Footer */
.article-footer {
    padding-block: 50px;
    .container{
        &.top-bottom {
            .inside {
                display: flex;
                justify-content: space-between;
                align-items: center;
                @media screen and (max-width: 767px) {
                    flex-wrap: wrap;
                    justify-content: center;
                    gap: 20px;
                }
                .np-post {
                    max-width: 350px;
                    background-color: #fff;
                    padding: 20px;
                    border: 1px solid #000000;
                    transition: 0.5s;
                    &:hover {
                        background-color: #f7f7f7;
                    }
                    .box {
                        display: flex;
                        align-items: center;
                        gap: 20px;
                        color: #000;
                        text-decoration: none;
                        .prev-button {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            button {
                                background-color: transparent;
                                font-size: 30px;
                                font-weight: 500;
                                border: 0;
                                outline: 0;
                                cursor: pointer;
                                transition: 0.5s all ease-in-out;
                                border-radius: 50%;
                                padding: 5px;
                                transition: 0.5s;
                            }
                        }
                        .article-details {
                            display: flex;
                            flex-direction: column;
                            gap: 10px;
                            .tip {
                                p {
                                    font-size: 16px;
                                    font-weight: 400;
                                    color: #000;
                                }
                            }
                            .article-name {
                                h3 {
                                    font-size: 20px;
                                    font-weight: 600;
                                    color: #000;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Top Products */
.top-products {
    .container {
        .top {
            margin: 0;
            padding: 0;
            margin-block-end: 20px;
            width: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            .title {
                h4 {
                    font-size: 30px;
                    font-weight: 600;
                    color: #000;
                }
            }
            .see-more {
                a {
                    font-size: 16px;
                    font-weight: 500;
                    color: #000;
                    text-decoration: underline;
                }
            }
        }
        .inside {
            .parent {
                overflow: auto;
                display: flex;
                flex-wrap: nowrap;
                gap: 30px;
                &::-webkit-scrollbar {
                    display: none;
                }
                .child {
                    min-width: 290px;
                    width: 290px;
                }
            }
        }
    }
    &.news {
        padding-top: 0;
    }
}
/* Loading */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%); /* Subtle white gradient */
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease; /* Smooth fade-out */
    .luxury-loader {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Helvetica Neue', Arial, sans-serif; /* Luxurious font */
        color: #000000; /* Black text */
        .elegant-gear {
            position: relative;
            width: 100px;
            height: 100px;
            border: 3px solid #000000;
            border-radius: 50%;
            background: linear-gradient(45deg, #ffffff 0%, #e0e0e0 100%);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            animation: elegant-spin 3s linear infinite;
            .gear-center {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            background: #000000;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            }
            .gear-tooth {
            position: absolute;
            width: 12px;
            height: 25px;
            background: #000000;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
            &:nth-child(2) { transform: rotate(60deg) translateX(-50%); }
            &:nth-child(3) { transform: rotate(120deg) translateX(-50%); }
            &:nth-child(4) { transform: rotate(180deg) translateX(-50%); }
            &:nth-child(5) { transform: rotate(240deg) translateX(-50%); }
            &:nth-child(6) { transform: rotate(300deg) translateX(-50%); }
            }
        }
        p {
            margin-top: 25px;
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 1px;
            animation: elegant-fade 2s ease-in-out infinite alternate;
        }
    }
}
@keyframes elegant-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes elegant-fade {
    from { opacity: 1; color: #000000; }
    to { opacity: 0.6; color: #333333; }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.project-images-show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(30,30,30,.9),#000 1810%);
    z-index: 999999;
    overflow: hidden;
    display: none;
    .project-show-header {
        height: 45px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        .close {
            position: absolute;
            top: 0;
            right: 10px;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: flex-end;
            html[dir="rtl"] & {
                justify-content: flex-start;
            }
            svg {
                cursor: pointer;
                width: 30px;
                stroke-width: 3px;
                color: #FFFFFF;
            }
        }
        .loading-slider-counter {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 7px;
            color: #FFFFFF;
            span {
                font-size: 14px;
            }
            i {
                font-size: 13px;
            }
        }
    }
    .container {
        height: 100%;
        overflow: hidden;
        .inside {
            width: 100%;
            height: 100%;
            .images-project {
                background-color: #333;
                border-radius: 4px;
                width: 100%;
                height: 100%;
                overflow: auto;
                .in-images {
                    width: 100%;
                    column-count: 2;
                    column-gap: 10px;
                    gap: 10px;
                    img {
                        border-radius: 4px;
                        object-fit: contain;
                    }
                }
                &::-webkit-scrollbar {
                    display: block;
                }
            }
        }
    }
}

/* 🔧 Pagination styles (shared) */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pagination-arrow {
    width: 45px;
    height: 45px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.pagination-arrow:hover {
    background: #000;
    color: #fff;
}

.page-number {
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .pagination-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

html[dir="rtl"] {
    * {
        font-family: "jost", sans-serif !important;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: "jost", sans-serif !important;
    }
} 
