/*=============== FONT ================*/
@font-face {
    font-family: 'Ko Khalaya VF';
    src: url('assets/fonts/KoKhalayaVF.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url('assets/fonts/ArbFONTS-DINNEXTLTARABIC-LIGHT-2-2.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url('assets/fonts/ArbFONTS-DINNextLTArabic-Regular-2.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url('assets/fonts/ArbFONTS-DINNextLTArabic-Medium-2.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url('assets/fonts/ArbFONTS-DINNextLTArabic-Bold-2.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Next LT Arabic';
    src: url('assets/fonts/ArbFONTS-DINNextLTArabic-Black-2.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/*=============== ANIMATION ================*/
@keyframes blink {
    50% {
        border-left-color: transparent;
    }
}


/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /* --primary-1: #4E9FE2;
    --primary-2: #5D87AC;
    --primary-3: #292D32;
    --Secondary-1: #F2F4F7;
    --Secondary-2: #F5C536; */



    /*========== Font and typography ==========*/
    --body-font: "DIN Next LT Arabic", sans-serif;
    --heading-font: "Ko Khalaya VF", sans-serif;
    --heading-size: 62px;
    --h1-font-size: 48px;
    --h2-font-size: 40px;
    --h3-font-size: 32px;
    --button-size: 24px;
    --text-size: 18px;
    --note-size: 14px;

    /*========== Font weight ==========*/
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: var(--body-font);
}

html {
    scroll-behavior: smooth;
}

input,
button {
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    position: relative;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
    width: 0.6rem;
    background-color: rgba(13, 16, 60, 0.364);
    border-radius: 0.2rem;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(13, 16, 60, 0.95);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(13, 16, 60, 1);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1250px;
    margin: 0 auto;
}

.section {
    padding-block: 5rem 3rem;
    padding-inline: 3rem;
}


/*=============== HEADER & NAV ===============*/
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: var(--z-fixed);
    transition: all 0.35s ease;

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
        transition: all 0.35s ease;
        border-radius: 0;
        padding: 7px 80px;
        /* background: rgba(13, 16, 60, 0); */
        backdrop-filter: blur(14px);
        border: none;

        .nav_right,
        .nav_left {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;

            .nav_list {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 15px;

                li {
                    padding-bottom: 5px;
                }

                .nav_link {
                    position: relative;
                    font-size: 18px;
                    font-weight: var(--font-regular);
                    color: #393B69;
                    transition: 0.3s;

                    &:hover {
                        color: white;
                    }
                }

                .not_active {
                    position: relative;
                    cursor: not-allowed;

                    &::before {
                        content: "";
                        position: absolute;
                        width: 100%;
                        height: 1px;
                        background-color: #393B69;
                        top: 65%;
                        left: 0;
                        transform: translateY(-50%);
                    }

                    &:hover {
                        color: #393B69;
                    }
                }

                .new {
                    position: relative;

                    &::after {
                        content: "جديد";
                        position: absolute;
                        height: 12px;
                        line-height: 7px;
                        bottom: -15px;
                        left: -10px;
                        font-size: 12px;
                        font-weight: var(--font-regular);
                        color: #34B1EA;
                        padding: 0.37px 2.68px;
                        background-color: #262A5E;
                        border-radius: 2px;
                        z-index: -1;
                    }
                }

            }

            .btn_stor,
            .btn_contact {
                gap: 8px;
                font-size: var(--note-size);
                font-weight: var(--font-regular);
                color: white;
                width: 125px;
                height: 34px;
                border-radius: 4px;
                background: rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                box-shadow:
                    rgba(255, 255, 255, 0.3) 0px 1px 1px inset,
                    rgba(0, 0, 0, 0.3) 0px -2px 1px inset;

                span {
                    padding-bottom: 6px;
                }
            }
        }

        .img_logo {
            width: 175px;
            height: 21px;


            img {
                width: 100%;
                height: 100%;
                filter: drop-shadow(0px 1.26px 30px #328AF1);
            }
        }

    }

    .nav_toggle {
        display: none;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        border: 1px solid #31346DCC;
        background: rgba(255, 255, 255, .08);
        color: #fff;
        cursor: pointer;
        z-index: 9999;
        /* مهم */
    }

    .nav_toggle i {
        font-size: 18px;
        color: #fff;
    }

    .mobile_menu {
        position: fixed;
        top: 95px;
        right: 140px;
        width: 145px;
        border-radius: 4px;
        background: #1D1A6033;
        backdrop-filter: blur(14px);
        padding: 22px 12px 12px 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 19px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: 0.3s ease;

        .nav_list {
            display: flex !important;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 15px;

            .new {
                position: relative;

                &::after {
                    content: "جديد";
                    position: absolute;
                    height: 12px;
                    line-height: 7px;
                    bottom: -15px;
                    left: -10px;
                    font-size: 12px;
                    font-weight: var(--font-regular);
                    color: #34B1EA;
                    padding: 0.37px 2.68px;
                    background-color: #262A5E;
                    border-radius: 2px;
                    z-index: -1;
                }
            }
        }

        .btn {
            gap: 5px;
            font-size: var(--note-size);
            font-weight: var(--font-regular);
            color: white;
            width: 100%;
            height: 32px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow:
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.3);
        }
    }

    .mobile_menu .nav_link {
        font-size: 16px;
        font-weight: var(--font-regular);
        color: #393B69;
        transition: 0.3s;

        &:hover {
            color: white;
        }
    }
}

/* ===== الوضع بعد scroll ===== */
.header.scrolled {
    top: 15px;
}

.header.scrolled .nav {
    border-radius: 4px;
    padding: 7px 50px;
    background: #FFFFFF12;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #31346DCC;
}

.header .nav.container {
    max-width: 100%;
}

.header.scrolled .nav.container {
    max-width: 1250px;
}

/*=============== HOME ===============*/
.home {
    position: relative;
    padding-block: 15rem 10rem;
    background-color: #090C3E;
    overflow: hidden;

    .home_container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 160px;

        .home_content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            text-align: center;
            gap: 47px;
            z-index: 5;

            .pra {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 13px;
                width: 415.5302px;
                height: 38px;
                border-radius: 33px;
                border: 1px solid transparent;
                color: white;
                font-size: var(--text-size);
                font-weight: var(--font-regular);

                background:
                    linear-gradient(90.03deg, #1D1A60 14.47%, #090C3E 37.58%, #090C3E 66.4%, #0E0B5C 90.25%) padding-box,
                    linear-gradient(90.13deg, #403A7D 0.11%, #7369E3 91.18%) border-box;

                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);

                box-shadow:
                    inset 0 1px 0 rgba(255, 255, 255, 0.08),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
                    0 4px 24px rgba(115, 105, 227, 0.15);

                p {
                    font-family: var(--heading-font);
                }

                i {
                    transform: rotate(45deg);
                }
            }

            .home_title {
                font-size: var(--h1-font-size);
                font-weight: var(--font-bold);
                color: white;
                z-index: 1;

                .idea {
                    position: relative;

                    &::after {
                        content: "";
                        position: absolute;
                        background-image: url(https://foursw.com/wp-content/uploads/2026/02/idea-1.png);
                        background-position: center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        width: 34px;
                        height: 34px;
                        top: 16px;
                        left: 50%;
                        transform: translateX(-20%);
                    }
                }

                .search {
                    position: relative;

                    &::after {
                        content: "";
                        position: absolute;
                        background-image: url(https://foursw.com/wp-content/uploads/2026/02/searsh.png);
                        background-position: center;
                        background-size: cover;
                        background-repeat: no-repeat;
                        width: 34px;
                        height: 34px;
                        top: 15px;
                        left: 50%;
                        transform: translateX(-50%);
                    }
                }
            }

            .smile {
                position: relative;
                font-family: var(--heading-font);
                font-size: var(--text-size);
                font-weight: var(--font-regular);
                color: #EBF3FE;

                &::after {
                    content: "";
                    position: absolute;
                    background-image: url(https://foursw.com/wp-content/uploads/2026/02/smile.png);
                    background-position: center;
                    background-size: cover;
                    background-repeat: no-repeat;
                    width: 111px;
                    height: 18px;
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }

            .our_serv {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
                gap: 10px;

                .serv {
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    width: 112px;
                    height: 68px;
                    gap: 7px;
                    border-radius: 1px;
                    color: white;
                    background: rgba(63, 68, 145, 0.06);
                    backdrop-filter: blur(10px);
                    -webkit-backdrop-filter: blur(10px);
                    border: 1px solid;
                    border-image-source: linear-gradient(0deg, #DDDCE4 25.3%, #090C3E 87.5%);
                    border-image-slice: 1;

                    i {
                        font-size: 20px;
                    }

                    h2 {
                        font-size: var(--text-size);
                        font-weight: var(--font-regular);
                        line-height: 1;
                    }
                }
            }
        }

        .arrows {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 133px;
            gap: 6px;

            .arrow1 {
                width: 18.44px;
                height: 10.23px;
            }

            .arrow2 {
                width: 22px;
                height: 12.23px;
            }

            .arrow3 {
                width: 29.26px;
                height: 16.23px;
            }
        }
    }

    &::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 222px;
        /* background: radial-gradient(circle at left center,
                #100B6A 0%,
                #100B6A 40%,
                transparent 70%); */
        background: #241F6C;
        filter: blur(120px);
        opacity: 0.9;
        top: 0;
        left: 0;
        z-index: 1;
    }

    &::after {
        content: "";
        position: absolute;
        height: 100%;
        width: 269px;
        /* background: radial-gradient(circle at right center,
                #100B6A 0%,
                #100B6A 40%,
                transparent 70%); */
        background: #100B6A;
        filter: blur(120px);
        opacity: 0.9;
        top: 0;
        right: 0;
        z-index: 1;
    }

    .seo_img,
    .code_img,
    .idea_img2,
    .timer_img,
    .idea_img3,
    .target_img {
        position: absolute;
        z-index: 3;
    }

    .seo_img {
        width: 176px;
        height: 176px;
        top: 15%;
        right: 6%;
    }

    .code_img {
        width: 73px;
        height: 73px;
        top: 50%;
        right: 20%;
    }

    .idea_img2 {
        width: 162px;
        height: 162px;
        top: 70%;
        right: 5%;
    }

    .timer_img {
        width: 126px;
        height: 126px;
        top: 22%;
        left: 11%;
    }

    .idea_img3 {
        width: 73px;
        height: 73px;
        top: 48%;
        left: 20%;
    }

    .target_img {
        width: 153px;
        height: 153px;
        top: 75%;
        left: 8%;
    }

    .code_snippets {
        position: absolute;
        display: flex;
        justify-content: start;
        align-items: start;
        direction: ltr;
        flex-direction: column;
        gap: 4px;
        width: 210px;
        height: fit-content;
        padding: 10px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        /* border: 1px solid #393b69; */
        /* box-shadow: 0px 4px 5px 0px #0000000D; */
        border-radius: 4px;
        z-index: 5;

        .browserbuttons {
            display: flex;
            justify-content: end;
            align-items: center;
            gap: 4px;
            width: 100%;

            .red,
            .yellow,
            .green {
                width: 6px;
                height: 6px;
                border: 1px solid #FFFFFF1A;
                border-radius: 50%;
            }

            .red {
                background-color: #FF5F56;
            }

            .yellow {
                background-color: #FFBD2E;
            }

            .green {
                background-color: #27C93F;

            }
        }

        .span {
            font-size: 9px;
            font-weight: var(--font-medium);
            color: #393B69;
        }

        p {
            font-size: 10px;
            font-weight: var(--font-regular);
            color: #4A9BF6;
            width: 161px;

            .keyword {
                color: #453CE0;
            }



            .function {
                color: #2DC170;
            }

            .variable {
                color: #9CDCFE;
                /* variable name */
            }

            .string {
                color: #CE9178;
                /* string */
            }

        }

        .p_code {
            margin-left: 15px;
            font-size: 10px;
            font-weight: var(--font-regular);
            color: #4A9BF6;
            width: 161px;

            .keyword {
                color: #453CE0;
            }

            .variable {
                color: #DA485D;
            }

            .string {
                color: #328AF1;
            }
        }
    }

    /* .code_snippets1,
    .code_snippets2 {


        .span {
        }
    } */

    .code_snippets1 {
        top: 27%;
        right: 5%;
        background-color: #1c17754a;
    }

    .code_snippets2 {
        top: 81%;
        left: 7%;
        background: #2b257541;
    }

    /* .code_snippets3,
    .code_snippets4 {

        .span {
        }
    } */

    .code_snippets3 {
        top: 79%;
        right: 7%;
        background-color: #1c17754a;
    }

    .code_snippets4 {
        top: 28%;
        left: 5%;
        background: #2b257541;
    }
}

/*=============== PROJECTS ===============*/
.projects {
    padding-block: 10.5rem 10.5625rem;
    position: relative;
    overflow: hidden;
    background-color: #0F1243;

    .projects_container {

        .projects_content {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .projects_data {
                display: flex;
                justify-content: space-between;
                align-items: start;
                flex-direction: column;
                gap: 69px;

                .header_data {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 15px;
                    color: white;

                    .section_title {
                        position: relative;
                        font-size: var(--h2-font-size);
                        font-weight: var(--font-medium);

                        &::after {
                            content: "";
                            position: absolute;
                            width: 100%;
                            height: 1px;
                            background: linear-gradient(90deg, #0F1243 -0.14%, #5E2A5D 50.42%, #0F1243 98.98%);
                            bottom: -6px;
                            left: 50%;
                            transform: translateX(-50%);
                            z-index: 1;
                        }
                    }

                    .section_subtitle {
                        font-size: 22px;
                        font-weight: var(--font-regular);
                        font-family: var(--heading-font);
                    }
                }

                .projects_content_data {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    gap: 10px;

                    .border {
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        width: 65px;
                        height: 237.25px;
                        border-right: 3px solid #362984;
                        margin-top: -10rem;

                        img {
                            position: absolute;
                            width: 65.48846435546875px;
                            height: 44.5px;
                        }

                        .img1 {
                            top: 15%;
                            left: 2%;
                        }

                        .img2 {
                            top: 50%;
                            left: 2%;
                        }

                        .img3 {
                            bottom: -10px;
                            left: 2%;
                        }
                    }

                    .group_text {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        width: 100%;
                        flex-direction: column;
                        gap: 50px;

                        .text {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            padding: 0px 10px;
                            border: 1px solid #8D93F04F;
                            border-radius: 2px;
                            background-color: #2D296B00;

                            p {
                                font-size: var(--text-size);
                                font-weight: var(--font-regular);
                                color: #EBF3FE;
                                padding-bottom: 6px;
                            }
                        }

                        a {
                            gap: 12px;
                            font-size: var(--text-size);
                            font-weight: var(--font-regular);
                            font-family: var(--heading-font);
                            color: white;
                            border: 0.3px solid #8D93F00F;
                            border-radius: 2px;
                            width: 245px;
                            height: 48px;
                            background-color: #328AF1;
                            margin-top: -15px;

                            img {
                                width: 24px;
                                height: 24px;
                            }
                        }
                    }


                }
            }

            .swiper_container {
                position: relative;
                width: 559px;
                height: fit-content;
                padding: 24px 24px 10px 24px;
                background: #121146;
                border: 2px solid #1C2059;
                border-radius: 3px;
                z-index: 1;

                .project_swiper {
                    width: 100%;
                    height: 100%;
                    padding-bottom: 40px;

                    .swiper-slide {
                        position: relative;
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-radius: 3px;
                        }

                        .project_link {
                            position: absolute;
                            width: 185px;
                            cursor: pointer;
                            height: 43px;
                            border-radius: 3px;
                            background-color: #31AFD6;
                            color: white;
                            font-size: var(--text-size);
                            font-weight: var(--font-regular);
                            opacity: 0;
                            box-shadow: 0px 0px 30px 0px #49B3D380;
                            box-shadow: 0px 4px 34px 0px #57CCF099;
                            transition: opacity ease-in-out 0.3s;
                            padding-bottom: 10px;
                        }

                        &:hover .project_link {
                            opacity: 1;
                        }
                    }

                    .buttons {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        width: 100%;

                        .swiper-button-prev {
                            display: flex;
                            width: 0;
                            top: 96%;
                            right: 7%;

                            img {
                                width: 27.193828582763672px;
                                height: 27.199951171875px;
                            }
                        }

                        .swiper-pagination {
                            display: flex;
                            flex-direction: row-reverse;
                            width: fit-content;
                            gap: 5.5px;
                            left: 0%;
                            bottom: 8px;

                            .swiper-pagination-bullet {
                                width: 13px;
                                height: 13px;
                                border-radius: 0;
                                background-color: #222567;
                                opacity: 1;
                            }

                            .swiper-pagination-bullet-active {
                                background-color: #31AFD6;
                                box-shadow: 0px 0px 7px 0px #31AFD6;
                            }
                        }
                    }
                }

                &::after {
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 523px;
                    background: #232183;
                    filter: blur(120px);
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    z-index: 0;
                }
            }
        }
    }

    &::before {
        content: "";
        position: absolute;
        height: 140px;
        width: 269px;
        background: #328AF180;
        filter: blur(120px);
        opacity: 0.9;
        bottom: 0;
        right: 0;
        z-index: 1;
    }

    .symbols_img {
        position: absolute;
        width: 114px;
        height: 114px;
        top: 59px;
        left: 121px;
    }

    .tree_img {
        position: absolute;
        width: 117px;
        height: 114px;
        bottom: 54px;
        left: 50px;
    }

    .rocet_img {
        position: absolute;
        width: 134px;
        height: 134px;
        right: 40%;
        bottom: 36px;
    }

    .check_hand_img {
        position: absolute;
        width: 97.95077514648438px;
        height: 51.98851013183594px;
        right: 150px;
        top: 38%;
    }

}

/*=============== ABOUT US ===============*/
.about_us {
    position: relative;
    background-color: #080B38;
    padding-block: 6.37rem;
    overflow: hidden;

    .about_us_container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 140px;

        .about_us_content {
            display: flex;
            justify-content: center;
            align-items: start;
            width: 100%;
            gap: 60px;

            .swiper_container {
                position: relative;

                .about_swiper {
                    background: #121650;
                    box-shadow: 0px 0px 64px 0px #2823B440;
                    border: 2px solid #212368;
                    width: 355px;
                    height: auto;
                    border-radius: 6px;
                    padding: 16px 16px 72px 16px;

                    .swiper-slide {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 15px;

                        .swiper_header {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            flex-direction: column;
                            gap: 5px;

                            img {
                                width: 50px;
                                height: 50px;
                            }

                            h2 {
                                position: relative;
                                font-size: var(--h3-font-size);
                                font-weight: var(--font-medium);
                                color: #53DAFD;
                                width: fit-content;

                                &::after {
                                    content: "";
                                    position: absolute;
                                    width: 155.500015px;
                                    height: 18px;
                                    background-image: url(https://foursw.com/wp-content/uploads/2026/02/smile\ 2.png);
                                    background-position: center;
                                    background-repeat: no-repeat;
                                    background-size: cover;
                                    bottom: -5px;
                                    left: 55px;
                                    z-index: -1;
                                }
                            }
                        }

                        .swiper_text {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            text-align: center;
                            flex-direction: column;
                            gap: 13px;
                            width: 100%;

                            p {
                                font-size: 16px;
                                font-weight: var(--font-regular);
                                color: white;

                                span {
                                    color: #53DAFD;
                                }
                            }
                        }
                    }

                    .swiper-pagination {
                        display: flex;
                        gap: 10px;
                        justify-content: center;
                        align-items: center;
                        width: 100%;
                        margin-bottom: 10px;

                        .swiper-pagination-bullet {
                            width: 13px;
                            height: 13px;
                            border-radius: 0;
                            background-color: #212368;
                            opacity: 1;
                        }

                        .swiper-pagination-bullet-active {
                            background-color: #31AFD6;
                            box-shadow: 0px 0px 29px 0px #31AFD6;
                        }
                    }
                }

                &::after {
                    content: "";
                    position: absolute;
                    background-image: url(https://foursw.com/wp-content/uploads/2026/02/arrow\ 3.png);
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: cover;
                    bottom: -50%;
                    left: 55%;
                    width: 60%;
                    height: 60%;
                    opacity: 0.6;
                }
            }

            .swiper_container2 {

                &::after {
                    background-image: url(https://foursw.com/wp-content/uploads/2026/02/arrow\ 4.png);
                    left: -10%;
                }
            }


            .target {
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                width: 342.9714px;
                height: 342.9714px;
                background-image: url(https://foursw.com/wp-content/uploads/2026/02/target\ 2.png);
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;

                h2 {
                    font-size: var(--h1-font-size);
                    font-weight: var(--font-regular);
                    font-family: var(--heading-font);
                    color: #EBF3FE;
                    width: 208px;
                }
            }
        }

        .logo_img {
            position: relative;
            width: 130.3967px;
            height: 134.23551749358003px;

            img {
                width: 100%;
                height: 100%;
            }

            &::after {
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                box-shadow: 0px 6.97px 160px 0px #328AF1;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                filter: blur(30px);
                opacity: 0.9;
            }
        }
    }

    .contract {
        position: absolute;
        width: 179px;
        height: 179px;
        bottom: 171px;
        left: 108px;
    }

    .target_image {
        position: absolute;
        width: 142.68179321289062px;
        height: 142.68179321289062px;
        bottom: 45px;
        right: 100px;
    }
}

/*=============== SERVICES ===============*/
.services {
    padding-block: 5.5rem 6rem;
    background-color: #090C3E;
    overflow: hidden;
    position: relative;
    box-shadow:
        inset 0 0 300px rgba(35, 112, 202, 0.2),
        inset 0 0 300px rgba(68, 0, 155, 0.2);

    .services_container {

        .services_content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 80px;

            .services_header {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                text-align: center;
                gap: 22px;
                z-index: 1;

                h2 {
                    position: relative;
                    font-size: var(--h2-font-size);
                    font-weight: var(--font-medium);
                    color: #D3D6DF;
                    z-index: 1;
                    width: 70%;

                    &::after {
                        content: "";
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        background-color: rgb(32, 39, 134);
                        filter: blur(80px);
                        bottom: -6px;
                        left: 50%;
                        transform: translateX(-50%);
                        z-index: -1;
                    }
                }

                p {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 200px;
                    height: 37px;
                    border-radius: 34px;
                    background-color: #328AF1;
                    backdrop-filter: blur(12px);
                    font-size: var(--note-size);
                    font-weight: var(--font-regular);
                    color: #E6E7EC;
                    font-family: var(--heading-font);
                    box-shadow:
                        inset 0 1px 0 rgba(255, 255, 255, 0.286),
                        inset 0 -1px 0 rgba(255, 255, 255, 0.286);
                    z-index: 2;
                }

                a {
                    position: relative;
                    width: 230px;
                    height: 48px;
                    border-radius: 2px;
                    border: 2px solid #212368;
                    background: #121650;
                    backdrop-filter: blur(12px);
                    -webkit-backdrop-filter: blur(12px);
                    font-family: var(--heading-font);
                    font-size: 16px;
                    font-weight: var(--font-regular);
                    color: #EAEBF0;
                    z-index: 2;
                }

                &::after {
                    content: "";
                    position: absolute;
                    width: 270px;
                    height: 177px;
                    background: #31399633;
                    filter: blur(100px);
                    top: 50%;
                    left: -5%;
                    transform: translate(-50%, -50%);
                    z-index: 0;
                }

                &::before {
                    content: "";
                    position: absolute;
                    width: 270px;
                    height: 177px;
                    background: #31399633;
                    filter: blur(100px);
                    top: 50%;
                    left: 105%;
                    transform: translate(-50%, -50%);
                    z-index: 0;
                }
            }

            .swiper {
                width: 935px;
                height: auto;
                padding-bottom: 6.5rem;

                .swiper-slide {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 20px;
                    border-radius: 9px;
                    border: 4px solid #2259A5;
                    background: #0000001A;
                    backdrop-filter: blur(20px);
                    box-shadow: 0px 1px 0px 0px #0000000D;

                    .services_data {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        flex-direction: column;
                        width: 290px;
                        gap: 26px;

                        span {
                            font-size: 12px;
                            font-weight: var(--font-regular);
                            color: #717C99;
                        }

                        .data_header {
                            display: flex;
                            justify-content: space-between;
                            align-items: start;
                            flex-direction: column;
                            gap: 6px;

                            h3 {
                                font-size: var(--button-size);
                                font-weight: 900;
                                color: #EBF3FE;
                            }

                            p {
                                font-size: var(--note-size);
                                font-weight: var(--font-regular);
                                color: #E0EDFD;
                            }
                        }

                        .data_border {
                            width: 100%;
                            height: 1px;
                            background: linear-gradient(to left,
                                    #101862 0%,
                                    rgba(16, 24, 98, 0.8) 30%,
                                    rgba(16, 24, 98, 0.4) 60%,
                                    rgba(16, 24, 98, 0) 100%);
                        }

                        .data_list {
                            display: flex;
                            justify-content: space-between;
                            align-items: start;
                            flex-direction: column;
                            gap: 14px;

                            ul {
                                display: flex;
                                justify-content: space-between;
                                align-items: start;
                                flex-direction: column;
                                gap: 11px;

                                li {
                                    display: flex;
                                    justify-content: center;
                                    align-items: end;
                                    gap: 5px;
                                    font-size: var(--note-size);
                                    font-weight: var(--font-regular);
                                    color: white;
                                }
                            }
                        }

                        a {
                            position: relative;
                            width: 192px;
                            height: 34px;
                            gap: 8px;
                            border-radius: 2px;
                            border: 1.3px solid #8D93F00F;
                            background: #328AF1;
                            font-family: var(--heading-font);
                            font-size: 14px;
                            font-weight: var(--font-regular);
                            color: #EBF3FE;

                            &::after {
                                content: "";
                                position: absolute;
                                width: 193px;
                                height: 35px;
                                border-radius: 2px;
                                top: 50%;
                                left: 50%;
                                transform: translate(-50.2%, -50%);
                                background: linear-gradient(to bottom,
                                        #80FFFF 0%,
                                        #6BCFF8 40%,
                                        #48A0F4 100%);
                                z-index: -1;
                            }
                        }
                    }

                    .services_img {
                        position: relative;
                        width: 548px;
                        height: 429px;
                        border-radius: 11px;
                        border: 1px solid white;
                        box-shadow: 0px 4px 34px 0px #328AF1B2;


                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-radius: 10px;
                        }

                        .plugins {
                            position: absolute;
                            top: 0;
                            left: 50%;
                            transform: translateX(-50%);
                            display: flex;
                            justify-content: center;
                            align-items: start;
                            background: #328AF1;
                            width: fit-content;
                            padding: 5px 20px 3px 20px;
                            border: 1px solid #179BD7;
                            border-radius: 0 0 25px 25px;

                            span {
                                font-size: var(--text-size);
                                font-weight: var(--font-regular);
                                color: white;
                                padding-bottom: 10px;
                            }
                        }
                    }
                }

                .swiper-pagination {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 5px;

                    .swiper-pagination-bullet {
                        width: 14px;
                        height: 14px;
                        border-radius: 0;
                        background-color: #2A3470;
                        opacity: 1;
                    }

                    .swiper-pagination-bullet-active {
                        background-color: #328AF1;
                        width: 56px;
                        box-shadow: 0px 1px 2px 0px #13205A;
                    }
                }
            }
        }
    }

    .decoration1,
    .decoration2 {
        position: absolute;
        width: 352.181884765625px;
        height: 322.08367919921875px;
        opacity: 0.1;
    }

    .decoration3,
    .decoration4 {
        position: absolute;
        width: 311px;
        height: 285px;
        opacity: 0.3;
        display: none;
    }

    .decoration1 {
        bottom: 0;
        left: 0;
    }

    .decoration2 {
        bottom: 0;
        right: 0;
    }

    .decoration3 {
        top: 15%;
        left: 29%;
    }

    .decoration4 {
        top: 15%;
        right: 29%;
    }

    .chart,
    .layer {
        position: absolute;
        font-size: 100px;
        color: #171E6180;
    }

    .chart {
        bottom: 40%;
        right: 54px;
    }

    .layer {
        bottom: 40%;
        left: 54px;
    }
}

/*=============== TESTIMONIALS ===============*/
.testimonials {
    background-color: #0F1243;
    background-image: url(https://foursw.com/wp-content/uploads/2026/02/bg\ testimonials.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-block: 6.5rem 7.3125rem;

    .testimonials_container {
        .testimonials_content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 68.45px;

            .testimonials_header {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                text-align: center;
                width: 670px;
                gap: 6px;

                .span_header {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 160px;
                    height: 37px;
                    border-radius: 34px;
                    background-color: #2F33834D;
                    backdrop-filter: blur(12px);
                    font-size: var(--note-size);
                    font-weight: var(--font-regular);
                    color: #E6E7EC;
                    font-family: var(--heading-font);
                    box-shadow:
                        inset 0 1px 0 rgba(255, 255, 255, 0.286),
                        inset 0 -1px 0 rgba(255, 255, 255, 0.286);
                    z-index: 2;
                }

                h2 {
                    position: relative;
                    font-size: var(--h2-font-size);
                    font-weight: var(--font-medium);
                    color: white;
                    margin-bottom: 24px;
                    z-index: 1;


                    .span_title {
                        color: #328AF1;
                    }

                    &::after {
                        content: "";
                        position: absolute;
                        width: 364.00860595703125px;
                        height: 1px;
                        bottom: -5px;
                        left: 50%;
                        transform: translateX(-50%);
                        background: linear-gradient(90deg, #1B1B56 -0.14%, #444083 50.42%, #1C1B57 98.98%);
                    }

                    &::before {
                        content: "";
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        background: #373081;
                        filter: blur(50px);
                        z-index: -1;
                    }
                }

                p {
                    font-size: var(--text-size);
                    font-weight: var(--font-regular);
                    color: white;
                }
            }

            .testimonials_swiper {
                width: 528px;
                height: auto;
                padding-bottom: 50px;

                .swiper-slide {
                    position: relative;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-direction: column;
                    border-radius: 6px;
                    padding: 37.16px 18.58px;
                    border: 0.68px solid #19236229;
                    background-color: #343A7538;
                    backdrop-filter: blur(20px);
                    box-shadow: inset -1px -1px 10px rgba(255, 255, 255, 0),
                        inset 0px 2px 0px rgba(255, 255, 255, 0);
                    border: 1px solid #7074a937;


                    .testimonial_data {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        text-align: center;
                        flex-direction: column;
                        gap: 22px;

                        .data_header {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            text-align: center;
                            flex-direction: column;
                            gap: 22px;

                            img {
                                width: 65.0323px;
                                height: 65.0323px;
                                border-radius: 50%;
                                border: 1.55px solid #FFFFFF;
                                box-shadow: 0px 1.55px 51.1px 1.55px #6344B4;
                            }

                            .header_text {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                flex-direction: column;

                                h3 {
                                    font-size: 21.68px;
                                    font-weight: var(--font-bold);
                                    color: #EBF3FE;
                                }

                                span {
                                    font-size: 18.58px;
                                    font-weight: var(--font-medium);
                                    color: #EBF3FE;
                                }
                            }
                        }

                        p {
                            font-size: 18.58px;
                            font-weight: var(--font-regular);
                            color: white;
                        }

                        /* typing effect */
                        .typing_text {
                            position: relative;
                        }

                        /* الكيرسور */
                        .typing_text.is-typing {
                            padding-left: 10px;
                            animation: blink 1s step-end infinite;
                        }

                        .typing_text.is-done {
                            animation: none;
                        }
                    }

                    &::after {
                        content: "";
                        position: absolute;
                        width: 125.67741394042969px;
                        height: 127.48387145996094px;
                        top: 11px;
                        left: 11px;
                        background-image: url(https://foursw.com/wp-content/uploads/2026/02/quote.png);
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: cover;
                    }
                }

                .swiper-pagination {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 5px;

                    .swiper-pagination-bullet {
                        width: 14px;
                        height: 14px;
                        border-radius: 0;
                        background-color: #1D215D;
                        opacity: 1;
                    }

                    .swiper-pagination-bullet-active {
                        background-color: #EBF3FE;
                        box-shadow: 0px 1px 2px 0px #070F35;
                    }
                }

            }
        }
    }
}

/*=============== WHY SERVICES ===============*/
.why_services {
    position: relative;
    padding-block: 5.5rem 13.8rem;
    background-color: #070A32;
    overflow: hidden;

    .why_services_container {

        .why_services_content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 10rem;

            .why_services_header {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                text-align: center;
                gap: 63px;
                z-index: 1;

                .header_text {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    gap: 10px;

                    h2 {
                        font-size: var(--h2-font-size);
                        font-weight: var(--font-medium);
                        color: #EBF3FE;
                    }

                    p {
                        font-size: var(--text-size);
                        font-weight: var(--font-regular);
                        color: white;
                        width: 529px;
                    }
                }


                .header_btns {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 48px;

                    .btn {
                        width: 170px;
                        height: 44px;
                        border-radius: 2px;
                        font-size: 16px;
                        font-weight: var(--font-regular);
                        color: white;
                        font-family: var(--heading-font);
                    }

                    .prime_btn {
                        background-color: #FFFFFF1C;
                        backdrop-filter: blur(12px);
                        border: 2px solid #7074a937;
                    }

                    .second_btn {
                        background-color: #328AF1;
                        backdrop-filter: blur(12px);
                        border: 2px solid #888bae84;
                    }

                }

                &::after {
                    content: "";
                    position: absolute;
                    width: 51.9861px;
                    height: 61.31005859375px;
                    top: 45px;
                    left: -50px;
                    background-image: url("https://foursw.com/wp-content/uploads/2026/02/easy.png");
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: cover;
                }
            }

            .why_services_data {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-direction: column;
                gap: 10rem;
                width: 100%;

                .item {
                    position: relative;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    width: 100%;
                    z-index: 1;

                    .item_text {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        flex-direction: column;
                        gap: 44px;
                        width: 495px;

                        .item_header {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            gap: 14px;

                            h3 {
                                font-size: var(--h3-font-size);
                                font-weight: var(--font-bold);
                                color: #EBF3FE;
                            }

                            img {
                                width: 44px;
                                height: 44px;
                            }
                        }

                        .item_body {
                            display: flex;
                            justify-content: space-between;
                            align-items: start;
                            flex-direction: column;
                            gap: 35px;

                            .body_text {
                                display: flex;
                                justify-content: space-between;
                                align-items: start;
                                flex-direction: column;
                                gap: 14px;

                                span {
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    gap: 7px;
                                    color: #EBF3FE;
                                    font-size: var(--note-size);
                                    font-weight: var(--font-regular);
                                    font-family: var(--heading-font);
                                }

                                p {
                                    font-size: 16px;
                                    font-weight: var(--font-regular);
                                    color: white;
                                }
                            }
                        }
                    }

                    .item_solve {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        flex-direction: column;
                        gap: 25px;
                        background: #241F6CDB;
                        box-shadow:
                            0 0 144px 1px #241f6c9f,
                            0 0 294px 4px #241f6c9f;
                        background-image: url("https://foursw.com/wp-content/uploads/2026/02/why\ services1.png");
                        background-position: center;
                        background-repeat: no-repeat;
                        background-size: cover;
                        backdrop-filter: blur(20px);
                        border-radius: 13px;
                        width: 502px;
                        padding: 39px 10px;
                        border: 0.33px solid rgba(235, 243, 254, 0.2);

                        .solve_header {
                            display: flex;
                            flex-direction: column;
                            gap: 8px;
                            padding-inline: 24px;

                            h3 {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                gap: 3px;
                                font-size: var(--text-size);
                                font-weight: var(--font-bold);
                                color: white;

                                img {
                                    width: 32px;
                                    height: 32px;
                                }
                            }

                            p {
                                font-size: var(--note-size);
                                font-weight: 300;
                                color: white;
                            }
                        }

                        .solve_body {
                            display: flex;
                            justify-content: space-between;
                            align-items: start;
                            flex-direction: column;
                            border: 0.22px solid rgba(235, 243, 254, 0.2);
                            border-radius: 9px;
                            width: 100%;

                            .body_text {
                                display: flex;
                                flex-direction: column;
                                align-items: start;
                                gap: 5px;
                                padding: 12px 24px 33px 24px;
                                border-bottom: 0.22px solid rgba(235, 243, 254, 0.2);
                                width: 100%;

                                span {
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    gap: 5px;
                                    font-size: var(--text-size);
                                    font-weight: var(--font-regular);
                                    font-family: var(--heading-font);
                                    color: white;

                                    .shape_group {
                                        display: flex;
                                        justify-content: center;
                                        align-items: center;
                                        flex-direction: column;
                                        width: 21px;
                                        gap: 1px;

                                        .shape {
                                            width: 100%;
                                            height: 4px;
                                            border-radius: 3px;
                                            opacity: 0.3;
                                            background-color: white;
                                        }


                                    }

                                    .shape_group1 {

                                        .shape3 {
                                            opacity: 1;
                                        }
                                    }

                                    .shape_group2 {
                                        .shape3 {
                                            opacity: 1;
                                        }

                                        .shape2 {
                                            opacity: 1;
                                        }
                                    }

                                    .shape_group3 {
                                        .shape3 {
                                            opacity: 1;
                                        }

                                        .shape2 {
                                            opacity: 1;
                                        }

                                        .shape1 {
                                            opacity: 1;
                                        }
                                    }
                                }

                                p {
                                    font-size: var(--note-size);
                                    font-weight: var(--font-regular);
                                    color: white;
                                }

                                &:last-child {
                                    border-bottom: none;
                                    background: #2C2781;
                                    border-radius: 0 0 9px 9px;
                                }
                            }
                        }
                    }

                    &:nth-child(2) {
                        flex-direction: row-reverse;

                        .item_solve {
                            box-shadow:
                                0 0 144px 4px #1264c25f,
                                0 0 294px 4px #1264c25f;
                            background: #1263C2DB;
                            background-image: url("https://foursw.com/wp-content/uploads/2026/02/why\ services2.png");
                            background-position: center;
                            background-repeat: no-repeat;
                            background-size: cover;

                            .body_text {

                                &:last-child {
                                    background: #1869CC;
                                    border-radius: 0 0 9px 9px;
                                }
                            }
                        }
                    }

                    &:nth-child(3) {
                        .item_solve {
                            background: #172B85DB;
                            box-shadow:
                                0 0 144px 1px #172b85b1,
                                0 0 294px 4px #172b85b1;
                            background-image: url("https://foursw.com/wp-content/uploads/2026/02/why\ services3.png");
                            background-position: center;
                            background-repeat: no-repeat;
                            background-size: cover;

                            .body_text {

                                &:last-child {
                                    background: #223692;
                                    border-radius: 0 0 9px 9px;
                                }
                            }
                        }
                    }

                    &::after {
                        content: "";
                        position: absolute;
                        width: 2px;
                        height: 250.07351684570312px;
                        background: linear-gradient(to bottom,
                                #0d104903 0%,
                                #1E1B65 25%,
                                #2b2781ae 50%,
                                #1E1B65 75%,
                                #070A32 100%);
                        top: -35%;
                        left: 50%;
                        transform: translate(-50%, 0);
                        z-index: 0;
                    }
                }
            }
        }
    }

    &::after {
        content: "";
        position: absolute;
        width: 765px;
        height: 100%;
        background: #1B3C83;
        filter: blur(200px);
        top: -90%;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 0;
    }
}

/*=============== BANNAR ===============*/
.bannar {
    background-color: #090C3E;
    padding-block: 7rem 5rem;

    .bannar_container {

        .bannar_content {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            gap: 5rem;
            padding: 65px 16px;
            border-radius: 14px;
            width: 100%;
            background-color: #0E1142;
            background-image: url(https://foursw.com/wp-content/uploads/2026/02/lines.png);
            background-position: top;
            background-repeat: no-repeat;
            overflow: hidden;

            .img_bannar {
                position: relative;
                width: 66px;
                height: 66px;

                img {
                    width: 100%;
                    height: 100%;
                    box-shadow: 0 0 64px 0 rgb(50, 138, 241, 0.50);
                    border-radius: 8px;
                }

                &::after {
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    border-radius: 8px;
                }
            }

            .bannar_text {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                text-align: center;
                gap: 3.5rem;
                z-index: 1;

                .bannar_header {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    gap: 24px;
                    color: white;

                    h2 {
                        font-size: var(--h1-font-size);
                        font-weight: var(--font-bold);
                    }

                    p {
                        font-size: var(--text-size);
                        font-weight: var(--font-regular);
                        width: 585px;
                    }
                }

                a {
                    background-color: #0E1142;
                    backdrop-filter: blur(12px);
                    width: 191px;
                    height: 48px;
                    border: 2px solid #212368;
                    font-size: 16px;
                    font-weight: var(--font-regular);
                    color: white;
                    border-radius: 2px;
                    font-family: var(--heading-font);
                    backdrop-filter: blur(10px);
                }

            }

            &::before {
                content: "";
                position: absolute;
                width: 608px;
                height: 141px;
                background: #316bff;
                filter: blur(158px);
                transform: rotate(35.23deg);
                bottom: 60px;
                left: -120px;
                z-index: 1;
            }

            &::after {
                content: "";
                position: absolute;
                width: 608px;
                height: 141px;
                background: #316bff;
                filter: blur(158px);
                transform: rotate(35.23deg);
                top: 60px;
                right: -120px;
                z-index: 1;
            }
        }
    }
}

/*=============== OUR COMPANYS ===============*/
.our_companys {
    background-color: #090C3E;

    .our_companys_container {

        .our_companys_content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            gap: 82px;

            .our_companys_header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: center;
                flex-direction: column;
                gap: 9px;

                h2 {
                    font-size: var(--h3-font-size);
                    font-weight: var(--font-medium);
                    color: #E6E7EC;
                }

                p {
                    font-size: var(--text-size);
                    font-weight: var(--font-regular);
                    color: #E0EDFD;
                    font-family: var(--heading-font);
                }
            }

            .marquee_swiper {
                width: 100%;
                overflow: hidden;
            }

            .marquee_swiper .swiper-wrapper {
                transition-timing-function: linear !important;
            }

            .marquee_swiper .swiper-slide {
                width: auto;
                display: flex;
                align-items: center;
            }

            .marquee_swiper img {
                height: 80px;
                width: auto;
                filter: grayscale(100%);
                transition: filter 0.3s ease;

                &:hover {
                    filter: grayscale(0%);
                }
            }

            .statistics_strip {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 35px;
                width: fit-content;

                .stat_item {
                    display: flex;
                    justify-content: center;
                    align-items: end;
                    gap: 4px;

                    p {
                        font-size: var(--note-size);
                        font-weight: var(--font-regular);
                        color: #B3B4C3;
                    }
                }

                &::after {
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 1px;
                    background: linear-gradient(90deg, #090C3E 10.63%, #4DA3FF 43.79%, #2ECC71 64.18%, #090C3E 88.11%);
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
        }
    }
}

/*=============== FOOTER ===============*/
.footer {
    position: relative;
    background-color: #090C3E;
    padding-block: 18rem 0rem;
    overflow: hidden;

    .footer_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 8.4375rem;

        .footer_content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            gap: 10px;
            z-index: 1;

            .footer_logo {
                width: 621.0297px;
                height: 74.7379px;

                img {
                    width: 100%;
                    height: 100%;
                }
            }

            .footer_text {
                h2 {
                    font-size: var(--h2-font-size);
                    font-weight: var(--font-regular);
                    color: white;
                    font-family: var(--heading-font);
                }
            }

            .footer_btn {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-direction: column;
                gap: 10px;

                a {
                    width: 213px;
                    height: 44px;
                    border-radius: 2px;
                    background-blend-mode: overlay;
                    background: radial-gradient(163.33% 163.33% at 50% 100%, rgba(255, 255, 255, 0.45) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%);
                    background: #328AF1;
                    box-shadow: 0px 10px 19px 0px #316BFF47;
                    border: 1px solid #71B1FC;
                    font-size: var(--button-size);
                    font-weight: var(--font-regular);
                    color: white;
                    margin-top: 59px;
                    padding-bottom: 10px;

                }

                span {
                    font-size: var(--note-size);
                    font-weight: var(--font-regular);
                    color: #768ED7;
                }
            }
        }

        .footer_copyright {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-block: 18px 2.625rem;
            padding-inline: 8rem;
            background-color: rgba(9, 12, 62, 1);
            width: 100%;

            .social {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 22px;

                a {
                    width: 31px;
                    height: 31px;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }
            }

            .slogan {
                font-size: var(--h3-font-size);
                font-weight: var(--font-medium);

                background: linear-gradient(223.44deg,
                        #FFFFFF 8.15%,
                        rgba(255, 255, 255, 0) 118.13%);

                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;

                background-clip: text;
                color: transparent;
            }

            .pages {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 33px;
                padding-top: 10px;

                a {
                    font-size: 16px;
                    font-weight: 300;
                    color: #E6E7EC;
                    text-decoration: underline;
                }
            }

            &::after {
                content: "";
                position: absolute;
                width: 100%;
                height: 1px;
                background: linear-gradient(90deg, rgba(255, 255, 255, 0) 15.09%, rgb(255 106 106 / 56%) 50.36%, rgba(255, 255, 255, 0) 91%);
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                z-index: 0;
            }
        }

    }

    &::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 405px;
        background: #090C3E;
        top: -190px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: 0;
    }

    &::before {
        content: "";
        position: absolute;
        width: 0px;
        height: 300px;
        box-shadow: rgba(29, 91, 246, 0.375) 0 0px 225px 500px;
        border-radius: 25%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .scrollTopBtn {
        position: absolute;
        right: 4%;
        bottom: 130px;
        width: 36.8185px;
        height: 49.099998474121094px;
        cursor: pointer;

        img {
            width: 100%;
            height: 100%;
        }
    }

    .watch_video {
        position: fixed;
        left: 15px;
        bottom: 15px;
        z-index: 10;


        h2 {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(99, 171, 254, 0.20);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);

            border: 1px solid rgba(255, 255, 255, 0.25);

            box-shadow:
                0 8px 40px rgba(18, 99, 194, 0.25);

            border-radius: 6px;
            font-size: 16px;
            font-weight: 900;
            padding-inline: 10px;
            padding-bottom: 5px;
            color: white;
            opacity: 0.8;

            &::after {
                content: "";
                position: absolute;
                width: 103.3506px;
                height: 43.080326080322266px;
                background-image: url(https://foursw.com/wp-content/uploads/2026/02/watch\ video.png);
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                top: -170%;
                left: 0;
                opacity: 0;
                transition: opacity 0.3s ease-in-out;
            }

            &:hover::after {
                opacity: 1;
            }

            &:hover {
                opacity: 1;
            }
        }


    }

}

/*=============== WATCH VIDEO ===============*/
.myvideo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
    width: 80%;
    max-width: 860px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}

/* بدل nesting */
.myvideo video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.myvideo .video_container {
    position: relative;
    /* مهم عشان زرار X يتظبط */
}

.myvideo .closeVideo {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #179BD7;
    cursor: pointer;
    z-index: 2;
}

/*=============== RESPONSIVE ===============*/
@media (max-width: 1200px) {

    .header.scrolled .nav.container {
        max-width: 1070px;
    }

    /*===============HOME===============*/
    .home {

        .home_container {
            gap: 130px;

            .home_content {
                gap: 40px;

                .pra {
                    width: 380px;
                    height: 38px;
                }

                .our_serv {
                    gap: 10px;

                    .serv {
                        width: 108px;
                        height: 66px;

                        i {
                            font-size: 19px;
                        }
                    }
                }
            }

            .arrows {
                width: 125px;
            }
        }

        .seo_img {
            width: 160px;
            height: 160px;
            top: 14%;
            right: 4%;
        }

        .timer_img {
            width: 115px;
            height: 115px;
            top: 18%;
            left: 4%;
        }

        .idea_img2 {
            width: 150px;
            height: 150px;
            top: 72%;
            right: 3%;
        }

        .target_img {
            width: 140px;
            height: 140px;
            top: 78%;
            left: 6%;
        }

        .code_img,
        .idea_img3 {
            width: 68px;
            height: 68px;
        }

        .code_img {
            top: 50%;
            right: 18%;
        }

        .idea_img3 {
            top: 48%;
            left: 18%;
        }

        .code_snippets {
            padding: 11px;

            p,
            .p_code {
                width: 155px;
            }
        }

        .code_snippets1 {
            top: 26%;
            right: 4%;
        }

        .code_snippets4 {
            top: 27%;
            left: 4%;
        }

        .code_snippets2 {
            top: 82%;
            left: 6%;
        }

        .code_snippets3 {
            top: 80%;
            right: 8%;
        }
    }

    /*===============PROJECTS===============*/
    .projects {
        padding-block: 9.5rem 6.8rem;

        .projects_container {
            .projects_content {
                gap: 40px;

                .projects_data {

                    .header_data {
                        .section_subtitle {
                            font-size: 20px;
                        }
                    }

                    .projects_content_data {
                        .border {
                            width: 60px;
                            height: 225px;

                            img {
                                width: 60px;
                                height: 41px;
                            }
                        }

                        .group_text {
                            gap: 45px;

                            a {
                                width: 175px;
                                height: 40px;
                            }
                        }
                    }
                }

                .swiper_container {
                    width: 520px;
                    padding: 22px;

                    .project_swiper {
                        .swiper-slide {
                            .project_link {
                                width: 175px;
                                height: 41px;
                            }
                        }

                        .buttons {
                            .swiper-button-prev {
                                right: 6%;
                            }

                            .swiper-pagination {
                                gap: 5px;

                                .swiper-pagination-bullet {
                                    width: 12px;
                                    height: 12px;
                                }
                            }
                        }
                    }

                    &::after {
                        height: 480px;
                        filter: blur(110px);
                    }
                }
            }
        }

        .symbols_img {
            width: 105px;
            height: 105px;
            top: 55px;
            left: 90px;
        }

        .tree_img {
            width: 110px;
            height: 107px;
            bottom: 50px;
            left: 35px;
        }

        .rocet_img {
            width: 120px;
            height: 120px;
            right: 28%;
            bottom: 34px;
        }

        .check_hand_img {
            width: 92px;
            height: 49px;
            right: 120px;
        }
    }

    /*===============ABOUT US===============*/
    .about_us {
        padding-block: 6rem;

        .about_us_container {
            gap: 120px;

            .about_us_content {
                gap: 45px;

                .swiper_container {
                    .about_swiper {
                        width: 340px;
                        padding: 16px 16px 68px 16px;
                    }
                }

                .target {
                    width: 320px;
                    height: 320px;

                    h2 {
                        width: 200px;
                    }
                }
            }

            .logo_img {
                width: 122px;
                height: 126px;
            }
        }

        .contract {
            width: 165px;
            height: 165px;
            bottom: 155px;
            left: 80px;
        }

        .target_image {
            width: 132px;
            height: 132px;
            bottom: 40px;
            right: 75px;
        }
    }

    /*===============SERVICES===============*/
    .services {
        padding-block: 7rem 10rem;

        .services_container {
            .services_content {
                gap: 90px;

                .services_header {
                    gap: 20px;

                    p {
                        font-size: 19px;
                    }

                    a {
                        width: 220px;
                        height: 40px;
                    }

                    &::after,
                    &::before {
                        width: 250px;
                        height: 170px;
                        filter: blur(95px);
                    }
                }

                .swiper {
                    width: 880px;
                    padding-bottom: 6rem;

                    .swiper-slide {
                        padding: 18px;

                        .services_data {
                            width: 275px;
                        }

                        .services_img {
                            width: 510px;
                            height: 405px;
                        }
                    }

                    .swiper-pagination {
                        .swiper-pagination-bullet {
                            width: 13px;
                            height: 13px;
                        }

                        .swiper-pagination-bullet-active {
                            width: 52px;
                        }
                    }
                }
            }
        }

        .decoration1,
        .decoration2 {
            width: 235px;
            height: 215px;
        }

        .decoration3,
        .decoration4 {
            width: 285px;
            height: 260px;
        }

        .decoration3 {
            left: 26%;
        }

        .decoration4 {
            right: 26%;
        }

        .chart,
        .layer {
            font-size: 90px;
        }

        .chart {
            right: 40px;
        }

        .layer {
            left: 40px;
        }
    }

    /*===============TESTIMONIALS===============*/
    .testimonials {
        padding-block: 6.2rem 7rem;

        .testimonials_container {
            .testimonials_content {
                gap: 60px;

                .testimonials_header {
                    width: 620px;

                    h2 {
                        &::after {
                            width: 330px;
                        }
                    }
                }

                .testimonials_swiper {
                    width: 500px;
                }
            }
        }
    }

    /*===============WHY SERVICES===============*/
    .why_services {
        padding-block: 5.2rem 12.5rem;

        .why_services_container {
            .why_services_content {
                gap: 9rem;

                .why_services_header {
                    gap: 55px;

                    .header_text {
                        p {
                            width: 500px;
                        }
                    }

                    .header_btns {
                        gap: 40px;

                        .btn {
                            width: 165px;
                            height: 43px;
                        }
                    }

                    &::after {
                        top: 42px;
                        left: -40px;
                    }
                }

                .why_services_data {
                    gap: 9rem;

                    .item {
                        .item_text {
                            width: 460px;
                            gap: 40px;

                            .item_body {
                                gap: 30px;

                                .body_text {
                                    p {
                                        font-size: 15.5px;
                                    }
                                }
                            }
                        }

                        .item_solve {
                            width: 470px;
                            padding: 34px 10px;

                            .solve_body {
                                .body_text {
                                    padding: 11px 22px 16px 22px;
                                }
                            }
                        }

                        &::after {
                            height: 240px;
                            top: -32%;
                        }
                    }
                }
            }
        }

        &::after {
            width: 720px;
            filter: blur(190px);
            top: -95%;
        }
    }

    /*===============BANNAR===============*/
    .bannar {
        padding-block: 6.5rem 4.5rem;

        .bannar_container {
            .bannar_content {
                gap: 4.5rem;
                padding: 60px 16px;

                .bannar_text {
                    gap: 3.2rem;

                    .bannar_header {
                        h2 {
                            font-size: calc(var(--h1-font-size) * 0.92);
                        }

                        p {
                            width: 540px;
                        }
                    }
                }

                &::before,
                &::after {
                    width: 560px;
                    height: 130px;
                    filter: blur(150px);
                }

                &::before {
                    bottom: 55px;
                    left: -110px;
                }

                &::after {
                    top: 55px;
                    right: -110px;
                }
            }
        }
    }

    /*===============OUR COMPANYS===============*/
    .our_companys {
        .our_companys_container {
            .our_companys_content {
                gap: 48px;

                .our_companys_header {
                    h2 {
                        font-size: calc(var(--h3-font-size) * 0.98);
                    }
                }

                .marquee_swiper img {
                    height: 92px;
                }

                .statistics_strip {
                    gap: 30px;
                }
            }
        }
    }

    /*===============FOOTER===============*/
    .footer {
        padding-block: 16rem 0;

        .footer_container {
            gap: 7.5rem;

            .footer_content {
                .footer_logo {
                    width: 560px;
                    height: auto;
                }

                .footer_text {
                    h2 {
                        font-size: calc(var(--h2-font-size) * 0.95);
                    }
                }

                .footer_btn {
                    a {
                        margin-top: 50px;
                    }
                }
            }

            .footer_copyright {
                padding-inline: 5rem;

                .slogan {
                    font-size: calc(var(--h3-font-size) * 0.75);
                }

                .pages {
                    gap: 26px;
                }
            }
        }

        &::after {
            height: 380px;
            top: -180px;
            width: 120%;
        }

        &::before {
            box-shadow: rgba(29, 91, 246, 0.34) 0 0px 210px 440px;
        }

        .scrollTopBtn {
            bottom: 120px;
        }
    }

}

@media (max-width: 991px) {

    .header {
        .mobile_menu {
            top: 55px;
            right: 80px;
            width: 203.49369521617297px;
            gap: 29px;

            .nav_list {
                gap: 29px;
            }
        }
    }

    .nav {
        padding: 7px 40px !important;
    }

    .header.scrolled {
        .nav {
            padding: 7px 40px;
        }

        .mobile_menu {
            top: 110px;
            right: 120px;
        }
    }

    .header.scrolled .nav.container {
        max-width: 90%;
    }

    .nav_list,
    .nav_right,
    .btn_contact {
        display: none !important;
    }

    .nav_toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .mobile_menu.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    /*=============== HOME ===============*/
    .home {

        .home_container {
            gap: 171.5px;

            .home_content {
                gap: 47px;

                .pra {
                    width: 377px;
                    height: 38px;
                    font-size: 18px;
                }

                .home_title {
                    font-size: 40px;

                    .idea {
                        &::after {
                            width: 27.441558837890625px;
                            height: 27.441558837890625px;
                            top: 14px;
                        }
                    }

                    .search {
                        &::after {
                            width: 24.799999237060547px;
                            height: 24.799999237060547px;
                            top: 13px;
                        }
                    }
                }

                .smile {
                    font-size: 18px;

                    &::after {
                        width: 111px;
                        height: 18px;
                        bottom: -9px;
                    }
                }

                .our_serv {
                    gap: 16px;

                    .serv {
                        width: 112px;
                        height: 68px;

                        i {
                            font-size: 18px;
                        }

                        h2 {
                            font-size: 18px;
                        }
                    }
                }
            }

            .arrows {
                width: 120px;

                .arrow1 {
                    width: 17px;
                    height: auto;
                }

                .arrow2 {
                    width: 20px;
                    height: auto;
                }

                .arrow3 {
                    width: 27px;
                    height: auto;
                }
            }
        }

        &::before {
            width: 190px;
            filter: blur(110px);
            opacity: 0.85;
        }

        &::after {
            width: 220px;
            filter: blur(110px);
            opacity: 0.85;
        }

        .seo_img {
            width: 121px;
            height: 121px;
            top: 13%;
            right: 36px;
        }

        .timer_img {
            width: 101px;
            height: 101px;
            top: 17%;
            left: 68px;
        }

        .idea_img2 {
            width: 142px;
            height: 142px;
            top: 74%;
            right: 23px;
        }

        .target_img {
            width: 133px;
            height: 133px;
            top: 79%;
            left: 21px;
        }

        .code_img,
        .idea_img3 {
            width: 62px;
            height: 62px;
        }

        .code_img {
            top: 52%;
            right: 14%;
        }

        .idea_img3 {
            top: 50%;
            left: 14%;
        }

        /* نخلي السنايبس جوه المشهد ومتبقاش مزاحمه */
        .code_snippets {
            width: 161px;
            padding: 10px;
            z-index: 4;

            .span {
                font-size: 9px;
            }

            p,
            .p_code {
                font-size: 10px;
                width: 100%;
            }

            .p_code {
                margin-left: 5px;
            }
        }

        .code_snippets1 {
            top: 20%;
            right: 3%;
        }

        .code_snippets4 {
            top: 22%;
            left: 3%;
        }

        .code_snippets2 {
            top: 83%;
            left: 4%;
        }

        .code_snippets3 {
            top: 80%;
            right: 5%;
        }
    }

    /*===============PROJECTS===============*/
    .projects {
        padding-block: 9rem 6.2rem;

        .projects_container {
            .projects_content {
                align-items: center;
                gap: 55px;

                .projects_data {
                    width: 100%;
                    gap: 45px;
                    z-index: 1;

                    .header_data {

                        .section_title {
                            font-size: 32px;
                        }

                        .section_subtitle {
                            font-size: 22px;
                        }
                    }

                    .projects_content_data {
                        gap: 5px;

                        .border {
                            margin-top: -7rem;
                            height: 201px;
                            width: 56px;

                            img {
                                width: 58px;
                                height: 40px;
                            }

                            .img1 {
                                top: 8%;
                                left: 2%;
                            }

                            .img2 {
                                top: 43%;
                                left: 2%;
                            }

                            .img3 {
                                bottom: 5px;
                            }
                        }

                        .group_text {
                            max-width: 620px;
                            gap: 44px;

                            .text {
                                padding: 0 10px;

                                p {
                                    font-size: 14px;
                                    padding-bottom: 5px;
                                }
                            }

                            a {
                                font-size: 14px;
                                width: 185px;
                                height: 45px;
                                margin-top: -10px;
                            }
                        }
                    }
                }

                .swiper_container {
                    width: 100%;
                    max-width: 414px;
                    padding: 17.95px;

                    .project_swiper {
                        padding-bottom: 44px;

                        .swiper-slide {
                            .project_link {
                                width: 175px;
                                height: 41px;
                            }
                        }

                        .buttons {
                            .swiper-button-prev {
                                top: 95%;
                                right: 4%;
                            }

                            .swiper-pagination {
                                bottom: 8px;

                                .swiper-pagination-bullet {
                                    width: 12px;
                                    height: 12px;
                                }
                            }
                        }
                    }

                    &::after {
                        height: 460px;
                        filter: blur(110px);
                    }
                }
            }
        }

        &::before {
            width: 240px;
            height: 120px;
            filter: blur(110px);
            opacity: 0.85;
        }

        .symbols_img {
            width: 95px;
            height: 95px;
            top: 40px;
            left: 60px;
            opacity: 0.95;
        }

        .tree_img {
            width: 100px;
            height: 98px;
            bottom: 40px;
            left: 25px;
            opacity: 0.95;
        }

        .rocet_img {
            width: 112px;
            height: 112px;
            right: 20%;
            bottom: 28px;
            opacity: 0.95;
        }

        .check_hand_img {
            width: 88px;
            height: 46px;
            right: 70px;
            top: 36%;
            opacity: 0.95;
        }
    }

    /*===============ABOUT US===============*/
    .about_us {
        padding-block: 8.4375rem;

        .about_us_container {
            gap: 9rem;

            .about_us_content {
                justify-content: center;
                gap: 25px;

                .swiper_container {
                    .about_swiper {
                        padding: 12px 12px 54px 12px;
                        width: 300px;

                        .swiper-slide {
                            gap: 19px;

                            .swiper_header {
                                text-align: center;
                                gap: 4px;

                                img {
                                    width: 35px;
                                    height: 35px;
                                }

                                h2 {
                                    font-size: 24px;
                                }
                            }

                            .swiper_body {
                                gap: 10px;

                                p {
                                    font-size: 12px;
                                }
                            }
                        }
                    }

                    &::after {
                        bottom: -50%;
                        left: 38%;
                        width: 45%;
                        height: 45%;
                        opacity: 0.95;
                        z-index: 1;
                    }
                }

                .swiper_container2 {
                    &::after {
                        left: 25%;
                    }
                }

                .target {
                    width: 225px;
                    height: 225px;

                    h2 {
                        font-size: 40px;
                        width: 190px;
                    }
                }
            }

            .logo_img {
                position: relative;
                width: 118px;
                height: 122px;

                &::after {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 50%;
                    height: 3px;
                    box-shadow: 0 0 150px 44px rgba(50, 138, 241);
                }
            }
        }

        .contract {
            width: 150px;
            height: 150px;
            bottom: 140px;
            left: 55px;
            opacity: 0.95;
        }

        .target_image {
            width: 122px;
            height: 122px;
            bottom: 35px;
            right: 55px;
            opacity: 0.95;
        }
    }

    /*===============SERVICES===============*/
    .services {
        padding-block: 6.5rem 9rem;

        .services_container {
            .services_content {
                gap: 100px;

                .services_header {
                    h2 {
                        font-size: 32px;
                    }

                    p {
                        font-size: 20px;
                    }

                    a {
                        width: 215px;
                    }

                    &::after,
                    &::before {
                        width: 240px;
                        height: 160px;
                        filter: blur(90px);
                    }
                }

                .swiper {
                    width: 100%;
                    max-width: 660px;
                    padding-bottom: 5.8rem;

                    .swiper-slide {
                        gap: 20px;
                        padding: 16px;

                        .services_data {
                            width: 250px;
                            gap: 21px;

                            .data_header {
                                gap: 5px;

                                span {
                                    font-size: 11px;
                                }

                                h2 {
                                    font-size: 24px;
                                }

                                p {
                                    font-size: 12px;
                                }
                            }

                            .data_list {
                                gap: 11px;

                                ul {
                                    gap: 8.75px;

                                    li {
                                        font-size: 12px;
                                    }
                                }
                            }

                            a {
                                width: 185px;

                                &::after {
                                    width: 186px;
                                }
                            }
                        }

                        .services_img {
                            width: 333px;
                            height: 352px;

                            .plugins {
                                padding: 0px 18px 3px 18px;

                                span {
                                    font-size: 15px;
                                }
                            }
                        }
                    }
                }
            }
        }

        /* نقلل الزحمة */
        .decoration3,
        .decoration4 {
            width: 311px;
            height: 285px;
        }

        .decoration3 {
            left: 15%;
        }

        .decoration4 {
            right: 15%;
        }

        .decoration1,
        .decoration2 {
            width: 253.181884765625px;
            height: 232.08367919921875px;
            opacity: 0.95;
        }

        .chart,
        .layer {
            font-size: 80px;
        }

        .chart {
            right: 28px;
        }

        .layer {
            left: 28px;
        }
    }

    /*===============TESTIMONIALS===============*/
    .testimonials {
        padding-block: 6rem 6.6rem;

        .testimonials_container {
            .testimonials_content {
                gap: 55px;

                .testimonials_header {
                    width: 100%;
                    max-width: 535px;

                    .span_header {
                        width: 160px;
                        height: 37px;
                        font-size: 14px;
                    }

                    h2 {
                        font-size: 32px;
                        margin-bottom: 20px;

                        &::after {
                            width: 250px;
                        }
                    }

                    p {
                        font-size: 14px;
                        max-width: 100%;
                    }
                }

                .testimonials_swiper {
                    width: 100%;
                    max-width: 400.73333740234375px;

                    .swiper-slide {
                        padding: 25.6px 12.8px;

                        .testimonial_data {
                            gap: 15px;

                            .data_header {
                                gap: 20px;

                                img {
                                    width: 62px;
                                    height: 62px;
                                }

                                .header_text {
                                    h3 {
                                        font-size: 15px;
                                    }

                                    span {
                                        font-size: 13px;
                                    }
                                }
                            }

                            p {
                                font-size: 13px;
                            }
                        }

                        &::after {
                            width: 87.82221984863281px;
                            height: 87.82221984863281px;
                            top: 10px;
                            left: 10px;
                        }
                    }
                }
            }
        }
    }

    /*===============WHY SERVICES===============*/
    .why_services {
        padding-block: 5rem 11.5rem;

        .why_services_container {
            .why_services_content {
                gap: 10.75rem;

                .why_services_header {
                    gap: 63px;

                    .header_text {

                        h2 {
                            font-size: 40px;
                        }

                        p {
                            width: 100%;
                            font-size: 18px;
                            max-width: 520px;
                        }
                    }

                    .header_btns {
                        gap: 48px;

                        .btn {
                            font-size: 16px;
                            width: 195px;
                            height: 44px;
                        }
                    }

                    &::after {
                        width: 52px;
                        left: -55px;
                        top: 55px;
                        top: 38px;
                        opacity: 0.95;
                    }
                }

                .why_services_data {
                    gap: 10.1875rem;

                    .item {
                        gap: 93px;

                        .item_text {
                            width: 100%;
                            max-width: 430px;
                            gap: 39px;

                            .item_header {
                                gap: 12px;

                                img {
                                    width: 39px;
                                    height: 39px;
                                }

                                h2 {
                                    font-size: 24px;
                                }
                            }

                            .item_body {
                                gap: 31px;

                                .body_text {
                                    gap: 12px;

                                    span {
                                        gap: 6px;
                                        font-size: 14px;
                                    }

                                    p {
                                        font-size: 14px;
                                    }
                                }
                            }
                        }

                        .item_solve {
                            width: 100%;
                            max-width: 370px;
                            gap: 15px;
                            padding: 28px 16px;

                            .solve_header {
                                gap: 3px;

                                h3 {
                                    font-size: 14px;

                                    img {
                                        width: 23.1287px;
                                        height: 23.1287px;
                                    }
                                }

                                p {
                                    font-size: 12px;
                                }
                            }

                            .solve_body {
                                gap: 20px;

                                .body_text {
                                    padding: 8.67px 17.35px;

                                    span {
                                        font-size: 14px;

                                        .shape_group {
                                            width: 16px;

                                            .shape {
                                                height: 3px;
                                            }
                                        }
                                    }

                                    p {
                                        font-size: 12px;
                                    }
                                }
                            }
                        }

                        /* نخلي الفاصل عمودي يظهر انسيابي */
                        &::after {
                            height: 220px;
                            top: -28%;
                        }
                    }
                }
            }
        }

        &::after {
            width: 680px;
            filter: blur(185px);
            top: -100%;
        }
    }

    /*===============BANNAR===============*/
    .bannar {
        padding-block: 6rem 4.2rem;

        .bannar_container {
            .bannar_content {
                gap: 44px;
                padding: 64px 16px;

                .bannar_text {
                    gap: 56px;

                    .bannar_header {
                        gap: 24px;

                        h2 {
                            font-size: 40px;
                        }

                        p {
                            font-size: 16px;
                            width: 100%;
                            max-width: 560px;
                        }
                    }

                    a {
                        width: 191px;
                        height: 42px;
                    }
                }

                &::before,
                &::after {
                    width: 200px;
                    height: 125px;
                    filter: blur(145px);
                    opacity: 0.95;
                }

                &::before {
                    bottom: 50px;
                    left: -120px;
                }

                &::after {
                    top: 50px;
                    right: -120px;
                }
            }
        }
    }

    /*===============OUR COMPANYS===============*/
    .our_companys {
        .our_companys_container {
            .our_companys_content {
                gap: 52px;

                .our_companys_header {
                    gap: 9px;

                    h2 {
                        font-size: 32px;
                    }

                    p {
                        font-size: 18px;
                    }
                }

                .marquee_swiper img {
                    height: 86px;
                }

                .statistics_strip {
                    gap: 31px;

                    .stat_item {
                        gap: 4px;

                        p {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }

    /*===============FOOTER===============*/
    .footer {
        padding-block: 14.5rem 0;

        .footer_container {
            gap: 6.5rem;

            .footer_content {
                .footer_logo {
                    width: 520px;
                }

                .footer_text {
                    h2 {
                        font-size: 28px;
                        text-align: center;
                    }
                }

                .footer_btn {
                    a {
                        width: 150px;
                        height: 31px;
                        margin-top: 44px;
                        font-size: 17px;
                    }
                }
            }

            .footer_copyright {
                padding-inline: 3rem;
                padding-block: 20px;
                gap: 18px;

                .social {
                    gap: 15px;

                    a {
                        width: 21.7074px;
                        height: 21.7074px;
                    }
                }

                .pages {
                    gap: 23px;

                    a {
                        font-size: 11.27px;
                    }
                }

                .slogan {
                    font-size: 22.53px;
                }
            }
        }

        &::after {
            height: 360px;
            top: -175px;
        }

        .scrollTopBtn {
            right: 3%;
            bottom: 110px;
            width: 34px;
            height: 46px;
        }

        .watch_video {
            left: 12px;
            bottom: 12px;
        }
    }
}

@media (max-width: 768px) {
    .header {

        .nav {
            padding: 11px 24px !important;

            .img_logo {
                width: 143.9651px;
                height: 17.3252px;
            }
        }

        .mobile_menu {
            top: 55px;
            right: 60px;
            width: 203.49369521617297px;
            gap: 29px;

            .nav_list {
                gap: 29px;
            }
        }

    }

    .header.scrolled {
        top: 34px;

        .mobile_menu {
            top: 90px;
            right: 100px;
        }
    }

    .header.scrolled .nav {
        padding: 7px 42px;
    }

    .header.scrolled .nav.container {
        max-width: 87%;
    }

    /*=============== HOME ===============*/
    .home {
        padding-block: 15rem 7rem;

        .home_container {
            gap: 152px;

            .home_content {
                gap: 47px;

                .pra {
                    width: 100%;
                    max-width: 315px;
                    height: 38px;
                    font-size: 14px;
                    padding-inline: 11px;
                    gap: 11px;
                }

                .home_title {
                    /* العناوين عادة بتحتاج تهدي ع الموبايل */
                    font-size: 32px;

                    .idea {
                        &::after {
                            width: 28px;
                            height: 28px;
                            top: 4px;
                        }
                    }

                    .search {
                        &::after {
                            width: 24.799999237060547px;
                            height: 24.799999237060547px;
                            top: 7px;
                        }
                    }
                }

                .smile {
                    font-size: 18px;

                    &::after {
                        width: 110px;
                        height: 18px;
                        bottom: -8px;
                    }
                }

                .our_serv {
                    justify-content: center;
                    max-width: 368px;
                    width: 100%;

                    .serv {
                        width: 112px;
                        height: 68px;

                        i {
                            font-size: 20px;
                        }

                        h2 {
                            font-size: 18px;
                        }
                    }
                }
            }

            .arrows {
                width: 110px;
                gap: 5px;
            }
        }

        &::before,
        &::after {
            opacity: 0.75;
            filter: blur(100px);
        }

        /* نقلل الزحمة: نخفي الديكوريشن الكبير ونسيب المهم */
        .seo_img {
            width: 96.38395690917969px;
            height: 96.38395690917969px;
            top: 13%;
            right: 28px;
            opacity: 0.9;
        }

        .target_img {
            width: 109.25px;
            height: 109.25px;
            top: 74%;
            left: 28px;
            opacity: 0.9;
        }



        .timer_img {
            width: 75.89595794677734px;
            height: 75.89595794677734px;
            top: 14%;
            left: 3%;
            opacity: 0.9;
        }

        .code_img,
        .idea_img3 {
            width: 56px;
            height: 56px;
            opacity: 0.9;
        }

        .code_img {
            top: 58%;
            right: 6%;
        }

        .idea_img3 {
            top: 58%;
            left: 6%;
        }

        /* السنايبس: نخليهم اتنين بس عشان الشكل */
        .code_snippets2 {
            top: 80%;
            left: 4%;
        }

        .code_snippets3 {
            top: 80%;
            right: 5%;
        }

        .code_snippets {
            width: fit-content;
            padding: 6.56px;

            span {
                font-size: 8px;
            }

            p,
            .p_code {
                width: 146px;
                font-size: 7.5px;
            }
        }

        .code_snippets1 {
            top: 18%;
            right: 4%;
        }

        .code_snippets4 {
            top: 18%;
            left: 4%;
        }
    }

    /*===============PROJECTS===============*/
    .projects {
        padding-block: 5.8rem 8.5rem;

        .projects_container {
            .projects_content {
                flex-direction: column-reverse;
                align-items: center;
                justify-content: center;
                gap: 65px;

                .projects_data {
                    width: 415px;
                    gap: 38px;

                    .header_data {
                        .section_title {
                            font-size: 24px;
                        }

                        .section_subtitle {
                            font-size: 18px;
                        }
                    }


                    .projects_content_data {

                        .border {
                            margin-right: -15px;

                            &::after {
                                position: absolute;
                                content: "";
                                top: 0;
                                left: 0;
                                transform: translate(-25%, -99%);
                                width: 65px;
                                height: 500.25px;
                                z-index: -1;
                                border-right: 3px solid #362984;
                            }
                        }

                        .group_text {
                            gap: 44px;

                            a {
                                width: 241px;
                                height: 42px;
                            }
                        }
                    }
                }

                .swiper_container {
                    width: 414px;
                    padding: 20px;

                    .project_swiper {
                        .swiper-slide {
                            .project_link {
                                width: 170px;
                                height: 40px;
                                font-size: 0.95rem;
                            }
                        }

                        .buttons {
                            .swiper-button-prev {
                                right: 5%;
                            }
                        }
                    }

                    &::after {
                        height: 420px;
                        filter: blur(105px);
                    }
                }
            }
        }

        /* نقلل الزحمة */
        .check_hand_img,
        .rocet_img {
            display: none;
        }

        .symbols_img {
            width: 88px;
            height: 88px;
            top: 32px;
            left: 28px;
        }

        .tree_img {
            width: 92px;
            height: 90px;
            bottom: 30px;
            left: 18px;
        }
    }

    /*===============ABOUT US===============*/
    .about_us {
        padding-block: 5rem;

        .about_us_container {
            position: relative;
            gap: 95px;

            .about_us_content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                column-gap: 110px;
                row-gap: 15rem;

                .swiper_container {
                    width: 100%;
                    max-width: 280px;

                    .about_swiper {
                        width: 100%;
                        padding: 12px 12px 54px 12px;

                        .swiper-slide {
                            .swiper_header {
                                h2 {
                                    font-size: 24px;

                                    &::after {
                                        width: 145px;
                                        height: 17px;
                                        bottom: -5px;
                                        left: 52px;
                                    }
                                }
                            }

                            .swiper_text {
                                gap: 9px;

                                p {
                                    font-size: 12px;
                                }
                            }
                        }

                        .swiper-pagination {
                            gap: 9px;

                            .swiper-pagination-bullet {
                                width: 12px;
                                height: 12px;
                            }
                        }
                    }

                    /* السهم بيزحم على الموبايل ف نخليه اخف */
                    &::after {
                        bottom: -65%;
                        left: 50%;
                        transform: translateX(-50%) rotate(60deg);
                        width: 60%;
                        height: 60%;
                        z-index: 0;
                    }
                }

                .swiper_container2 {
                    order: 1;

                    &::after {
                        bottom: -10%;
                        left: -15%;
                    }
                }


                .target {
                    width: 264px;
                    height: 264px;

                    h2 {
                        font-size: 40px;
                        width: 210px;
                    }
                }
            }

            .logo_img {
                position: absolute;
                top: 82%;
                left: 20%;
                transform: translate(-50%, -50%);
                width: 115.73717616335345px;
                height: 119.02444090680022px;
            }
        }

        .contract {
            width: 124px;
            height: 124px;
            bottom: 50%;
            left: 80%;
            opacity: 0.5;
        }

        .target_image {
            width: 100px;
            height: 100px;
            bottom: 28px;
            right: 85%;
            opacity: 0.5;
        }
    }

    /*===============SERVICES===============*/
    .services {
        padding-block: 6rem 8.2rem;

        .services_container {
            .services_content {
                gap: 97px;

                .services_header {
                    gap: 18px;

                    h2 {
                        font-size: 24px;
                        width: 475px;
                    }

                    p {
                        font-size: 18px;
                    }

                    a {
                        font-size: 16px;
                        margin-top: 34px;
                        width: 215px;
                    }

                    &::after,
                    &::before {
                        display: none;
                    }
                }

                .swiper {
                    max-width: 630px;
                    padding-bottom: 5.6rem;

                    .swiper-slide {
                        gap: 0;

                        .services_data {
                            width: 100%;
                            max-width: 223px;
                            gap: 20px;

                            .data_header {
                                gap: 4.5px;

                                span {
                                    font-size: 11px;
                                }

                                h2 {
                                    font-size: 24px;

                                }

                                p {
                                    font-size: 12px;
                                    max-width: 100%;
                                }
                            }

                            .data_border {
                                background: linear-gradient(to left,
                                        rgba(16, 24, 98, 0) 0%,
                                        rgba(16, 24, 98, 0.4) 25%,
                                        rgba(16, 24, 98, 0.8) 50%,
                                        #101862 100%);
                            }

                            .data_list {
                                gap: 11px;
                                width: 100%;

                                span {
                                    font-size: 12px;
                                }

                                ul {
                                    gap: 8.5px;

                                    li {
                                        font-size: 12px;
                                    }
                                }
                            }

                            a {
                                font-size: 12px;
                                width: 100%;
                                max-width: 152px;

                                &::after {
                                    width: calc(100% + 3px);
                                    max-width: 153px;
                                }
                            }
                        }

                        .services_img {
                            width: 100%;
                            max-width: 304px;
                            height: 341px;

                            .plugins {
                                padding: 0px 10px 0px 10px;

                                span {
                                    font-size: 14px;
                                }
                            }
                        }
                    }

                    .swiper-pagination {
                        .swiper-pagination-bullet {
                            width: 13px;
                            height: 13px;
                        }

                        .swiper-pagination-bullet-active {
                            width: 50px;
                        }
                    }
                }
            }
        }

        .decoration1,
        .decoration2 {
            width: 183px;
            height: 168px;
            opacity: 0.5;
        }

        .decoration3,
        .decoration4 {
            top: 20%;
            width: 237.90916442871094px;
            height: 218.08364868164062px;
            opacity: 0.5;
        }

        .decoration3 {
            left: 17%;
        }

        .decoration4 {
            right: 17%;
        }


        .chart {
            display: none;
        }

        .layer {
            bottom: 75%;
            width: 87px;
            height: 87px;
        }
    }

    /*===============TESTIMONIALS===============*/
    .testimonials {
        padding-block: 5.6rem 6.2rem;

        .testimonials_container {
            .testimonials_content {
                gap: 86px;

                .testimonials_header {
                    max-width: 100%;

                    .span_header {
                        width: 160px;
                        height: 37px;
                        font-size: 14px;
                    }

                    h2 {
                        font-size: 24px;
                        margin-bottom: 18px;

                        &::after {
                            width: 210px;
                        }
                    }

                    p {
                        font-size: 14px;
                    }
                }

                .testimonials_swiper {
                    max-width: 363.73333740234375px;

                    .swiper-slide {
                        padding: 25.6px 12.8px;

                        .testimonial_data {
                            gap: 15px;

                            .data_header {
                                gap: 15px;

                                img {
                                    width: 45px;
                                    height: 45px;
                                }

                                .header_text {
                                    h3 {
                                        font-size: 15px;
                                    }

                                    span {
                                        font-size: 13px;
                                    }
                                }
                            }

                            p {
                                font-size: 13px;
                            }
                        }

                        &::after {
                            width: 86px;
                            height: 87px;
                        }
                    }

                    .swiper-pagination {
                        gap: 3px;

                        .swiper-pagination-bullet {
                            width: 10px;
                            height: 10px;
                        }
                    }
                }
            }
        }
    }

    /*===============WHY SERVICES===============*/
    .why_services {
        padding-block: 4.6rem 10.5rem;

        .why_services_container {
            .why_services_content {
                gap: 8rem;

                .why_services_header {
                    gap: 30px;

                    .header_text {
                        gap: 15px;

                        h2 {
                            font-size: 32px;
                        }

                        p {
                            font-size: 14px;
                            width: 100%;
                            max-width: 520px;
                        }
                    }

                    .header_btns {
                        gap: 48px;

                        .btn {
                            font-size: 16px;
                            width: 195px;
                            height: 44px;
                        }
                    }

                }

                .why_services_data {
                    gap: 7.25rem;

                    .item {
                        gap: 30px;


                        .item_text {
                            width: 100%;
                            max-width: 300px;
                            gap: 30px;

                            .item_header {
                                justify-content: center;
                                gap: 10px;

                                h3 {
                                    font-size: 18px;
                                    padding-bottom: 5px;
                                }

                                img {
                                    width: 29px;
                                    height: 29px;
                                }
                            }

                            .item_body {
                                gap: 23px;

                                .body_text {
                                    gap: 9px;

                                    span {
                                        font-size: 10.5px;
                                        justify-content: center;
                                    }

                                    p {
                                        font-size: 10.5px;
                                    }
                                }
                            }
                        }

                        .item_solve {
                            width: 100%;
                            max-width: 278px;
                            padding: 21.5px 12px;

                            .solve_header {
                                gap: 3px;

                                h3 {
                                    font-size: 10.5px;

                                    img {
                                        width: 17.1287px;
                                        height: 17.1287px;
                                    }
                                }

                                p {
                                    font-size: 9px;
                                }
                            }

                            .solve_body {
                                .body_text {
                                    padding: 6.52px 13.04px 16px 9.23px;

                                    span {
                                        font-size: 10.5px;
                                    }

                                    p {
                                        font-size: 9px;
                                    }
                                }
                            }
                        }

                    }
                }
            }
        }

        &::after {
            width: 620px;
            filter: blur(175px);
            top: -105%;
        }
    }

    /*===============BANNAR===============*/
    .bannar {
        padding-block: 5.5rem 4rem;

        .bannar_container {
            .bannar_content {
                gap: 3.5rem;
                padding: 64px 16px;

                .img_bannar {
                    width: 65px;
                    height: 65px;
                }

                .bannar_text {
                    gap: 56px;

                    .bannar_header {
                        gap: 24px;

                        h2 {
                            font-size: 32px;
                        }

                        p {
                            font-size: 14px;
                            width: 100%;
                            max-width: 430px;
                        }
                    }

                    a {
                        font-size: 16px;
                        width: 100%;
                        max-width: 191px;
                        height: 42px;
                    }
                }

                &::before,
                &::after {
                    width: 170px;
                    height: 120px;
                    filter: blur(135px);
                    opacity: 0.5;
                }

                &::before {
                    bottom: 35px;
                    left: -160px;
                }

                &::after {
                    top: 35px;
                    right: -160px;
                }
            }
        }
    }

    /*===============OUR COMPANYS===============*/
    .our_companys {
        .our_companys_container {
            .our_companys_content {
                gap: 52px;

                .our_companys_header {
                    gap: 12px;

                    h2 {
                        font-size: 14px;
                    }

                    p {
                        font-size: 14px;
                    }
                }

                .marquee_swiper img {
                    height: 60px;
                }

                .statistics_strip {
                    gap: 21px;
                    width: 100%;
                    max-width: 390px;

                    p {
                        font-size: 12px;
                        gap: 4px;
                    }

                    &::after {
                        width: 100%;
                    }
                }
            }
        }
    }

    /*===============FOOTER===============*/
    .footer {
        padding-block: 12.5rem 0;

        .footer_container {
            gap: 5.5rem;

            .footer_content {
                gap: 24px;

                .footer_logo {
                    width: 100%;
                    max-width: 335px;
                    height: auto;
                }

                .footer_text {
                    h2 {
                        font-size: 24px;
                    }
                }

                .footer_btn {
                    width: 220.3815px;
                    gap: 7px;

                    a {
                        font-size: 17px;
                        width: 100%;
                        max-width: 150px;
                        height: 30px;
                        margin-top: 24px;
                    }

                    span {
                        font-size: 10px;
                    }
                }
            }

            .footer_copyright {
                gap: 16px;
                padding-inline: 1.5rem;
                padding-block: 16px 2.25rem;
                text-align: center;

                .social {
                    justify-content: center;
                }

                .slogan {

                    h3 {
                        font-size: 16px;
                    }
                }

                .pages {
                    justify-content: center;
                    gap: 16px;
                    padding-top: 0;

                    a {
                        font-size: 11px;
                    }
                }
            }
        }

        &::after {
            height: 330px;
            top: -165px;
        }

        &::before {
            box-shadow: rgba(29, 91, 246, 0.32) 0 0px 190px 410px;
        }

        .scrollTopBtn {
            bottom: 100px;
            right: 3%;
            width: 32px;
            height: 44px;
        }

        .watch_video {
            left: 10px;
            bottom: 10px;

            h2 {
                font-size: 15px;

                &::after {
                    top: -165%;
                }
            }
        }
    }
}

@media (max-width: 576px) {
    .section {
        padding-inline: 29px;
    }

    .header {
        height: 54px;

        .nav {
            padding: 6px 15px !important;

            .img_logo {
                width: 125.4448910931472px;
                height: 15.3252px;
            }

            .btn {
                width: 30px !important;
                height: 30px !important;

                span {
                    display: none;
                }
            }
        }

        .nav_toggle {
            width: 30px;
            height: 30px;
            border-radius: 3px;
        }

        .mobile_menu {
            position: fixed;
            top: 42px;
            right: 45px;
            width: 203.49369521617297px;
            gap: 29px;

            .nav_list {
                gap: 29px;
            }
        }

    }

    .header.scrolled {
        top: 29px;
        height: 54px;

        .mobile_menu {
            top: 70px;
            right: 70px;
        }
    }

    .header.scrolled .nav {
        padding: 7px 42px;
    }

    .header.scrolled .nav.container {
        max-width: 85%;
    }

    /*=============== HOME ===============*/
    .home {
        padding-block: 160px 36px;

        .home_container {
            gap: 65px;

            .home_content {
                gap: 28px;

                .pra {
                    max-width: fit-content;
                    height: 28px;
                    padding: 4.37px 11px;
                    gap: 3px;

                    p {
                        font-size: 10px;
                    }
                }

                .home_title {
                    font-size: 24px;

                    .idea {
                        &::after {
                            width: 16.826171875px;
                            height: 16.826171875px;
                            top: 8px;
                        }
                    }

                    .search {
                        &::after {
                            width: 13.984375px;
                            height: 13.984375px;
                            top: 11px;
                        }
                    }
                }

                .smile {
                    font-size: 13px;

                    &::after {
                        width: 90px;
                        height: 14px;
                        bottom: -7px;
                    }
                }

                .our_serv {
                    width: 200px;
                    margin-top: 12px;
                    gap: 10px;

                    .serv {
                        width: 90px;
                        height: 55px;
                        gap: 5px;

                        i {
                            font-size: 17px;
                        }

                        h2 {
                            font-size: 14.5px;
                        }
                    }
                }
            }

            .arrows {
                width: 100px;
            }
        }

        &::before,
        &::after {
            width: 80px;
            filter: blur(95px);
            opacity: 0.7;
        }

        .timer_img {
            width: 37px;
            height: 37px;
            filter: blur(1px);
        }

        .code_img {
            top: 40%;
            width: 36px;
            height: 36px;
        }

        .seo_img {
            width: 50px;
            height: 50px;
            opacity: 0.9;
            filter: blur(1px);
        }

        .idea_img3 {
            top: 40%;
            width: 38px;
            height: 38px;
        }

        .idea_img2 {
            width: 38px;
            height: 38px;
            top: 50%;
            right: 10px;
            filter: blur(1px);
        }

        .target_img {
            width: 50px;
            height: 50px;
            top: 50%;
            left: 10px;
            filter: blur(1px);
        }


        .code_snippets {
            width: 100%;
            max-width: 65.54px;
            filter: blur(1px);

            padding: 4px;

            .browserbuttons {
                span {
                    width: 3px !important;
                    height: 3px !important;
                }
            }

            p,
            .p_code,
            .span,
            span {
                width: 100%;
                font-size: 4px;
            }
        }

        .code_snippets2 {
            top: 54%;
            left: 3%;
        }

        .code_snippets3 {
            display: none;
        }

        .code_snippets4 {
            top: 17%;
            left: 8%;
        }

        .code_snippets1 {
            top: 18%;
            right: 3%;
        }
    }

    /*===============PROJECTS===============*/
    .projects {
        padding-block: 43px 114px;

        .projects_container {
            .projects_content {
                gap: 56px;

                .projects_data {
                    gap: 30px;
                    width: 100%;

                    .header_data {
                        margin-right: 10px;

                        .section_title {
                            font-size: 22px;
                        }

                        .section_subtitle {
                            font-size: 14px;
                        }
                    }

                    .projects_content_data {
                        gap: 3px;

                        .group_text {
                            gap: 20px;

                            .text {
                                justify-content: start;
                                width: 100%;
                                padding: 0 8px;

                                p {
                                    font-size: 12px;
                                    padding-bottom: 5px;
                                }
                            }

                            a {
                                width: 100%;
                                max-width: 100%;
                                height: 38px;
                                font-size: 14px;
                                margin-top: 10px;

                                img {
                                    width: 22px;
                                    height: 22px;
                                }
                            }
                        }

                        .border {
                            margin-right: 0;
                            margin-top: -4rem;

                            .img {
                                width: 39px;
                                height: 26.5px;
                            }

                            .img1 {
                                top: 0;
                            }

                            .img2 {
                                top: 27%;
                            }

                            .img3 {
                                bottom: 20%;
                            }

                            &::after {
                                transform: translate(-29.6%, -99%);
                                height: 160.25px;
                            }
                        }
                    }
                }

                .swiper_container {
                    padding: 13.75px;
                    width: 100%;

                    .project_swiper {
                        padding-bottom: 35px;

                        .swiper-slide {
                            .project_link {
                                width: 100%;
                                max-width: 115px;
                                height: 32px;
                                font-size: 14px;
                                padding-bottom: 5px;
                            }
                        }

                        .buttons {
                            .swiper-button-prev {
                                right: 5%;

                                img {
                                    width: 16px;
                                    height: 16px;
                                }
                            }

                            .swiper-pagination {
                                gap: 4px;

                                .swiper-pagination-bullet {
                                    width: 7px;
                                    height: 7px;
                                }
                            }
                        }
                    }

                    &::after {
                        height: 50px;
                        filter: blur(95px);
                    }
                }
            }
        }

        &::before {
            width: 210px;
            height: 110px;
            filter: blur(105px);
            opacity: 0.8;
        }

        .symbols_img {
            width: 82px;
            height: 82px;
            top: 10px;
            left: 10px;
        }

        .tree_img {
            width: 76px;
            height: 76px;
            bottom: 10px;
            left: 10px;
        }

        .rocet_img {
            display: flex;
            width: 76px;
            height: 76px;
            bottom: 10px;
            right: 10px;
        }

        .check_hand_img {
            display: flex;
            width: 48px;
            height: 25px;
            top: 40%;
        }
    }

    /*===============ABOUT US===============*/
    .about_us {
        padding-block: 33px 67px;

        .about_us_container {
            gap: 80px;

            .about_us_content {
                grid-template-columns: 1fr;
                justify-items: center;
                gap: 30px;

                .swiper_container {
                    max-width: 300px;

                    .about_swiper {
                        padding: 11.18px 11.18px 50.52px 11.18px;

                        .swiper-slide {
                            gap: 18px;

                            .swiper_header {
                                img {
                                    width: 34px;
                                    height: 34px;
                                }

                                h2 {
                                    font-size: 22px;

                                    &::after {
                                        width: 135px;
                                        height: 16px;
                                        left: 48px;
                                        bottom: -4px;
                                    }
                                }
                            }

                            .swiper_text {
                                gap: 12px;

                                p {
                                    font-size: 12px;
                                }
                            }
                        }

                        .swiper-pagination {
                            gap: 7px;

                            .swiper-pagination-bullet {
                                width: 9px;
                                height: 9px;
                            }
                        }
                    }

                    &::after {
                        width: 115px;
                        height: 115px;
                        bottom: -135%;
                        left: 35%;
                        transform: translateX(-50%) rotate(260deg);
                    }
                }

                .swiper_container2 {
                    margin-top: 340px;

                    &::after {
                        bottom: 195%;
                        left: 75%;
                        transform: translateX(-50%) rotate(-40deg);
                    }
                }

                .target {
                    width: 187.56201171875px;
                    height: 187.56201171875px;

                    h2 {
                        width: 170px;
                        font-size: 32px;
                    }
                }
            }

            .logo_img {
                width: 100px;
                height: 100px;
                top: 60%;
                left: 50%;
                transform: translate(-50%, -50%);
            }
        }

        .contract {
            width: 93px;
            height: 93px;
            bottom: 52%;
            left: 0px;
            opacity: 0.9;
        }

        .target_image {
            bottom: 25%;
            right: 0;
            opacity: 0.9;
        }
    }

    /*===============SERVICES===============*/
    .services {
        padding-block: 49px 176px;

        .services_container {
            .services_content {
                gap: 52px;

                .services_header {
                    gap: 9px;

                    h2 {
                        font-size: 20px;
                        width: 100%;
                    }

                    p {
                        font-size: 14px;
                    }

                    a {
                        width: 100%;
                        max-width: 175px;
                        height: 38px;
                        font-size: 14px;
                        margin-top: 30px;
                    }
                }

                .swiper {
                    max-width: 100%;
                    padding-bottom: 5.4rem;

                    .swiper-slide {
                        flex-direction: column-reverse;
                        gap: 14px;
                        padding: 16px;
                        border: 2.18px solid #2D7CD9;

                        .services_data {
                            gap: 13px;
                            max-width: 100%;

                            .data_header {
                                align-items: center;
                                text-align: center;
                                gap: 5px;

                                span {
                                    font-size: 10px;
                                }

                                h3 {
                                    font-size: 22px;
                                }

                                p {
                                    font-size: 11px;
                                }
                            }

                            .data_border {
                                background: linear-gradient(to left, rgba(16, 24, 98, 0) 0%, rgba(16, 24, 98, 0.4) 0%, rgba(16, 24, 98, 0.8) 100%, #101862 100%);
                            }

                            .data_list {
                                gap: 10px;

                                ul {
                                    gap: 7px;

                                    li {
                                        font-size: 12px;
                                    }
                                }
                            }

                            a {
                                height: 38px;
                                max-width: 100%;
                                margin-top: 12px;
                                box-shadow: rgb(32, 39, 134) 0px 20px 50px 20px;

                                &::after {
                                    width: 101% !important;
                                    max-width: 101%;
                                    height: 39px;
                                    left: 50.25%;
                                }
                            }
                        }

                        .services_img {
                            width: 100%;
                            height: 206px;

                            .plugins {
                                border-radius: 0 0 15px 15px;

                                span {
                                    font-size: 14px;
                                    padding-bottom: 5px;
                                }
                            }
                        }
                    }

                    .swiper-pagination {
                        gap: 5px;

                        .swiper-pagination-bullet {
                            width: 12px;
                            height: 12px;
                        }

                        .swiper-pagination-bullet-active {
                            width: 46px;
                        }
                    }
                }
            }
        }

        /* نخلي الركنة نظيفة */
        .decoration3,
        .decoration4 {
            width: 202.36px;
            height: 185.49px;
            opacity: 0.9;
        }

        .decoration3 {
            left: -4%;
        }

        .decoration4 {
            right: -4%;
        }

        .decoration1,
        .decoration2 {
            width: 124.18px;
            height: 113.83px;
            bottom: 75px;
            opacity: 0.9;
        }

        .layer {
            font-size: 40px;
            bottom: 85%;
            left: 15px;
        }
    }

    /*===============TESTIMONIALS===============*/
    .testimonials {
        padding-block: 57px 85px;

        .testimonials_container {
            .testimonials_content {
                gap: 56px;

                .testimonials_header {
                    max-width: 100%;
                    gap: 8px;

                    .span_header {
                        width: 165px;
                        height: 33px;
                        font-size: 12px;
                    }

                    h2 {
                        font-size: 20px;
                        margin-bottom: 16px;

                        &::after {
                            width: 220px;
                            bottom: -20px;
                        }
                    }

                    p {
                        font-size: 12px;
                    }
                }

                .testimonials_swiper {
                    max-width: 100%;
                    padding-bottom: 46px;

                    .swiper-slide {
                        padding: 22px 11px 31px 11px;
                        box-shadow: inset -5px -5px 8px rgba(255, 255, 255, 0.25), inset -5px -5px 12px rgba(255, 255, 255, 0.1);

                        .testimonial_data {
                            gap: 13px;

                            .data_header {
                                gap: 13px;

                                img {
                                    width: 39px;
                                    height: 39px;
                                    box-shadow: 0px 0.92px 30.36px 0.92px #6344B4;
                                }

                                .header_text {
                                    h3 {
                                        font-size: 13px;
                                    }

                                    span {
                                        font-size: 11px;
                                    }
                                }
                            }

                            p {
                                font-size: 12px;
                            }
                        }

                        &::after {
                            width: 74.67650604248047px;
                            height: 75.74988555908203px;
                            top: 10px;
                            left: 10px;
                            opacity: 0.95;
                        }
                    }

                    .swiper-pagination {
                        .swiper-pagination-bullet {
                            width: 12px;
                            height: 12px;
                        }
                    }
                }
            }
        }
    }

    /*===============WHY SERVICES===============*/
    .why_services {
        padding-block: 4.2rem 9.2rem;

        .why_services_container {
            .why_services_content {
                gap: 63px;

                .why_services_header {
                    gap: 28px;

                    .header_text {
                        h2 {
                            font-size: 22px;
                        }

                        p {
                            max-width: 100%;
                            font-size: 12px;
                        }
                    }

                    .header_btns {
                        width: 100%;
                        gap: 21px;

                        .btn {
                            width: 100%;
                            max-width: 128px;
                            height: 35px;
                            font-size: 12px;
                        }
                    }

                    &::after {
                        width: 30.647397994995117px;
                        height: 36.14381408691406px;
                        left: -10px;
                        top: 75px;
                        opacity: 0.9;
                    }
                }

                .why_services_data {
                    gap: 125px;

                    .item {
                        flex-direction: column;
                        gap: 28px;

                        .item_text {
                            max-width: 100%;
                            gap: 29px;

                            .item_header {
                                h3 {
                                    font-size: 18px;
                                }

                                img {
                                    width: 30px;
                                    height: 30px;
                                }
                            }

                            .item_body {
                                gap: 23px;

                                .body_text {
                                    gap: 8px;

                                    span {
                                        font-size: 12px;
                                    }

                                    p {
                                        font-size: 11px;
                                    }
                                }
                            }
                        }

                        .item_solve {
                            max-width: 100%;
                            padding: 21px 12px;
                            border-radius: 5px;

                            .solve_header {
                                gap: 3px;

                                h3 {
                                    gap: 3px;
                                    font-size: 10.5px;

                                    img {
                                        width: 17.38157844543457px;
                                        height: 17.38157844543457px;
                                    }
                                }

                                p {
                                    font-size: 9px;
                                }
                            }

                            .solve_body {
                                border-radius: 5px;

                                .body_text {
                                    gap: 3px;
                                    padding: 6.52px 13.04px 9.23px 13.04px;

                                    span {
                                        font-size: 10.5px;

                                        .shape_group {
                                            width: 11px;
                                        }
                                    }

                                    p {
                                        font-size: 9px;
                                    }
                                }
                            }
                        }

                        &:nth-child(1) {
                            &::after {
                                display: none;
                            }
                        }

                        &:nth-child(2) {
                            flex-direction: column;
                        }

                        &::after {
                            height: 315px;
                            top: -43%;
                            transform: rotate(90deg);
                        }
                    }
                }
            }
        }

        &::after {
            width: 520px;
            filter: blur(165px);
            top: -95%;
        }
    }

    /*===============BANNAR===============*/
    .bannar {
        padding-block: 5rem 3.5rem;

        .bannar_container {
            .bannar_content {
                background-size: cover;
                gap: 3rem;
                padding: 54px 16px 26px 16px;

                .img_bannar {
                    width: 55px;
                    height: 55px;
                }

                .bannar_text {
                    gap: 59px;

                    .bannar_header {
                        gap: 11px;

                        h2 {
                            font-size: 24px;
                        }

                        p {
                            max-width: 100%;
                            font-size: 11px;
                        }
                    }

                    a {
                        width: 100%;
                        max-width: 190px;
                        height: 38px;
                        font-size: 14px;
                    }
                }

                /* نخلي الجلو ألطف ع الموبايل */
                &::before,
                &::after {
                    width: 220px;
                    height: 110px;
                    filter: blur(125px);
                    opacity: 0.75;
                }

                &::before {
                    bottom: 15px;
                    left: -220px;
                }

                &::after {
                    top: 15px;
                    right: -220px;
                }
            }
        }
    }

    /*===============OUR COMPANYS===============*/
    .our_companys {
        .our_companys_container {
            .our_companys_content {
                gap: 37px;

                .our_companys_header {
                    gap: 12px;

                    h2 {
                        font-size: 18px;
                    }

                    p {
                        font-size: 12px;
                    }
                }

                .marquee_swiper img {
                    height: 45px;
                }

                .statistics_strip {
                    gap: 14px;
                    max-width: 100%;

                    .stat_item {

                        p {
                            font-size: 10px;
                        }
                    }

                    &::after {
                        width: 88%;
                    }
                }
            }
        }
    }

    /*===============FOOTER===============*/
    .footer {
        padding-block: 11rem 0;

        .footer_container {
            gap: 4.8rem;

            .footer_content {
                .footer_logo {
                    max-width: 248.15031938903303px;
                }

                .footer_text {
                    h2 {
                        font-size: 22px;
                    }
                }
            }

            .footer_copyright {
                flex-direction: column;
                gap: 37px;
                padding-inline: 1rem;
                padding-block: 16px 2rem;

                .social {
                    order: 2;
                    gap: 17px;

                    a {
                        width: 24px;
                        height: 24px;
                    }
                }

                .slogan {
                    order: 1;
                    font-size: 24px;
                }

                .pages {
                    position: relative;
                    order: 3;
                    gap: 74px;
                    margin-top: 30px;
                    width: 100%;

                    a {
                        font-size: 11.5px;
                    }

                    &::after {
                        position: absolute;
                        content: "";
                        width: 100%;
                        height: 1px;
                        background-color: #fff;
                        opacity: 0.2;
                        top: -11px;
                        left: 0;
                        background: linear-gradient(90deg, rgba(13, 16, 73, 0.2) -0.14%, rgba(255, 255, 255, 0.2) 50.42%, rgba(12, 20, 76, 0.2) 98.98%);
                    }
                }
            }
        }

        &::after {
            height: 275px;
            top: -155px;
        }

        .scrollTopBtn {
            bottom: 88px;
            width: 30px;
            height: 42px;
        }

        .watch_video {
            left: 8px;
            bottom: 8px;

            h2 {
                font-size: 14px;
                padding-inline: 9px;

                &::after {
                    display: none;
                }
            }
        }
    }
}