/* english font family */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* arabic font famliy */
@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap') ;




html{
    direction: rtl;
    text-align: right;
}


body {
    font-family: 'Noto Kufi Arabic', sans-serif;
    overflow-x:hidden ;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    /* outline: 1px solid red; */
}

*::selection {
    background-color: var(--OrangeText);
    color: white;
}

:root {
    --BlackBackground: #121212;
    --BlackTransparent: #272626;
    --OrangeText: #F95F09;
    --OrangeBackgournd: #ff8945;
    --OrangeTransparenBackgournd: #f9610995;
    --GrayText: #8b8b8b;
    --SectionPadding: 130px;
    --SectionTitle: 4.3rem;
    --SectionTitle2: 3.5rem;
    /* --BlackNavBAr : rgb(27, 27, 27); */
}

h1,
h2,
h3,
h4,
p,
div {
    margin: 0;
}

body {
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
}

.blackSection {
    background-color: var(--BlackBackground);
}

.textOrange {
    color: var(--OrangeText);
}

.textOrange2 {
    color: var(--OrangeBackgournd);
}

.bg-orange {
    background-color: var(--OrangeText);
}

.bg-transparent {
    background-color: transparent;
}

.bg-orange2 {
    background-color: var(--OrangeBackgournd);
}

.bg-nav-black {
    background-color: var(--BlackBackground);
}

.textGray {
    color: var(--GrayText);
}

.sectionTitle {
    font-size: var(--SectionTitle);
    font-weight: bolder;
}

.sectionTitle2 {
    font-size: var(--SectionTitle2);
    font-weight: bold;
}

.sectionLittleP {
    font-size: 1rem;
}

.sectionP {
    font-size: 1.3rem;
}

.poppins{
        font-family: 'Poppins', sans-serif;
}

body {
    scroll-behavior: smooth;
    height: 100vh;
    /* -webkit-overflow-scrolling: touch; */
}

#line {
    width: 6px;
    height: 0;
    background-color: orangered;
    position: fixed;
    top: 0;
    left: 0px;
    transition: .5s linear;
    z-index: 1100;
}

::-webkit-scrollbar {
    width: 0px;
}

#gototop {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 5%;
    bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    border: none;
    outline: none;
    background-color: transparent;
    font-weight: bold;
    display: none;

}

#gototop::before {
    content: '';
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    height: 100%;
    border: 1px solid white;
    background-color: var(--OrangeText);
    z-index: -1;
    border-radius: 50%;
}

#smooth-scroll-wrapper {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    /* overflow: hidden; */
    width: 100%;
    height: fit-content;
}

#smooth-scroll-wrappe-content {
    width: 100%;
    height: fit-content;
}

.languages button {
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
}

.languages .active {
    color: var(--OrangeText);
}









nav {
    /* for the whole nav section */
    z-index: 1000000;
    padding: 10px 0;
    /* background-color: transparent; */
    transition: .4s ease !important;
    background-color: var(--BlackBackground);
}

nav .startaproject {
    
    left: 6%;
    top: 140px;
    transform: rotate(-90deg);
    font-size: 1rem;
}
nav .startaproject span{
    color: var(--OrangeText);
}

nav .contact {
    color: white;
    border: none;
    border-bottom: 1px solid white;
}

nav .logo {
    font-size: 1.6rem;
    color: white;
}

nav .menu {
    width: 50px;
    height: 50px;
    border: 1px solid white;
    background-color: white;
    z-index: 100000;
}

nav .menu svg {
    pointer-events: none;
}


nav .nav-links {
    min-height: 100vh;
    padding-top: 100px;
    background-color: #181818;
    clip-path: circle(0% at 90% 30%);
    /* clip-path: circle(0% at 90% 10%); */
    -webkit-clip-path: circle(0% at 96% 30%);
    /* -webkit-clip-path: circle(0% at 96% 10%); */
    transition: all 1s ease-out;
    pointer-events: none;
}

nav .nav-links.open {
    clip-path: circle(300% at 96% 30%);
    /* clip-path: circle(300% at 96% 10%); */
    -webkit-clip-path: circle(300% at 96% 30%);
    /* -webkit-clip-path: circle(300% at 96% 10%); */
    pointer-events: all;
}

.nav-links .container .menu-left {
    gap: 20px;
    max-width: 500px;
}

nav .menu-left-word {
    right: 0px;
    top: -30px;
    writing-mode: vertical-lr;

}

.nav-links .container .menu-left ul li a {
    transform: scaleX(1.2);
    transition: .5s ease;
    left: -20px;
    font-size: 2.8rem;
}

.nav-links .container .menu-left ul li a:hover {
    left: 0;
}


.sayhello-circle {
    width: 100px;
    height: 100px;
    transform: rotate(30deg);
    text-decoration: none;
    transition: .5s ease;
}

.sayhello-circle:hover {
    transform: rotate(0);
}




footer {
    min-height: fit-content;
    background-color: white;
}

footer .news-line {
    height: fit-content;
    position: relative;

}

.news-p {
    width: 700%;
    right: 0%;
    transition: .2s ease;
    animation: news-p 70s linear infinite;
}

footer .news-p p {
    width: 50%;
    font-size: 1.2rem;
    text-align: center;
}

@keyframes news-p {
    0% {
        right: 100%;
    }

    100% {
        right: -700%;
    }
}

footer .row .col-md-6 a {
    color: black;
}

footer::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 50%;
    right: 0;
    top: 0;
    background-color: var(--BlackBackground);
    z-index: 0;
}











@media (max-width:400px) {
    html {
        font-size: 9px;
    }

    nav .menu-left-word {
        top: -20px;
    }

    footer .row .col-md-6:nth-child(2) {
        width: fit-content;
        margin: 0 auto;
    }

    footer .row .col-md-6 a {
        color: white;
    }

    footer img.stars {
        display: none;
    }

    .news-p {
    width: 1000%;
    right: 0%;
    transition: .2s ease;
    animation: news-p 70s linear infinite;
}

footer .news-p p {
    width: 120%;
    font-size: 1.2rem;
    text-align: center;
}
@keyframes news-p {
    0% {
        right: 100%;
    }

    100% {
        right: -1000%;
    }
}


}


@media (min-width:401px) and (max-width:767px) {
    html {
        font-size: 12px;
    }

    footer .row .col-md-6:nth-child(2) {
        width: fit-content;
    }

    footer .row .col-md-6 a {
        color: white;
    }

    footer img.stars {
        display: block;
    }

    footer img.stars {
        display: none;
    }
        .news-p {
    width: 1000%;
    right: 0%;
    transition: .2s ease;
    animation: news-p 70s linear infinite;
}

footer .news-p p {
    width: 120%;
    font-size: 1.2rem;
    text-align: center;
}
@keyframes news-p {
    0% {
        right: 100%;
    }

    100% {
        right: -1000%;
    }
}
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }
    
}




@media (max-width:930px) {
    footer::before {
        width: 100%;
    }

    footer .row:last-child {
        color: white;
    }

    footer .row .col-md-6 a {
        color: white;
    }

}