@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;
}

/******************************/
:root {
    --main: #417ABE;
    --sec: #1A5398;
    --text: #a8bdd0;
    --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: 'Bahij-Janna', 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-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: 200px;
}

.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: rtl;
    text-align: right;
    height: 50px;
    border-radius: 35px;
    border: 1px solid  #F0F3F7;
    background: #F0F3F7;

}

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

.main-btn {
    width: 160px;
    height: 50px;
    line-height: 50px;
    padding-inline-start: 10px;
    text-align: center;
    border-radius: 35px;
    color: var(--white);
    background: #B1C8E4;
    border: 1px solid #B1C8E4;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all .35s ease-in-out;
}

.main-btn:hover {
    color: var(--white);
    background: transparent;
    border: 1px solid transparent;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--main);
    z-index: -1;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
}

html[dir="ltr"] .main-btn::before {
    left: unset;
    right: 100%;
}

.main-btn:hover::before {
    transform: translateX(-100%);
}

html[dir="ltr"] .main-btn:hover::before {
    transform: translateX(100%);
}


.main-btn::after {
    font-family: "Font Awesome 6 Free", serif;
    content: "\f060";
    font-weight: 900;
    font-size: 16px;
    color: var(--white);
    transition: transform 0.5s ease-in-out, color 0.35s ease-in-out;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #7398C5;
    border-radius: 50%;
}

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

.main-btn:hover::after {
    transform: rotate(-45deg);
    background: var(--sec);
    color: var(--white);
}

html[dir="ltr"] .main-btn:hover::after {
    transform: rotate(-45deg);
}

.main-tit {
    font-weight: bold; /* أو أي نمط خط آخر */
    font-size: 48px;
    color: var(--black);
    position: relative;
}


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

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

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

/******************************/
/******************************/
header {

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 2;
}

header.head-inside {
    position: relative;
    margin-bottom: 50px;
    background-image: url("../images/image.png");
    background-repeat: no-repeat;
    background-size: cover;

}

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

.head-logo .main-logo {
    position: relative;
    z-index: 2;
}

.head-logo .main-logo img {
    max-width: 150px;
}

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

.language .language-drop {
    background: transparent;
    padding: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.language .language-drop.dropdown-toggle::after {
    content: none;
}

.language .language-drop.dropdown-toggle::before {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.language .dropdown-menu.show {
    text-align: center;
    color: var(--main);
}

.language .dropdown-menu.show a {
    color: var(--main);
}

.language .language-drop img {
    margin-inline-start: 5px;
}

@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%;
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .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: bold;
        position: relative;
        text-align: start;
        padding: 10px 22px;
        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;
    }
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {

}

/******************************/
/*********slideshow***********/
/******************************/
.slider {
    position: relative;
}
.slider-image img{
    width: 100%;
}
.slider .slider-video video {
    width: 100%;
    display: block;
}

.slid-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.slid-body .slid-title {
    font-size: 72px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 30px;
}

.main-slider .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.main-slider .owl-dots .owl-dot {
    background: #FFFFFF80;
    opacity: .5;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all .35s ease-in-out;
}

.main-slider .owl-dots .owl-dot.active {
    background: #417ABE;
    opacity: 1;
}

@media (max-width: 992px) {
    .main-slider .item img {
        max-height: 650px;
    }
}

@media (max-width: 768px) {
    .main-slider .item img {
        max-height: 450px;
    }

    .slid-body .slid-title {
        font-size: 38px;
    }
}

@media (max-width: 500px) {
    .main-slider .item img {
        max-height: 350px;
    }

    .slid-body .slid-title {
        font-size: 24px;
    }
}

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

.about:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(65,122,190,0.28);
    border-radius: 0 0 0 20px;
    z-index: -1;

}

.about .about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
}

.about .main-tit {
    flex: 0 0 10%;
    max-width: 10%;
}

.about .about-header-description {
    flex: 0 0 70%;
    max-width: 70%;
    font-size: 44px;
    text-align: center;
    font-weight: 100 !important;
    color:#34699A;
}
html[dir="ltr"] .about .about-header-description{
    font-size: 28px;
    flex: 0 0 65%;
    max-width: 65%;
}

.about .about-url {
    flex: 0 0 20%;
    max-width: 20%;
    text-align: left;
}

html[dir="ltr"] .about .about-url {
    text-align: start;
}

.about-tit {
    font-size: 48px;
    font-weight: bold;
    color: #1A5398;
    margin-bottom: 10px;
}

.about-description {
    font-size: 16px;

    color: var(--black);

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

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

.about-tab-btn {
    font-weight: bold;
    font-size: 20px;
    margin-inline-end: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}

.about-tab-btn.active {
    color: var(--white);
    background: var(--sec);
}
.about-tab-btn.active.main-btn::after{
    transform: rotate(-45deg);
    background: var(--main);
    color: var(--white);
}

.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);
    }
}



/******************************/
/*********services***********/
/******************************/
.services{
    padding: 50px 0 150px;
}
.services-items {
    position: relative;
    overflow: hidden;
    transition: all .35s ease-in-out;
}

.services-items:hover {
    transition: all .35s ease-in-out;
    border-radius: 20px;
    box-shadow: 0 4px 4px 0 #00000040;
}

.services-items:before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    border-radius: 20px;
    background: linear-gradient(360deg, #000000 6.1%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: all .35s ease-in-out;
}

.services-items .image img {
    transition: all .35s ease-in-out;
    width: 100%;
    border-radius: 20px;
}

.services-items .content {
    position: absolute;
    bottom: -80px;
    padding: 15px;
    z-index: 2;
    transition: all .35s ease-in-out;
}

.services-items:hover .content {
    bottom: 20px;
    transition: all .35s ease-in-out;
}

.services-items .content .tit {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 15px;
}
html[dir="ltr"] .services-items .content .tit{
    font-size: 20px;
}
.services-items .content .services-items-content-hr {
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease-in-out;
}

.services-items:hover .content .services-items-content-hr {
    opacity: 1;
    visibility: visible;
    transition: all .35s ease-in-out;
}

.services-items .content .services-items-content-hr .description {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--white)
}
.services-slider .owl-nav{
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;display: flex;
    align-items: center;
    justify-content: center;
}
html[dir="ltr"] .services-slider .owl-nav{
    flex-direction: row-reverse;
}
.services-slider .owl-nav button{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #1A5398;
    color: #fff;
    border-radius: 50%;
    margin: 0 5px;
    transition: all .35s ease-in-out;
}
.services-slider .owl-nav button:hover{
    background: #417ABE;
    transition: all .35s ease-in-out;
}
/******************************/
/*********blog***********/
/******************************/
.blogs {
    padding:0 0  50px 0 ;
    background-image: url("../images/blog.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-items {
    position: relative;
     border-radius:20px ;
    transition: all ease-in-out .35s ;
}
.blog-date-vertical {
    background: #fff;
    color: #000;
    width: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 20px  20px 0;
    box-shadow: 5px 4px 4px rgba(11,64,104,0.25);
    position: absolute;
    right: -5px;
    top: 0;
    z-index: 2;
    padding: 14px 0 10px 0;
    transition: all ease-in-out .35s ;
}
.blog-items:hover .blog-date-vertical{
    background: #1764ac;
    color: #fff;
    transition: all ease-in-out .35s ;
}
.blog-date-vertical .icon {
    font-size: 22px;
    margin-bottom: 10px;
    transform: rotate(-90deg);
}
.blog-date-vertical .date {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 500;
 }


.blog-items:before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 15px;
    background-size: cover;
    background-image: url("../images/blog-bg.png");
    transition: all ease-in-out .35s ;
}
.blog-content .url a{
    font-size: 20px;
    text-decoration: underline;
    color: var(--white);
}
.blog-items:hover:before {
    transition: all ease-in-out .35s ;
}

.blog-items .blog-img img {
    width: 100%;
    border-radius: 15px;
    display: block;
    transition: all .35s ease-in-out;
}

.blog-items .blog-content {
    position: absolute;
    bottom: 15px;
    right: 60px;
    z-index: 2;
}
html[dir="ltr"] .blog-items .blog-content{
    right: unset;
    left: 15px;
}

.blog-items .blog-content .tit {
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
}


/******************************/
/*********  banner  ***********/
/******************************/
.banner-image img{
    width: 100%;
}
.banner-items{
    position: relative;
}
.banner-content{
    position: absolute;
    top: 35%;
    right: 15%;
}
html[dir="ltr"] .banner-content{
    left: 15%;
    right: unset;
}
.banner-content .banner-description{
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--white);
}
html[dir="ltr"] .banner-content .banner-description{
    font-size: 42px;
}
.banner-url .main-btn {
    width: 160px;
    height: 40px;
    line-height: 40px;
    padding-inline-start: 10px;
    text-align: center;
    border-radius: 35px;
    color: var(--sec);
    background: #fff;
    border: 1px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all .35s ease-in-out;
}

.banner-url  .main-btn:hover {
    color: var(--white);
    background: transparent;
    border: 1px solid transparent;
}

.banner-url  .main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--sec);
    z-index: -1;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
}

html[dir="ltr"] .banner-url .main-btn::before {
    left: unset;
    right: 100%;
}

.banner-url  .main-btn:hover::before {
    transform: translateX(-100%);
}

html[dir="ltr"] .main-btn:hover::before {
    transform: translateX(100%);
}


.banner-url  .main-btn::after {
    font-family: "Font Awesome 6 Free", serif;
    content: "\f060";
    font-weight: 900;
    font-size: 16px;
    color: var(--white);
    transition: transform 0.5s ease-in-out, color 0.35s ease-in-out;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #7398C5;
    border-radius: 50%;
}

html[dir="ltr"] .banner-url  .main-btn::after {
    content: "\f061";
}

.banner-url  .main-btn:hover::after {
    transform: rotate(-45deg);
    background: var(--sec);
    color: var(--white);
}

html[dir="ltr"] .main-btn:hover::after {
    transform: rotate(-45deg);
}

/******************************/
/*********  contactus  ***********/
/******************************/
.contactus{
    padding: 50px 0;
}
.contact-tittle{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
/******************************/
/*********  footer  ***********/
/******************************/

footer {
    background-image: url("../images/image.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 75px 0 20px;
    position: relative;
}

.footer-logo{
    margin: 0 auto 30px;
    display: table;
}
.footer-list ul{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 50px;

}
.footer-list ul li{
    margin: 0 15px;
}
.footer-list ul li a{
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
}

.contact-us-information {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 50px;
}

.info-content .key {
    color: var(--white);
    background: #0C3A60;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    margin-inline-end: 10px;
    margin-bottom: 0;
}

.info-content .value {
    color: var(--white);
    font-size: 18px;
}

.copy-write {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.copy-write a {
    color: #EE862C
}
.map iframe {
    height: 300px;
    width: 100%;
    border-radius: 20px;
}
.breadcrumb-area {
     padding: 50px 0 0;
    font-size: 24px ;
    color:var(--sec);
}
.breadcrumb-area .home{
    color: var(--white);
}
.social-media{
    position: fixed;
    top: 40%;
    left: 15px;
    z-index: 222;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.social-media .social-item{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin-bottom: 5px;
    text-align: center;
    background: #2272B1;
    color: var(--white);
}
.social-media .social-item:hover{
    transition: all .35s ease-in-out;
    background: #4C953C
}
.whatsapp{
    position: fixed;
    top: 58%;
    right: 15px;
    z-index: 222;
}
.whatsapp a{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
}
.about-page.about .about-header-description{
    flex: 0 0 100%;
    max-width: 100%;
}
.page-thumb-about img{
    border-radius: 20px;
}


@media (max-width: 768px) {
    .services{
        padding: 50px 0;
    }
    .banner-content .banner-description{
        font-size: 28px;
    }
    .team .image img{
        max-height: 230px;
    }
    .footer-tit{
        font-size: 24px;
    }
    .map iframe{
        height: 250px;
    }
    .about .about-header-description{
        font-size: 24px;
    }
    html[dir="ltr"] .about .about-header-description{
        font-size: 16px;
    }

    .features-items .features-content{
        padding: 15px 15px 25px;
    }
    .features-items .features-content .features-description{
        font-size: 20px;
    }
}
@media (max-width: 500px) {
    .about:before{
        contain: none;
    }
    .banner-content .banner-description{
        font-size: 18px;
    }
    .banner-image img{
        height: 200px;
    }
    .about-tabs-buttons{
        flex-direction: column;
    }
    .footer-list ul{
        flex-wrap: wrap;
    }
    .contact-image{
        margin-bottom: 20px;
    }
    .contact-us-information{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
.contactus  .container > .row {
    flex-direction: column-reverse;
}


    .contact-tittle{
        font-size: 16px;
    }
    .about .about-header{
        flex-wrap: wrap;
    }
    .about .about-header-description{
        flex: 0 0 78%;
        max-width: 78%;
        font-size: 16px;
    }
    html[dir="ltr"] .about .about-header-description{
        font-size: 14px;
        flex: 0 0 85%;
        max-width: 85%;
    }
    .about .about-url {
        flex: 0 0 30%;
        max-width: 30%;
        text-align: center;
        margin: 10px auto;
    }
    .about-description{
        width: 100%;
    }
    .counters .count{
        font-size: 48px;
    }
    .counters .text{
        font-size: 24px;
    }
    .vision-message:before {
        left: 0;
    }
    .team .image img {
        max-height: 150px;
    }
    .footer-logo-qr ,.footer-map{
        margin-bottom: 50px;
    }

}
@media (max-width: 500px) {


}

/*loading*/
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #a8bdd0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--main);
    border-radius: 50%;
    width: 40px; height: 40px;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
::-webkit-scrollbar {
    width: 10px; /* عرض السكرول */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* لون الخلفية */
}

::-webkit-scrollbar-thumb {
    background: var(--main);/* لون الجزء المتحرك */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sec); /* لون عند الوقوف بالماوس */
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #3498db #f1f1f1; /* (لون الجزء المتحرك | لون الخلفية) */
}
