:root {
    --main-color:  #0D2358;
    --sec-color: #E85D20;
    --text-color: #071640;
    --hover-color: #1a3a7a;
    --background-color: #ffffe2;
    --contact-color: #323232;
    --white-color: #FFFFFF;
    --blue-color: #5a6a8a;

  }
   

@font-face {
  font-family: "light";
  src: url("../fonts/Tajawal-Light.ttf") format("ttf"),
    url("../fonts/Tajawal-Light.woff") format("woff"),
    url("../fonts/Tajawal-Light.woff2") format("woff2"),
    url("../fonts/Tajawal-Light.eot") format("eot");
}

@font-face {
  font-family: "reg";
  src: url("../fonts/Tajawal-Regular.ttf") format("ttf"),
    url("../fonts/Tajawal-Regular.woff") format("woff"),
    url("../fonts/Tajawal-Regular.woff2") format("woff2"),
    url("../fonts/Tajawal-Regular.eot") format("eot");
}

@font-face {
  font-family: "med";
  src: url("../fonts/Tajawal-Medium.ttf") format("ttf"),
    url("../fonts/Tajawal-Medium.woff") format("woff"),
    url("../fonts/Tajawal-Medium.woff2") format("woff2"),
    url("../fonts/Tajawal-Medium.eot") format("eot");
}

@font-face {
  font-family: "bold";
  src: url("../fonts/Tajawal-Bold.ttf") format("ttf"),
    url("../fonts/Tajawal-Bold.woff") format("woff"),
    url("../fonts/Tajawal-Bold.woff2") format("woff2"),
    url("../fonts/Tajawal-Bold.eot") format("eot");
}


  a,
  p,
  label,
  span,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "reg";
  }
  a {
    color: var(--text-color);
    text-decoration: none;
  }
  .btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  
    outline: none;
  }
 
  body::-webkit-scrollbar {
    background-color: #fff;
    width: 7px;
    height: 0;
  }
  body::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
  }
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--main-color) #fff;
  }
  input::-webkit-inner-spin-button,
  input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  input[type="number"] {
    -moz-appearance: textfield;
  }
  
  .clear {
    clear: both;
  }
  
  a:hover,
  a:active,
  a:focus {
    text-decoration: none;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  a:focus,
  input:focus,
  textarea:focus,
  button:focus {
    outline: 0;
  }
  .img-contain {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

  /*  */
  
  /* ── CURSOR ── */
  * { cursor: none; } 
   .cursor {
    position: fixed; width: 12px; height: 12px;
    background: var(--sec-color); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid var(--sec-color); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.4;
  }
  @media (max-width: 900px) {
    * { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }  

 
/* Side menu */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9;
  display: none;
  }
  
  .sidenav {
  right: -580px;
  overflow: auto;
  height: 100%;
  width: 290px;
  position: fixed;
  z-index: 999999;
  top: 0;
  background-color: var(--text-color);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 55px;
  -webkit-box-shadow: 6px 1px 14px rgba(0, 0, 0, 0.175);
  box-shadow: 6px 13px 14px rgba(0, 0, 0, 0.175);
  }
  .sidenav .menu-head li a{line-height: 40px;    text-align: right;}
  
  .sidenav.open {
  right: 0;
  }
  
 .side-menu i {
    color: var(--main-color);
    width: 38px;
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--background-color);
    font-size: 18px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    margin-inline-start: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
 .side-menu i :hover {
    background-color: var(--sec-color);
    color: var(--white-color);
}


  
  .sidenav .list-unstyled>li>a {
  text-align: right;
  line-height: 40px;
  }
  .sidenav a {
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  margin: 0px 30px;
  color: var(--white-color);
  line-height: 40px;
  text-transform: uppercase;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  }
  .sidenav a.social-link{margin: 0px 3px;}
  .top-social.side {
  padding: 10px 6px;
  display: flex;
  }
  .sidenav .closebtn {
  position: absolute;
  top: 10px;
  font-size: 30px;
  cursor: pointer;
  left: 0px;
  }
  
  .side-menu span {
  font-size: 35px;
  cursor: pointer;
  color: var(--main-color);
  width: 100%;
  display: block;
  
  }
  html[dir="ltr"] .sidenav.open {
  
    left: 0;
  }
  html[dir="ltr"] .sidenav {
    left: -580px;
    right: unset}
    html[dir="ltr"]  .sidenav .closebtn {
      left: unset;
      right: 0;
  }
  html[dir="ltr"] .side-menu .sub_list li {
    margin-left: 25px;
  }
  @media (min-width: 992px) {
  .side-menu {
    display: none;
  }
  }

/*------------header------------*/

.top-head{
  -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
  box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
  background-color: var(--background-color);
} 
.top-head-flex{
  display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 15px 0px; */
}
.logo-head{
  display: flex;
    align-items: center;
}
.logo-head img{
    width: 70px;
    height: 70px;
}
.logo-text p{
      margin-bottom: 0;
    font-size: 24px;
    font-family: 'bold';
    font-weight: 900;
        color: var(--main-color);
}
.logo-text span{
  font-size: 13px;
    margin-top: -3px;
    display: block;
        color: var(--sec-color);
}
.menu-head li a{
  font-size: 16px;
  margin: 0px 16px;
  color: var(--text-color);
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  transition: 0.3s ease-in-out;
  font-family: "bold";
  text-transform: uppercase;
}

  .top-head-flex.fixedheader{
        height: 75px;
        position: fixed;
        top:0;
        right: 0;
        left: 0;
        z-index: 9999;
        background-color: var(--background-color);
        -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow:  0px 0px 8px 0px rgba(1, 1, 1, 0.1);    
    padding-inline-start: 10px;
    padding-inline-end: 15px;
    }

.menu ul{
  display: flex;
}
.menu-head{
  margin-inline-start: auto;
}
.menu-head li a:hover{
  color: var(--sec-color);
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  transition: 0.3s ease-in-out;
}
.menu-head li a.active{
  color: var(--main-color);
  font-weight: 600;
  position: relative;
}
.menu-head li a.active::before {
    content: "";
    position: absolute;
    width: 33px;
    height: 2px;
    left: 23px;
    top: 40px;
    background-color: var(--main-color);
    transform: translateX(-50%);
}
a.contact-head{
line-height: 40px;
    width: 140px;
    height: 40px;
   border:1px solid transparent;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background-color: var(--sec-color);
}
a.contact-head:hover{
  background-color: var(--white-color);
    border-color: var(--sec-color);
    color: var(--sec-color);
    border-color: var(--sec-color);
}
a.contact-head i{margin-inline-end: 10px;}
.lang-head {display: flex; align-items: center;
 -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.lang-head:hover .lang-head i{
  color: var(--sec-color);
}
a.lang-head{
 font-size: 20px;
}
a.lang-head:hover{
  color: var(--sec-color);
}
.lang-head i{

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    color: var(--sec-color);
    font-size: 20px;


    margin-inline-start: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.lang-head i:hover{
  background-color: var(--sec-color);
  color: var(--white-color);
}
.button-head{display: flex;align-items: center;}


/* header */
.head-home-section{position: relative;}
.head-home-section .container-fluid{
  padding: 0;
}
.head-home-flex{
height: 100%;
    display: grid;

    position: relative;
    overflow: hidden;
}
.head-right{
  display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 80px 0px 48px;
    position: relative;
    z-index: 2;
    background: rgb(30 30 30 / 36%)
}
.head-right h4{
      display: inline-flex;
    align-items: center;
    gap: 13px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    color: var(--sec-color);
    margin-bottom: 30x;
        text-transform: capitalize;
}
.head-right h4::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--sec-color);
    flex-shrink: 0;
}
.head-right>span{
    font-size: 62px;
    font-weight: 900;
    margin-bottom: 6px;
    font-family: "bold";
    text-transform: capitalize;
}
.head-right span.up{
   color: var(--white-color);
}
.head-right span.down{
   color: var(--sec-color);
}
.head-right p{
    font-size: 17px;
    line-height: 1.9;
    color: #ffffff;
    width: 55%;
    margin-bottom: 30px;
}
.head-button{
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.head-start-b .logo-img path {
  fill: #fff;
}
.head-start-b{
  position: relative;
}
.head-start-b img{
position: absolute;
    top: 1px;
    right: 0;
    filter: brightness(0) invert(1);
    width: 20px;
    z-index: 9;

}
.photo-head-home {
    position: absolute;
}
.pj-0{background-image: url(../images/view.jpg);
    height: 700px;
    background-size: cover;}
.overlay-slid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(2 59 151 / 0%) 0%, #0223594d 51%, #071640cf 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}
.start-now{
  background: linear-gradient(to left, rgb(11 64 149) 0%, rgb(2 35 89 / 88%) 51%, rgb(1 25 63) 100%);
    color: var(--white);
    padding: 15px 40px;
    font-family: "bold";
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: none;
    color: var(--white-color);
        -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;

}
.start-now:hover{
      background: var(--sec-color);
      color: var(--white-color);

}

.start-up{
  background: linear-gradient(to left, #e85d2070 0%, #e85d20ba 51%, #e85d20e6 100%);
    color: var(--white);
    padding: 16px 40px;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: none;
    text-transform: capitalize;
    color: var(--white-color);
        -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}
.start-up:hover{
      background: var(--main-color);
      color: var(--white-color);
}
.head-num{

    margin-top:55px;
    padding-top: 15px;
    border-top: 1px solid rgba(13, 35, 88, 0.1);
}
.numbers-flex{
    display: flex;
    gap: 48px;
}
.numbers-item{
font-size: 40px;
    font-weight: 900;
    color: var(--white-color);
    line-height: 1;
    display: flex;
    align-items: start;
    gap: 3.2px;
    display: flex;
    flex-direction: column;
}
.numbers-item .number{
    color: var(--sec-color);
    font-size: 40px;
}
.numbers-item .number span{
    color: var(--white-color);
    font-size: 55px;
    font-family: 'bold';
}
.numbers-item .item-name{
      font-size: 19px;
    color: var(--white-color);
    margin-top: 5px;
    font-weight: 500;
    font-family: 'reg';
    text-transform: capitalize;
}
.head-left{
position: relative;
    overflow: hidden;
    height: 100%;
    align-items: center;
    display: flex;
    padding-bottom: 100px;
    justify-content: center;
}
.fav-pattern {
position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 215px;
    background-image: url(../images/fav.svg);
    background-repeat: repeat;
    background-position: bottom;
    filter: brightness(1) invert(0);
    filter: opacity(0.1);

}
.head-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255, 255, 255, 0.015) 30px, rgba(255, 255, 255, 0.015) 31px);
}
.head-left-content{
  padding-top: 35px;
    padding-right: 40px;
    padding-left: 40px;
}
.head-left-content h4{
  display: inline-block;
    background: linear-gradient(to right, #e85d20eb 0%, #e95818b5 51%, #eb5513 100%);
    color: white;
 color: white;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    align-self: flex-start;
    border-radius: 5px;
}
/* .head-box{
  position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    z-index: 2;
} */
 /* .head-photo{order: 1;} */
.head-ceo-flex{
      display: flex;
gap: 45px;
    justify-content: center;
    align-items: center;
}
.head-photo img{
  width: 220px;
}
.head-box {
      background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding:40px;
    backdrop-filter: blur(10px);
    position: relative;
    border-radius: 5px;
}
.head-box h2{
      font-size: 32px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    font-family: 'bold';
    margin-top: 25px;
    text-align: center;
}
.head-box span{
font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--sec-color);
    margin-bottom: 35px;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    text-align: center;
}
.head-box p{
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.6);
    text-align: start;
    text-align: center;
}
.head-years{
  position: absolute;
        top: -45px;
    left: -24px;
    width: 90px;
    height: 90px;
    
    background: linear-gradient(to right, #e85d20eb 0%, #e95818b5 51%, #eb5513 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
.head-years span:first-child{
  font-size: 28px;
    font-weight: 900;
    line-height: 1;
}
.head-years span{
  font-size: 9px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    color: var(--white-color);
    margin-bottom: 5px;
}
.services-home-section{
  background-color: var(--background-color);
      padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}
.services-home-flex{}
.services-head{
  display: inline-flex;
flex-direction: column;
    align-items: start;
    gap:13px;
    font-size:14px;
    font-weight: 700;
    letter-spacing: 0.68px;
    color: var(--sec-color);
    margin-bottom:32px;
}
.about-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing:1.44px;
    color: var(--sec-color);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: 'bold';
}
.about-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--sec-color);
    flex-shrink: 0;
}
/* ceo */
.ceo-home-section{
      background: var(--text-color);
      background-image:linear-gradient(to right, rgb(2 59 151) 0%, #022359 51%, #071640 100%);
      padding-top: 60px;
    padding-bottom: 110px;
    position: relative;
}
.ceo-back{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/fav.svg);
    background-repeat: repeat;
    background-position: center;

    filter: opacity(0.1);
}
.ceo-content{

    position: relative;
    overflow: hidden;
    height: 100%;
}
.head-ceo-content{
  width: 60%;
}
/* ceo */

.services-head p{
     font-size: 45px;
    line-height: 1.1;
    color: var(--main-color);
    width: 65%;
    font-family: 'bold';
    text-transform: capitalize;
}
.services-items{
     display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
padding: 15px 0px;
}
.service-item{
  position: relative;
     padding: 15px 0px;
    justify-content: start;
border-radius: 10px;
    position: relative;
    overflow: hidden;
    background-color: var(--white-color);
    transition: background 0.3s, transform 0.3s;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: flex;
  
    align-items: center;
        -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
   

}
.service-title i{margin-inline-start: 7px;}
/* .service-item:hover{
  background-color: #fff;
    transform: translateY(-5px);
} */
.item-num{
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: rgba(13, 35, 88, 0.06);
    position: absolute;
    top: 40px;
    left: 30px;
    transition: color 0.3s;
}
.item-icon{
    width: 52px;
    height: 52px;
    /* background: var(--main-color); */
    align-items: center;
    justify-content: center;
    /* margin-bottom: 24px; */
    z-index: 1;
    transition: background 0.3s;
    display: flex;
    margin-inline-start: 30px;
}
.serv-fav img{
position: absolute;
    bottom: -15px;
    left: -20px;
    filter: brightness(0) invert(0.9);
    width: 95px;
    z-index: 9;
}
.item-icon svg {

    width: 65px;
    height: 65px;
fill: #ffffff;
    stroke: var(--sec-color);

}
.service-item h5{
 font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}
.service-item p{
  font-size: 17px;
    line-height: 1.9;
     color: var(--blue-color);
    position: relative;
    z-index: 1;
}
.service-item ul{
  list-style: disc;
   margin-inline-start: 20px;
    color: var(--blue-color);
}
.service-item ul li{
  margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.6;
    font-family: 'med';
}

.service-item ul li::marker{
  color: var(--sec-color);
}
/* ticker */
.line-home-section {
    background: var(--background-color);
    overflow: hidden;
    padding: 15px 0;
    border-top: 3px solid var(--sec-color);
  
}

  /* ── MARQUEE ── */
  /* .ticker {
    background: var(--navy); overflow: hidden;
    padding: 0.9rem 0; border-top: 3px solid var(--sec-color);
  } */
  .ticker-track {
    display: flex; gap: 0;
    animation: rtl-scroll 30s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    display: inline-flex; align-items: center; gap:23px;
    padding: 0 23px; flex-shrink: 0;
    font-size: 17px; font-weight: 700; color: var(--text-color);
    letter-spacing: 0.6px;
  }
  .ticker-sep { color: var(--sec-color); font-size: 8px; }
  @keyframes rtl-scroll {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }
html[dir="ltr"] .ticker-track {
    animation: ltr-scroll 30s linear infinite;
  }
  @keyframes ltr-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
/*  ticker*/
/* ABOUT */
.about-home-section{
      background: var(--text-color);
    background-image: linear-gradient(to right, rgb(2 59 151) 0%, #022359 51%, #071640 100%);
    padding: 110px 80px;

    position: relative;
    overflow: hidden;
}
/* .about-home-section::before {
    background-image: url(../images/fav.svg);
    position: absolute;
    left: -0.15em;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Tajawal', sans-serif;
    font-size: 22rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    line-height: 1;
} */
.about-home-flex{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-home-right{
  position: relative;
}
.about-home-right p{
      font-size: 18px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 24px;
    text-transform: capitalize;
}
.about-home-right span{
  display: block;
    color: var(--white-color);
    font-size: 45px;
    font-family: 'bold';
    width: 71%;
}
.about-right-content{
 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19.5px;
    margin-top: 40px;
}
.about-item{
      border-right: 3px solid var(--sec-color);
    padding-right: 16px;
    transition: border-color 0.2s;
}
.about-item h4{
     font-size: 21px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}
.about-item p{
    font-size: 17px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
        margin-top: 10px;
    margin-bottom: 0;
}
.about-home-left{
      background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 48px;
    position: relative;
    border-radius: 5px;
}
.about-years{
  position: absolute;
    top: -24px;
    right: -24px;
    background: var(--sec-color);
    color: white;
    padding: 16px 19px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}
.about-years span:first-child{
  display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    color: var(--white-color);
}
.about-years span:last-child {
    font-size: 11px;
    font-weight: 700;
}
.about-home-left p{
  font-size: 17.5px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
    margin-top: 32px;
}
.about-left-flex-box{
      display: flex;
    align-items: center;
    gap: 16px;
}
.left-photo{
  width: 54px;
    height: 54px;
    flex-shrink: 0;
    background: var(--sec-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tajawal', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: white;
}
.left-photo img{
      filter: brightness(0) invert(1);
    width: 20px;
    z-index: 9;
}
.left-title{}
.left-title h4{
      font-weight: 800;
    color: white;
    font-size: 19px;
    margin-bottom: 0;
}
.left-title span{
  font-size: 16px;
    color: var(--sec-color);
    letter-spacing: 0.6px;
}
/* ABOUT */

/* partners */
.partners-home-section{
background-color: var(--background-color);
padding-bottom: 80px;
padding-top: 80px;
border-bottom: 1px solid var(--sec-color);
}
.partners-home-section p{
color: var(--text-color);
    font-weight: 900;
    line-height: 1.2;
    font-size: 45px;
    display: block;
    font-family: 'bold';
}
.partner-flex{
  display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5px;
    background: rgba(13, 35, 88, 0.08);
    margin-top: 48px;
}
.partner-item{
    background: #ffffff;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 90px;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    border-radius: 5px;}
.partner-blog{
      text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.partner-blog img{
    width: 145px;
    height: 70px;
    transform: perspective(1px); 
    filter: grayscale(1);
}
.partner-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--sec-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.partner-item:hover::after {
    transform: scaleX(1);
}
.partner-item:hover{
  background: var(--white-color);
}
.partner-item:hover .partner-blog img{
    filter: grayscale(0);
}
.partner-item span{
  font-size: 13px;
    font-weight: 800;
    text-align: center;
    color: var(--text-color);
    opacity: 0.4;
        margin-top: 25px;
    transition: opacity 0.2s, color 0.2s;
}
.partner-item:hover span{
  opacity: 1;
 color: var(--sec-color);
}
/* partners */
/* contact */
.contact-home-section{
  padding-bottom: 80px;
  padding-top: 80px;
  background-color: var(--background-color);
}
.contact-home-flex{
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact-right{}
.contact-right p{
     font-size: 19px;
    line-height: 1.9;
    color: #5a6a8a;
    margin-top:16px;
}
.contact-right h3{
  font-size: 45px;
    line-height: 1.1;
    color: var(--main-color);
    width: 55%;
    font-family: 'bold';
    font-weight: 800;
    margin-top: 25px;
    margin-bottom: 25px;
    text-transform: capitalize;
}
.contact-right span{
  color: var(--sec-color);
    font-family: 'bold';
      font-size: 45px;
    line-height: 1.1;
}
.contact-item-flex{
  display: flex;
    gap: 24px;
    flex-direction: column;
    margin-top: 40px;
}
.contact-item{
  display: flex;
    align-items: center;
    gap: 16px;
}
.contact-item i{
  width: 40px;
    height: 40px;
    background: var(--main-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 5px;
}
.contact-text{
      display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-text h4{
  font-size: 11px;
    font-weight: 700;
    letter-spacing:0.9px;
    color: var(--sec-color);
    text-transform: uppercase;
}
.contact-text a{
  font-size: 15.2px;
    color: var(--text-color);
    font-weight: 500;
    direction: ltr;
      -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  transition: 0.3s ease-in-out;
}

.contact-text a:hover{
color: var(--blue-color);
}
.contact-text p{
      font-size: 15.2px;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}
.form-group.cont label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #5a6a8a;
    margin-bottom: 10px;
}
.form-group.cont{margin-bottom: 10px;}
.form-group.cont input, .form-group.cont textarea {
    background: var(--white-color);
    border: 1.5px solid rgb(255 255 255 / 12%);
    padding: 15px 17px;
    font-family: 'med';
    font-size: 15px;
    color: var(--text-color);
    outline: none;
    direction: rtl;
    transition: border-color 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    transition: 0.3s ease-in-out;
    box-shadow: none;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    border-radius: 5px;
}
.form-group.cont input:focus, .form-group.cont textarea:focus {
    border-color: var(--sec-color);
}
.contact-left .submit-form{
  background: var(--text-color);
    color: var(--white-color);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, transform 0.2s;
    border: none;
    cursor: none;
        border-radius: 5px;
    text-transform: capitalize;
}
.submit-form:hover {
    background: var(--sec-color);
    transform: translateY(-2px);
}
/* contact */
/* footer */
footer{
      background-color: var(--text-color);
    color: white;
    padding: 24px 0;
    border-top: 3px solid var(--sec-color);
}
.foot-flex{
  display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}
.foot-logo img{filter: brightness(0) invert(1);
    width: 120px;
}

.foot-social{
  display: flex;
    align-items: center;
    gap: 16px;
}
.foot-social i{
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
}
.foot-social i:hover{
      background: var(--sec-color);
    color: white;
}

.copy_allright{
  background-color: var(--text-color);
    padding: 8px 0;
    border-top: 1px solid #2e2e2e;
}
.copy-text p{font-size: 14px;
margin: 0;
text-align: center;
color: var(--blue-color);}
/* footer */

@media (min-width:1440px){
  .top-head .container {
    max-width: 1670px;
  };
}
@media (max-width:1024px){
  .head-right>span {
    font-size: 42px;
}
.head-right p {
    font-size: 16px;
    width: 94%;
        margin-bottom: 16px
}
.head-num {
    margin-top: 40px;
    padding-top: 32px;
}
.services-head p {
    font-size: 42px;
}
.about-home-right span {
    font-size: 42px;
    width: 84%;
}
.partners-home-section p {
    font-size: 40px;
}
.contact-right h3 {
    font-size: 38px;
}
}
@media (max-width:991px){
  .menu-head{display: none;}
  .lang-head{display: none;}
      .services-head p {
        font-size: 32px;
        width: 95%;
    }
    .services-items {
    grid-template-columns: repeat(2, 1fr);
}
.about-home-flex {
    gap: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.about-home-section {
    padding: 70px 0;
}
.about-home-right span {
        font-size: 30px;
    }
    .about-home-right p {
    font-size: 16px;
    width: 85%;
}
.partners-home-section p {
        font-size: 30px;
    }
    .partner-flex {
    grid-template-columns: repeat(3, 1fr);
}
.partners-home-section {
    padding-bottom: 30px;
    padding-top: 55px;
}
.contact-home-section {
    padding-bottom: 70px;
    padding-top: 55px;
}
.contact-home-flex {
    gap: 48px;
    align-items: center;
    display: flex;
    flex-direction: column;
}
    .contact-right h3 {
        font-size: 29px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .contact-right span {
    font-size: 35px;
}
.contact-right p {
    width: 75%;
}
.contact-item-flex {

    margin-top: 32px;
}
.contact-text p{width: 100%;}
.contact-left{width: 100%;}
.numbers-item .number span {
    font-size: 40px;
}
.pj-0 {
      height: 100vh;
}
.ceo-home-section {
    padding-bottom: 80px;
}
}
@media (max-width:480px){

  .head-home-flex {
    display: flex;
    flex-direction: column;
}
.head-right {
    padding: 50px 30px 30px 40px;
}
.head-left-content {
    padding-top: 45px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 45px;
}
.head-box p {
    font-size: 14px;
}
.services-home-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.services-head p {
        font-size: 29px;
    }
    .services-items {
        grid-template-columns: repeat(1, 1fr);
    }
        .about-home-section {
        padding: 50px 0;
    }
    .about-home-right span {
        font-size: 25px;
    }
    .about-home-right p {
        font-size: 15px;
        width: 88%;
        line-height: 1.5;
    }
    .about-right-content {
    display: flex;
    flex-direction: column;
}
.about-home-left {
    padding: 32px;
}
.about-years {
   top: 0;
    right: 0;
    padding: 15px 10px;
  
}
.about-years span:first-child {
    font-size: 15px;
    line-height: 0.6;
}
.about-years span:last-child {
    font-size: 11px;
    font-weight: 700;
}
.partners-home-section p {
        font-size: 27px;
    }
        .partner-flex {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 32px;
    }
        .contact-home-section {
        padding-bottom: 50px;
        padding-top: 45px;
    }
    .contact-right span {
        font-size: 27px;
    }
    .contact-right h3 {
        font-size: 26px;
        margin-top: 5px;
        margin-bottom: 15px;
    }
    .contact-right p {
        width: 85%;
        line-height: 1.5;
        font-size: 15px;
    }
    .foot-flex {
    flex-direction: column;
}
.head-ceo-flex {
    flex-direction: column;
    gap: 25px;
}
.head-box {
    padding: 0;
    padding-top: 30px;
    padding-bottom: 15px;
}
.head-box h2 {
    font-size: 29px;
    margin-top: 20px;
            text-align: center;
}
.head-box span {
    font-size: 15px;
    text-align: center;
    margin-bottom: 24px;
}
.head-ceo-content {
    width: 85%;
            text-align: center;
}
}
@media (max-width:425px){
      .head-right>span {
        font-size: 35px;
    }
    .head-box h2 {
    font-size: 28px;

}
.numbers-item .number span {
    font-size: 30px;
}
.service-item {
    padding: 32px 24px;
}
.about-home-right p {
        width: 94%;

    }
    .about-home-flex {
        gap: 48px;
    }
    .about-home-left p {
    font-size: 15px;
    line-height: 1.5;

}
.left-photo {
    width: 45px;
    height: 45px;}
    .left-photo img {
    width: 17px;
}
.contact-right h3 {
    width: 70%;
}
.contact-right p {
        width: 100%;

    }
    .submit-form {
    width: 100%;
}
.contact-home-section {
        padding-bottom: 25px;
    }
    .numbers-flex {
    gap: 24px;
}
.head-right>span {
        font-size: 29px;
    }
        .head-right p {
        font-size: 15px;
        width: 100%;
        line-height: 1.5;

    }
    .head-button {
    gap: 10px;

}
}
@media (max-width:425px){
.numbers-item .item-name {
    font-size: 14px;

}}
@media (max-width:375px){
    .partner-flex {
        grid-template-columns: repeat(1, 1fr);
    }
        .head-num {
        margin-top: 0px;
        padding-top: 25px;
    }
}
@media (max-width:325px){
  .head-num {
        margin-top: 0px;
        padding-top: 25px;
    }
        .numbers-item .item-name {
        font-size: 13px;
    }
    .head-years span:first-child {
    font-size: 24px;
    margin-bottom: 5px;
}
    .ceo-home-section {
        padding-bottom: 20px;
    }
}
/* } */

.service-photo img{
    width: 100%;
    height: 210px;
}
.service-title{
      padding: 20px;
        background-color: var(--white-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 0px 0px 10px 10px;

}
.service-title:hover{
  /* background-color: var(--sec-color); */
      overflow: hidden;
    border-radius: 0px 0px 10px 10px;
}
.service-title>i{
  width: 48px;
    height: 48px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color:#FCE9E9;
    color: var(--sec-color);
    font-size: 20px;
   
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.service-title h4 {
font-size: 22px;
    text-align: start;
    display: block;
    font-family: 'bold';

    color: var(--main-color);
    width: 100%;
        margin: 0;
        margin-bottom: 15px;
}
.service-title p{
  font-size: 16px ;
  color: var(--text-color);
  line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 110px;


}
.service-title a{
    color: var(--white-color);
    font-size: 19px;
    font-weight: 900;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}
.service-item{position: relative;}
.service-title {
text-align: center;
    /* transform: translateX(-50%); */
    /* height: 100%; */
    /* width: 100%; */
    /* background: rgb(13 35 88); */
    display: flex;
    align-items: center;
    /* flex-direction: column-reverse; */
    justify-content: center;
    /* border: 1px solid var(--sec-color); */
    border-radius: 10px;
        flex-direction: column;
        align-items: start;
}
.service-photo img {
       width: 64px;
    height: 56px;
}

  .service-item:hover .service-title h4 {
    color: var(--sec-color);

  }
  .service-item:hover .service-title a {
    color: var(--sec-color);

  }
  .service-item{
    transition: background 0.25s, transform 0.2s;
background-image: linear-gradient(to right, rgb(2 59 151) 0%, #022359 51%, #071640 100%);
  }
  .service-item:hover {
    transform: translateY(-2px);
  }
  .service-item .service-title {
    background-color: transparent;
  }
  .service-item .service-title h4{
        color: #ffffff;
  }
  .service-item.service-title a{
        color: #ffffff;
  }
   .service-item:hover .service-title i {
    color: var(--sec-color);
  }
  .service-item .service-title i{
        color: #ffffff;
            -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .item-icon {
    width: 45px;
    height: 45px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 1;
    transition: background 0.3s;
    display: flex;
    margin-inline-start: 30px;
    padding: 10px;
    border-radius: 10px;
} 
 .service-title a {
    color: var(--sec-color);
    font-size: 15px;
    font-weight: 900;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
} 
 .service-item .service-title i {
    color: var(--sec-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media (max-width:991px){
  .service-title h4 {
    font-size: 17px;
}
@media (max-width:768px){
.head-ceo-flex {
    gap: 25px;

}
.head-box p {
    font-size: 15px;
}
}
@media (max-width:480px){
    .head-num {
        margin-top: 0px;
    }
        .head-box span {
        margin-bottom: 5px;
    }
    .ceo-home-section {
        padding-bottom: 25px;
    }
}
@media (max-width:425px){
  .item-icon {
    margin-inline-start: 5px;
}
}
@media (max-width:425px){
.pj-0 {
        height: 85vh;
    }
  
  }
  @media (max-width:425px){
      .service-title h4 {
        text-align: start;
    }}
    @media (max-width:325px){  .pj-0 {
        height: auto;
    }
  .numbers-item .number {
    font-size: 27px;
}
    .head-left-content {
        padding-top: 20px;
        padding-right: 15px;
        padding-left: 15px;
        padding-bottom: 25px;
    }
  }
/* html[dir="ltr"]  */
 html[dir="ltr"] .lang-head { align-items: self-end; direction: rtl;}
 html[dir="ltr"] .head-years span {font-size: 7px;}





   @media (max-width:1024px){ 
  html[dir="ltr"] .about-home-flex {gap: 20px;}
   html[dir="ltr"] .about-home-right p {font-size: 14.8px;line-height: 1.6;width: 88%;}
   html[dir="ltr"] .about-home-left {padding: 35px;}
   html[dir="ltr"] .about-years {right: 11px;}
   html[dir="ltr"] .head-years span { font-size: 10px;}
}
 @media (max-width:991px){
    html[dir="ltr"] .about-years {right: -24px;}
    html[dir="ltr"] .about-home-flex {  gap: 60px;}
 }}
 @media (max-width: 425px) { html[dir="ltr"] .about-home-left { padding: 27px; }}
 .service-photo{
  margin-inline-start: 40px;
}
 html[dir="ltr"] .numbers-item .number{direction: rtl;}
  html[dir="ltr"] .overlay-slid {left: unset;
    right: 0;
    background: linear-gradient(to left, rgb(2 59 151 / 0%) 0%, #0223594d 51%, #071640cf 100%);
}
 html[dir="ltr"] .ticker-item { flex-direction: row-reverse;}
  html[dir="ltr"] .head-years { left: unset; right: -24px;direction: rtl;}
  html[dir="ltr"] .fa-arrow-left:before {content: "\f061";}
  html[dir="ltr"] .item-num {left: unset;right: 30px;}
  
html[dir="ltr"] .serv-fav img {left: unset;right: -10px;}
html[dir="ltr"] .about-item {border-left: 3px solid var(--sec-color);border-right: 0px;padding-right: 0;padding-left: 16px;}
html[dir="ltr"] .form-group.cont input{direction: ltr;}
html[dir="ltr"] .form-group.cont textarea {direction: ltr;}
 @media (min-width: 1440px) {
    html[dir="ltr"] .top-head .container {
        width: 1762px;
    }
}