/* Start Global Settings */

:root {
    --first-color: #F49334;
    --first-alt-color: #f9a355;
    --sec-color: #151554;
    --third-color: #19196b;
    --black: #1A1A1A;
    --white: #eeeeee;
}

* {
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overflow-x: hidden  !important;
}

*,
body {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Cairo", sans-serif;
    direction: rtl;
    overflow-x: hidden;
    background-color: var(--white);
}


@media (max-width: 800px) {
  html, body {
  overflow-x: hidden;
  }
}


body::-webkit-scrollbar,
.mainbg::-webkit-scrollbar {
    background-color: transparent;
    width: 10px;
}

body::-webkit-scrollbar-thumb,
.mainbg::-webkit-scrollbar-thumb {
    background: #d4d4d4;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--first-color);
}

a:hover {
    color: var(--first-alt-color);
}

@media (min-width:1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

.row {
    margin: 0;
}

/* End Global Settings */

/* Start Header Settings */

header {
    height: 70px;
    width: 100%;
    position: relative;
    background-color: transparent;
    z-index: 10000;
}

.navbar {
    width: 100%;
}

header ul li a {
    font-size: 16px;
    display: inline-block;
    color: var(--sec-color) !important;
    margin-left: 15px;
    font-weight: 700;
}

header ul li a.active,
header ul li a:hover {
    transition: 0.5s ease-in-out;
    color: var(--first-color) !important;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;

}

.navbar-toggler {
    font-size: 2rem;
    z-index: 3;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler svg {
    color: var(--sec-color);
}

.navbar-toggler svg:focus {
    outline: none !important;
}

.navbar-collapse.collapse.show,
.navbar-collapse.collapsing {
    background-color: var(--white);
    position: absolute;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    padding: 80px 30px;
    width: 100% !important;
    z-index: 2;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
    top: 0;
    left: 0;
    transition: 0.5s all;
    height: 100vh;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

.collapsing {
    overflow: hidden;
    height: 100vh !important;
    width: auto !important;
    transition: all 0.35s ease !important;
    -webkit-transition: all 0.35s ease !important;
    -moz-transition: all 0.35s ease !important;
    -ms-transition: all 0.35s ease !important;
    -o-transition: all 0.35s ease !important;
}

@media (min-width:992px) {

    .nav-link i,
    .nav-link svg {
        display: none !important;
    }
}

/* End Header Settings */

/* Start Hero Settings */
#Hero {
    min-height: calc(100vh - 70px);
    z-index: 1;
}


.arrows {
    position: absolute;
    bottom: -100px;
    right: -290px;
    width: 700px;
    opacity: 0.7;
    transform: rotateY(180deg);
    z-index: -1;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.heroHeadline {
    color: var(--sec-color);
    font-weight: 900;
}

.khotat {
    color: var(--first-color);
}


.heroSubhead {
    color: var(--black);
    font-size: 20px;
    line-height: 36px;
}

@media (max-width:1200px) {
    .heroHeadline {
        font-size: 32px;
    }

    .heroSubhead {
        font-size: 24px;
    }
}

@media (max-width:992px) {
    .heroHeadline {
        font-size: 28px;
    }

    .heroSubhead {
        font-size: 20px;
    }
}

@media (max-width:768px) {
    .arrows {
        top: 10px;
        right: -290px;
        width: 700px;
        opacity: 0.7;
        transform: rotateY(180deg);
        z-index: -1;
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
    }
}

@media (max-width:578px) {
    #Hero {
        padding: 0px 20px;
    }

    .heroHeadline {
        font-size: 22px;
    }

    .heroSubhead {
        font-size: 16px;
    }

    .heroCTA {
        font-size: 16px !important;
    }
}

.heroCTA {
    font-weight: 700;
    padding: 12px 25px;
    border: none;
    color: var(--white);
    font-size: 18px;
    border-radius: 10px;
    background-color: var(--first-color);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.heroCTA:hover {
    box-shadow: 0 0.5em 0.5em -0.4em var(--first-color);
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
}

/* End Hero Settings */

/* Start About Settings */
#About {
    overflow: hidden;
    position: relative;
    /* padding-bottom: 240px; */
    padding-top: 60px;
}

.about-right-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 500px;
}

.about-right-item ul li {
    color: var(--sec-color);
}

.about-right-item ul li i,
.about-right-item ul li svg {
    color: var(--first-color);
}

.about-right-item ul li:not(:last-child) {
    margin-bottom: 20px;
}

.about-right-item ul li i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 10px;
    margin-right: 10px;
}


.about-left-item .big-image {
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.section-header h5 {
    color: var(--first-color);
    padding-bottom: 20px;
    line-height: 28px;
}

.section-header svg,
.section-header img {
    margin-top: -5px;
}

.section-header p {
    margin-top: 30px;
}

/* End About Settings */


/* Start WhyUs Settings*/
#WhyUs {
    background-color: var(--first-color);
    position: relative;
    /* min-height: 100vh; */
    z-index: 0;
    padding: 200px 0 80px 0;
    overflow: hidden;
}

#WhyUs::before {
    content: "";
    position: absolute;
    background-color: var(--white);
    clip-path: ellipse(55% 10% at 50% 0%);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.why-us {
    background: #f5fdff;
    padding: 120px 0 150px;
}

.why-box {
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.why-title {
    margin-bottom: 60px;
}

.why-title h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.why-title h4 {
    color: var(--sec-color);
}


.why-box:hover .box-thumb::before {
    height: 100%;
}


.why-box:hover .box-icon::before {
    height: 100%;
}

.box-icon img {
    width: 65%;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.why-box:hover .box-icon img {
    transform: scale(.9);
    filter: brightness(0)invert(1);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
}

.box-content {
    background-color: var(--white);
    border: 1px solid var(--white);
    padding: 55px 40px 0;
}

.why-box:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
}

.box-content h4 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
    color: var(--sec-color);
    text-decoration: none;
    transition: all 500ms linear;
}

.why-box:hover .box-content h4 {
    color: var(--first-color);
}

.box-content p {
    font-size: 16px;
    line-height: 24px;
    color: var(--third-color);
    margin: 20px 0 55px;
}

@media (max-width:1400px) {
    .box-content h4 {
        font-size: 20px;
    }

    .box-content p {
        font-size: 14px;
    }
}

@media (max-width:992px) {
    .box-content h4 {
        font-size: 18px;
    }

    .box-content p {
        font-size: 12px;
    }
}

@media (max-width:768px) {
    #WhyUs {
        padding: 250px 0 80px 0;
    }
}

/* End WhyUs Settings */


/* Start Services Section */
#Services {
    background-image: url('../images/services.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* margin-bottom: 50px; */
    padding-bottom: 120px;
}

.overlay {
    background-color: var(--white);
    position: absolute;
    opacity: 0.9;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#Services>.container {
    z-index: 1;
}

.service>img {
    width: 40%;
}

#Services h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--first-color);
    position: relative;
}

#Services h2::after {
    content: "";
    position: absolute;
    background-image: url(../images/underline.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    bottom: -45px;
    left: 0px;
}


.service>h4 {
    color: var(--sec-color);
}

/* End Services Section */


/* Start Consulte Section */
#Consulte {
    background-color: var(--sec-color);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    position: absolute;
    width: 90%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    bottom: -30%;
    z-index: 100;
}

.consulte h4 {
    font-size: 35px;
    font-weight: 700;
    line-height: 70px;
}

.consulte div {
    color: var(--first-alt-color);
    line-height: 28px;
    font-size: 18px;
    text-align: right;
}

.consulte>button {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    background-color: var(--first-color);
    color: var(--white);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.consulte>button:hover {
    background-color: var(--first-alt-color);
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
}

@media (max-width:775px) {
    .consulte>h4 {
        font-size: 25px;
    }

    .consulte>h5 {
        font-size: 18px;
    }
}

@media (max-width:576px) {
    #Consulte {
        bottom: -12%;
    }

    .consulte>h4 {
        font-size: 22px;
    }

    .consulte>h5 {
        font-size: 16px;
    }
}

/* End Consulte Section */


/* Start Articles Section */
#Articles {
    margin-top: 150px;
}

.more>button {
    padding: 15px 20px;
    font-weight: 700;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: var(--sec-color);
    border: none;
    color: var(--white);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.more>button:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
}

/* End Articles Section */


/* Start Contact Section */
#Contact {
    min-height: 100vh;
    overflow: hidden;
}

form .title {
    color: var(--first-color);
    margin-bottom: 50px;
    width: fit-content;
    font-weight: 700;
}

form .title::after {
    content: "";
    position: absolute;
    background-image: url(../images/underline.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    bottom: -60px;
    left: 0px;
}

form .form-control {
    background-color: #fff;
    border-radius: 10px;
    border: none;
    /* box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11); */
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

form .form-control.thick,
form .message .form-control {
    padding: 10px 25px;
}

form .form-control:focus {
    border: 3px solid var(--sec-color);
    background-color: #fff;
    box-shadow: none !important;
}

form ::placeholder {
    font-size: 16px;
    color: #D4D4D4 !important;
    position: relative;
    left: 0;
}

form input,
form textarea {
    color: var(--sec-color);
    font-size: 16px;
}

form textarea {
    resize: none;
}

.btn.btn-primary {
    padding: 12px 25px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    background-color: var(--first-color);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    color: var(--white);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.btn.btn-primary:hover:enabled {
    box-shadow: 0 0.5em 0.5em -0.4em var(--first-color);
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
}

.contactImage {
    position: relative;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;

}

.contactImage>img {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media (max-width:1300px) {
    .contactImage::before {
        bottom: -120px;
    }
}

@media (max-width:1200px) {
    .contactImage::before {
        bottom: -90px;
        width: 100%;
        height: 400px;
    }
}

@media (max-width:992px) {
    .contactImage::before {
        display: none;
    }

    form .title {
        width: max-content;
    }
}

/* End Contact Section */


/* Start Footer Settings */
#Footer {
    background-color: var(--sec-color);
}

#Footer h6 {
    margin-bottom: 15px;
    color: var(--first-color);
    font-size: 18px;
}

.links a,
.footer-links {
    color: var(--white);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.links a:hover,
.footer-links:hover {
    color: var(--first-color) !important;
    padding-right: 10px;
}

.footerTop {
    background-color: var(--first-color);
}

.footerBottom {
    background-color: var(--black);
    color: var(--white);
}

/* End footer Settings */