﻿

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px; /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}
/* Animation */

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }

    100% {
        transform: translate3d(85px,0,0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .content {
        height: 30vh;
    }

    h1 {
        font-size: 24px;
    }
}




























:root {
    --Primery1: #0f72d2;
    --gradientPrimery1: linear-gradient(180deg, #0F72D2 0%, #0A5299 100%);
    --Primery2: #fdc500;
    --gradientPrimery2: linear-gradient(180deg, #fdc500 0%, #cfa719 100%);
    --Black: #2d2d2d;
}

@font-face {
    font-family: 'gandom';
    src: url('../font/gandom-fd.ttf') format('truetype');
}

@font-face {
    font-family: 'domrol';
    src: url('../font/far_domrol.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    direction: rtl;
    font-family: 'gandom' !important;
    color: #373b3f;
}

.owl-carousel {
    direction: ltr;
}

    .owl-carousel * {
        direction: ltr;
    }

.FontTitle {
    font-family: 'domrol' !important;
}

    .FontTitle * {
        font-family: 'domrol' !important;
    }

body {
    overflow-x: hidden;
    /*background-image: url('../images/backimage.png');*/
}


.colorP1 {
    color: var(--Primery1) !important
}

.BackcolorP1 {
    background-color: var(--Primery1) !important
}

.BackGRcolorP1 {
    background-image: var(--gradientPrimery1) !important
}


.colorP2 {
    color: var(--Primery2) !important
}

.BackcolorP2 {
    background-color: var(--Primery2) !important
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}










::-webkit-scrollbar {
    width: 7px;
    direction: rtl
}

::-webkit-scrollbar-track {
    background: var(--Black)
}

::-webkit-scrollbar-thumb {
    background: var(--gradientPrimery1);
    border-radius: 2px
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555
    }

.SectionTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

    .SectionTitle > label {
        font-size: 30px;
        font-weight: bold;
    }

    .SectionTitle > span {
        font-weight: bold;
        font-size: 16px;
        color: #5f5f5f;
    }



/*#region NavBar*/
.topNavbar {
    position: fixed;
    top: -1px;
    left: 0;
    width: 100%;
    height: 75px;
    padding: 8px 20px;
    z-index: 100;
}
    .topNavbar .topNavInner {
        box-shadow: 0 0 6px #0000002e, inset 0 0 4px #57575791;
        border-radius: 50px;
        background-color: white;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow:hidden;
    }
        .topNavbar .topNavInner ul img {
            height: 45px;
        }
        .topNavbar .topNavInner ul {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin: 0;
            padding: 0;
            list-style: none;
            width: -webkit-fill-available;
            justify-content: space-around;
        }
            .topNavbar .topNavInner ul li {
                color: black;
                cursor: pointer;
                width: -webkit-fill-available;
                text-align: center;
                border-left: 1px solid #eeeeee;
                min-height: 45px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size:15px;
                transition-duration:.5s;
            }
            .topNavbar .topNavInner ul li:last-of-type {

                border-left: none;

            }
            .topNavbar .topNavInner ul li i {
                display:inline-flex;
                margin-left:5px;
                padding:5px;
                font-size:20px;
                background-color:var(--Primery1);
                color:white;
                border-radius:5px;
            }

                .topNavbar .topNavInner ul li.ActiveNav {
                    /*background-color:var(--Primery2);*/
                    color:var(--Primery1);
                    font-weight:bold;
                    border-radius:5px;
                }

@media screen and (max-width: 768px) {
    .topNavbar {
        padding: 8px 8px;
        height: 65px;
    }

        .topNavbar .topNavInner {
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .topNavbar .topNavInner ul img {
                height: 30px;
            }

            .topNavbar .topNavInner ul {
                display: flex;
                flex-direction: row;
                align-items: center;
                margin: 0;
                padding: 0;
                list-style: none;
                width: -webkit-fill-available;
                justify-content: space-around;
            }

                .topNavbar .topNavInner ul li {
                    min-height: 35px;
                    font-size: 11px;
                }
                    .topNavbar .topNavInner ul li i {
                        display: inline-flex;
                        margin-left: 5px;
                        padding: 5px;
                        font-size: 16px;
                        background-color: var(--Primery1);
                        color: white;
                        border-radius: 5px;
                    }
}
/*#endregion*/


/*#region About Us*/
.AUSection {
    background-image: var(--gradientPrimery1);
    position: relative;
    padding:100px 0 100px 0 ;
}
.AU-Title {
    display: inline;
    width: fit-content;
    padding: 3px 5px;
    border-radius: 7px;
    background-color: var(--Primery2);
    margin-bottom: 20px;
}

.AU-Description {
    /*font-weight:bold;*/
    font-size: 18px;
    text-align: justify;
    color:white
}


.AU-imgWrapper {
    position: relative;
    padding: 0;
    transform: rotateY(10deg);
    transition-duration: .3s;
}

.AU-img1 {
    border: 2px solid black;
    border-radius: 10px;
    transition-duration: .3s;
}

.AU-img2 {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: -1;
    opacity: .2;
    border-radius: 10px;
    transition-duration: .3s;
}

.AU-imgWrapper:hover {
    transform: rotateY(0deg);
}

    .AU-imgWrapper:hover .AU-img2 {
        right: 0;
        top: 0;
    }

@media screen and (max-width: 768px) {
    .AU-imgWrapper {
        transform: rotateY(0deg);
    }
        .AU-imgWrapper .AU-img2 {
            right: 0;
            top: 0;
        }
}
/*#endregion*/


/*#region Services*/
.ServicesWrapper {
    width: 100%;
    box-shadow: 0 0 6px #0000004d;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 7px;
    border: 1px solid var(--Primery1);
    background-color: white;
}

    .ServicesWrapper i {
        font-size: 45px;
        display: inline-flex;
        padding: 10px;
        aspect-ratio: 1 / 1;
        border-radius: 8px;
        background-image: var(--gradientPrimery1);
        color: white;
        margin: 10px 0 15px 0;
    }

    .ServicesWrapper label {
        color: black;
        font-size: 19px;
    }

    .ServicesWrapper p {
        color: #818181;
        font-size: 13px;
        text-align: center;
        margin: 15px 0 5px 0;
    }
/*#endregion*/


/*#region Projects*/
.ProjectWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 6px #0000003d;
    border-radius: 5px;
    overflow: hidden;
    margin: 12px 0;
    background-color: white;
}

    .ProjectWrapper > label {
        font-size: 20px;
        margin: 8px 0;
    }

    .ProjectWrapper > .ProjectInnerAttr {
        padding: 5px;
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }


        .ProjectWrapper > .ProjectInnerAttr > label {
            color: #878686;
            font-size: 13px;
            display: flex;
            flex-direction: row-reverse;
        }

            .ProjectWrapper > .ProjectInnerAttr > label i {
                color: var(--Primery2);
                font-size: 17px;
                display: flex;
                margin-left: 10px
            }

        .ProjectWrapper > .ProjectInnerAttr > span {
            color: #878686;
            font-size: 13px;
            font-weight: bold;
        }

    .ProjectWrapper > button {
        background-image: var(--gradientPrimery1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        width: 94%;
        margin: 10px 0;
        padding: 3px 0;
    }

        .ProjectWrapper > button i {
            display: inline-flex;
            margin-left: 5px;
            color: white;
        }









.ProjectTriggerBtn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 0 3px #00000054;
    border-radius: 5px;
    margin: 0 0 15px 0;
    padding: 10px 7px 10px 3px;
    transition-duration: .5s;
    cursor: pointer;
}


    .ProjectTriggerBtn > img {
        width: 50px;
        cursor: pointer;
    }
    .ProjectTriggerBtn > label {
        width: -webkit-fill-available;
        text-align: center;
        cursor: pointer;
    }

.ProjectTriggerBtn.ActiveProjectBtn {
 background-image:var(--gradientPrimery1)
}
    .ProjectTriggerBtn.ActiveProjectBtn *{
        color:white
    }



.ProjectInfoWrapper {
    padding: 25px 0;
    background-image: url('../images/index/texturetile3.png');
    background-repeat: repeat;
    padding: 10px;
    box-shadow: inset 0 0 13px #c4c4c4;
    border-radius: 5px;
    display:none;
}
.ProjectInfoWrapper.ActiveProjectInfo {
    display: block !important;
}

.ProjectInfoAttrWrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
    .ProjectInfoAttrWrapper .ProjectInfoAttr {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 5px 0;
    }
        .ProjectInfoAttrWrapper .ProjectInfoAttr label {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            text-wrap: nowrap;
        }
        .ProjectInfoAttrWrapper .ProjectInfoAttr i {
            display: inline-flex;
            margin-left: 5px;
            color: var(--Primery2);
            font-size: 16px;
        }
        .ProjectInfoAttrWrapper .ProjectInfoAttr div {
            width: -webkit-fill-available;
            height: 2px;
            margin: 0 10px;
            border-bottom: 1px dotted #00000038;
        }
        .ProjectInfoAttrWrapper .ProjectInfoAttr span {
            font-weight: bold;
            text-wrap: nowrap;
        }
@media screen and (max-width: 768px) {
    .ProjectTriggerBtn {
        margin: 0 0 12px 0;
        padding: 5px 7px 5px 3px;
        font-size:13px;
    }

        .ProjectTriggerBtn > img {
            width: 35px;
        }
}
/*#endregion*/
/*#region ContacttUs*/
.ContactUsSection {
    background-image: url('../images/index/paralaximage.jpg');
    position: relative;
}

    .ContactUsSection:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background-color: #0000006b;
        backdrop-filter: blur(1px) contrast(1.5);
    }

.ContactUsFormWrapper {
    box-shadow: inset 0 0 14px #00000066;
    border-radius: 5px;
    background-image: url('../images/index/texturetile2.png');
    background-repeat:repeat;
}

.LocationMap {
    width: 100%;
    min-height: 350px;
    border-radius: 5px;
    box-shadow: 0 0 6px #00000042;
    border: none;
}
.ContactInfo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}
.contactUsSocialMedia{
    display:flex;
}
.contactUsSocialMedia i{
    display:inline-flex;
    padding:8px;
    color:white;
    border-radius:5px;
    font-size:25px;
    margin :0 0 0 10px;
    background-color:var(--Primery1);
    transition-duration:1s;
}
    .contactUsSocialMedia i:hover {
        animation: rubberBand 1s linear;
        cursor: pointer;
        background-color: var(--Primery2)
    }


@media screen and (max-width: 768px) {
    .contactUsSocialMedia {
        width: 100%;
        justify-content: center;
    }
}
/*#endregion*/


/*#region Footer*/
.IndexFooter {
    /*min-height: 500px;*/
    position: relative;
    background-image: url('../images/index/footerback.jpg');
    background-size: cover;
}
    .IndexFooter:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background-color: #00000082;
    }
.InnerIndexFooter{
    position:relative;
    z-index:3;
}
.InnerIndexFooter * {
    color:white;
}




.IndexFooterRightSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}
.IndexFooterRightSection img {
    width:100%;
    max-width:150px;
    margin-bottom:10px;

}
.FooterSocialMedia {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}
.FooterSocialMedia i {
    margin:0 8px;
    font-size:20px;
    color:var(--Primery2)
}
    .FooterSocialMedia i:hover {
        animation: rubberBand 1s linear;
        cursor:pointer;
    }



.IndexFooterMiddletSection {
    display: flex;
    flex-direction: column;
    align-items: center;
}
    .IndexFooterMiddletSection label {
        display: block;
        margin-bottom: 15px;
        border-bottom: 1px solid white;
    }
    .IndexFooterMiddletSection ul {
        list-style:none;
        margin:0;
        padding:0;
    }
        .IndexFooterMiddletSection ul li {
            margin-bottom: 7px;
            font-size: 14px;
            cursor: pointer;
        }


.LicenseWrapper {
    padding: 10px 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
}

    .LicenseWrapper .LicenseLink {
        background-color: #ffffffa3;
        margin: 0 10px;
        border-radius: 5px;
        padding: 10px;
        backdrop-filter: blur(2px);
        border: 1px solid white;
        box-shadow: 0px 0px 9px 1px #00000069;
        transition-duration:.5s;
    }
    .LicenseWrapper .LicenseLink:hover {
        background-color: white;
 
    }


        .LicenseWrapper .LicenseLink img {
            width: 95px;
        }
@media screen and (max-width: 768px) {
    .LicenseWrapper {
        justify-content: space-evenly;
    }
}





.IndexFooterLeftSection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .IndexFooterLeftSection label {
        display: block;
        margin-bottom: 15px;
        border-bottom: 1px solid white;
    }

    .IndexFooterLeftSection ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .IndexFooterLeftSection ul li {
            margin-bottom: 7px;
            font-size: 14px;
            cursor:pointer;
        }


.IndexFooterBottomSection p {
    text-align: center;
    border-top: 1px solid white;
    margin: 35px 0 15px 0;
    padding: 15px 0 0 0;
    font-size:13px;
}

.IndexFooterBottomSection p i{
    display:inline-flex;
    margin-left:4px;
    position:relative;
    top:3px;

}
/*#endregion*/