@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-Regular.eot');
    src: url('../fonts/tajawal/Tajawal-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/tajawal/Tajawal-Regular.woff2') format('woff2'),
    url('../fonts/tajawal/Tajawal-Regular.woff') format('woff'),
    url('../fonts/tajawal/Tajawal-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bahij-Janna';
    src: url('../fonts/bahij/BahijJanna.eot');
    src: url('../fonts/bahij/BahijJanna.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bahij/BahijJanna.woff2') format('woff2'),
    url('../fonts/bahij/BahijJanna.woff') format('woff'),
    url('../fonts/bahij/BahijJanna.ttf') format('truetype'),
    url('../fonts/bahij/BahijJanna.svg#BahijJanna') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Regular.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald-Bold';
    src: url('../fonts/Oswald-Bold.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/******************************/
:root {
    --main: #155C7D;
    --sec: rgba(14, 114, 185, 0.49);
    --text: #994D3C;
    --href: #00A3E0;
    --tit: #22368B;
    --black: #000000;
    --white: #ffffff;
}

/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}

html[dir="ltr"] body {
    direction: ltr !important;
    text-align: left !important;
}

html[dir="rtl"] body {
    direction: rtl !important;
    text-align: right !important;
}

body {
    font-family: 'Tajawal', serif !important;
    color: var(--black);
    background: var(--white) !important;
    font-size: 16px;
}

p:last-of-type {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-family: 'Tajawal', serif !important;
'; font-weight: bold;
}

button,
li,
a {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type=submit],
a {
    transition: all 0.5s linear;
}

img, iframe, video {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
}

.no-padding {
    padding: 0 !important;
}

textarea.form-control {
    height: 165px;
}

.form-group{
    margin-bottom: 30px;
}
.form-group label{
    font-size: 14px;
    font-weight: bold;
}
.form-group:hover label{
    color: var(--main);
}
.form-group, form {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] .form-group,
html[dir="ltr"] form {
    direction: ltr;
    text-align: left;
}

.form-control {
    direction: ltr;
    text-align: left;
    height: 50px;
     border: 1px solid var(--gray);
}

html[dir="rtl"] .form-control {
    direction: rtl;
    text-align: right;
}

.form-control:focus {
    border-color: var(--main);
}

.main-btn {
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 0;
    overflow: hidden;
    background: var(--sec);
    cursor: pointer;
    transition: all .35s ease-in-out;
}

.main-btn:after {
    content: "\f177";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free', serif;
    font-size: 14px;
    color: var(--white);
    position: relative;
    border-radius: 50%;
    opacity: 1;
    transition: all .35s ease-in-out;
}

html[dir="ltr"] .main-btn {
    display: flex;
}

html[dir="ltr"] .main-btn:after {
    content: "\f178";

}


.main-btn:hover {
    color: var(--white);
    background-color: var(--main);
}

.main-btn:hover:after {
    color: var(--white);
    transform: scale(1.25) rotate(-45Deg);
    transition: all .3s ease-in-out;
}

.main-tittle {
    font-size: 42px;
    font-weight: bold;
    color: var(--black);
    text-shadow: 1px 1px 1px #000000;
}

@media (max-width: 768px) {
    .main-tit {
        font-size: 38px;
    }
}

@media (max-width: 500px) {

    .main-btn {
        width: 120px;
        height: 35px;
        line-height: 35px;
        font-size: 10px;
    }
}

/******************************/
/* && search &&*/
/******************************/
#header-search {
    display: inline-block;
}

#search-header.open {
    background: rgba(0, 0, 0, 0.8);
}

#search-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    transform: translate(0px, 0px) scale(0.7, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

#search-header.open {
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

#search-header .search-form {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}

.open-search {
    color: var(--white) !important;
    background-color: transparent;
    font-weight: bold;
    padding: 0;
    font-size: 18px;
    text-align: center;
    transition: all .35s ease-in-out;
}

.open-search:hover {
    color: var(--primary) !important;
    transform: translateY(-10px);
}

#search-header input[type="search"] {
    font-size: 44px;
    color: #fff;
    font-weight: 300;
    border: 0;
    outline: none;
    width: 70%;
    height: 90px;
    line-height: normal;
    border-bottom: 1px solid;
}

#search-header .search-submit {
    z-index: 10;
    border: none !important;
}

#search-header .search-submit,
.search-icon {
    background: none;
    border: none;
    height: 70px;
    width: 70px;
    position: absolute;
    top: 20px;
}

.search-icon:before {
    font-family: 'Font Awesome 5 Brands', serif;
    content: "\f3eb";
    display: inline-block;
    width: 70px;
    height: 70px;
    font-size: 24px;
    padding-top: 20px;
    color: #fff;
}

#search-header .close {
    background: none;
    border: none;
    position: fixed;
    top: 45px;
    right: 45px;
    opacity: 1;
    cursor: pointer;
    color: #fff;
    text-align: center;
    transition: all 0.2s ease-out;
}

#search-header .close:hover {
    opacity: 0.8;
}

#search-header .close i {
    display: none;
}

#search-header .close:after {
    font-family: 'Font Awesome 5 Free', serif;
    content: "\f057";
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 29px;
    left: 0;
}

#search-header button.close {
    border: 2px solid #fff;
    height: 37px;
    width: 37px;
    border-radius: 200em;
}

#search-header input[type="search"] {
    background: rgba(0, 0, 0, 0);
    border-color: #5f5f5f;
}

#search-header .search-submit {
    color: transparent;
}

#search-header input[type="search"] {
    color: #fff;
}


/******************************/
/******************************/
header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 330px;
    top: 0;
    left: 0;
    right: 0;
    background: url("../images/header-bg.png");
    z-index: 0;
}

header.head-inside {
    position: relative;
     background-color: var(--black);
    background-image: url("../images/bread.png");
    background-size: cover;
    background-repeat: no-repeat;
 }

header.head-inside:before{
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.header-links {
    display: flex;
    align-items: center;
}

.header-links a {
    color: var(--white);
    margin-inline-end: 10px;
    padding-inline-end: 10px;
}

.header-links a.open-search:last-of-type {
    margin-inline-end: 0;
    padding-inline-end: 0;
}

.header-links .language{
    margin-inline-start: 50px;
}
.header-links .language .lang:first-child{
     border-inline-end: 2px solid #C0C0C0;
}

.header-links .language .lang {
    color: var(--white);
}

.header-links .language .lang.active-lang {
    color: var(--href);
}


@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .head-home {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 2;
    }
}

/******************************/
/********* nav     ***********/
/******************************/

@media (min-width: 992px) {
    .main-nav-with-order {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-inline-start: 50px;
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 0;
        position: relative;
    }

    .nav-list > .menu-item {
        position: relative;
    }

    html[dir="ltr"] .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-end: 5px;
    }

    html[dir="rtl"] .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-start: 5px;
    }

    .nav-list > .menu-item > a {
        display: block;
        color: var(--white);
        font-size: 18px;
        font-weight: 500;
        position: relative;
        text-align: start;
        padding: 10px 12px;
        transition: all 0.5s ease-in-out;
    }

    /*.nav-list > .menu-item > a:before, .nav-list > .menu-item.active a:before {*/
    /*    content: '';*/
    /*    width: 0;*/
    /*    height: 3px;*/
    /*    background-color: var(--main);*/
    /*    position: absolute;*/
    /*    bottom: 0;*/
    /*    right: 0;*/
    /*    left: 0;*/
    /*    opacity: 0;*/
    /*    visibility: hidden;*/
    /*    transform: scale(0);*/
    /*    transition: all .5s ease-in-out;*/
    /*}*/
    /*.nav-list > .menu-item:hover > a:before, .nav-list > .menu-item.active a:before {*/
    /*    opacity: 1;*/
    /*    width: 100%;*/
    /*    visibility: visible;*/
    /*    transform: scale(1);*/
    /*}*/
    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f0d7";
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        margin-inline-start: 10px;
        color: var(--main);
        background: transparent;
        transition: all .35s ease-in-out;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--main);
    }

    .nav-list > .menu-item:hover > a:before,
    .nav-list > .menu-item.active a:before {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-list > .menu-item-has-children:hover a:after {
        transform: rotateX(-180deg);
        color: var(--black);
    }

    html[dir="rtl"].sub-menu {
        left: 0;
    }

    html[dir="ltr"].sub-menu {
        right: 0;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 4;
        min-width: 350px;
        background-color: rgba(220, 220, 220, 1);
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform-origin: 0 0 0;
        transform: scaleY(0);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
        transition: all 0.2s ease-in-out;
    }

    .sub-menu li {
        position: relative;
        padding: 0 20px;
    }

    .sub-menu li:not(:last-of-type) a {
        margin-bottom: 10px;
    }

    .sub-menu li a {
        display: block;
        width: 100%;
        position: relative;
        color: var(--black);
        padding-bottom: 10px;
        transition: all 0.5s ease-in-out;
    }


    html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        left: 0;
        content: "\f324";
    }

    html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        right: 0;
        content: "\f323";
    }

    .nav-list .sub-menu > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--black);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .sub-menu li a:hover {
        color: var(--main);
    }

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: var(--main);
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children .sub-menu {
        left: 100%;
    }

    .sub-menu .menu-item-has-children .sub-menu {
        top: 0 !important;
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        left: 100%;
    }


    html[dir="rtl"] .nav-list > .menu-item-has-children > .sub-menu a:before {
        content: "\f100";
    }

    html[dir="ltr"] .nav-list > .menu-item-has-children > .sub-menu a:before {
        content: "\f101";
    }

    .nav-list > .menu-item-has-children > .sub-menu a:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        display: inline-block;
        margin-inline-start: 10px;
        color: var(--black);
        font-size: 14px;
        transition: all .35s ease-in-out;
    }

    .nav-list > .menu-item-has-children > .sub-menu a:hover:before {
        color: var(--main);
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--main);
    }

    .nav-btn,
    .mobile-nav-list,
    .dd-trigger {
        display: none;
    }
}

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

    .dd-trigger {
        display: block;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .head-logo {
        display: flex;
        align-items: center;
    }

    .menu-icons a:not(:last-of-type) {
        margin-inline-end: 10px;
    }

    .nav-list > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--white);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        color: var(--white);
        background-color: var(--main);
        margin-inline-end: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
    }

    html[dir="ltr"] .mobile-nav-list {
        left: 0;
        transform: translateX(-100%);
    }

    html[dir="rtl"] .mobile-nav-list {
        transform: translateX(100%);
        right: 0;
    }

    .mobile-nav-list {
        width: 300px;
        height: 100%;
        padding: 15px;
        background-color: rgba(255, 255, 255, 1);
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 999;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        overflow-y: scroll;
        transition: all .5s linear;
    }

    .mobile-nav-list .menu-item {
        position: relative;
        border-bottom: 1px solid var(--main);
    }

    .mobile-nav-list .menu-item > a {
        display: block;
        color: var(--black);
        padding: 15px;
    }

    .mobile-nav-list .menu-item.menu-item-has-children > a {
        width: calc(100% - 34px);
        display: inline-block;
    }

    .mobile-nav-list .menu-item > a:hover,
    .mobile-nav-list .menu-item.active > a {
        color: var(--main);
    }

    html[dir="ltr"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-left: 1px solid var(--black);
    }

    html[dir="rtl"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-right: 1px solid var(--black);
    }

    .mobile-nav-list .menu-item.menu-item-has-children i {
        color: var(--black);
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .menu-item i.open {
        color: var(--main);
    }

    .sub-menu {
        list-style: none;
        background-color: var(--main);
    }

    .mobile-nav-list .sub-menu a {
        display: block;
        padding: 15px 25px;
        color: var(--white);
        transition: all .3s linear;
    }

    .mobile-nav-list .sub-menu a:hover {
        color: #393839;
    }

    .trans-none {
        transform: none !important;
    }

    html[dir="ltr"] .nav-overlay {
        right: 0;
        transform: translateX(100%);
    }

    html[dir="rtl"] .nav-overlay {
        left: 0;
        transform: translateX(-100%);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 5;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all .35s ease-in-out;
    }
}

/******************************/
/********* slider   ***********/
/******************************/
.slider video, .slider img {
    width: 100% !important;
    display: block !important;
}

/******************************/
/********* about    ***********/
/******************************/
.about {
    padding: 50px 0;
}

.about-description {
    font-size: 15px;
    margin-bottom: 30px;
}

.tabs-about {
    margin-top: 50px;
}

.about-tabs-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.about-tab-btn {
    background: transparent;
    border: none;
    color: var(--sec);
    font-weight: bold;
    font-size: 24px;
    margin-inline-end: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-bottom: 3px solid transparent;
}

.about-tab-btn.active {
    color: var(--main);
}

.about-tab-btn:hover {
    color: var(--main);
}

.about-tabs-content {
    margin-top: 25px;
}

.about-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
    color: var(--black);
}

.about-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/******************************/
/********* sector  ***********/
/******************************/
.sectors {
    padding: 50px 0;
}

.sector-category {
    position: relative;
    overflow: hidden;
    z-index: 2;
}


.sector-category:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sector-category img {
    width: 100%;
}

.sector-category .sectors-title {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 26px;


}

/******************************/
/********* service ***********/
/******************************/
.service {
    padding: 50px 0;
}

.service .service-items {
    position: relative;
    overflow: hidden;
}

.service .service-items:before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.service .service-items img {
    width: 100%;
}

.service-title h2 {
    color: var(--white);
    position: absolute;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/******************************/
/********* partners ***********/
/******************************/
.partners {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .col-partners {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/******************************/
/********* projects   ***********/
/******************************/
.projects {
    padding: 50px 0;
}

.projects-header .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.projects-header .all-projects {
    position: relative;
    color: var(--main);
    border: 1px solid var(--main);
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    transition: all .35s ease-in-out;
}

.projects-header .all-projects:after {
    content: "\f177";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free', serif;
    font-size: 14px;
    color: var(--main);
    position: relative;
    border-radius: 50%;
    opacity: 1;
    transition: all .35s ease-in-out;
}

html[dir="ltr"] .projects-header .all-projects {
    display: flex;
}

html[dir="ltr"] .projects-header .all-projects:after {
    content: "\f178";

}

.projects-header .all-projects:hover {
    color: var(--white);
    background-color: var(--main);
}

.projects-header .all-projects:hover:after {
    color: var(--white);
    transform: scale(1.25) rotate(-45Deg);
    transition: all .3s ease-in-out;
}

.projects-items {
    position: relative;
}

.projects-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.projects-content .title-projects{
    font-size: 34px;
    font-weight: bold;
    color: var(--main);
}
.main-btn-proj{

    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 0;
    overflow: hidden;
    background: var(--sec);
    cursor: pointer;
    transition: all .35s ease-in-out;
}

.main-btn-proj:after {
    content: "\f177";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free', serif;
    font-size: 14px;
    color: var(--white);
    position: relative;
    border-radius: 50%;
    opacity: 1;
    transition: all .35s ease-in-out;
}

html[dir="ltr"] .main-btn-proj {
    display: flex;
}

html[dir="ltr"] .main-btn-proj:after {
    content: "\f178";

}


.main-btn-proj:hover {
    color: var(--white);
    background-color: var(--main);
}

.main-btn-proj:hover:after {
    color: var(--white);
    transform: scale(1.25) rotate(-45Deg);
    transition: all .3s ease-in-out;
}


/******************************/
/******* certificates *********/
/******************************/
.certificates{
    padding: 50px 0;
}
.certificates .main-tittle{
    margin-bottom: 50px;
}
/******************************/
/******** contact-us **********/
/******************************/
.contact-us{
    padding: 50px 0;
}
/******************************/
/********* footer   ***********/
/******************************/
footer {
    position: relative;
    padding: 100px 0 0;
    background: #071B42;
}

.footer-logo-desc {
    font-size: 14px;
    font-weight: 400;
}

.footer-hed {
    padding-bottom: 75px;
}

footer:before {
    content: " ";
    background-image: url("../images/Map 1.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.footer-list ul li {
    float: right;
    width: 50%;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-list ul li a {
    color: var(--white);
}

.footer-list ul li::before {
    content: ".";
    margin-inline-end: 5px; /* إضافة مسافة بين النقطة والـ li */
    color: var(--white);

}

.footer-tit {
    font-size: 28px;
    font-weight: bold;
}

.end-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}

.end-footer-items {
    background: #175071;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.social-menu {
    display: flex;
    align-items: center;
}

.social-menu .footer-list-end {
    margin: 0 10px;
}

.social-menu .footer-list-end ul {
    display: flex;
    align-items: center;
}

.social-menu .footer-list-end ul li a {
    color: var(--white);
    font-weight: 500;
    margin-inline-start: 10px;
}

.footer-logo-desc {
    color: var(--white);
}

.map iframe {
    border-radius: 25px;
    width: 100%;
}

.social {
    display: flex;
    align-items: center;
    z-index: 2;
}

.social a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social a {
    margin-inline-start: 5px;
}

.social a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #0C3F5C;
    color: #fff;
    transition: all .35s ease-in-out;
}

.social a:hover i {
    background: #0F73B8;
    transition: all .35s ease-in-out;

}

.copy-write {
    color: var(--white);
}

.copy-write a {
    color: #0F73B8
}

@media (max-width: 500px) {
    .footer-logo {
        margin-top: 30px;
    }
}


.info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info .icon {
    color: var(--main);
    font-size: 24px;
    padding-inline-end: 10px;

}


.info-content .value {
    font-weight: bold;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
}

.video-item iframe {
    width: 100%;
}

.page-thumb {
    margin-bottom: 20px !important;
}

.map {
    margin-top: 30px;
}

.map iframe {
    height: 300px;

}

.breadcrumb-area{
    padding: 30px 0;
    position: relative;
    z-index: 2;
}
.breadcrumb-area .page-tit{
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}
.breadcrumb-area .breadcrumb-links ,.breadcrumb-area .breadcrumb-links a{
    font-size: 28px;
    color: var(--white);
}
.page-main ,.sectors-tax{
    padding: 50px 0;
}
.gallery-item-image a{
    display: block;
}
.gallery-item-image img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.c-spinning-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c-spinning-loader .main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;


}

.c-spinning-loader__circle {
    position: relative;
    z-index: 1;
    width: 250px;
    height: 250px;
    border-radius: 100%;
    background: linear-gradient(to right, #0064a6 10%, rgba(0, 100, 166, 0) 50%);
    animation: spin 1s infinite linear;
}

.c-spinning-loader__circle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    border-radius: 100% 0 0 0;
    background: #0064a6;
}

.c-spinning-loader__circle::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 92%;
    height: 92%;
    margin: auto;
    border-radius: 50%;
    background: #d9f0ff;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .service ,.sectors ,.about ,.partners ,.projects{
        padding: 50px 0 0;
    }
    .projects-content{
        padding: 10px;
    }
    .end-footer{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .social-menu{
        margin-bottom: 20px;
    }
    .footer-logo{
        margin: 0 auto 20px;
        display: table;
    }
    .projects-content .title-projects{
        font-size: 24px;
    }
    .about-tab-btn{
        margin-inline-end: 10px;
    }
    .about-tab-content ,.about-description{
        font-size: 14px;
    }
    .sector-category .sectors-title{
        font-size: 20px;
    }
    .service-title h2{
        font-size: 34px;
    }
    .main-tittle{
        font-size: 34px;
    }
}

@media (max-width: 500px) {
    .tabs-horizontal .tab-list button{
        margin-bottom: 10px !important;
    }
    .tabs-vertical .tab-list button{
        font-size: 20px !important;
    }
    .main-tittle{
        font-size: 24px;
    }
    .header-links .language {
        margin-inline-start: 20px;
    }
    .projects-header .all-projects{
        width: 120px;
        height: 35px;
        line-height: 35px;
        font-size: 10px;
    }
    .footer-list-end{
        margin-bottom: 10px;
    }
    .social-menu  {
        flex-direction: column;
    }
}
