@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

html[dir="rtl"] {
    text-align: right;
}

:root {
    --background-color: #ffffff;
    --main-color: #12223B;
    --second-color: #e29e38;
    --second-hover: #eba843;
    --paragraph-color: #667282;
    --section-color: #e9f7fe;
    --text-color: #ffffff;
    --section-padding: 80px;
}

.lightmode {
    --main-color: #13191D;
    --second-color: #cc8e32;
}

body {
    font-family: "Manrope", sans-serif;
    max-width: 100vw;
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
    color: white;
}

ul {
    list-style: none;
}

input {
    caret-color: var(--items-color);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--main-color);
}

::-webkit-scrollbar-thumb {
    background: var(--second-color);
    border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--second-hover);
}

::selection {
    background-color: var(--second-hover);
}

.container {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

section{
    padding-block: var(--section-padding);
}

/* Start Scroll Up */

.scroll {
    position: fixed;
    bottom: 20px;
    right: -50px;
    background-color: var(--second-color);
    color: white;
    padding: 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    transition: 0.6s;
    cursor: pointer;
    animation: up 1s linear alternate infinite;
}

.scroll.show {
    right: 20px;
}

.scroll:hover {
    background-color: var(--second-hover);
    animation-play-state: paused;
}

@keyframes up {
    to {
        /* opacity: 0.7; */
        transform: translateY(5px);
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        -ms-transform: translateY(5px);
        -o-transform: translateY(5px);
    }
}

/* End Scroll Up */

/* Start Loading */

.pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000 !important;
    background-color: #ffb703;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container {
    height: 100px;
    position: relative;
    width: 100px;
    margin: 40px auto;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent #fff transparent #fff;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
    height: 100px;
    position: relative;
    width: 100px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.loading-img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

.loading-img img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

/* End Loading */

/* Start Section Heading */

.section-heading p:first-of-type {
    color: var(--second-color);
    font-weight: bold;
}

.section-heading h2 {
    color: var(--main-color);
    font-size: 48px;
    margin-block: 5px 20px;
}

.section-heading p:last-of-type {
    color: var(--paragraph-color);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.section-heading.center {
    text-align: center;
    width: 70%;
    margin: 0 auto 60px;
}

@media screen and (max-width: 991px) {
    .section-heading.center{
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .section-heading h2{
        font-size: 42px;
    }

    .section-heading p:last-of-type {
        font-size: 14px;
    }

    .section-heading.center{
        width: 90%;
    }
}

@media screen and (max-width: 480px){
    .section-heading h2{
        font-size: 38px;
        margin-bottom: 15px;
    }

    .section-heading p:first-of-type{
        font-size: 14px;
    }

    .section-heading p:last-of-type {
        font-size: 12px;
    }

    .section-heading.center{
        width: 100%;
    }
}

/* End Section Heading */

/* Start Image */

.main{
    position: relative;
    padding: 40px 40px 0;
    overflow: hidden;
    background-color: var(--background-color);
}

.main .content{
    position: relative;
    z-index: 1;
}

.container.image{
        background-image: url(../Images/bg-1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
        overflow: hidden;
        z-index: -1;
}

.container.image .overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-color: black;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

/* End Image */

/* Start Header */

header{
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #ffffff25;
    z-index: 5;
}

header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 15px;
}

header img{
    width: 40px;
    color: var(--second-color);
}

header ul{
    display: flex;
    align-items: center;
    gap: 24px;
}

header ul li a{
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    /* font-size: 18px; */
}

header ul li:hover a,
header ul li.active a{
    color: var(--second-hover);
}

header button{
    border: none;
    outline: none;
    padding: 7px 14px;
    background-color: var(--second-color);
    color: #fff;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    cursor: pointer;
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

header button:hover{
    background-color: var(--second-hover);
}

header .menu-bar {
    display: none;
}

.getSettings{
    position: absolute;
    bottom: -192%;
    opacity: 0;
    padding: 30px;
    min-width: 200px;
    width: fit-content;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background-color: var(--main-color);
    transition: 0.6s;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
}

html[dir="ltr"] .getSettings{
    right: -300px;
}

html[dir="ltr"] .getSettings.show{
    right: 20px;
    opacity: 1;
}

html[dir="rtl"] .getSettings{
    left: -300%;
}

html[dir="rtl"] .getSettings.show{
    left: 20px;
    opacity: 1;
}

.settings button,
.settings a{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    padding: 7px 14px;
    background-color: var(--second-color);
    color: #fff;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    cursor: pointer;
}

.settings button:hover,
.settings a:hover{
    background-color: var(--second-hover);
}

.settings a:first-child{
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    header .menu-bar{
        display: block;
        font-size: 32px;
        color: var(--second-color);
        transition: 0.4s;
        -webkit-transition: 0.4s;
        -moz-transition: 0.4s;
        -ms-transition: 0.4s;
        -o-transition: 0.4s;
        cursor: pointer;
    }

    header .menu-bar:hover{
        color: var(--second-hover);
    }

    header .set,
    header ul{
        display: none;
    }
}

/* End Header */

/* Start Responsive Nav */

.responsive-nav{
    position: fixed;
    top: 0;
    z-index: 1000000;
    background-color: var(--main-color);
    padding: 40px;
    box-shadow: -12px 8px 20px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.25);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

html[dir="ltr"] .responsive-nav{
    right: -100%;
}

html[dir="rtl"] .responsive-nav{
    left: -100%;
}

html[dir="ltr"] .responsive-nav.show{
    right: 0;
}

html[dir="rtl"] .responsive-nav.show{
    left: 0;
}

html[dir="ltr"] .responsive-nav .content{
    padding-right: var(--section-padding);
}

html[dir="rtl"] .responsive-nav .content{
    padding-left: var(--section-padding);
}

.responsive-nav .settings{
    position: static !important;
    opacity: 1 !important;
    padding: 0 !important;
    width: 100% !important;
}

.responsive-nav .settings button,
.responsive-nav .settings a{
    width: 100% !important;
    padding: 8px 16px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: var(--section-color);
    color: var(--main-color);
    border: none;
    outline: none;
}

.responsive-nav .settings button i,
.responsive-nav .settings a i{
    color: var(--second-color);
    font-size: 20px;
}

.responsive-nav .settings button span,
.responsive-nav .settings a span{
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.responsive-nav .settings button:hover span,
.responsive-nav .settings a:hover span{
    color: var(--second-color);
}

.responsive-nav > i{
    position: absolute;
    top: 40px;
    color: white;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    cursor: pointer;
}

html[dir="ltr"] .responsive-nav > i{
    right: 40px;
}

html[dir="rtl"] .responsive-nav > i{
    left: 40px;
}

.responsive-nav > i:hover{
    color: var(--second-color);
}

.responsive-nav .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.responsive-nav .logo img {
    width: 45px;
}

.responsive-nav .logo p {
    color: var(--second-color);
    font-size: 18px;
    font-weight: bold;
}

.responsive-nav .logo p span {
    color: var(--text-color);
    display: block;
}

.responsive-nav .link {
    margin-top: 30px;
    text-transform: capitalize;
    transition: 0.6s;
    width: fit-content;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
}

.responsive-nav .link:hover {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

.responsive-nav .link a {
    transition: 0.3s;
    line-height: 1.6;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.responsive-nav .link a:hover {
    color: var(--second-color);
}

html[dir="ltr"] .responsive-nav .link i {
    color: var(--second-color);
    margin-right: 10px;
}

html[dir="rtl"] .responsive-nav .link i {
    color: var(--second-color);
    margin-left: 10px;
}

/* End Responsive Nav */

/* Start Landing Page */

.landing-page{
    position: relative;
    z-index: 2;
}

html[dir="ltr"] .landing-page{
    padding-block: var(--section-padding) !important;
}

html[dir="rtl"] .landing-page{
    padding-block: calc(var(--section-padding) + 30px) !important;
}

.landing-page .container{
    text-align: center;
    width: 50%;
}

.landing-page p:first-of-type{
    color: var(--second-color);
}

.landing-page p:last-of-type{
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 0.8px;
    font-size: 14px;
    line-height: 1.6;
}

.landing-page h1{
    font-size: 50px;
    margin-block: 20px;
    color: #ffffff;
}

.fade-group {
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

.landing-page .btns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.landing-page .btns a{
    position: relative;
    padding: 9px 18px;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #fff;
}

.landing-page .btns a::before{
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    background-color: var(--second-color);
}

html[dir="ltr"] .landing-page .btns a::before{
    left: -100%;
}

html[dir="rtl"] .landing-page .btns a::before{
    right: -100%;
}


.landing-page .btns a:first-of-type{
    background-color: var(--second-color);
}

.landing-page .btns a:first-of-type::before{
    background-color: var(--main-color) !important;
}

html[dir="ltr"] .landing-page .btns a:hover::before{
    left: 0;
}

html[dir="rtl"] .landing-page .btns a:hover::before{
    right: 0;
}

.landing-page .btns a span{
    position: relative;
    z-index: 2;
}

html[dir="ltr"] .landing-page .btns a span i{
    margin-left: 10px;
}

html[dir="rtl"] .landing-page .btns a span i{
    margin-right: 10px;
}

@media screen and (max-width: 991px) {
    .landing-page .container{
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .landing-page .container{
        width: 90%;
    }

    .landing-page h1{
        font-size: 40px;
    }

    .landing-page p:first-of-type{
        font-size: 14px;
    }

    .landing-page p:last-of-type{
        font-size: 12px;
    }

    .landing-page .btns a{
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* End Landing Page */

/* Start About */

.about{
    background-color: var(--background-color);
}

.about .container{
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about .container > div{
    flex-basis: 48%;
}

.about .image img{
    width: 450px;
}

.about .elements{
    padding: 30px;
    background-color: var(--section-color);
    border-radius: 16px;
    margin-block: 30px;
}

.about .elements .el{
    margin-bottom: 15px;
}

html[dir="ltr"] .about .elements .el i{
    color: var(--second-color);
    margin-right: 10px;
}

html[dir="rtl"] .about .elements .el i{
    color: var(--second-color);
    margin-left: 10px;
}

.about .elements .el span{
    color: var(--main-color);
    font-weight: bold;
}

.about .btns{
    display: flex;
    align-items: center;
    gap: 30px;
}

.about .btns a.btn {
    position: relative;
    padding: 12px 24px;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #fff;
    background-color: var(--second-color);
}

.about .btns a.btn::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    background-color: var(--main-color);
}

html[dir="ltr"] .about .btns a.btn::before {
    left: -100%;
}

html[dir="rtl"] .about .btns a.btn::before {
    right: -100%;
}

.about .btns a span {
    position: relative;
    z-index: 2;
}

html[dir="ltr"] .about .btns a span i {
    margin-left: 10px;
}

html[dir="rtl"] .about .btns a span i {
    margin-right: 10px;
}

html[dir="ltr"] .about .btns a:hover::before {
    left: 0;
}

html[dir="rtl"] .about .btns a:hover::before {
    right: 0;
}

.about .btns a.phone{
    display: flex;
    align-items: center;
    gap: 10px;
}

.about .btns a.phone i{
    font-size: 32px;
    color: var(--second-color);
}

.about .btns a.phone p{
    color: var(--paragraph-color);
    font-size: 12px;
}

.about .btns a.phone p.number{
    color: var(--main-color);
    font-size: 18px;
    font-weight: bold;
}

@media screen and (max-width: 1200px) {
    .about .container{
        width: 90%;
    }

    .about .image img{
        width: 400px;
    }
}

@media screen and (max-width: 991px) {
    .about .container{
        width: 80%;
        flex-direction: column-reverse;
    }

    .section-heading{
        text-align: center;
    }

    .about .container > .text{
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .about .image img{
        width: 320px;
    }

    .about .elements .el{
        font-size: 14px;
    }
    
    .about .btns a.phone p.number{
        font-size: 14px;
    }

    .about .btns a.phone i{
        font-size: 28px;
    }

    .about .btns a.btn {
        font-size: 14px;
        padding: 9px 18px;
    }
}

/* End About */

/* Start Services and Projects */

.services{
    background-color: var(--section-color);
    background-image: url(../Images/service.png);
    background-position: top right;
    background-repeat: no-repeat;
}

.projects{
    background-color: var(--section-color);
    background-image: url(../Images/projects.png);
    background-position: bottom left;
    background-repeat: no-repeat;
}

.services .boxs,
.projects .boxs{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.services .boxs .box,
.projects .boxs .box{
    flex-basis: calc(25% - 22.5px);
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.services .boxs .box .overlay,
.projects .boxs .box .overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.8));
}

.services .boxs .box img,
.projects .boxs .box img{
    width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.services .boxs .box:hover img,
.projects .boxs .box:hover img{
    transform: scale(1.1);
}

.services .boxs .box .text,
.projects .boxs .box .text{
    position: absolute;
    bottom: 25px;
    right: 30px;
    left: 30px;
    z-index: 2;
    transform: translateY(70%);
    color: #ffffff;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

html[dir="ltr"] .services .boxs .box .text,
html[dir="ltr"] .projects .boxs .box .text{
    text-align: left;
}

html[dir="rtl"] .services .boxs .box .text,
html[dir="rtl"] .projects .boxs .box .text{
    text-align: right;
}

.services .boxs .box:hover .text,
.projects .boxs .box:hover .text{
    transform: translateY(0%);
    bottom: 20px;
}

.services .boxs .box .text h3,
.projects .boxs .box .text h3{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3em;
}

.services .boxs .box .text p,
.projects .boxs .box .text p{
    margin-block: 20px;
    opacity: 0;
    font-size: 14px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.services .boxs .box:hover .text p,
.projects .boxs .box:hover .text p{
    opacity: 1;
}

.services .boxs .box .text a ,
.projects .boxs .box .text a {
    color: var(--second-color);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

html[dir="ltr"] .services .boxs .box .text a span i ,
html[dir="ltr"] .projects .boxs .box .text a span i {
    margin-left: 7px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

html[dir="rtl"] .services .boxs .box .text a span i ,
html[dir="rtl"] .projects .boxs .box .text a span i {
    margin-right: 7px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.services .boxs .box .text a:hover,
.projects .boxs .box .text a:hover{
    color: var(--second-hover);
}

html[dir="ltr"] .services .boxs .box .text a:hover i,
html[dir="ltr"] .projects .boxs .box .text a:hover i{
    margin-left: 10px;
}

html[dir="rtl"] .services .boxs .box .text a:hover i,
html[dir="rtl"] .projects .boxs .box .text a:hover i{
    margin-right: 10px;
}

.services .container > a ,
.projects .container > a {
    position: relative;
    padding: 12px 24px;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    border: 1px solid #fff;
    background-color: var(--second-color);
    overflow: hidden;
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}

.services .container > a::before ,
.projects .container > a::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    background-color: var(--main-color);
}

html[dir="ltr"] .services .container > a::before ,
html[dir="ltr"] .projects .container > a::before {
    left: -100%;
}

html[dir="rtl"] .services .container > a::before ,
html[dir="rtl"] .projects .container > a::before {
    right: -100%;
}

.services .container > a span ,
.projects .container > a span {
    position: relative;
    z-index: 2;
}

html[dir="ltr"] .services .container > a span i ,
html[dir="ltr"] .projects .container > a span i {
    margin-left: 10px;
}

html[dir="rtl"] .services .container > a span i ,
html[dir="rtl"] .projects .container > a span i {
    margin-right: 10px;
}

html[dir="ltr"] .services .container > a:hover::before ,
html[dir="ltr"] .projects .container > a:hover::before {
    left: 0;
}

html[dir="rtl"] .services .container > a:hover::before ,
html[dir="rtl"] .projects .container > a:hover::before {
    right: 0;
}

@media screen and (max-width: 991px) {
    .services .boxs .box,
    .projects .boxs .box{
        flex-basis: 40%;
    }
}

@media screen and (max-width: 767px) {
    .services .boxs .box,
    .projects .boxs .box{
        flex-basis: calc(50% - 15px);
    }

    .services .boxs .box .text p,
    .projects .boxs .box .text p{
        margin-block: 15px;
    }
}

@media screen and (max-width: 480px) {
    .services .boxs .box,
    .projects .boxs .box{
        flex-basis: 90%;
    }

    .services .container>a,
    .projects .container>a{
        padding: 9px 18px;
        font-size: 14px;
    }
}

/* End Services and Projects */

/* Start Why Us */

.why-us .container {
    width: 80%;
}

.why-us .boxs{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.why-us .boxs .box{
    flex-basis: calc(33.33% - 20px);
    border: 1px solid #12223B30;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    padding: 30px;
}

.why-us .boxs .box:nth-child(even){
    border: none;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.why-us .boxs .box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    transform: translate(0px, 0px);
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.why-us .boxs .box .overlay{
    position: absolute;
    width: 300%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .2);
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 2;
}

.why-us .boxs .box:hover img{
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.why-us .boxs .box:hover .overlay{
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}

.why-us .boxs .box .text i{
    font-size: 40px;
    color: var(--second-color);
}

.why-us .boxs .box .text h3{
    font-size: 20px;
    color: var(--main-color);
    margin-block: 30px;
}

.why-us .boxs .box .text p{
    font-size: 14px;
    color: var(--paragraph-color);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.why-us .boxs .box .text{
    padding-bottom: 30px;
    border-bottom: 1px solid #12223E30;
}

.why-us .boxs .box .counter{
    padding-top: 30px;
}

.why-us .boxs .box .counter .num{
    font-size: 38px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 5px;
}

.why-us .boxs .box .counter p{
    color: var(--paragraph-color);
    font-size: 14px;
}

@media screen and (max-width: 1200px) {
    .why-us .boxs .box .text h3{
        margin-block: 20px;
    }

    .why-us .boxs .box .text{
        padding-bottom: 20px;
    }

    .why-us .boxs .box .counter{
        padding-top: 20px;
    }

    .why-us .container{
        width: 90%;
    }
}

@media screen and (max-width: 991px) {
    .why-us .boxs .box{
        flex-basis: 40%;
    }
}

@media screen and (max-width: 767px) {
    .why-us .boxs .box{
        flex-basis: calc(50% - 15px);
    }
}

@media screen and (max-width: 650px) {
    .why-us .boxs .box{
        flex-basis: 80%;
    }
}

@media screen and (max-width: 480px) {
    .why-us .boxs .box{
        flex-basis: 90%;
    }
}

/* End Why Us */

/* Start Together */

.together{
    background-color: var(--main-color);
    background-image: url(../Images/box-bg.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 0;
}

.together .container{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 80%;
}

.together .container .text{
    padding-block: 80px;
    color: var(--text-color);
}

.together .container .text h2{
    font-size: 48px;
}

.together .container .text p{
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-block: 30px;
    /* color: var(--paragraph-color); */
}

.together .container img{
    height: 350px;
}

.together .container .text a {
    display: block;
    width: fit-content;
    position: relative;
    padding: 9px 18px;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    cursor: pointer;
    border: 1px solid #fff;
    background-color: var(--second-color);
    overflow: hidden;
}

.together .container .text a::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    border-radius: 9px;
}

html[dir="ltr"] .together .container .text a::before {
    left: -100%;
}

html[dir="rtl"] .together .container .text a::before {
    right: -100%;
}

.together .container .text a::before {
    background-color: var(--main-color) !important;
}

html[dir="ltr"] .together .container .text a:hover::before {
    left: 0;
}

html[dir="rtl"] .together .container .text a:hover::before {
    right: 0;
}

.together .container .text a span {
    position: relative;
    z-index: 2;
}

html[dir="ltr"] .together .container .text a span i {
    margin-left: 10px;
}

html[dir="rtl"] .together .container .text a span i {
    margin-right: 10px;
}

@media screen and (max-width: 991px) {
    .together .container img{
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .together .container .text h2{
        font-size: 42px;
    }
}

@media screen and (max-width: 480px) {
    .together .container .text h2{
        font-size: 38px;
    }

    .together .container .text p{
        font-size: 12px;
    }

    .together .container .text a span{
        font-size: 14px;
    }
}

/* End Together */

/* Start Testimonials */

.testimonials .container{
    width: 80%;
}

.testimonials .box{
    padding: 30px;
    border: 1px solid #12223B30;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    cursor: grab;
}

.testimonials .box .stars i{
    color: var(--second-color);
    margin-right: 5px;
}

.testimonials .box > p{
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.3px;
    padding-block: 20px 30px;
    color: var(--paragraph-color);
    border-bottom: 1px solid #12223B30;
}

.testimonials .box .user{
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.testimonials .box .user img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonials .box .user .text h4{
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 5px;
}

.testimonials .box .user .text p{
    font-size: 14px;
    color: var(--paragraph-color);
}

.swiper-pagination-bullet{
    background-color: var(--second-color);
    opacity: 1;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active{
    background-color: var(--main-color);
}

.swiper {
    position: relative;
    padding-bottom: 60px;
}

/* End Testimonials */

/* Start FAQS */

.faqs {
    background-color: var(--section-color);
    background-image: url(../Images/faqs-bg);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
}

.faqs .container {
    width: 80%;
}

.faqs .container .content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.faqs .images {
    flex-basis: calc(39% - 15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.faqs .text {
    flex-basis: calc(61% - 15px);
}

.faqs .images .row{
    flex-basis: calc(50% - 10px);
    display: flex;
    gap: 20px;
}

.faqs .images .row.top{
    align-items: flex-end;
}

.faqs .images .row.bottom{
    align-items: flex-start;
}

.faqs .images .row .img.large{
    flex-basis: calc(60% - 15px);
}

.faqs .images .row .img.small{
    flex-basis: calc(40% - 15px);
}

.faqs .images .row .img{
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.faqs .images .row .img img{
    width: 100%;
}

.faqs .images .row .img .overlay {
    position: absolute;
    width: 300%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .2);
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 2;
}

.faqs .images .row .img:hover .overlay {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}

.faqs .images .logo{
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(80%, -50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #fff;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

html[dir="ltr"] .faqs .images .logo{
    transform: translate(80%, -50%);
    -webkit-transform: translate(80%, -50%);
    -moz-transform: translate(80%, -50%);
    -ms-transform: translate(80%, -50%);
    -o-transform: translate(80%, -50%);
}

html[dir="rtl"] .faqs .images .logo{
    transform: translate(10%, -50%);
    -webkit-transform: translate(10%, -50%);
    -moz-transform: translate(10%, -50%);
    -ms-transform: translate(10%, -50%);
    -o-transform: translate(10%, -50%);
}

.faqs .images .logo img{
    width: 100%;
}

.faqs .content .text .faq {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    padding-bottom: 20px;
    position: relative;
}

.faqs .content .text .faq:last-child {
    margin: 0;
    border: none;
}

.faqs .content .text .faq .head {
    font-size: 18px;
    line-height: 1.3em;
    color: var(--main-color);
    padding-inline: 30px;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding-bottom 0.5s;
}

.faqs .content .text .faq.active .head {
    padding-bottom: 20px !important;
}

.faqs .content .text .faq .head h3 {
    padding-right: 10px;
    display: inline-block;
    transition: color 0.4s;
    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    -o-transition: color 0.4s;
}

.faqs .content .text .faq .head i {
    position: absolute;
    margin-right: 30px;
    font-size: 24px;
    color: var(--second-color);
    transition: transform 0.4s ease;
}

html[dir="ltr"] .faqs .content .text .faq .head i{
    right: 0;
}

html[dir="rtl"] .faqs .content .text .faq .head i{
    left: 0;
}

html[dir="ltr"] .faqs .content .text .faq.active .head i {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

html[dir="rtl"] .faqs .content .text .faq.active .head i {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.faqs .content .text .faq.active .head h3{
    color: var(--second-color);
}

.faqs .content .text .faq p {
    color: var(--paragraph-color);
    font-size: 14px;
    padding-inline: 30px 80px;
    position: absolute;
    left: 0;
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.faqs .content .text .faq.active p {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

@media screen and (max-width: 1200px) {
    .faqs .container {
        width: 90%;
    }
}

@media screen and (max-width: 991px) {
    .faqs .container .content {
        flex-direction: column;
    }

    .faqs .container .content .images{
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 680px) {
    .faqs .container .content {
        flex-direction: column;
    }

    .faqs .container .content .text h3{
        font-size: 18px;
        margin-right: 10px;
    }

    .faqs .container .content .text p{
        font-size: 12px;
    }
}

/* End FAQS */

/* Start Footer */
.footer {
    background-color: var(--main-color);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 40px;
}

.footer .container .about{
    flex-basis: 24%;
}

.footer .container .newsletter {
    flex-basis: 30%;
}

.footer .container .about{
    background-color: transparent;
}

.footer .container .box {
    flex-basis: 38%;
    display: flex;
    justify-content: space-between;
}

.footer .container .box .quick-links,
.footer .container .box .useful-links {
    flex-basis: 45%;
}

.footer .container .about .logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer .container .about .logo img{
    width: 50px;
}

.footer .container .about .logo p{
    color: var(--second-color);
    font-size: 24px;
    font-weight: bold;
}

.footer .container .about .logo p span{
    color: var(--text-color);
    display: block;
}

.footer .container .about .info > p{
    margin-block: 30px;
}

.footer .container .about .info p,
.footer .container .newsletter p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.4;
}

html[dir="ltr"] .footer i {
    color: var(--second-color);
    margin-right: 10px;
}

html[dir="rtl"] .footer i {
    color: var(--second-color);
    margin-left: 10px;
}

.footer .useful-links .link{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .useful-links i{
    margin-right: 0;
    font-size: 20px;
}

.footer h3 {
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 30px;
    color: var(--second-color);
}

.footer .container .about .info>div {
    display: flex;
    margin-top: 15px;
}

.footer .container .about .info>div p {
    color: white;
    margin-left: 5px;
    letter-spacing: 0.7px;
}

.footer .container .link {
    margin-top: 20px;
    text-transform: capitalize;
    transition: 0.6s;
    width: fit-content;
}

html[dir="ltr"] .footer .container .link:hover {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

html[dir="rtl"] .footer .container .link:hover {
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
}

.footer .container .link a {
    font-size: 14px;
    transition: 0.3s;
    line-height: 1.6;
}

.footer .container .link a:hover {
    color: var(--second-color);
}

.footer .container .newsletter input {
    padding: 8px 16px;
    width: 100%;
    margin: 15px 0;
    color: var(--main-color);
    border: none;
    background-color: var(--section-color);
}

.footer .container .newsletter input[type='submit'] {
    text-align: center;
    background-color: var(--second-color);
    padding: 8px 16px;
    border: none;
    color: white;
    width: 100%;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

.footer .container .newsletter input[type='submit']:hover {
    background-color: var(--second-hover);
}

.footer footer {
    border-top: 1px solid #ffffff30;
    border-bottom: 1px solid #ffffff30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.footer footer .copyright p {
    color: var(--text-color);
    font-size: 14px;
}

.footer footer .social i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid var(--second-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 7px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.footer footer .social i:hover {
    color: var(--second-hover);
    border-color: var(--second-hover);
}

@media (max-width:991px) {
    .footer .container {
        justify-content: center;
    }

    .footer .container .about,
    .footer .container .newsletter,
    .footer .container .box {
        flex-basis: 70%;
    }

    .footer .container .quick-links,
    .footer .container .useful-links {
        flex-basis: 35%;
        margin-block: 50px;
    }

    .footer .container h3{
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer footer{
        flex-direction: column-reverse;
        gap: 20px;
    }
}

@media (max-width: 524px) {
    .footer .container .about,
    .footer .container .newsletter,
    .footer .container .box {
        flex-basis: 90%;
    }

    .footer h3{
        font-size: 18px;
    }

    .footer a,
    .footer p{
        font-size: 12px !important;
    }

    .footer .container .about .logo p{
        font-size: 24px !important;
    }
}

/* End Footer */