/* Variable */
:root {
    --praimary-color: #FFA500;
    --praimary-overlay-color: #ffa60069;
    --second-color: #065AAA;
    --thierd-color: #032e56;
    --overlay-color: #2B3A46;
    --grey-color: #f1f1f1;
    --transparent-color: rgba(15, 115, 143, 0.30);
    --section-padding: 100px;
    --text-direction: ltr;
}

/* End Variable */

/* Global  */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

html {
    scroll-behavior: smooth;
    height: 100%;

}

body {
    font-family: 'Alexandria', sans-serif;
    text-transform: capitalize;
    height: 100%;
    line-height: 1.5;


}



ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:visited {
    color: var(--second-color);

}

a:link {
    color: var(--second-color);
}


.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;

}

/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* End Global  */


/* ================================================================================================================================ */

.main-heading {
    text-align: center;
}

.main-heading h2 {
    font-size: 34px;
    position: relative;
    margin-top: 70px;
    margin-bottom: 70px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--second-color);
}


.main-heading h3 {
    font-size: 16px;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--second-color);
}
.main-heading h2::before {
    content: "";
    background-color: var(--second-color);
    height: 2px;
    position: absolute;
    width: 120px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.main-heading h2::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--praimary-color);
    border: 2px solid var(--second-color);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
}

.main-heading p {
    width: 550px;
    margin: 0 auto 60px;
    max-width: 100%;
    line-height: 2;
    color: #777;
}


/* component */

/* ================================================================================================================================ */

/* Floating Soclial */

.float-social {
    position: fixed;
    right: unset;
    left: 1%;
    width: 80px;
    top: 50%;
    padding: 0 0 10px;
    color: var(--second-color);
    z-index: 99999;
    box-shadow: 0 -35px 60px rgba(0, 0, 0, 0.168);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    vertical-align: middle;
}

.float-social .ul-social {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50);
    -moz-transform: translate(-50);
    -ms-transform: translate(-50);
    -o-transform: translate(-50);
    text-align: center;
}

.float-social .ul-social a {
    margin: 0 auto 10px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1d98cb;
    font-size: 16px;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
}

.float-social ul li i {
    display: flex;
    position: relative;
    vertical-align: middle;
}

.float-social ul li a:hover {
    color: var(--praimary-color);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

/*End Floating Soclial */

/* ================================================================================================================================ */

/* Start Header and Menu */
.header-menu {
    padding: 10px;
    position: relative;
    width: 100%;
    background-color: var(--second-color);
    color: white;
    display: flex;
    direction: var(--text-direction);

}

.header-menu li {
    display: inline-block;
    margin-left: 10px;
}

.header-menu li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.header-menu li a:hover,
.header-menu li a.active {
    color: var(--praimary-color);
}

.header-area .logo {
    max-width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.header-area .logo-img1 {
    width: 100px;
    height: 100px;
    padding-right: 15px;
    background-image: url("../images/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.header-area .logo-img2 {
    width: 100px;
    height: 100px;
    padding-right: 15px;
    /*background-image: url("../images/new_logo.png");*/
    background-size: contain;
    background-repeat: no-repeat;
}

.header-area .mobile-menu {
    max-width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    padding-right: 15px;
}

.hamburger {
    position: relative;
    width: 25px;
    height: 4px;
    background: var(--praimary-color);
    cursor: pointer;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    z-index: 2;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;

}

.hamburger::after,
.hamburger::before {
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: var(--praimary-color);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;

}

.hamburger::before {
    top: -10px;
    width: 20px;
}

.hamburger::after {
    top: 10px;
    width: 25px;
}

.toggle-menu {
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2.2);
    position: absolute;
    z-index: 3;
    opacity: 0;
    cursor: pointer;
}

.mobile-menu input:checked~.hamburger {
    background: transparent;
}

.mobile-menu input:checked~.hamburger::after {
    top: 0;
    width: 35px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.mobile-menu input:checked~.hamburger::before {
    top: 0;
    width: 35px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.mobile-menu:hover .hamburger {
    width: 20px;
}

.mobile-menu:hover .hamburger::after,
.mobile-menu:hover .hamburger::before {
    width: 30px;
}



.header-area .logo-title {
    padding: 10px;
}

.header-area .logo-title-ul {
    justify-content: space-between;
    align-items: stretch;
    align-content: flex-start;
}

.header-area .ar-title {
    justify-content: flex-end;
    align-content: stretch;
    display: flex;
    color: var(--praimary-color);
    font-size: x-large;

}

.header-area .en-title {
    color: var(--second-color);
    font-size: x-large;
}

@media (max-width:768px) {


    .header-area {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .header-area .mobile-menu {
        display: flex;
    }

    .header-area .logo-img {
        margin: 10px;
        height: 50px;
        width: 50px;
    }


    .header-area .logo-title-ul {
        text-align: center;
    }

    .header-area .ar-title,
    .header-area .en-title {
        /* display: none; */
        font-size: small;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
}



.menu {
    justify-content: center;
    position: relative;
    padding: 10px;
    align-content: center;
    display: flex;
}

.menu #menu-list {
    display: flex;
    text-align: center;
    font-size: 14px;
    color: var(--second-color);
   
    transition: opacity 0.5s, transform 0.5s;
    -webkit-transition: opacity 0.5s, transform 0.5s;
    -moz-transition: opacity 0.5s, transform 0.5s;
    -ms-transition: opacity 0.5s, transform 0.5s;
    -o-transition: opacity 0.5s, transform 0.5s;
    background-color: #ffffff;
}

.menu.fixed {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.menu-item {
    position: relative;
    display: inline-block;
    padding: 10px;
    color: var(--second-color);

}

.menu-item:hover {

    background-color: var(--second-color);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.menu-item:hover>a {

    color: var(--praimary-color);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: #f1f1f1;
    padding: 10px;
    width: max-content;
}

.menu-item:hover .sub-menu {
    display: block;
    z-index: 5;

}

.sub-menu-item:hover {
    background-color: #cbc1c1;
    color: #fff;
}

.sub-menu li {
    padding: 10px;
}



@media (max-width:768px) {

    .menu.fixed {
        position: inherit;
    }

    .menu #menu-list {
        flex-direction: column;
        display: none;

    }

}





/* End Header and Menu */

/* ================================================================================================================================ */

/* Start Landing Page */
.landing-page {
    min-height: 100vh;
    background-image: url("../images/nawras.jpeg");
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
}


.landing-page .overlay {
    background-color: var(--transparent-color);
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.landing-page .intro-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50);
    -moz-transform: translate(-50);
    -ms-transform: translate(-50);
    -o-transform: translate(-50);
    z-index: 2;
    text-align: center;
}

.landing-page .intro-text .overlay-msg {
    background-color: rgba(255, 255, 255, 0.531);
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.landing-page .intro-text .text {
    position: relative;
    z-index: 4;
}

.landing-page .intro-text .text h1 {
    color: var(--second-color);
}

.landing-page .intro-text .text p {
    color: var(--second-color);
    padding: 10px;
    line-height: 2;
}

/* End Landing Page  */

/* ================================================================================================================================ */

/* Start Us Section */
.card-container {
   max-width: 800px;  
  margin: 0 auto;  
    justify-content: space-around;

}

.card {
    position: relative;
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    width: -webkit-fill-available;

}

@media (min-width:768px) {
    .card {

        flex-basis: 47%;
        margin: 10px;
    }
}

@media (min-width:1199px) {
    .card {
        flex-basis: 25%;
        flex-grow: 2;
        margin: 10px;
    }
}

.card-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;

}

.card-description {
    font-size: 14px;
    direction: var(--text-direction);
    line-height: 2;

}

.read-more {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    font-weight: bold;
    text-align: center;
    padding: 4px 8px;
    color: var(--second-color);
    text-decoration: none;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

.card:hover .read-more {
    display: block;
    /* color: blue;
    cursor: pointer; */
}

@media (max-width: 767px) {

    .card .read-more {
        padding-top: 10px;
        display: block;
        bottom: 0px;
        position: relative;
    }
}


.card:hover .read-more:hover {
    opacity: 0.8;
}

/* End Us Section */


/* ================================================================================================================================ */

/* Start Our Services */

.feat-container {
    display: flex;
    flex-wrap: wrap;
}

.features .feat-box {
    flex: 1 0 33.3%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 25px;

}

@media (max-width: 767px) {
    .features .feat-box {
        flex: 1 0 85%;
    }
}

.feat-box img {
    width: 120px;
}

.feat-box h3 {
    color: var(--thierd-color);
    position: relative;
    margin: 15px 0 25px;
}

.feat-box h3::before {

    content: "";
    width: 40px;
    height: 4px;
    background-color: var(--praimary-color);
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: -15px;
}

.feat-box p {
    padding-top: 10px;
    margin: 0 auto;
    width: 80%;
    color: gray;
}








/* End Our Services */

/* ================================================================================================================================ */

/* Start news Section */
.news {
    position: relative;
    overflow: hidden;

}

.news-container {
    padding: 0 10vw;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    background-color: var(--grey-color);
    padding: 20px;
    display: flex;
    direction: var(--text-direction);
}

.news-container::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 30px;
    margin-top: 10px;
    border-radius: 15Px;
    -webkit-border-radius: 15Px;
    -moz-border-radius: 15Px;
    -ms-border-radius: 15Px;
    -o-border-radius: 15Px;
    background-color: white;


}

.news-card:hover {
    background-color: var(--thierd-color);
    color: white;
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transition: 0.5s ease-in-out;
    -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;

}


.news-card img {
    position: relative;
    height: 250px;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    transition: 0.4s;
    -webkit-border-radius: 15px 15px 0 0;
    -moz-border-radius: 15px 15px 0 0;
    -ms-border-radius: 15px 15px 0 0;
    -o-border-radius: 15px 15px 0 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    top: 0px;
    left: 0px;
}

.pre-btn,
.nxt-btn {
    border: none;
    width: 13vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 120%);
    cursor: pointer;
    z-index: 9;
}

.pre-btn {
    left: 0;
    rotate: 180deg;

}

.nxt-btn {
    right: 0;

}

.pre-btn img,
.nxt-btn img {
    opacity: 0.4;
}

.pre-btn:hover img,
.nxt-btn:hover img {
    opacity: 1;

}

@media (max-width: 767px) {

    .pre-btn,
    .nxt-btn {
        display: none;
    }

    .news-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: auto;
        overflow-x: hidden;

    }

    .news-card {
        margin: auto;
        margin-bottom: 25px;
    }
}


.news-card:hover .news-title {
    color: white;
}

.news-card:hover .news-desc {
    color: white;

}


.news-card:hover .news-read-more {
    color: var(--praimary-color);
}

.news-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    max-height: calc(2.5em * 4);
    min-height:calc(1.75em * 4);

}
.news-header h2 {
   font-size: 18px;

}

.news-header .news-title {
    padding: 10px;
    color: var(--second-color);
    

}

.news-header .news-time {
    padding: 10px;
    color: gray;
}



.news-card .news-desc {
    padding: 10px;
    color: red;
    max-height: calc(2em * 4);
    overflow: hidden;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;

}



.news-card .news-read-more {
    background-color: var(--thierd-color);
    color: var(--grey-color);
    display: block;
    padding: 15px 20px;
    margin-top: 10px;
    text-align: center;
    border-radius: 0 0 15px 15px;
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    -ms-border-radius: 0 0 15px 15px;
    -o-border-radius: 0 0 15px 15px;
}


.news .more {
    text-decoration: none;
    text-align: center;
    background-color: var(--thierd-color);
    color: white;
    padding: 15px 20px;
    display: block;
    width: fit-content;
    margin: 20px auto;
    text-transform: uppercase;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}


/* End news Section */


/* ================================================================================================================================ */


/* Start partner Container */

.slider {
    height: 250px;
    /* margin: auto; */
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-color: var(--grey-color);
}

.slide-track {
    display: flex;
    width: calc(250px*9);
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px*4.5));
        -webkit-transform: translateX(calc(-250px*4.5));
        -moz-transform: translateX(calc(-250px*4.5));
        -ms-transform: translateX(calc(-250px*4.5));
        -o-transform: translateX(calc(-250px*4.5));
    }
}

.slide {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 150px;
}

.slide img {
    width: 100%;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}

.slide img:hover {
    transform: translateZ(20px);
    -webkit-transform: translateZ(20px);
    -moz-transform: translateZ(20px);
    -ms-transform: translateZ(20px);
    -o-transform: translateZ(20px);
}

.slider::after,
.slider::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 1)0%, rgba(255, 255, 255, 0)100%);
    content: "";
    height: 100%;
    width: 10%;
    z-index: 2;
    position: absolute;

}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}




/* End partner Container */

/* ================================================================================================================================ */


/* Start Footer */

footer {
    margin-top: 100px;
    /* height: 50vh; */
    display: flex;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
}


.my-info,
.map {
    flex: 1;

}

.my-info {
    background-color: var(--thierd-color);
    padding-top: 15px;
    padding-left: 15px;
    padding-bottom: 10px;
}

.my-info .footer-header h2 {
    color: var(--praimary-color);
}

.my-info address {
    font-style: normal;

}

.my-info address .info-ul li {
    display: flex;
    align-items: baseline;
    padding: 10px 0px 10px 0px;

}

.my-info address ul li i {
    color: gray;
    padding: 0 10px 0 10px;
}

.my-info address ul li p {
    color: white;
    font-weight: normal;
}

.my-info address ul li span {
    color: var(--grey-color);
}



.ul-social-footer {
    display: flex;
    justify-content: center;
}

.ul-social-footer .social-footer-li a {
    margin: 0 auto 10px;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
}

.ul-social-footer .social-footer-li i {
    color: #1d98cb;
}

.ul-social-footer .social-footer-li i:hover {
    color: var(--praimary-color);
}

.map {
    z-index: 2;
    background-color: var(--second-color);
}

.map iframe {
    width: 100%;
    height: 100%;
    border-top: 2px solid black;

}
/* ... your existing CSS styles ... */

.rights {
    text-align: center;
    background-color:var(--grey-color); 
    padding: 10px 0;
}

.rights p {
    color: var(--thierd-color);
    margin: 0;
    display: block; /* Force the message to start on a new line */
}


@media (max-width: 768px) {
    footer {
        flex-direction: column;
    }
}

/* End Footer */



.container1 {
    display: flex;
    justify-content: center;
}

.video-row {
    display: flex;
    align-items: center;
}

.video-container {
    width: 33.33%;
    margin: 20px;
}

video {
    width: 100%;
}
.phone_ar
{
    direction: ltr;
    unicode-bidi: embed;
}


/* Add media query for responsiveness */
@media (max-width: 768px) {
    .video-container {
        width: 90%;
    }
}

