
:root {
    --light-blue:#5AC7D5;
}
body {
    scroll-behavior: smooth;
    background-image: linear-gradient(#13355b,#133154,#0b1a2b)!important;
}
@font-face {
    font-family: 'GE SS Unique Light';
    src: url('/WebUI/BS/webfonts/subset-GESSUniqueLight-Light.woff2') format('woff2'), url('/WebUI/BS/webfonts/subset-GESSUniqueLight-Light.woff') format('woff'), url('/WebUI/BS/webfonts/subset-GESSUniqueLight-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'GE SS Two Medium';
    src: url('/WebUI/BS/webfonts/subset-GESSTwoMedium-Medium.woff2') format('woff2'), url('/WebUI/BS/webfonts/subset-GESSTwoMedium-Medium.woff') format('woff'), url('/WebUI/BS/webfonts/subset-GESSTwoMedium-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}




/* Arabic Font Styling */
[dir="rtl"] body {
    font-family: 'GE SS Unique Light', sans-serif;
    font-weight: 300;
}

[dir="rtl"] h1, 
[dir="rtl"] h2, 
[dir="rtl"] h3, 
[dir="rtl"] h4, 
[dir="rtl"] h5, 
[dir="rtl"] h6,
[dir="rtl"] .navbar-nav .nav-link,
[dir="rtl"] .btn {
    font-family: 'GE SS Two Medium', sans-serif;
    font-weight: 500;
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(255, 255, 255);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: loader animation */
.spinner {
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-top-color: #0F2A49;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*start nav */
@media (min-width:576px){
    p {
        text-align: justify !important;
        text-justify: inter-word !important;
        width: 75%;
    }
    p {
        white-space: normal !important;
    }
}
.navbar img{
    width: 240px;
}
#languageToggle img {
    margin-top: 0px;
}
.navbar ul li a {
    font-size: 13px;
    font-weight: 600; 
    color: #ffffff58;
    position: relative;
    text-decoration: none; 
    padding-bottom: 5px;
}
.navbar ul .nav-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #5AC7D5; 
    transform: scaleX(0);
    transition: transform 0.1s ease-in-out;
}
.navbar ul li a:hover {
    color: #fff;
}
.navbar ul li a:hover::after {
    transform: scaleX(1);
}
.navbar-toggler {
    color: white; 
    border: 1px solid rgba(255, 255, 255, 0.498) !important;
}
.navbar-toggler-icon {
    filter: invert(1);
}
[dir='rtl']  ul{
    margin-inline-start: auto !important;
}
[dir='ltr']  ul{
    margin-inline-start: auto !important;
}
@media (min-width:0px){
    .navbar ul .nav-item a::after {
        content: "";
        position: absolute;
        left: 42.5%;
        bottom: 0;
        width: 15%;
        height: 2px;
        background-color: #5AC7D5; 
        transform: scaleX(0);
        transition: transform 0.1s ease-in-out;
    }
}
@media (max-width:576px){
    .navbar img{
        margin-top: -80px;
        width: 170px;
    }
    .navbar ul li a {
        font-size: 15px;
    }
    .navbar ul li a img{
        width: 35px;
        } 
    [dir='rtl']  ul{
        padding: 0px;
    }
}
@media (min-width:576px){
    .navbar img{
        width: 150px;
    }
}
@media (min-width:768px){
    .navbar img{
        width: 180px;
    }
}
@media (min-width:992px){
    .navbar img{
        width: 200px;
    }
    .navbar ul li a {
        font-size: 11px;
    }
    .navbar ul li a img{
    width: 25px;
    } 
    .navbar ul .nav-item a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background-color: #5AC7D5; 
        transform: scaleX(0);
        transition: transform 0.1s ease-in-out;
    }
}
@media (min-width:1200px){
    .navbar img{
        width: 200px;
    }
    .navbar ul li a {
        font-size: 14px;
        font-weight: 400;
    }
    .navbar ul li a img{
    width: 25px;
    } 
}
/* end nav */



/* start sign in */
body.blurred > *:not(.sign-in, .navbar) {
    filter: blur(30px);
    pointer-events: none;
    transition: filter 0.3s ease-in-out; 
}

.sign-in {
    display: none;
    top: -20%; 
    left: 15%;
    width: 70%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    transition: opacity 0.3s ease-in;
}

.sign-in .row {
    background: #111F26ff;
    color: #fff;
    border-radius: 12px ;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.sign-in.active {
    display: flex;
}

.sign-in.active .row {
    transform: translateY(0);
    opacity: 1;
}

.sign-in .close-btn {
    z-index: 10000;
    position: relative;
    top: 0%;
    left: 95%;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
[dir='rtl'] .sign-in .close-btn {
    top: 0%;
    left: -95% !important;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
[dir='ltr'] .sign-img {
    text-align: end !important;
}
[dir='rtl'] .sign-img {
    text-align: end !important;
}
[dir='ltr'] .sign-img img{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
[dir='rtl'] .sign-img img{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
[dir='ltr'] .sign{
    padding-left: 80px;
    padding-right: 0px;
}
[dir='rtl']  .sign{
    padding-left: 0px;
    padding-right: 80px;
}

.sign-in h1,
.sign-in h5 {
    color: white;
}

.sign-in h1 {
    font-size: 50px;
}

.sign-in input{
    font-weight: 300;
    color: #fff;
    outline: none;
}
[dir='rtl']   .sign-in .close-btn {
    z-index: 10000;
    position: relative;
    top: 0%;
    left: -0%;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
@media (max-width:768px) {
    .sign-in h1 {
    font-size: 30px;
}
    .sign h5 {
        font-size: 15px;

    }
    .sign {
        padding: 25px !important;
    }
    .sign-in {
    display: none;
    top: -30%; 
    left: 10%;
    width: 80%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    transition: opacity 0.3s ease-in;
}
    .input ,
    input::placeholder{
        font-size: 11px;
    }
    .input {
        width: 100% !important;
    }
    .sign-in .close-btn {
    z-index: 10000;
    position: relative;
    top: 1%;
    left: 83%;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
body.blurred > *:not(.sign-in) {
    filter: blur(30px);
    pointer-events: none;
    transition: filter 0.3s ease-in-out; 
}
[dir='rtl']     .sign-in .close-btn {
    z-index: 10000;
    position: relative;
    top: 1%;
    left: -83% !important;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
}

/* end sign in */



/* start home */
[dir="rtl"] #home .first{
    text-align: left !important;
}

[dir="rtl"] #home i{
    margin-left: 16px !important;
    margin-right: 0px !important;
}


.home{
    padding-top: 130px;
    overflow: hidden;
}
.home .text h1,
.home .text p{
    color: #fff;
    font-weight: 300;
}

.home .text h1 {
    font-size: 80px;
}
/* .home h1:nth-child(2) {
    font-weight: 700;
} */
.home .text p{
    font-size: 20px;
}
.home button{
    font-size: 20px;
    background-color: var(--light-blue);
    padding:10px 40px 12px 40px;
    font-weight: 600;
}
.home .star{
    width: 390px;
    margin-top: -205px;
    margin-left: -5%;
}
.image-container {
    position: relative;
    display: inline-block;
}
.star {
    width: 100px; 
}
.van {
    position: absolute;
    margin-top: -370px;
    margin-left: 15%;
    width: 800px;
    z-index: 3;
}
.slider {
    width: 100%;
    overflow: hidden;
    background: #111F26;
    padding: 10px 0;
    position: relative;
}
.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite !important; /* Extremely slow animation */
    animation-timing-function: linear;
    will-change: transform; /* Optimize for better performance */
    transform: translate3d(0, 0, 0);
    width: 4000px;
}
.slide {
    display: flex;
    gap: 50px;
}
.slider-track img {
    height: 50px;
    width: auto;
}

[dir='rtl'] .star {
    transform: scaleX(-1);
    margin-right: 28%;
}
[dir='rtl'] .van {
    margin-right: 13%;
}
.slider,
.slider-track,
.slide {
  direction: ltr;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
        /* Slower movement for better visibility */
    }
}
@media (max-width:576px) {
    .slider-track {
    display: flex;
    width: max-content;
    animation: scroll 280s linear infinite !important;  
    animation-timing-function: linear;
    }
    .home{
        text-align: center;
        padding-top: 0px;
        overflow: hidden;
    }
    .home .text h1 {
        font-size: 40px;
    }
    .home .text p {
        font-size: 14px;
        width: auto;
    }
    .home .mob-img {
        margin-top: -50px;
        margin-inline: auto !important;
    }
    .home .mob-img img {
        margin-left: -30px;
        width: 340px;
    }
    .home .mob-text {
        margin-top: -55px;
    }
    .home button{
        font-size: 17px;
        background-color: var(--light-blue);
        padding: 10px 0px;
        font-weight: 600;
        width: 100% !important;
        margin-left: -10px;
    }
    .home svg {
        font-size: 34px !important;
    }
    .home .slider-track img {
        height: 30px;
    }
    .slider-track {
        gap: 35px; 
    }
    [dir='ltr'].home .mob-img img {
        margin-top: -50px;
        margin-right:-100px;
        width: 300px;
    }
    [dir='rtl'].home .mob-img {
        margin-top: -50px;
        width: 300px;
    }
    [dir='rtl'] .home .icons {
        margin-right: 20px ;
    }
}
@media (min-width:576px) {
    .home .text h1 {
        font-size: 40px;
    }
    .home .text p {
        font-size: 10px;
    }
    .home .star{
        width: 200px;
        margin-top: -60px;
        margin-left: 5%;
    }
    .van {
        margin-top: -170px;
        margin-left: -20%;
        width: 430px;
    }
    .home button{
        font-size: 17px !important;
        background-color: var(--light-blue);
        padding:8px 30px 10px 30px;
        font-weight: 600 !important;
    }
    .home i {
        font-size: 18px !important;
    }
}
@media (min-width:768px) {
    .home .text h1 {
        font-size: 50px;
    }
    .home .text p {
        font-size: 13px;
    }
    .home .star{
        width: 250px;
        margin-top: -60px;
        margin-left: 5%;
    }
    .van {
        margin-top: -180px;
        margin-left: -10%;
        width: 530px;
    }
    .home button{
        font-size: 13px;
        background-color: var(--light-blue);
        padding:6px 38px 8px 38px;
        font-weight: 400;
    }
    .home i {
        font-size: 23px !important;
    }
}
@media (min-width:786px) {
    .home .text h1 {
        font-size: 50px;
    }
    .home .text p {
        font-size: 13px;
    }
    .home .star{
        width: 250px;
        margin-top: -60px;
        margin-left: 5%;
    }
    .van {
        margin-top: -180px;
        margin-left: -10%;
        width: 530px;
    }
    .home button{
        font-size: 13px;
        background-color: var(--light-blue);
        padding:6px 38px 8px 38px;
        font-weight: 400;
    }
    .home i {
        font-size: 23px !important;
    }
}
@media (min-width:992px) {
    .home .text h1 {
        font-size: 60px;
    }
    .home .text p {
        font-size: 14px;
    }
    .home .star{
        width: 350px;
        margin-top: -150px;
        margin-left: 5%;
    }
    .van {
        margin-top: -290px;
        margin-left: -10%;
        width: 700px;
    }
    .home button{
        font-size: 16px;
        background-color: var(--light-blue);
        padding:8px 40px 10px 40px;
        font-weight: 400;
    }
    .home i {
        font-size: 25px !important;
    }
}
@media (min-width:1200px) {
    .home .text h1 {
        font-size: 70px;
        font-weight: 300 !important;
    }
    .home .text p{
        font-size: 18px;
    }
    .home button{
    font-size: 18px !important;
    background-color: var(--light-blue);
    padding:10px 40px 12px 40px;
    font-weight: 600;
}
    .home .star{
        width: 370px;
        margin-top: -130px;
        margin-left: 22%;
    }
    .van {
        position: absolute;
        margin-top: -300px;
        margin-left: 8%;
        width: 780px;
    }
}
/* @media (max-width: 768px) {
    .slider-track img {
        height: 30px;
    }
    .slider-track {
        animation: scroll 8s linear infinite;
    }
} */
/* end home */

/* start about us */
[dir = "ltr"] .video-container {
    margin-right: 0 !important;
    margin-left: auto !important;
}
[dir = "rtl"] .video-container {
    margin-left: 0 !important;
    margin-right: auto !important;
}


.about p {
    width:68%;
}
.about p:nth-child(2) {
    width:75%;
}
.about .delivery p {
    width:80%;
}
.about{
    padding-top: 130px;
}
.about .text h1,
.about .text p{
    color: #fff;
    font-weight: 300;
}
.about .text h1 {
    font-size: 45px;
}
.about h1:nth-child(2) {
    font-weight: 700;
}
.about .text p{
    font-size: 18px;
}
.about h5 {
    font-size: 23px;
    font-weight: 500;
}
.about .cont button {
    background-color: #fff;
    width: 33px;
    height: 33px;
}
.about .cont button img{
    width: 18px;
}
.about p:nth-child(2){
    font-size: 14.5px;
}
.video-container {
    position: relative;
    max-width: 500px;
    min-height: 290px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background: #111F26; 
}
video {
    width: 100%;
    max-height:290px ;
    display: block;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 30px solid rgb(255, 255, 255);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}
.delivery .container {
    background-color: #fff;
    margin-top: 160px;
    max-height: 345px;
}

.about .delivery h1 {
    font-size: 60px;
    font-weight:300;
    color:#0F2A49;
}
.about .delivery h1:nth-child(2) {
    font-weight: 700;
}
.about .delivery p {
    width: 100%;
    font-size: 18px;
}
.about .delivery button {
    background-color:#0F2A49 ;
    padding: 10px 40px 12px 40px;
    font-size: 15px;
}
[dir='ltr'] .about .ice-button {
    margin-right: 15px ;
} 
[dir='rtl'] .about .ice-button {
    margin-left: 15px ;
} 
[dir='ltr'] .about .delivery .image-en {
    margin-top: -120px;
    margin-left: 20px ;
    max-width: 690px;
} 
[dir='rtl'] .about .delivery .image-en {
    margin-top: -30px !important;
    margin-right: 20px !important;
    max-width: 690px;
} 
.about .box {
    background-color: #ffffff18 ;
}
.about .box h1 {
    font-size: 53px;
    font-weight: 600;
}
.about .box h2 {
    font-size: 30px;
    font-weight: 300;
}
.about .box:hover {
    background-color:var(--light-blue);
    color: white;
    transition-duration: 0.3s;
}
@media (max-width:786px){
    .desctop {
        display: none !important;
    }
    .about {
        padding-top: 90px;
        text-align: center;
    }
    .about .text h1 {
        font-size: 40px;
    }
    .about .text p{
        font-size: 14px;
        margin-inline: auto;
        width: auto;
    }
    .about .mob-text p{
        width: auto;
        font-size: 15px;
        margin-inline: auto;
    }
    .text-sec p{
        text-align: center;
    }
    .about .cont button img{
        width: 25px;
    }
    .about h5 {
        font-size: 25px;
    }
    .video-container {
        position: relative;
        max-width: 400px;
        min-height: 220px;
        margin: auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        background: #111F26; 
    }
    .about .delivery .container {
        background-color: transparent;
        margin-top: 35px;
        padding-bottom: 350px !important;
    }
    .about .left {
        background-color: #ffffff;
        text-align: left;
        height:298px !important;
    }
    .about .delivery h1 {
        font-size: 20px;
    }
    .about .delivery p {
        width: auto;
        font-size: 2.565vw;
    }
    .about .delivery button {
        margin-top: 10px;
        padding: 8px 30px 8px 30px;
        font-size: 11px;
    }
    .about .delivery .image-ar {
        max-width: 215px !important;
    } 
    [dir='rtl'] .about .delivery .image-ar {
        margin-top: -20px;
        margin-right: -38px !important;
    } 
    [dir='ltr'] .about .delivery .image-ar {
        margin-top: -0px;
        margin-left: -38px !important;
    } 

    .about .box {
        background-color: #ffffff18;
        text-align: right;
        height:100%;
        padding: 0px 0px 12px 12px ;
    }
    .about .box h1 {
        margin-top: 1.65rem;
        color: #fff;
        font-size: 30px;
        font-weight: 600;
    }
    .about .box h2 {
        font-size: 12px;
        font-weight: 300;
    }
    [dir='rtl'] .about .delivery .cont{
    padding-left: 0px;
    padding-right: 1.5rem;
}
/*     [dir='rtl'] .about .delivery .image {
        margin-top: -10px;
        margin-right: -30px !important;
}
    [dir='ltr'] .about .delivery .image {
    margin-top: 10px !important;
    margin-left: -30px;
} */
    [dir='ltr'] .about .box {
        text-align: left;
        height:100%;
        padding: 0px 0px 12px 12px;
}
    [dir='rtl'] .about .box {
        text-align: right;
        height:100%;
        padding: 0px 12px 12px 0px;
}
    [dir='rtl'] .about .left{
        text-align: right;
}
}
@media (min-width:768px) and (max-width:992px){
    .about .text h1 {
        font-size: 37px;
    }
    .about .text p{
        font-size: 12px;
    }
    .about .cont button {
        background-color: #fff;
        width: 25px;
        height: 25px;
    }
    .about .cont button img{
        width: 12px;
        padding-bottom: 5px;
    }
    .about h5 {
        font-size: 16px;
    }
    .video-container {
        position: relative;
        max-width: 400px;
        min-height: 220px;
        margin: auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        background: #111F26; 
    }
    .delivery .container {
        margin-top: 160px;
        max-height: 270px !important;
    }
    .about .delivery h1 {
        font-size: 40px;
    }
    .about .delivery p {
        font-size: 11px;
    }
    .about .delivery button {
        padding: 8px 30px 8px 30px;
        font-size: 11px;
    }
    .about .delivery img {
        margin-top: -60px;
        margin-left: -70px;
        max-width: 480px;
    } 
    .about .box {
        background-color: #ffffff18;
    }
    .about .box h1 {
        font-size: 35px;
        font-weight: 600;
    }
    .about .box h2 {
        font-size: 20px;
        font-weight: 300;
    }
}
@media (min-width:992px) and (max-width:1200px){
    .about .text h1 {
        font-size: 45px;
    }
    .about .text p{
        font-size: 18px;
    }
    .about .cont button {
        background-color: #fff;
        width: 25px;
        height: 25px;
    }
    .about .cont button img{
        width: 12px;
        padding-bottom: 5px;
    }
    .about h5 {
        font-size: 18px;
    }
    .video-container {
        position: relative;
        max-width: 400px;
        min-height: 220px;
        margin: auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        background: #111F26; 
    }
    .delivery .container {
        background-color: #fff;
        margin-top: 160px;
        max-height: 330px;
    }
    .about .delivery h1 {
        font-size: 50px;
        font-weight:300;
        color:#0F2A49;
    }
    .about .delivery h1:nth-child(2) {
        font-weight: 700;
    }
    .about .delivery p {
        font-size: 13px;
    }
    .about .delivery button {
        background-color:#0F2A49 ;
        padding: 10px 40px 12px 40px;
        font-size: 14px;
    }
    .about .delivery img {
        margin-top: -100px;
        margin-left: -65px ;
        max-width: 590px;
    } 
    .about .box {
        background-color: #ffffff18;
    }
    .about .box h1 {
        font-size: 45px;
        font-weight: 600;
    }
    .about .box h2 {
        font-size: 25px;
        font-weight: 300;
    }
}
/* end about */


/* start our services  */
.services .left p {
    width:100%;
}
.services{
    margin-top: 130px;
} 
.services h1:nth-child(1) {
    font-weight: 700;
    font-size: 45px;
} 
.services p {
    font-weight: 500;
}
.services h4 {
    font-size: 23px;
    font-weight: 400;
}
[dir='rtl'] .services .right img {
    margin-top: -80px;
    margin-right: -100px !important;
    width: 400px;
}
[dir='ltr'] .services .right img {
    margin-top: -80px;
    margin-left: -100px !important;
}

.services h2 {
    font-size: 40px;
    font-weight: 400;
}
.services h3 {
    font-size: 47px;
    font-weight: 600;
}
.services .right p{
    font-size: 16px;
    font-weight: 400;
}
.services .top-1{
    margin-top: -50px;
}
.services .top{
    margin-top: -100px;
}
.services .first ,
.services .second{
    border: 1px solid rgba(255, 255, 255, 0.394);
    height: 100%;
}
.services .first img ,
.services .second img {
    max-width: 65px;
}
.services .left h2 {
    font-size: 19px;
    font-weight: 700;
} 
.services .left h3 {
    font-size: 19px;
    font-weight: 300;
} 
.services .left p {
    font-size: 12px;
    font-weight: 500;
}
#right {
    height: 47.7% !important;
}
#right img {
    width: 7rem;
}
#right h2 ,
#right h3 {
    font-size: 1.7rem;
}
.services .second {
background-color: var(--light-blue);
}
.services .box {
    min-height: 300px;
    max-height: 300px;
}
.temp-img {
    width: 60px;
    max-width: 100%;
    z-index: 1; 
}
#right p {
    font-size: 16px ;
}
.background {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.394);
    border-radius: 10px; 
}

[dir='rtl'] .temp-img {
    transform: scaleX(-1);
    left: 0 !important;
    margin-left: 16px;
}
[dir='ltr'] .temp-img {
    right: 0 !important;
    margin-right: 16px;
}
@media (max-width:786px){
    .services{
        text-align: center;
        margin-top: 120px;
    } 
    .services p {
        width: auto !important;
        text-align: justify;
        font-size: 0.88rem !important;
    }
    .services h2 {
        font-size: 40px;
    }
    .services h3 {
        font-size: 40px;
    }
    .services .right-2 {
        text-align: start;
    }
    .right-2 h2 , 
    .right-2 h3 {
        font-size: 23px !important;
    }
    .services .text{
        text-align: center;
        width: auto !important;
        font-size: 14px;
    }
    .services .second {
    background-color: var(--light-blue);
    }
    .services .box {
        min-height: 300px;
        max-height: 300px;
    }
    .temp-img {
        width: 80px !important;
        max-width: 100%;
        z-index: 1; 
    }
}
@media (min-width:786px) and (max-width:992px){
    .services .background{
        background-position: center -10px!important; 
    }
}
@media (min-width:992px) and (max-width:1200px){
    .services .left h3 {
        font-size: 15px;
    } 
    .services .left p {
        font-size: 10px;
    }
    .services h2 {
        font-size: 34px;
    }
    .services h3 {
        font-size: 38px;
    }
    .services .right p{
        font-size: 15px;
    }
}
/* end our services */


/* Start handle */
.handle-sec {
    background-color: #fff;
    margin-top: 130px;
    max-height: 390px;
}
.handle-sec img {
    width: 680px;
    margin-top: -230px;
}
.handle-sec h1 {
    color:#0F2A49 ;
    font-size: 60px !important;
    font-weight: 300 !important;
}
.handle-sec .bold {
    font-weight: 700 !important;
}
.handle-sec h1:nth-child(2){
    font-weight: 700;
}
.handle-sec button{
    border: none;
    background-color: var(--light-blue);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 110px 12px 110px;
}
.handle-sec button{
    border: none;
    background-color: var(--light-blue);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 110px 12px 110px;
}
@media (max-width:576px){
    .handle-sec {
        background-color: transparent;
        margin-top: 140px;
        margin-bottom: 230px;
    }
    .handle-sec .container {
        padding: 30px 30px;
        border-radius: 10px;
        width: 94%;
        background-color: #fff;
        height: 490px;
    }
    .handle-sec img {
        margin-left: -20px;
        width: 300px;
        margin-bottom: -430px;
    }
    .handle-sec h1 {
        font-size: 35px !important;
    }
    .handle-sec h1.sec {
        font-size: 50px !important;
    }
    [dir='rtl'] .handle-sec h1 {
        font-size: 50px !important;
    }
    [dir='ltr'] .handle-sec h1.sec {
        font-size: 50px !important;
    }
    [dir='ltr']  .handle-sec h1 {
        font-size: 35px !important;
    }
    .handle-sec button{
        width: 85%;
        margin-inline: auto !important;
        border: none;
        border-radius: 5px;
        background-color: var(--light-blue);
        color: #fff;
        font-size: 17px;
        font-weight: 600;
        padding: 7px 15px 9px 15px;
        margin-top: 220px !important;
    }
}
@media (min-width:576px) and (max-width:786px){
    .handle-sec {
        margin-top: 120px;
        max-height: 260px;
    }
    .handle-sec img {
        width: 440px;
        margin-top: -150px;
        margin-left: -50px;
    }
    .handle-sec h1 {
        font-size: 35px;
    }
    .handle-sec button{
        border: none;
        background-color: var(--light-blue);
        color: #fff;
        font-size: 13px;
        padding: 10px 50px 12px 50px;
    }
}
@media (min-width:786px) and (max-width:992px){
    .handle-sec {
        margin-top: 120px;
        max-height: 300px;
    }
    .handle-sec img {
        width: 470px;
        margin-top: -150px;
        margin-left: -50px;
    }
    .handle-sec h1 {
        font-size: 40px;
    }
    .handle-sec button{
        border: none;
        background-color: var(--light-blue);
        color: #fff;
        font-size: 13px;
        padding: 10px 60px 12px 60px;
    }
}
@media (min-width:992px) and (max-width:1200px){
    .handle-sec {
        margin-top: 120px;
        max-height: 310px;
    }
    .handle-sec img {
        width: 550px;
        margin-top: -180px;
        margin-left: -50px;
    }
    .handle-sec h1 {
        font-size: 50px;
    }
    .handle-sec button{
        border: none;
        background-color: var(--light-blue);
        color: #fff;
        font-size: 13px;
        padding: 10px 85px 12px 85px;
    }
}
/* End handle */

/* Start contact us */
.contact-us p {
    width: 100%;
}
.contact-us {
    margin-top: 130px;
    margin-bottom: 130px;
}
.contact-us h1 {
    font-size: 45px;
    font-weight: 300 !important;
}
.contact-us .bold {
    font-weight: 700 !important;
}
.contact-us h1:nth-child(2) {
    font-weight: 600;
}
.contact-us img {
    width: 100%;
    max-height: 300px;
    border-radius: 18px;
    height: -10%;
}
.contact-us p {
    font-size: 16px;
}
.contact-us input {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #ffffff53;
    color: #ffffff;
    outline: none;
    font-size: 12px;
    width: 75%;
    padding-bottom: 10px;
}
textarea::placeholder {
    color: #ffffff72 !important;
    font-size: 11px;
}
textarea {
    max-width: 75%;
    resize: unset;
}
.contact-us input::placeholder {
    color: #ffffff42;
    font-size: 11px;
}
.contact-us button {
    font-weight: 600;
    font-size: 17px;
    width: 75%;
    background-color: #5AC7D5;
    color: #fff;
    padding: 20px 170px 20px 165px !important;
}
.contact-us iframe {
    width:100% !important;
    height: 50%;
}
.icons img {
    max-width: 30px;
}
.icons img .location {
    margin-top: 10px;
}
.icons h6 {
    font-size: 13px;
}
.icons p ,
.icons p a{
    font-size: 13px;
    color: #ffffff5c;
}
.icons a {
    text-decoration: underline !important; 
}

[dir='rtl'] .van3 {
    transform: scaleX(-1);
    width: 100%;
}
@media (max-width:576px) {
    .contact-us h1 {
        font-size: 40px;
        font-weight: 300;
        margin-bottom: 30px;
    }
    .contact-us input {
        width: 100%;
        padding: 15px 0px 15px 0px  !important;
    }
    .contact-us input::placeholder {
    font-size: 14px;
    }
    textarea {
        max-width: 100%;
    }
    .contact-us p {
        margin-top: 20px !important;
        font-size: 22px !important;
    }
    .icons img {
        max-width: 30px !important;
    }
    .icons h6 {
        font-size: 14px;
    }
    .contact-us button {
        text-wrap: nowrap;
        border-radius: 0px !important;
        font-size: 20px;
        padding: 10px 0px 12px 0px !important;
        width: 100%;
    }
    .contact-us .bottom p{
        margin-bottom: 40px;
        font-size: 0.8rem !important;
    }
    .contact-us .bottom img {
        max-width: 100%;
    }
    .icons p ,
    .icons p a {
        margin-top: 0px !important;
        text-wrap: nowrap;
        font-size: 10px !important;
        color: #ffffff5c;
    }
}
@media (min-width:786px) and (max-width:992px){
    .contact-us button {
        background-color: var(--light-blue);
        color: #fff;
        padding: 6px 215px 8px 215px;
    }
}
@media (min-width:992px) and (max-width:1200px){
    .contact-us button {
        background-color: var(--light-blue);
        color: #fff;
        padding: 6px 135px 8px 135px;
    }
}
/* End contact us */

/* start our clients */
.clients{
    margin-top: 130px;
}
.clients h1 {
    font-size: 50px;
    font-weight: 400;
}
.clients h1:nth-child(2) {
    font-size: 50px;
    font-weight: 600;
}
.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 40px; 
}
.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 calc(20% - 40px);
    max-width: calc(20% - 40px);
}
.client-logo img {
    width: auto; 
    max-width: 100%; 
    height: auto; 
}
@media (max-width: 992px) {
    .client-logo {
        flex: 0 0 calc(33.33% - 20px); 
        max-width: calc(33.33% - 20px);
    }
}
@media (max-width: 576px) {
    .client-logo {
        flex: 0 0 calc(50% - 20px); 
        max-width: calc(50% - 20px);
    }
}
/* end clients */

/* join our team */
.join-our-team h2,
.join-our-team h3{
    font-size: 50px;
}

.join-our-team img {
    max-height: 290px !important;
}
.join-our-team button {
    font-weight: 600 ;
    font-size: 17px !important;
}

[dir='rtl'] .join-our-team .image{
    text-align: left;
}
[dir='ltr'] .join-our-team .image{
    text-align: right;
}
@media (max-width:768px) {
    .join-our-team {
        padding: 20px 15px;
    }
    .join-our-team img{
        width: 100% ;
        margin-bottom: 25px;
    }
    .join-our-team button {
        width: 100% !important;
    }
    [dir='rtl'] .join-our-team {
    text-align: right !important;
}
}
/* end join our team */


/* start testimonial */
.testimonials {
    margin-top: 130px;
}

.testimonials h1 {
    font-size: 45px;
    color: #fff;
}

.testimonial-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: transparent;
}

.testimonial-slider {
    width: 100%;
    text-align: center;
}

.testimonial {
    position: relative;
    padding-bottom: 40px;
    background: transparent;
    font-size: 16px;
    overflow: visible;
}

.testimonial p {
    text-align: center !important;
    width: 100% !important;
    color: #ffffff80;
}

.testimonial h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}

.testimonial h6 {
    font-size: 16px;
    color: #fff;
}

.testimonial img {
    width: 40px;
}
.testimonial .logo {
    min-width: 7rem !important;
}
.quote-left,
.quote-right {
    color: #3acdd5;
    position: absolute;
    max-width: 45px;
    transform: translateY(0);
}

.quote-left {
    bottom: auto;
    left: 10%;
    top: calc(100% + -105px);
}

.quote-right {
    top: auto;
    right: 10%;
    bottom: calc(100% + -140px);
}

.swiper-pagination {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.swiper-pagination-bullet {
    display: block !important;
    width: 30px !important;
    height: 2px !important;
    background: transparent !important;
    border-top: 1px solid #D9D9D9 !important;
    margin: 0 3px !important;
    transition: border-color 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
    border-top: 2px solid #00B0B9 !important;
}
[dir="rtl"] .testimonials  {
    text-align: start !important;
}
[dir="rtl"] .testimonial  {
    padding-right: 6% !important;
}
[dir="rtl"] .testimonial p {
    direction: rtl;
    text-align: center !important;
}

[dir="rtl"] .quote-left {
    left: auto;
    right: 13%;
    top: calc(100% + -105px);
    transform: scaleX(-1);
}

[dir="rtl"] .quote-right {
    right: auto;
    left: 10%;
    transform: scaleX(-1);
    bottom: calc(100% + -140px);
}

html[dir="rtl"] .swiper-wrapper {
    direction: rtl !important;
    flex-direction: row-reverse !important;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .testimonials {
        margin-top: 70px;
    }
    .testimonial-section {
    padding: 30px 0px;
}
    .testimonials h1 {
        margin-bottom: 0px !important;
        text-align: center !important;
        font-size: 40px;
        font-weight: 700;
    }

    .testimonial {
        font-size: 9px;
    }

    .testimonial p {
        font-size: 0.85rem;
        width: 100%;
        margin-bottom: 30px;
    }

    .testimonial h3 {
        font-size: 18px;
    }

    .testimonial h6 {
        font-size: 13px;
    }

    .testimonial img {
        width: 20px;
    }
    .testimonial .logo {
        min-width: 70px !important;
    }

    .quote-left {
        top: calc(100% + -90px);
    }

    .quote-right {
        bottom: calc(100% + -70px);
    }
    [dir="rtl"] .quote-left {
    left: auto;
    right: 100%;
    top: calc(100% + -105px);
    transform: scaleX(1);
}
    [dir="rtl"] .quote-right {
    right: auto;
    left: 85%;
    transform: scaleX(1);
    bottom: calc(100% + -70px);
}
    [dir="rtl"] .testimonial  {
    padding-right: 16% !important;
}

    .swiper-pagination-bullet {
        width: 15px !important;
    }
}

@media (min-width: 786px) and (max-width: 992px) {
    .testimonials h1 {
        font-size: 30px;
    }

    .testimonial {
        font-size: 15px;
    }

    .testimonial p {
        width: 85%;
    }

    .testimonial h3 {
        font-size: 25px;
    }

    .testimonial h6 {
        font-size: 13px;
    }

    .testimonial img {
        max-width: 32px;
    }

    .swiper-pagination-bullet {
        width: 30px !important;
    }
}


/* end testimonial */


/* start footer */
.footer {
    margin-top: 130px;
    background-color: hsl(0, 0%, 100%);
    padding: 70px 0px 15px 0px;
}
.footer h5 {
    font-size: 20px;
    color: #0F2A49;
}
.footer p {
    font-size: 13px;
    opacity: 0.7;
    font-weight: 300;
    color:#0F2A49 ;
}
.footer img {
    max-width: 170px;
}
.footer ul li {
    font-weight: 400;
    font-size: 15px;
    color: #0F2A49;
}
.footer ul li a{
    color: #0f2a49ab;
}
.footer a{
    color: #0f2a49ab;
    font-size: 15px;
}
.footer ul li a:hover {
    color: #00B0B9;
}
.footer h2 {
    font-size: 16px !important;
    color: #0f2a49ab !important;
    font-weight: 200;
}
.footer input {
    border: none;
    border-bottom: 1px solid ;
}
.footer::placeholder {
    opacity: 0.6;
}

[dir='ltr'] .footer button {
    width: 67% !important;
    background-color: #00B0B9;
    color: #fff;
    width: 100%;
    border-radius: 5px;
}
[dir='rtl'] .footer button {
    width: 58% !important;
    background-color: #00B0B9;
    color: #fff;
    width: 100%;
    border-radius: 5px;
}
[dir='ltr'] .footer .first ul {
    padding-right: 40px;
    padding-left: 0px;
}
[dir='rtl'] .footer .first ul{
    padding-right: 0px;
    padding-left: 40px;
}
[dir='ltr'] .footer .first {
    text-align: left;
}
[dir='rtl'] .footer .first {
    text-align: right;
}
[dir='ltr'] .footer .second {
        text-align: left;
}
[dir='rtl'] .footer .second {
    text-align: right;
}
[dir='ltr'] .footer .third {
        text-align: left;
        padding-left: 48px;
}
[dir='rtl'] .footer .third {
    text-align: right;
    padding-right: 48px;
}
@media (max-width:576px){
    .footer {
        margin-top: 90px;
    }
    .footer .first {
        text-align: center !important;
    }
    .footer h5 {
        font-size: 20px;
        margin-bottom: -10px !important;
    }
    .footer p {
        font-size: 90px;
    }
    .footer img {
        max-width: 200px;
    }
    .footer ul li a{
        font-size: 18px !important;
    }
    .footer a{
        font-size: 16px;
    }
    .footer h2 {
        font-size: 16px !important;
        font-weight: 400;
    }
    .footer .first ul{
        margin-top: 40px;
        padding: 0px !important;
    }
    .footer .second {
        text-align: center !important;
    }
    .footer .icons {
        justify-content: center !important;
        margin-left: 12px;
    }
    .footer .icons svg{
        font-size: 30px !important;
    }
}
@media (max-width:992px){
    .footer input {
        width: 50%;
    }
}