@charset "UTF-8";
/*Start Search*/
.searchh {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.995);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 0;
  padding: 40px 20px;
}

/* active state */
.searchh.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 99999;
}

/* container */
.searchh .search-cont {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* form */
#searchform {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}
.bootom-side .line > img{
        margin-inline-end: 5px;
}
/* input */
#search-input {
  flex: 1;
  padding: 18px 56px 18px; /* leave space for icon */
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 18px;
  background: #fff;
  color: #000;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

/* placeholder */
#search-input::placeholder {
  color: #666;
  text-transform: none;
}

/* submit button (icon inside input area on the right) */
#search-submit {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  cursor: pointer;
  color: var(--sec);
}

/* close button */
.searchh .search-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--main);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* End Search*/
/*start nav*/
@media (min-width: 992px) {
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    z-index: 2;
    position: relative;
    height: 100%;
  }
  .nav-list {
    display: flex;
    margin-bottom: 0;
    list-style: none;
    width: 100%;
    justify-content: center;
    gap: 15px;
  }
  .nav-list > .link {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0px;
    background-color: transparent;
  }
  .has_sub_menu {
    margin: 0 !important;
  }
  .has_sub_menu ~ i {
    width: 15px;
    display: inline-block;
    text-align: center;
    color: #FFF;
    transition: all linear 0.3s !important;
  }
  .nav-list > .link.active .has_sub_menu ~ i, .nav-list > .link:hover .has_sub_menu ~ i {
    color: var(--main);
  }
  .sub-list i {
    color: #000;
    transition: all linear 0.3s !important;
  }
  .sub-list i:hover {
    color: var(--main);
    transition: all linear 0.3s !important;
  }
  .nav-list > .link > a {
    display: block;
    color: #FFF;
    position: relative;
    background: transparent;
    padding: 8px 2px;
    font-size: 16px;
    border-radius: 25px;
    font-weight: 400;
    margin: 0 0px;
    font-family: Changa-Bold;
    z-index: 1;
    transition: ease-in-out 0.5s;
    /*&:after {
      content: '';
      position: absolute;
      right: auto;
      top: 1px;
      width: 0%;
      height: 3px;
      background-color: var(--main);
      left: 0;
      z-index: -1;
      transition: .8s;
      transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    }*/
  }
  .nav-list > .link > a:before {
    position: absolute;
    right: auto;
    bottom: -100%;
    width: 0%;
    height: 1px;
    background-color: var(--sec);
    left: 0;
    z-index: -1;
    transition: 0.8s;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  .nav-list > .link:hover a,
  .nav-list > .link.active a {
    color: var(--main);
    transition: linear 0.5s;
    background: transparent;
    /*
         &:after {
           right: 0;
           left: auto;
           width: 100%;
           transition: .8s;
           transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
         }*/
  }
  .nav-list > .link:hover a:before,
  .nav-list > .link.active a:before {
    right: 0;
    left: auto;
    width: 100%;
    transition: 0.8s;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  .sub-list {
    background-color: #FFF;
    padding: 10px 15px;
    padding-inline-end: 22px;
    list-style: none;
    overflow-x: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 100%;
    min-width: max-content;
    opacity: 0;
    z-index: 4;
      border-radius: 0 0 17px 17px;
    visibility: hidden;
    display: block !important;
    transition: all linear 0.3s !important;
    transform-origin: top;
    transform: scaleY(0);
  }
  .sub-list li {
    position: relative;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
  }
  .sub-list li a {
    display: block;
    width: 100%;
    position: relative;
      font-size: 14px;
    color: #000 !important;
    transition: all linear 0.3s !important;
    padding: 5px 0 !important;
  }
  .sub-list li a:before {
    content: "-";
    color: #000;
    margin: 0 5px;
    transition: all linear 0.3s !important;
  }
  .sub-list li a:hover {
    transition: all linear 0.3s !important;
    color: var(--main) !important;
  }
  .sub-list li a:hover:before {
    transition: all linear 0.3s !important;
    color: var(--main) !important;
  }
  .sub-list li a.has_sub_menu {
    display: inline-block;
  }
  .sub-list li:last-child > a {
    margin-bottom: 0;
  }
  .sub-list .sub-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.5s linear;
  }
  .sub-list .sub-link:hover {
    background-color: var(--sec);
  }
  .sub-list .sub-link:last-child {
    border-bottom: 0;
  }
  .nav-list .link:hover > .sub-list {
    transition: all linear 0.3s !important;
    top: 100%;
    visibility: visible;
    overflow: unset;
    opacity: 1;
    transform: scaleY(1);
  }
  .sub-list .sub-list {
    top: 0;
    right: 100%;
    transform: rotateX(180deg);
    transition: all linear 0.3s !important;
  }
  .nav-list .link .sub-list .sub-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-list .link .sub-list .sub-link:hover > .sub-list {
    display: block;
  }
  .nav-list .link .sub-list .link:hover > .sub-list {
    transition: all linear 0.3s !important;
    right: 105%;
    visibility: visible;
    transform: rotateX(0deg);
    top: 0 !important;
    display: block;
  }
  .nav-btn,
  .mobile-nav-list {
    display: none;
  }
  /**/
  .nav-list > .link {
    text-transform: capitalize;
  }
  .has_sub_menu {
    margin-right: 5px;
  }
  .sub-list {
    right: 0;
  }
  .sub-list li a.has_sub_menu {
    margin-left: 5px;
  }
  .sub-list .sub-list {
    left: 100%;
  }
}
@media (max-width: 992px) {
  .nav-list {
    display: none;
  }
  .main-nav {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
  }
  .nav-btn {
    width: 40px;
    height: 40px;
    background-color: var(--sec);
    border-radius: 50%;
    margin: 0px;
    margin-inline-end: 5px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: linear 0.4s;
  }
  .nav-btn:hover {
    transition: linear 0.4s;
    background-color: var(--main);
    color: #FFF;
  }
  .mobile-nav-list .logo {
    padding: 0 30px;
  }
  .mobile-nav-list .date {
    display: flex;
    margin-top: 15px;
    padding: 0 30px;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
  }
  .mobile-nav-list .date .lang, .mobile-nav-list .date #hijrii {
    margin: 10px 0;
  }
  .mobile-nav-list .l-head {
    justify-content: center;
  }
  .mobile-nav-list {
    display: block;
    position: fixed;
    top: 0;
    overflow: scroll;
    z-index: 5;
    text-align: center;
    height: 100%;
    width: 300px;
    padding: 60px 0;
    background-color: #000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: all 0.5s linear;
  }
  .mobile-nav-list::-webkit-scrollbar-track {
    background: #FFFFFF;
  }
  .mobile-nav-list::-webkit-scrollbar-thumb {
    background-color: var(--main);
    border-radius: 50px;
  }
  .mobile-nav-list::-webkit-scrollbar {
    width: 0.5em;
  }
  .mobile-nav-list .request {
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFF;
    background-color: var(--main);
    font-size: 16px;
  }
  .mobile-nav-list .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .mobile-nav-list .phone .img-phone {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--main);
    border-radius: 50%;
  }
  .mobile-nav-list .phone .img-phone img {
    max-width: 20px;
    max-height: 20px;
  }
  .mobile-nav-list .phone p {
    font-size: 20px;
    font-family: din-bold;
    color: #000;
  }
  .mobile-nav-list .phone a {
    font-size: 20px;
    font-family: din-bold;
    color: #000;
  }
  .mobile-nav-list .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /*.fa-tiktok{
      color: #111111;
      filter: drop-shadow(3px 2px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);

    }
    .fa-linkedin-in{
      color: #0e76a8;
    }
    .fa-snapchat{
      background-color: #FFFC00;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .fa-facebook, .fa-facebook-square {
      color: #3b5998
    }
    .fa-twitter, .fa-twitter-square {
      color: #00aced
    }
    .fa-google-plus, .fa-google-plus-square {
      color: #dd4b39
    }
    .fa-youtube, .fa-youtube-play, .fa-youtube-square {
      color: #bb0000
    }
    .fa-tumblr, .fa-tumblr-square {
      color: #32506d
    }
    .fa-vine {
      color: #00bf8f
    }
    .fa-flickr {
      color: #ff0084
    }
    .fa-vimeo-square {
      color: #aad450
    }
    .fa-pinterest, .fa-pinterest-square {
      color: #cb2027
    }
    .fa-linkedin, .fa-linkedin-in-square {
      color: #007bb6
    }
    .fa-instagram {
      background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .fa-spotify {
      color: #1ED760;
    }*/
  }
  .mobile-nav-list .social a {
    background-color: transparent;
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main);
    transition: all linear 0.3s !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .mobile-nav-list .social a:hover {
    border: 1px solid var(--sec);
    background-color: var(--sec);
    color: #FFF;
    transition: all linear 0.3s !important;
  }
  .mobile-nav-list .social i {
    font-size: 16px;
  }
  .mobile-nav-list .main-phone {
    display: flex;
    gap: 10px;
    margin-inline-end: 20px;
    align-items: center;
    justify-content: center;
  }
  .mobile-nav-list .main-phone span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main);
    border-radius: 50%;
  }
  .mobile-nav-list .main-phone span img {
    width: 16px;
    height: 22px;
  }
  .mobile-nav-list .main-phone a {
    font-size: 18px;
    color: #000;
  }
  .mobile-nav-list .link {
    font-size: 16px;
    padding: 10px 30px;
    position: relative;
  }
  .mobile-nav-list .link a {
    color: #FFF;
    display: block;
    text-align: center;
    font-weight: bold;
    width: 100%;
    transition: all linear 0.3s !important;
  }
  footer .sec-foot {
    margin-top: 0;
  }
  .mobile-nav-list .link a.has_sub_menu {
    display: inline-block;
    width: calc(100% - 40px);
  }
  .mobile-nav-list .link a:hover,
  .mobile-nav-list .link.active a {
    color: var(--main);
    transition: all linear 0.3s !important;
  }
  .mobile-nav-list .link i {
    color: #fff;
    background-color: var(--main);
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform-origin: center;
    transition: all 0.3s linear;
  }
  .mobile-nav-list .link i.open {
    transform: rotate(180deg);
  }
  .mobile-nav-list .lang{
          color: #FFF;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: baseline;
  }
  .mobile-nav-list .lang:hover{
      color:#FFF;
  }
  .sub-list {
    box-shadow: none;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
  }
  .sub-list a {
    display: block;
    position: relative;
  }
  .sub-list .sub-link {
    border: 0;
    padding: 5px 20px;
    font-size: 14px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    white-space: nowrap;
  }
  .sub-list .sub-list a {
    display: block;
    position: relative;
  }
  .trans-none {
    transform: none !important;
  }
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease-in-out;
  }
  /**/
  .mobile-nav-list {
    right: 0;
  }
  .mobile-nav-list .link a.has_sub_menu {
    margin-left: 5px;
  }
  .sub-list .sub-list a {
    padding-right: 15px;
  }
  .nav-overlay {
    left: 0;
    transform: translateX(-100%);
  }
}
/*end nav*/
@font-face {
  font-family: Changa-Bold;
  font-display: swap;
  src: url(../fonts/Gilroy-Bold.ttf);
}
@font-face {
  font-family: Changa-Regular;
  font-display: swap;
  src: url(../fonts/Gilroy-Regular.ttf);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  border: none;
  text-transform: capitalize !important;
}

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

.wrap {
  overflow: hidden;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 999999;
}

.loading img {
  max-width: 100%;
  padding: 20px;
}

:root {
  --main: #3093C1;
  --sec: #3093C1;
}

body {
  font-family: Changa-Regular;
  overflow-x: hidden;
}

html[dir=rtl] body {
  text-align: right;
}

/* Start Scroll */
body::-webkit-scrollbar-track {
  background: #FFFFFF;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 50px;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

/* End Scroll */
.e-row {
  padding: 0;
  margin: 0;
}

.main-hover {
  padding: 3px 18px;
  max-width: 250px;
  min-width: 180px;
  height: 40px;
  color: #000;
  z-index: 2;
  background-color: transparent;
  border-radius: 500px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  position: relative;
  text-transform: capitalize;
  display: inline-flex;
  font-family: Changa-Bold;
  align-items: center;
  font-size: 14px;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.main-hover:before {
  content: "\f177";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: #FFF;
  z-index: 0;
  top: 50%;
  display: flex;
  width: 30px;
  height: 30px;
  transform: translatey(-50%);
  font-size: 13px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  right: -13px;
  background-color: var(--main);
  transition: all linear 0.3s !important;
}
.main-hover:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  border: 20px solid transparent;
  z-index: -1;
  top: 0;
  right: 0;
  border-radius: 500px;
  transition: all linear 0.3s !important;
}

.main-hover:hover {
  background-color: var(--main);
  color: #FFF;
  border: 0px solid transparent;
}
.main-hover:hover:before {
  right: 86%;
}
.main-hover:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}

.main-header {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  line-height: 50px;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}
.main-header span {
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  font-family: Changa-Regular;
  color: var(--main);
}
.main-header:before {
  position: absolute;
  width: 81px;
  height: 11px;
  background-image: url("../img/tit-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: -1;
  left: 50%;
  transform: translatex(-50%);
  pointer-events: none;
  bottom: -17px;
}

h1, h2, h3, h4, h5 {
  font-family: Changa-Bold;
}

/*header*/
header {
  position: relative;
  width: 100%;
  z-index: 9;
  transition: background-color linear .3s;
  background-color: #000;
}
header.sticky-active{
  position: fixed;
  top:0;
  left:0;
}

header .btn-head {
  min-width: 150px;
  height: 45px;
  position: relative;
  border-radius: 500px;
  background-color: var(--main);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-family: Changa-Bold;
  margin-inline-start: 15px;
}
header .top-head {
      display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 0 3%;
}
header .top-head .top-top {
  background-color: var(--sec);
  border-radius: 0 0 19px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 13px;
  padding: 7px 25px;
}
header .top-head .top-top .value {
  gap: 3px;
}
header .top-head .top-top .value a:not(:nth-last-of-type(1)):after {
  content: "-";
  color: #FFF;
  font-size: 13px;
  margin-inline-start: 3px;
}
header .top-head .top-top a {
  color: #FFF;
  font-size: 13px;
}
header .top-head .top-top i {
  color: #282828;
  font-size: 16px;
}
header .top-head .top-top .fir-con i {
  color: #3A3A3A;
}
header .top-head .top-top div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
header .top-head .main-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2px 0;
  gap: 15px;
}
header .logo{
  padding: 8px 5px;
  border-radius: 14px;
  transition: all linear .3s;
}
header .logo img {
  width: auto;
  max-width: 240px;
  height: auto;
  max-height: 120px;
}
header .menu-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /*.search-btn {
    background: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #FFF;
    transition: linear .2s;
    text-align: center;
    position: relative;

    &:before {
      content: '';
      width: 100%;
      position: absolute;
      height: 100%;
      border-radius: 50%;
      background: var(--main);
      opacity: 0;
      z-index: 1;
      top: 0;
      right: 0;
      pointer-events: none;
      transition: all linear .3s;
    }

    &:after {
      content: '';
      width: 100%;
      position: absolute;
      height: 100%;
      border: 20px solid transparent;
      z-index: 2;
      top: 0;
      pointer-events: none;
      right: 0;
      border-radius: 50%;
      transition: all linear .3s;
    }

    img {
      z-index: 3;
    }

    &:hover {
      color: #FFF;
      border: 1px solid transparent;
      transition: linear .2s;

      &:before {
        opacity: 1;
      }

      &:after {
        border: 0px solid rgba(white, .5);
      }

    }
  }*/
}
header .menu-icons .btn-group .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: max-content;
  height: 50px;
  background-color: transparent;
  border: 0;
  gap: 8px;
  color: var(--main);
  font-size: 22px;
}
header .menu-icons .btn-group .dropdown-toggle i {
  color: var(--sec);
}
header .menu-icons .btn-group .dropdown-menu {
  width: max-content;
  min-width: auto;
  background-color: var(--main);
}
header .menu-icons .btn-group .dropdown-menu a {
  color: #FFF;
  background-color: transparent;
}
header .menu-icons .btn-group .dropdown-menu a:hover {
  background-color: transparent;
}
header .menu-icons .request {
  height: 40px;
  display: flex;
  width: 130px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000;
  border-radius: 0px;
  background-color: var(--main);
  font-size: 16px;
}
header .menu-icons .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: linear 0.2s;
  font-size: 20px;
  gap: 10px;
  position: relative;
  color: #FFF;
  /*&:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    border-radius: 50%;
    background: var(--main);
    opacity: 0;
    z-index: -2;
    top: 0;
    right: 0;
    transition: all linear .3s;
  }

  &:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    border: 20px solid transparent;
    z-index: -1;
    top: 0;
    right: 0;
    border-radius: 50%;
    transition: all linear .3s;
  }*/
}
header .menu-icons .lang img {
  width: 40px;
  height: 40px;
  border-radius: 0%;
}
header .menu-icons .lang:hover {
  color: var(--sec);
  transition: linear 0.2s;
}
header .menu-icons .lang:hover:before {
  opacity: 1;
}
header .menu-icons .lang:hover:after {
  border: 0px solid rgba(255, 255, 255, 0.5);
}
header .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /*.fa-tiktok{
    color: #111111;
    filter: drop-shadow(3px 2px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);

  }
  .fa-linkedin-in{
    color: #0e76a8;
  }
  .fa-snapchat{
    background-color: #FFFC00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .fa-facebook, .fa-facebook-square {
    color: #3b5998
  }
  .fa-twitter, .fa-twitter-square {
    color: #00aced
  }
  .fa-google-plus, .fa-google-plus-square {
    color: #dd4b39
  }
  .fa-youtube, .fa-youtube-play, .fa-youtube-square {
    color: #bb0000
  }
  .fa-tumblr, .fa-tumblr-square {
    color: #32506d
  }
  .fa-vine {
    color: #00bf8f
  }
  .fa-flickr {
    color: #ff0084
  }
  .fa-vimeo-square {
    color: #aad450
  }
  .fa-pinterest, .fa-pinterest-square {
    color: #cb2027
  }
  .fa-linkedin, .fa-linkedin-in-square {
    color: #007bb6
  }
  .fa-instagram {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .fa-spotify {
    color: #1ED760;
  }*/
}
header .social a {
  background-color: transparent;
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main);
  transition: all linear 0.3s !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
header .social a:hover {
  border: 1px solid var(--sec);
  background-color: var(--sec);
  color: #FFF;
  transition: all linear 0.3s !important;
}
header .social i {
  font-size: 16px;
}

.fixed-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.fixed-social i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 20px;
  transition: all linear 0.3s !important;
  background-color: var(--sec);
}
.fixed-social i:hover {
  background-color: var(--main);
}
header.sticky-new{
  background-color: #FFF;
  box-shadow: 0 0 15px rgba(0,0,0,.15);

}
 
  header  .logo img:last-of-type{
     display:none;
 }
 header .logo img:first-of-type{
        display:block;
 }
 
 header.sticky-new .logo img:last-of-type{
     display:block;
 }
 header.sticky-new .logo img:first-of-type{
        display:none;
 }
 


 
 
  
 
header.sticky-new .nav-list > .link > a ,header.sticky-new .has_sub_menu ~ i{
  color:#000;
}
header.sticky-new .nav-list > .link:hover a,header.sticky-new .nav-list > .link.active a {
    color: var(--main);
    transition: linear 0.5s;
    background: transparent;
  }
  /*header*/
/*slider*/
/* ================= Main Layout ================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}
.hero-section:before{
    content:'';
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url(../img/bg-slid.png);
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 101%;
}
.hero-section video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.hero-section .owl-dots {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.hero-section .owl-dots span {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  height: 5px;
  width: 18px;
  display: block;
  transition: all linear 0.3s !important;
}
.hero-section .owl-dots .owl-dot.active span {
  width: 29px;
  background: #FFF;
}

/* ================= Main Slider ================= */
.main-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#mainSlider {
  width: 100%;
  height: 100%;
}

.main-slide {
  position: relative;
  width: 100%;
  height: 700px;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url(../img/bg-slid.png);
  z-index: 2;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* ================= Slide Content (Text + Buttons) ================= */
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  gap:20px;
  padding-inline-start: 10%;
}

.slide-main-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
}

.slide-title {
  color: #FFF;
  font-size: 35px;
  font-style: normal;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0px;
}

.slide-title .highlight {
  color: #ff9800;
  font-weight: 700;
}

.slide-main-content p {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}
.slide-main-content p span {
  text-transform: uppercase;
}
.slide-content .slide-v-b{
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.slide-content .slide-v-b .vid-bt{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  color: #fff;
  font-size: 22px;
}
.slide-button-group {
  display: flex;
  gap: 35px;
  pointer-events: all;
}
.slide-button-group .main-hover {
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.slide-button-group .main-hover:nth-last-of-type(1):before, .slide-button-group .main-hover:nth-last-of-type(1):hover:after {
  background-color: var(--sec);
}

.slide-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-icon {
  font-size: 14px;
}

.slide-btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
}

.slide-btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.slide-btn-secondary {
  background-color: #ff9800;
  color: #ffffff;
}

.slide-btn-secondary:hover {
  background-color: #f57c00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

/* ================= Thumbnail Slider Wrapper ================= */
.carousel-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 4;
  padding: 0;
}

/* inner container to center thumbnails */
.carousel-wrapper .thumb-inner {
  padding: 0 0px;
}

/* ================= Thumbnails ================= */
.thumb-item {
  position: relative;
  height: 150px;
  margin: 0 6px;
  border-radius: 0px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0px solid transparent;
  opacity: 0.8;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
  pointer-events: none;
}

/* hover state */
.thumb-item:hover {
  transform: translateY(-4px);
}

.thumb-item:hover img {
  transform: scale(1.06);
}

/* active thumbnail */
#thumbSlider .owl-item.active-thumb .thumb-item {
  opacity: 1;
}

#thumbSlider .owl-item.active-thumb .thumb-overlay {
  background: linear-gradient(to top, rgba(255, 152, 0, 0), rgba(0, 0, 0, 0));
}

/* ================= Owl Nav Buttons ================= */
/* only style nav for thumbnails, hide for main slider via JS/HTML */
#thumbSlider .owl-nav button.owl-prev,
#thumbSlider .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 34px;
  transition: all 0.25s ease;
  margin: 0;
  padding: 0;
}

#thumbSlider .owl-nav button.owl-prev:hover,
#thumbSlider .owl-nav button.owl-next:hover {
  background: #ff9800 !important;
  box-shadow: 0 0 14px rgba(255, 152, 0, 0.9);
}

#thumbSlider .owl-nav button.owl-prev {
  left: 0;
}

#thumbSlider .owl-nav button.owl-next {
  right: 0;
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
  .slide-title {
    font-size: 42px;
  }
  .thumb-item {
    height: 95px;
  }
}
@media (max-width: 768px) {
  .slide-title {
    font-size: 32px;
  }
  .slide-subtitle {
    font-size: 12px;
  }
  .slide-button-group {
    flex-direction: column;
    max-width: 220px;
  }
  .thumb-item {
    height: 85px;
  }
  #thumbSlider .owl-nav button {
    display: none !important;
  }
  .carousel-wrapper .thumb-inner {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .slide-title {
    font-size: 24px;
  }
  .thumb-item {
    height: 75px;
  }
}
/*slider*/
/* Features */
.features-section {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
    min-height: 100vh;
}

.features-section:before{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1%;
  background-image: url("../img/who.png");
  width: 300px;
  height: 400px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: -1;
}
.features-section .row:first-of-type {
  align-items: center;
}
.features-section .col-product:nth-of-type(odd) {
  margin-top: 0;
  margin-bottom: 30px;
}
.features-section .product-item a {
  font-size: 18px;
}
.features-section .service .col-lg-6 {
  border: 0 !important;
}
.features-section .feature-content .subtitle {
  color: var(--main);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.features-section .feature-content h1, .features-section .feature-content h2 {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 62px; /* 221.429% */
}
.features-section .feature-content p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}
.features-section .feature-graph {
  position: relative;
}
.features-section .feature-graph .bot-graph{
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.features-section .feature-graph .bot-graph p{
  color: #000;
  text-align: justify;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 20px; /* 153.846% */
  text-transform: capitalize;
}
.page-template-Template-who .features-section .feature-graph:before{display: none}
html[dir='rtl'] .features-section:before{
  right: unset;
  left:-1%;
  transform: translateY(-50%) scaleX(-1);
 }
.features-section .feature-graph img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 12px;
  width:100%;
  object-fit: cover;
}
.features-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.features-section .feature-item .feature-icon {
  flex-shrink: 0;
  width: 120px;
}
.features-section .feature-item .feature-icon img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}
.features-section .feature-item .feature-text h3 {
  color: var(--main);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
}
.features-section .feature-item .feature-text p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 189.474% */
  text-transform: capitalize;/* 171.429% */
}
@media (max-width: 991.98px) {
  .features-section .feature-content {
    text-align: center;
  }
  .features-section .feature-graph {
    margin-top: 2rem;
  }
}
@media (max-width: 991px) {
  .features-section .row:last-of-type > div:first-child {
    margin-bottom: 2rem;
    order:2;
  }
}

/*ceo*/
.ceo {
  padding: 40px 0;
}
.ceo p {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 37px; /* 205.556% */
}
.ceo img {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
  margin: 20px 0;
}
.ceo h4 {
  color: var(--main);
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 114.286% */
}

/*ceo*/
/*team*/
.team {
  padding: 40px 0;
}
.team .team-member {
  border-radius: 20px;
  background: #EBFAFF;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.team .team-member .top-team {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.team .team-member .top-team .team-img {
  width: 60px;
  height: 60px;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .team-member .top-team .team-img img {
  max-width: 60px;
  max-height: 60px;
}
.team .team-member .top-team h5 {
  color: var(--main);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 114.286% */
}
.team .team-member .top-team p {
  color: #000;
  margin-bottom: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 200% */
}
.team .team-member a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 32px; /* 177.778% */
}
.team .team-member a i {
  font-size: 18px;
  color: var(--main);
}

/*team*/
/*product*/
.product {
  padding: 50px 0;
  background-color: #FDFDFD;
}
.product .main-header {
  margin-bottom: 60px;
}

.col-product {
  margin-bottom: 30px;
}

.col-product:nth-of-type(odd) {
  margin-top: -30px;
  margin-bottom: 60px;
}
.col-product:nth-of-type(odd) .product-item {
  background: linear-gradient(181.41deg, #d7e7ff, rgba(239, 239, 239, 0.44));
}

.product-item {
  background: #F5F5F7;
  width: 100%;
  padding: 20px;
  border-radius: 15px;
    transition: all linear 0.3s !important;
}
.product-item .product-image {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-item .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
    transition: all linear 0.3s !important;
}
.product-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  color: #000;
  text-transform: uppercase;
  font-size: 24px;
  transition: all linear 0.3s !important;
}
.product-item a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  transform: rotate(-45deg);
  transition: all linear 0.3s !important;
}
.product-item:hover{
    box-shadow: 0 15px 15px rgba(0,0,0,.25);
}
.product-item:hover img{
    transform: scale(1.1) !important;
}
.product-item:hover a{
    color:var(--main);
}
.product-item:hover a i {
  transform: rotate(0deg);
  color:#000;
}
/*business*/
.business{
  padding: 40px 0;
  min-height:100vh;
}
.business .business-p p{
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 157.895% */
  text-transform: capitalize;
}
.business .business-content .col-lg-6:nth-of-type(1){
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.30));
  background-repeat: no-repeat;
  background-position: right center ;
  background-size: 1px 70%;
}
html[dir='rtl'] .business .col-lg-6:nth-of-type(1){
  background-position: left center ;
}
.business .business-content .logo-business{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
}
.business .business-content .logo-business img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  height: auto;
  width: auto;
}
/*number*/
.number{
  padding: 40px 0;
  background-image: url("../img/number.png");
  background-repeat: no-repeat;
  background-position: center ;
  background-size: cover;
}
.number .main-number{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-direction: column;
  justify-content: center;
}
.number .main-number span{
  color: #FFF;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.number .main-number p{
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
  line-height: normal;
  text-transform: capitalize;
}
/*committed*/
.committed{
  padding: 40px 0;
  min-height:100vh;
}
.committed .cont-committed h2{
  color: #000;
   font-size: 48px;
  font-style: normal;
   line-height: 56px; /* 116.667% */
  text-transform: uppercase;
}
.committed .cont-committed p{
   font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 168.421% */
  text-transform: capitalize;
  margin-bottom: 25px;
}
.committed .img-committed img{
  width: 100%;
  max-height: 306px;
  border-radius: 12px;
  object-fit: cover;
}
/*certificates*/
.certificates{
  padding: 40px 0;
}
.certificates-item {
  position: relative;
}
.certificates-item .certificates-img{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 125px;
}
.certificates-item .certificates-img img{
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  object-fit: contain;
}
.certificates-item .certificates-text{
  margin-top:10px;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06727E;
  font-size: 16px;
  text-transform: uppercase;
  color:#FFF;
}
.certificates .owl-nav {
  display: flex;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  gap: 25px;
  align-items: center;
  direction: rtl;
  justify-content: center;
}
.certificates .owl-nav i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:#A0C9DB;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.certificates .owl-nav i:hover {
  color: #FFF;
  background: var(--main);
}
/*bloog*/
.bloog{
  padding: 40px 0;
}
.bloog .s-blog{
  padding-inline-start: 10%;
  padding-inline-end: 2%;
}
.bloog .s-blog h4{
  color: var(--main);
  font-size: 24px;
  font-style: normal;
  line-height: normal;
  text-transform: capitalize;
}
.bloog .s-blog p{
  color: #000;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 168.421% */
  text-transform: capitalize;
  margin-bottom: 30px;
}
.bloog-item{
  width: 100%;
  height: 278px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.bloog-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bloog-item .in-item{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 20px 15px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  text-transform: capitalize;
  font-family: Changa-Bold;
  transition: all linear 0.3s !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.85) 100%);
}
.bloog-item:hover .in-item{
  color:var(--main)
}
.bloog .owl-nav {
  display: flex;
  position: absolute;
  bottom: -50px;
  width: 100%;
  gap: 25px;
  align-items: center;
  direction: rtl;
  justify-content: flex-start;
  padding-inline-start: 10%;
}
.bloog .owl-nav i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:#A0C9DB;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.bloog .owl-nav i:hover {
  color: #FFF;
  background: var(--main);
}
/*service*/
.service {
  padding: 60px 0 80px;
  background-image: url("../img/serv.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
    min-height:100vh;
}
.service .l-serv img {
  width: 100%;
  max-height: 550px;
  height: auto;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
}
.service .col-lg-6:nth-of-type(odd) {
  border-inline-end: 1px solid rgba(0, 0, 0, 0.14);
}
.service .col-lg-6:nth-of-type(1), .service .col-lg-6:nth-of-type(2) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.service .owl-dots {
  display: flex;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.service .owl-dots span {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  width: 5px;
  height: 18px;
  display: block;
  transition: all linear 0.3s !important;
}
.service .owl-dots .owl-dot.active span {
  height: 29px;
  background: #FFF;
}
.service .owl-nav {
  display: flex;
  position: absolute;
  top: -94px;
  right: 0%;
  gap: 25px;
  align-items: center;
  direction: rtl;
  justify-content: center;
}
.service .owl-nav i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #D8D8D8;
  color: #D8D8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.service .owl-nav i:hover {
  color: var(--main);
  background: #FFF;
}
.service .main-header{color:var(--main)}
.service-item {
  width: 100%;
  padding: 10px 0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all linear 0.3s !important;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.service-item img {
  max-width: 100%;
  max-height: 55px;
  width: auto;
  transition: all linear 0.3s !important;
  margin-bottom: 15px;
  object-fit: contain;
}
.service-item h3 {
  position: relative;
  font-size: 20px;
  line-height: 27px;
  transition: all linear 0.3s !important;
  text-transform: lowercase;
  color: #000;
  display: inline-block;
}
.service-item h3 .line-one {
  font-family: Changa-Regular;
}
.service-item p {
  font-size: 16px;
  line-height: 27px;
  text-transform: lowercase;
  color: #000;
  display: inline-block;
}
.service-item a {
  position: relative;
  color: #000;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  display: flex;
   transition: all linear 0.3s !important;
  align-items: center;
  justify-content: space-between;
}
.service-item a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  transition: all linear 0.3s !important;
}
.service-item:hover a,.service-item:hover h3{
    color:var(--main);
}
.service-item:hover img{
  transform: translateY(-10px) !important;
}
.service-item:hover a i{
           color:#FFF;
      background-color: var(--sec);
}
/*service*/
/*project*/
.project {
  padding: 60px 0;
}
.project .main-header {
  text-align: start;
}
.project .main-header:before {
  left: unset;
  transform: unset;
  background-image: url("../img/tit-1.png");
}
.project .d-flex a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #000;
}
.project .d-flex a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: #FFF;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--main);
  background: var(--main);
}

.marine-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 4px;
  height: 100%;
}

.marine-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}

/* ============ Image ============ */
.card-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 10px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.marine-card:hover .card-image img {
  transform: scale(1.05);
}

/* ============ Text ============ */
.card-body-custom {
  padding: 15px 17px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.card-title-custom {
  font-size: 17px;
  color: #000;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-text-custom {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ============ Info Box (price + date) ============ */
.info-box {
  width: 100%;
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  margin-bottom: 22px;
  position: relative;
}
.info-box:before {
  content: "";
  top: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.13);
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 1px 20px;
  height: 100%;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 14px;
}

.info-value {
  font-size: 13px;
  color: #000;
}

/* ============ Button ============ */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 26px;
  background-color: #ffffff;
  border-radius: 50px;
  border: 1px solid #e3ecf9;
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #87b4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 6px 15px rgba(135, 180, 245, 0.6);
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background-color: #f4f8ff;
  border-color: #87b4f5;
  color: #111111;
  text-decoration: none;
}

.btn-read-more:hover .btn-icon {
  background-color: #5b8fe0;
  transform: translateX(3px);
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .card-image {
    height: 210px;
  }
  .card-body-custom {
    padding: 22px 18px 22px;
  }
  .card-title-custom {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .card-image {
    height: 200px;
  }
  .card-title-custom {
    font-size: 17px;
  }
  .card-text-custom {
    font-size: 13px;
  }
}
/*project*/
/*gallery*/
.col-sector:nth-of-type(even) .sector-item {
  flex-direction: row-reverse;
}
.col-sector:nth-of-type(even) .sector-item .img-sector {
  padding-inline-end: 0px;
  border-inline-end: 0px solid var(--main);
  margin-inline-end: 0px;
  padding-inline-start: 10px;
  border-inline-start: 2px solid var(--main);
  margin-inline-start: 10px;
}

.sector-item {
  border-radius: 16px;
  border: 1px solid #E5DDD2;
  display: flex;
  align-items: center;
  padding: 15px 25px;
  gap: 15px;
  transition: all linear 0.3s;
}
.sector-item .img-sector {
  width: 300px;
  max-width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline-end: 10px;
  border-inline-end: 2px solid var(--main);
  margin-inline-end: 10px;
}
.sector-item .img-sector img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}
.sector-item .in-item {
  flex: 1;
}
.sector-item .in-item h2 {
  color: #252525;
  font-family: Changa-Bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: normal;
}
.sector-item .in-item p {
  color: #646768;
  font-family: Changa-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 24px; /* 133.333% */
}
.sector-item .in-item a {
  color: var(--main);
  font-family: Changa-Bold;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.sector-item:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}



.gallery {
  padding: 40px 0;
    min-height: 100vh;
}
.gallery .owl-nav {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  width: 100%;
  right: 0%;
  gap: 25px;
  align-items: center;
  direction: rtl;
  justify-content: space-between;
}
.gallery .owl-nav i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #D8D8D8;
  color: #D8D8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.gallery .owl-nav i:hover {
  color: var(--main);
  background: #FFF;
}

/* الغلاف العام */
.slider-wrapper {
  max-width: 100%;
  overflow: hidden;
}

/* ارتفاع السلايدر */
.accordion-owl {
    height: 500px;
  }

/* عنصر الـ slide جوه Owl */
@media (min-width: 992px) {
  .accordion-owl .owl-item {
    width: 230px !important;
  }
  .accordion-owl .owl-item:hover {
    width: 500px !important;
  }
  .accordion-owl .owl-item {
  height: 500px;
  transition: width 0.35s ease, filter 0.35s ease;
}

}
.accordion-owl .owl-item {
  transition: width 0.35s ease, filter 0.35s ease;
}

/* غمّق كل العناصر لما الماوس يدخل على السلايدر */
.accordion-owl .owl-item {
  filter: brightness(0.5);
}

/* العنصر اللي عليه الماوس يكبر لــ 400px ويرجع لونه الطبيعي */
.accordion-owl .owl-item:hover {
  height: 500px;
  filter: brightness(1);
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}
/* محتوى الـ slide */
.item-gall {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.item-gall .in-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all linear 0.3s !important;
  padding: 20px 15px;
  color: var(--main);
  display: flex;
  flex-direction: column;
  font-size: 26px;
  align-items: flex-start;
  justify-content: end;
}
.item-gall .in-item h3 {
  position: relative;
  font-size: 18px;
  line-height: 27px;
  text-transform: lowercase;
  color: #FFF;
  display: inline-block;
}
.item-gall .in-item h3 .line-one {
  font-family: Changa-Regular;
}
.item-gall .in-item p {
  position: relative;
  font-size: 14px;
  line-height: 27px;
  text-transform: lowercase;
  color: #fff;
  display: inline-block;
}
.item-gall .in-item a {
  position: relative;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  display: flex;
  gap: 15px;
  transition: all linear 0.3s !important;
  align-items: center;
  justify-content: space-between;
  display:none;
}
.item-gall .in-item a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  transition: all linear 0.3s !important;
}
.item-gall .in-item a:hover{
    color:var(--main);
}
.item-gall .in-item a:hover i{
      background-color: var(--sec);
       color:#FFF;
}
.item-gall:hover .in-item {
  opacity: 1;
}
.item-gall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body:not(.home) .item-gall {
  height: 320px;
}

/*gallery*/
/*customers*/
.customers {
  padding: 40px 0 60px;
    min-height:100vh;
  background-color: #fdfdfd;
}
.customers .owl-item {
  padding: 10px 0;
}
.customers .owl-dots {
  display: flex;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.customers .owl-dots span {
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 18px;
  display: block;
  transition: all linear 0.3s !important;
}
.customers .owl-dots .owl-dot.active span {
  height: 29px;
  background: rgba(0, 0, 0, 0.87);
}
.customers .owl-nav {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translate(-50%);
  padding: 0;
  width: 106%;
  left: 50%;
  gap: 25px;
  align-items: center;
  direction: rtl;
  justify-content: space-between;
}
.customers .owl-nav i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #D8D8D8;
  color: #D8D8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.customers .owl-nav i:hover {
  background-color: var(--main);
  color: #000;
}

.item-customers {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.04);
  border-radius: 25px;
}
.item-customers .img-customers{
  width: 100%;
  height: 220px;
  overflow: hidden;

}
.item-customers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all linear 0.3s !important;
}
.item-customers .in-item {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all linear 0.3s !important;
  padding: 15px 0px;
  display: flex;
  flex-direction: column;
  font-size: 26px;
  align-items: flex-start;
}
.item-customers .in-item h3 {
  position: relative;
  font-size: 18px;
  line-height: 27px;
  text-transform: lowercase;
  color: #000;
  padding: 0 10px;
  transition: all linear 0.3s !important;
  display: inline-block;
}
.item-customers .in-item p {
  position: relative;
  font-size: 14px;
  padding: 0 10px;
  line-height: 27px;
  text-transform: lowercase;
  color: #000;
  margin-bottom: 10px;
  display: inline-block;
}
.item-customers .in-item a {
  position: relative;
  color: #000;
  padding: 15px 10px 0;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  display: flex;
  gap: 15px;
  align-items: center;
  transition: all linear 0.3s !important;
  justify-content: space-between;
}
.item-customers .in-item a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  transition: all linear 0.3s !important;
}
.item-customers:hover img{
  transform: scale(1.1) !important;
}
.item-customers:hover .in-item h3{color:var(--main)}
.item-customers:hover .in-item a {
    color:var(--main);
}
.item-customers:hover .in-item a i{
    color:#FFF;
}
.item-customers:hove .in-item ar i{
           color:#FFF;
      background-color: var(--sec);
}
/* Why Us*/
.why-us {
  padding: 40px 0;
  background-color: #F6F9F6;
}
.why-us .why-us-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-us .why-us-image-wrapper img {
  max-height: 650px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.why-us .timeline-wrapper {
  position: relative;
  padding-right: 0px;
}
.why-us .timeline-wrapper::before {
  content: "";
  position: absolute;
  right: 27px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  height: 79%;
  background-color: #FFF;
  border: 1px dashed var(--main);
}
.why-us .timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.why-us .timeline-item:not(:last-child) {
  margin-bottom: 2.5rem;
}
.why-us .timeline-item .timeline-number {
  width: 58px;
  height: 58px;
  background-color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--main);
  border: 1px dashed;
  z-index: 2;
}
.why-us .timeline-item .timeline-content {
  flex: 1;
}
.why-us .timeline-item .timeline-content h5 {
  color: var(--main);
  margin-bottom: 0.5rem;
}
.why-us .timeline-item .timeline-content p {
  margin-bottom: 0;
  line-height: 1.7;
}
@media (max-width: 991.98px) {
  .why-us .why-us-image-wrapper {
    margin-bottom: 4rem;
  }
  .why-us .timeline-wrapper {
    padding-right: 30px;
  }
}

/* FAQ Section */
.faq-section .section-title {
  font-size: 48px;
}
.faq-section .accordion .card {
  border-radius: 15px !important;
  margin-bottom: 30px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 0 !important;
}
.faq-section .accordion .card:last-child {
  margin-bottom: 0;
}
.faq-section .accordion .card-header {
  background-color: #FFF;
  border-bottom: 0;
  padding: 0;
}
.faq-section .accordion .card-header .btn-link {
  width: 100%;
  padding: 30px 30px;
  font-weight: bold;
  color: var(--main);
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.2s ease;
  text-align: start !important;
}
.faq-section .accordion .card-header .btn-link[aria-expanded=true] {
  background-color: #FFF;
  color: var(--main);
}
.faq-section .accordion .card-header .btn-link:focus {
  box-shadow: none;
}
.faq-section .accordion .card-body {
  padding: 0px 30px 30px;
  color: #6E6E6E;
  line-height: 1.7;
}
@media (max-width: 991.98px) {
  .faq-section .faq-content {
    text-align: center !important;
  }
  .faq-section .accordion .card-header .btn-link {
    text-align: center !important;
  }
}

/* News Section */
.news-section {
  background-color: #FAF7F8;
}
.news-section .section-title {
  font-size: 2.8rem;
}

.news-card {
  background-color: transparent;
  border: 2px solid #C1E1C1;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: all ease 0.3s;
  padding: 30px;
}
.news-card .news-card-image {
  overflow: hidden;
  border-radius: 16px;
  transition: all ease 0.3s;
  margin-bottom: 20px;
}
.news-card .news-card-image img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: all ease 0.3s;
}
.news-card .news-card-body {
  flex-grow: 1;
}
.news-card .news-card-title {
  margin-bottom: 0.75rem;
}
.news-card .news-card-title a {
  color: #000;
  text-decoration: none;
  transition: all ease 0.3s;
}
.news-card .news-card-excerpt p {
  color: #6E6E6E;
  font-size: 0.9rem;
  line-height: 1.6;
}
.news-card .read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: all ease 0.3s;
}
.news-card .read-more-btn .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #C1E1C1;
  color: #2E7D32;
  border-radius: 50%;
  transition: all ease 0.3s;
}
.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}
.news-card:hover .news-card-image {
  transform: scale(1.05);
}
@media (max-width: 991.98px) {
  .news-card {
    margin-bottom: 2rem;
  }
}
/* Contact Section */
.wpcf7 br {
  display: none;
}

.contact-section {
  background-color: #ffffff;
  direction: rtl;
}
.contact-section .contact-info-card {
  background-image: url("../img/bg-cont.png");
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.contact-section .contact-info-card .contact-info-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.contact-section .contact-info-card .contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.contact-section .contact-info-card .contact-details-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.contact-section .contact-info-card .contact-details-list .icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: #FFF;
  color: var(--main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 1rem;
  flex-shrink: 0;
  font-size: 24px;
}
.contact-section .contact-info-card .contact-details-list .text-wrapper {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-info-card .contact-details-list .text-wrapper .label {
  font-weight: bold;
  font-size: 18px;
  color: var(--main);
  margin-bottom: 0.25rem;
}
.contact-section .contact-info-card .contact-details-list .text-wrapper .value {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  gap: 5px;
  color: #FFF !important;
}
.contact-section .contact-info-card .contact-details-list .text-wrapper .value a:before {
  content: "-";
}
.contact-section .contact-info-card .contact-details-list .text-wrapper .value a:nth-of-type(1):before {
  display: none;
}
.contact-section .contact-info-card .social-media-list {
  list-style: none;
  padding: 0;
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
}
.contact-section .contact-info-card .social-media-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #FFF;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-section .contact-info-card .social-media-list a:hover {
  background-color: var(--main);
  color: #ffffff;
}
.contact-section .contact-form-wrapper {
  padding: 3rem;
  position: relative;
}
.contact-section .contact-form-wrapper:before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
  background-color: #f5fbf7;
  border-radius: 1rem;
  border: 1px solid #d1f3e0;
}
.contact-section .contact-form-wrapper .form-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--main);
  margin-bottom: 2rem;
  position: relative;
}
.contact-section .contact-form-wrapper .wpcf7-form label {
  font-weight: bold;
  font-size: 0.9rem;
  color: #161616;
  position: relative;
  margin-bottom: 0.5rem;
  display: block;
}
.contact-section .contact-form-wrapper .wpcf7-form .form-row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .contact-section .contact-form-wrapper .wpcf7-form .form-row {
    flex-direction: column;
  }
}
.contact-section .contact-form-wrapper .wpcf7-form .form-group {
  margin-bottom: 0.5rem;
  width: 100%;
}
.contact-section .contact-form-wrapper .wpcf7-form .wpcf7-form-control {
  background-color: #fff;
  border: 1px solid #d1f3e0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.9rem;
}
.contact-section .contact-form-wrapper .wpcf7-form .wpcf7-form-control:focus {
  outline: none;
  border-color: #38a169;
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.15);
}
.contact-section .contact-form-wrapper .wpcf7-form textarea.wpcf7-textarea {
  height: 150px;
  resize: vertical;
}
.contact-section .contact-form-wrapper .wpcf7-form .form-submit-wrapper {
  text-align: left;
}
.contact-section .contact-form-wrapper .wpcf7-form .wpcf7-submit {
  background: none;
  border: none;
  color: #FFF;
  font-weight: bold;
  border-radius: 23px;
  background: var(--main);
  display: inline-flex;
  align-items: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section .contact-form-wrapper .wpcf7-form .wpcf7-submit::before {
  content: "←";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #e6f4ea;
  color: #38a169;
  border-radius: 50%;
  margin-left: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-section .contact-form-wrapper .wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}
.contact-section .contact-form-wrapper .wpcf7-form .wpcf7-submit:hover::before {
  background-color: #38a169;
  color: white;
}

/*online_service*/
.online-card {
  height: 165px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all linear 0.3s !important;
}
.online-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.online-card .in-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #E4F7F9;
  padding: 20px 15px;
  display: flex;
  gap: 5px;
  flex-direction: column;
  transition: all linear 0.3s !important;
}
.online-card .in-item h5 {
  transition: all linear 0.3s !important;
  color: var(--main);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}
.online-card .in-item p {
  margin-bottom: 0;
  transition: all linear 0.3s !important;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.online-card .in-item a {
  margin-inline-start: auto;
  transition: all linear 0.3s !important;
  display: flex;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.online-card:hover .in-item {
  background-color: transparent;
}
.online-card:hover .in-item p, .online-card:hover .in-item a {
  color: #FFF;
}

/*online_service*/
/*branche*/
.branche {
  padding: 30px 20px;
  background-image: url("../img/bran.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  background-color: #DEF6FF;
}
.branche .nav-tabs {
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.branche .nav-tabs a {
  width: max-content;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #527893;
  border: 0;
  background-color: transparent;
  font-family: Changa-Bold;
  transition: all linear 0.3s !important;
  position: relative;
  padding: 0;
}
.branche .nav-tabs a:after {
  content: "";
  position: absolute;
  height: 5px;
  border-radius: 25px;
  background-color: var(--main);
  bottom: 0;
  width: 0;
  transition: all linear 0.3s !important;
}
.branche .nav-tabs a:hover, .branche .nav-tabs a.active {
  color: var(--main);
  background-color: transparent;
}
.branche .nav-tabs a:hover:after, .branche .nav-tabs a.active:after {
  width: 70px;
}
.branche .main-branche {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.branche .main-branche p, .branche .main-branche a {
  color: #000;
  margin-bottom: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 300% */
}
.branche .main-branche p i, .branche .main-branche a i {
  color: var(--main);
}

/*branche*/
/*footer*/
.button-s {
  display: flex;

}

footer {
  padding: 40px 0px 0px;
  position: relative;
    margin-top: 200px;
  background-image: url("../img/footer.png");
  background-repeat: no-repeat;
  background-size: 100% 101%;
}
footer:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: rgba(0, 32, 58, 0.9);
}
footer .container {
  position: relative;
  z-index: 1;
}
footer .right-foot {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .right-foot div {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .right-foot div i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sec);
  color: #FFF;
  border-radius: 50%;
  font-size: 16px;
}
footer .right-foot div a {
  color: #FFF;
  font-size: 16px;
}
footer .right-foot div .value {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 6px;
}
footer .top-foot {
  padding: 0 0 20px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.23); */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(to right, rgba(255,255,255,0.23), rgba(255,255,255,0.23));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 90% 1px;
}
footer .top-foot .left-foot {
  display: flex;
  align-items: center;
}
footer .footer-logo {
  margin-inline-end: 20px;
  text-align: center;
}
footer .footer-logo img {
  max-height: 150px;
  width: min(100%, 320px);
}
footer .who-footer p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #FFF;
  text-align: center;
}
footer .who-footer p p {
  margin-bottom: 0;
}
footer .who-footer .in-who-foot {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .who-footer .in-who-foot img {
  max-width: 65px;
  max-height: 65px;
}
footer .in-new-newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}
footer .location{
        display: flex;
       gap: 5px;
    text-transform: capitalize;
}
footer .location p{
    color:#FFF;
}
footer .location .r-loction:nth-of-type(2){
    padding: 0 5px;
    border-right: 1px solid rgba(255,255,255,0.23);
  border-left: 1px solid rgba(255,255,255,0.23);
}
footer .location .r-loction:last-of-type{
    border-right :0;
     border-left:0;
}
footer .location .r-loction:nth-of-type(1) iframe{
        border-end-start-radius: 10px;
            border-start-start-radius: 10px;
}
footer .location .r-loction:last-of-type iframe{
    border-end-end-radius: 10px;
    border-start-end-radius: 10px;
}
footer .location iframe {
  display: block;
  height: 200px;
  /*border-radius: 10px;*/
}
footer .social {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start;
}
footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFF;
  border-radius: 10px;
  transition: all linear 0.3s !important;
}
footer .social a:hover {
  color: var(--sec);
}
footer .new-cont {
  margin-bottom: 0px;
  text-align: start;
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .new-cont i {
  font-size: 22px;
  color: var(--sec);
}
footer .new-cont h5 {
  font-size: 16px;
  color: var(--sec);
  text-align: start;
  margin-bottom: 10px;
}
footer .new-cont a, footer .new-cont p {
  font-size: 16px;
  color: #FFF;
  text-align: start;
  display: block;
  margin-bottom: 0px;
}
footer .new-cont .r-phone {
  direction: ltr;
}
footer .bord {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
footer h2 {
  font-size: 20px;
  color: #FFF;
  margin-bottom: 22px;
}
footer .mid-foot ul {
  width: 100%;
  margin: 0;
  list-style-type: none;
  column-count: 2;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
footer .mid-foot ul li {
  list-style: none;
  text-align: start;
  display: block;
  margin-bottom: 20px;
}
footer .mid-foot ul li a {
  color: #FFF;
  font-size: 15px;
  text-align: center;
  display: inline-block;
  transition: all linear 0.3s !important;
}
footer .mid-foot ul li a:before {
  content: "-";
  font-weight: bold;
  color: #FFF;
  font-size: 20px;
  margin: 0 5px;
  transition: all linear 0.3s !important;
}
footer .mid-foot ul li a:hover {
  color: var(--sec);
}
footer .mid-foot ul li a:hover:before {
  color: var(--sec);
}
footer .us-foot .wpcf7 {
  direction: inherit;
}
footer .us-foot input {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  padding: 10px;
  color: #FFF;
}
footer .us-foot input::placeholder {
  color: #FFF;
}
footer .us-foot textarea {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  padding: 10px;
  color: #FFF;
}
footer .us-foot textarea::placeholder {
  color: #FFF;
}
footer .end-foot {
  background-color: transparent;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
footer .end-foot .in-end {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 20px 0;
  /*border-top: 1px solid rgba(255, 255, 255, 0.23);*/
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.23));
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 90% 1px;
}
footer .end-foot .in-end p {
  color: #FFF;
  font-size: 18px;
  margin-bottom: 0;
  text-align: center;
}
footer .end-foot .in-end p a {
  color: var(--sec);
  transition: all linear 0.3s !important;
}
footer .end-foot .in-end p a:hover {
  color: var(--sec);
}

/*footer*/
/*breadcrumb*/
.breadcrumb-area {
  padding: 30px 0;
}
.breadcrumb-area .bread-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.breadcrumb-area .bread-row h4 {
  color: #FFF;
  text-align: center;
  font-size: 68px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
}
.breadcrumb-area .bread-row .breadcrumb-links {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 28px;
  gap: 10px;
}
.breadcrumb-area .bread-row .breadcrumb-links h5, .breadcrumb-area .bread-row .breadcrumb-links a {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-family: Changa-Bold;
  margin-bottom: 0;
  line-height: 100px;
}

/*breadcrumb*/
.down-file {
  min-width: 150px;
  height: 45px;
  position: relative;
  border-radius: 500px;
  background-color: var(--main);
  padding: 10px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #FFF;
  margin-bottom: 30px;
}
.down-file:hover {
  color: #FFF;
}

/*single*/
.single-pages .main-header, .single_service .main-header {
  font-size: 48px;
  text-align: center;
}

.single-pages .bootom-side p {
  color: #000;
  text-align: justify;
}

.single-pages .bootom-side p iframe {
  width: 100%;
  height: 650px;
}

.single-pages .bootom-side.apply p {
  color: #000;
}

.single-pages .top-side {
  padding: 20px 0;
  text-align: center;
}

.single-pages .top-side img {
  max-width: 100%;
  max-height: 400px;
}

.single_service, .single-pages {
  padding: 120px 0 0;
}

.single_service .right_side_whous {
  margin: 20px 0;
  text-align: center;
}

.single_service .right_side_whous img {
  max-width: 100%;
  max-height: 300px;
}

.single_service .right_side_whous a {
  text-align: center;
  background: var(--main);
  color: #FFF;
  width: 100%;
  border-radius: 10px;
  margin: 10px 0 0;
  padding: 5px 0;
  display: inline-block;
  transition: linear 0.4s;
}

.single_service .right_side_whous a:hover {
  transition: linear 0.4s;
  background: var(--sec);
}

.partner {
  padding: 50px 0;

}
.partner .owl-nav {
  display: flex;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  gap: 25px;
  align-items: center;
  direction: rtl;
  justify-content: center;
}
.partner .owl-nav i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color:#A0C9DB;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.3s !important;
}
.partner .owl-nav i:hover {
  color: #FFF;
  background: var(--main);
}
.partner .owl-dots {
  display: flex;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.partner .owl-dots span {
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 18px;
  display: block;
  transition: all linear 0.3s !important;
}

.partner .owl-dots .owl-dot.active span {
  height: 29px;
  background: rgba(0, 0, 0, 0.87);
}

.part-item {
      width: 100%;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #FFF;
    box-shadow: 0 0 18px 10px rgba(0, 0, 0, 0.01);
    transition: all linear 0.3s !important;
    grid-column: span 1;
    grid-row: span 1;
}

.part-item img {
  width: 100% !important;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.part-item:hover {
  transition: all linear 0.3s !important;
}

.single-pages .wpcf7-form label {
  font-weight: bold;
  font-size: 0.9rem;
  color: #161616;
  position: relative;
  margin-bottom: 0.5rem;
  display: block;
}

.single-pages .wpcf7-form .form-row {
  display: flex;
  gap: 1rem;
}

@media (max-width: 767.98px) {
  .single-pages .wpcf7-form .form-row {
    flex-direction: column;
  }
}
.single-pages .wpcf7-form .form-group {
  margin-bottom: 1rem;
  width: 100%;
}

.single-pages .wpcf7-form .wpcf7-form-control {
  background-color: #fff;
  border: 1px solid #d1f3e0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.9rem;
}

.single-pages .wpcf7-form .wpcf7-form-control:focus {
  outline: none;
  border-color: #38a169;
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.15);
}

.single-pages .wpcf7-form textarea.wpcf7-textarea {
  height: 200px;
  resize: unset;
}

.single-pages .wpcf7-form .form-submit-wrapper {
  text-align: left;
}

.single-pages .wpcf7-form .wpcf7-submit {
  background: none;
  border: none;
  color: #FFF;
  font-weight: bold;
  border-radius: 23px;
  background: var(--main);
  display: inline-flex;
  align-items: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.single-pages .wpcf7-form .wpcf7-submit::before {
  content: "←";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #e6f4ea;
  color: #38a169;
  border-radius: 50%;
  margin-left: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.single-pages .wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

.single-pages .wpcf7-form .wpcf7-submit:hover::before {
  background-color: #38a169;
  color: white;
}

.main-img-proj {
width: 50%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    margin: 0 auto;
    display: table;
}

.sec-img-proj {
  width: 100%;
  height: 144px;
  border-radius: 10px;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.po-relative {
  position: relative;
  height: 100%;
  display: block;
}

.po-relative::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
}

.last-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.thr-tit {
  color: var(--main);
}

.sin-deat {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid var(--main);
}
.sin-deat p {
  margin-bottom: 0;
  color: var(--main);
  font-family: Changa-Bold;
}
.sin-deat span {
  color: #000;
}
.new-tab-pane:nth-of-type(even) .farms-cont{
  flex-direction: row-reverse;
}
.feature-graph.sing img{
  height: 450px;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px;
}
.farms .l-farms {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  gap: 20px;
  height: 100%;
  background-color: transparent;
}

.farms .l-farms .nav-tabs {
  border-bottom: 0;
  flex-direction: column;
  width: 100%;
}

.farms .l-farms .nav-tabs h2 {
  color: var(--main);
  font-size: 48.822px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.537px;
}

.farms .l-farms .nav-tabs .nav-item .nav-link {
  color: #000;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  margin: 0;
  border-radius: 0;
  transition: all linear 0.3s !important;
  opacity: 0.5;
  border-top: 1px solid var(--main);
}

.farms .l-farms .nav-tabs .nav-item .nav-link i, .farms .l-farms .nav-tabs .nav-item .nav-link svg {
  font-size: 22px;
}

.farms .l-farms .nav-tabs .nav-item .nav-link.active, .farms .l-farms .nav-tabs .nav-item .nav-link:hover {
  background: var(--main);
  opacity: 1;
  color: #FFF;
}

.farms .l-farms .nav-tabs .nav-item:nth-last-of-type(1) .nav-link {
  border-bottom: 1px solid var(--main);
}

.farms .r-farms .farms-cont {
  position: relative;
  height: 100%;
}

.farms .r-farms .farms-cont img {
  width: 100%;
  height: 355px;
  object-fit: cover;
  border-radius: 20px ;
}

.farms .r-farms .farms-cont .bot-farm {
    padding: 10px 3%;
    border-radius:  20px;
}

.farms .r-farms .farms-cont .bot-farm p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.176px;
}

/* Styling قريب من شكل الصورة */
.jobs-table thead th {
  font-weight: 600;
  border-bottom: 1px solid #e9ecef;
  padding: 14px 12px;
  white-space: nowrap;
}

.jobs-table tbody td {
  border-bottom: 1px solid #f1f3f5;
  padding: 16px 12px;
  vertical-align: middle;
}

.jobs-title a {
  color: inherit;
  text-decoration: none;
  font-family: Changa-Bold;
  transition: all linear 0.3s !important;
}

.jobs-title a:hover {
  color: var(--main);
}

.jobs-date {
  white-space: nowrap;
}

.apply-box {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}

#jobsArchiveTabs {
  justify-content: center;
  border-bottom: 0;
  gap: 15px;
}
#jobsArchiveTabs a {
  border: 1px solid var(--main);
  color: #000;
  border-radius: 20px;
  font-family: Changa-Bold;
  transition: all linear 0.3s !important;
}
#jobsArchiveTabs a.active, #jobsArchiveTabs a:hover {
  border-color: transparent;
  background-color: var(--main);
  color: #FFF;
}

.is-readonly {
  background: #f7f7f7;
  cursor: not-allowed;
}

.wpcf7 {
  direction: inherit;
}

.head-banner {
  width: 100%;
  height: 250px;
  position: relative;
}
.head-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}
.head-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.head-banner h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 34px;
  z-index: 2;
}

.right-cont {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}
.right-cont div {
  display: flex;
  align-items: center;
  gap: 15px;
}
.right-cont .phone-email{
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  min-width: max(70%, 550px);
  max-width: 100% ;
}
.right-cont div i {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 26px;
  border-radius: 5px;
  background-color: #f2f8f5;
  border: 1px solid rgba(121, 121, 121, .2);
}
.right-cont div a, .right-cont div p{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--main);
  margin-bottom: 0;
}
.right-cont div .value {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 0px;
  flex:1;
}

.who-item {
  position: relative;
  height: 350px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.who-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.who-item .in-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 15px 20px;
}
.who-item .in-item a {
  font-size: 24px;
  color: #FFF;
  font-family: Changa-Bold;
}
.who-item .in-item a:hover {
  color: #FFF;
}
.tax-product_taxonomy .wrap ,.single-product .wrap{
  overflow: visible;
}
.side-categories{
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}
.side-categories a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 10px;
  width: 100%;
  background-color: #CCC;
  color:#FFF;
  border-radius: 5px;
  transition: all linear .3s !important;
}
.side-categories a:hover{
  background-color: var(--main);
}
html[dir=rtl] .side-categories a i{transform: scale(-1) !important;}
/*single*/
html[dir=rtl] .project .d-flex a i {
  transform: scale(-1);
}
html[dir=rtl] footer{
  background-image: url("../img/footer-en.png");
}
html[dir=rtl] footer .top-foot{
  background-position: right bottom;
}
html[dir=rtl] footer .end-foot .in-end{
  background-position: right top;
}
html[dir=rtl] .service-item a i,html[dir=rtl] .item-customers .in-item a i, html[dir=rtl] .item-gall .in-item a i, html[dir=rtl] .item-gall .in-item a i, html[dir=rtl] .farms .l-farms .nav-tabs .nav-item .nav-link i, html[dir=rtl] .farms .l-farms .nav-tabs .nav-item .nav-link svg {
  transform: scalex(-1);
}
html[dir=rtl] .main-header span {
  display: none !important;
}
html[dir=rtl] .product-item a i {
  transform: rotate(45deg) scaleX(-1);
}
html[dir=rtl] .product-item a:hover i {
  transform: rotate(0deg) scaleX(-1);
}
html[dir=rtl] .service .owl-nav {
  right: unset;
  left: 0;
}
html[dir=rtl] .branche .nav-tabs a:after {
  right: 0;
}
html[dir=rtl] .dropdown-toggle::after {
  display: none !important;
}
html[dir=rtl] .dropdown-toggle::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
html[dir=rtl] .fixed-social {
  right: 40px;
}
html[dir=rtl] .wpcf7 input[type=url], html[dir=rtl] .wpcf7 input[type=email], html[dir=rtl] .wpcf7 input[type=tel] {
  direction: rtl;
}
html[dir=rtl] .main-hover:before {
  left: 0;
}

html[lang=en-US] #search-submit {
  left: unset;
  right: 0;
}
html[lang=en-US] .branche .nav-tabs a:after {
  left: 0;
}
html[lang=en-US] .contact-section .contact-info-card, html[lang=en-US] .contact-section .contact-form-wrapper .wpcf7-form .wpcf7-form-control, html[lang=en-US] .single-pages .wpcf7-form .wpcf7-form-control {
  direction: ltr;
}
html[lang=en-US] .main-hover:before {
  left: -13px;
  content: "\f178";
  right: unset;
}
html[lang=en-US] .main-hover:hover:before {
  left: 86%;
  right: unset;
}
html[lang=en-US] .why-us .timeline-wrapper::before {
  right: unset;
  left: 27px;
}
html[lang=en-US] .fixed-social {
  left: 40px;
}
html[lang=en-US] .form-control {
  text-align: left;
}
html[lang=en-US] .online-card .in-item {
  padding: 10px 15px;
}
@media (max-width: 991px) {
  html[lang=en-US] .why-us .timeline-wrapper::before {
    right: unset;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav-list > .link > a {
    padding: 13px 0px;
    margin: 0 5px;
  }
}
@media (min-width: 1550px){
  .features-section,.service,.gallery,.customers,.committed{
    min-height: auto;
    padding: 80px 0;
  }
  /*.features-section .feature-graph:before{
    left:10%
  }
  html[dir='rtl'] .features-section .feature-graph:before{
    right:10%
  }*/
}
@media (min-width: 1100px){
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 5%;
    }
}
@media (max-width: 991px) {
    .main-img-proj{
            width: 100%;
    }
  header .top-head .top-top .fir-con, footer .top-foot, footer .top-foot .right-foot {
    flex-direction: column;
    align-items: self-start;
    gap: 15px;
  }
  .col-product:nth-of-type(odd) {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .sector-item {
    flex-direction: column !important;
  }
  .sector-item .img-sector {
    padding: 0px !important;
    border-inline-end: 0px solid var(--main) !important;
    border-inline-start: 0px solid var(--main) !important;
    margin: 0px 0 10px !important;
    border-bottom: 2px solid var(--main);
  }
  .slide-main-content p {
    font-size: 16px;
  }
  .bloog .s-blog{
    padding: 0 5%;
    margin-bottom: 20px;
  }
  .hero-section .owl-dots {
    top: 67%;
  }
  .info-box {
    width: 100% !important;
  }
  .project, .gallery {
    padding: 35px 0;
  }
  footer .right-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .business .business-content .col-lg-6:nth-of-type(1){
    background-position: bottom center;
    background-size: 70% 1px;
  }
  .committed .cont-committed h2{
    font-size: 22px;
    line-height: normal;
  }
  .committed .cont-committed{
    margin-bottom: 20px;
  }
  .right-cont div i {
    width: 60px;
    height: 60px;
  }
  .right-cont div a {
    font-size: 16px;
  }
  .partner {
    padding: 35px 0 50px;
  }
  .customers .owl-nav {
    display: none;
  }
  header .top-head .top-top {
    padding: 7px 10px;
  }
  header .menu-icons .new-lang {
    display: none;
  }
  .main-header {
    font-size: 32px;
  }
  .project .d-flex a {
    font-size: 16px;
  }
  .accordion-owl .owl-item,.accordion-owl {
    height: 400px;
  }
  .accordion-owl .owl-item:hover {
    height: 400px;
  }
  .project .d-flex a i {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .main-slide, .hero-section {
    height: 450px;
  }
  .slide-content{
    padding: 0 7% ;
  }
  footer h2 {
    margin-top: 20px;
  }
  .single_service, .single-pages {
    padding: 40px 0 !important;
  }
  .why-us .timeline-wrapper::before {
    right: 57px;
  }
  .contact-section .contact-form-wrapper:before {
    width: 100%;
  }
  .main-slider .item .in-item h2 {
    line-height: 55px;
    font-size: 38px;
  }
  .hero .main-slider .item h2 {
    font-size: 28px;
    line-height: 40px;
  }
  header .logo img {
    max-width: 140px;
  }
  .main-hover {
    width: 150px;
    height: 40px;
  }
  footer .bord ,footer .location .r-loction:nth-of-type(2){
    border: 0;
  }
  footer .location{
          flex-direction: column;
  }
  footer .location .r-loction:nth-of-type(2){
      padding:  5px 0;
      border-top: 1px solid rgba(255,255,255,0.23);
  border-bottom: 1px solid rgba(255,255,255,0.23);
  }
  .branche .main-branche {
    flex-direction: column;
  }
  .branche .main-branche p, .branche .main-branche a {
    font-size: 16px;
  }
  .breadcrumb-area .bread-row h4 {
    font-size: 38px;
  }
  .breadcrumb-area .bread-row .breadcrumb-links h5, .breadcrumb-area .bread-row .breadcrumb-links a {
    font-size: 18px;
  }
  .fixed-social i, .fixed-social img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  html[dir=rtl] .fixed-social {
    right: 20px;
  }
  html[lang=en-US] .fixed-social {
    left: 20px;
  }
}
/*upload*/
.upload-main-wrapper {
  width: 220px;
  margin: 0 auto;
}

#file-upload-name {
  margin: 4px 0 0 0;
  font-size: 12px;
}

.upload-wrapper, .upload-wrapper2, .upload-wrapper3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px auto 20px;
  position: relative;
  cursor: pointer;
  width: 20%;
  background-color: var(--main);
  padding: 13px 10px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s linear all;
  color: #ffffff;
}

.upload-wrapper input[type=file], .upload-wrapper2 input[type=file], .upload-wrapper3 input[type=file] {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 1;
}

.upload-wrapper svg, .upload-wrapper2 svg, .upload-wrapper3 svg {
  width: 50px;
  height: auto;
  cursor: pointer;
}

.upload-wrapper.success svg, .upload-wrapper2.success svg, .upload-wrapper3.success svg {
  transform: translateX(-200px);
  display: none;
}

.upload-wrapper.uploaded, .upload-wrapper2.uploaded, .upload-wrapper3.uploaded {
  transition: 0.2s linear all;
  width: 60px;
  border-radius: 50%;
  height: 60px;
  text-align: center;
}

.upload-wrapper label, .upload-wrapper2 label, .upload-wrapper3 .label {
  opacity: 1;
  visibility: visible;
  transition: 0.2s linear all;
}

.upload-wrapper .file-upload-text, .upload-wrapper2 .file-upload-text, .upload-wrapper3 .file-upload-text {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.upload-wrapper.uploaded .file-upload-text, .upload-wrapper2.uploaded .file-upload-text, .upload-wrapper3.uploaded .file-upload-text {
  text-indent: -999px;
  margin: 0;
}

.upload-wrapper br,.upload-wrapper p {
  margin-bottom: 0;
}

.file-success-text {
  opacity: 0;
  transition: 0.2s linear all;
  visibility: hidden;
  transform: translateX(200px);
  position: absolute;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-success-text svg {
  width: 25px;
  height: auto;
}

.file-success-text span {
  margin-inline-start: 15px;
}

.upload-wrapper.success .file-success-text, .upload-wrapper3.success .file-success-text, .upload-wrapper2.success .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.upload-wrapper.success.uploaded .file-success-text, .upload-wrapper2.success.uploaded .file-success-text, .upload-wrapper3.success.uploaded .file-success-text {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.upload-wrapper.success.uploaded .file-success-text span, .upload-wrapper3.success.uploaded .file-success-text span, .upload-wrapper2.success.uploaded .file-success-text span {
  display: none;
}

.upload-wrapper .file-success-text circle {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: 1s linear all;
  transition-delay: 1.4s;
}

.upload-wrapper.success .file-success-text circle {
  stroke-dashoffset: 0;
}

.upload-wrapper .file-success-text polyline {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: 1s linear all;
  transition-delay: 2s;
}

.upload-wrapper.success .file-success-text polyline {
  stroke-dashoffset: 0;
}

.upload-wrapper.success .file-upload-text, .upload-wrapper2.success .file-upload-text, .upload-wrapper3.success .file-upload-text {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.upload-wrapper label, .upload-wrapper2 label, .upload-wrapper3 label {
  margin: 0 !important;
  color:#FFF;
}

.upload-wrapper span.wpcf7-form-control-wrap, .upload-wrapper2 span.wpcf7-form-control-wrap, .upload-wrapper3 span.wpcf7-form-control-wrap {
  position: unset;
}

.upload-wrapper p, .upload-wrapper2 p, .upload-wrapper3 p, .upload-wrapper br, .upload-wrapper2 br, .upload-wrapper3 br {
  /*display: none;*/
}

.upload-wrapper.success label, .upload-wrapper3.success label, .upload-wrapper2.success label{
  opacity:0;
}

.upload-wrapper.uploaded label, .upload-wrapper3.uploaded label, .upload-wrapper2.uploaded label {
  display: none;
}
html[lang=en-US] .file-success-text{
  left: unset;
  right:30px;
}
/*upload*/
.new-connect-us{
  padding: 30px 25px 50px;
  background-color: #f2f8f5;
  border: 1px solid rgba(98, 94, 88, .15);
  border-radius: 20px;
  height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.new-connect-us h2{
  color:#000;
  font-size: 34px;
      margin-bottom: 35px;
}
.new-left-side span{
  font-weight: 600;
  font-size: 14px;
  display: block;
  padding-bottom: 17px;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--main);
}
.new-left-side span:before{
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-inline-end: 5px;
  transform: translateY(-3px);
  background-color: var(--main);
}
.right-cont h3 {
  margin: 0;
}
.right-cont h3 span{
  font-size: 14px;
  padding-top: 0px;
  font-weight: 400;
  line-height: 1.6;
  display: block;
  color: #797979;
}
/*new-loader*/
:root{
  --loader-bg: #000;
  --loader-text: #FFF;
  --loader-stroke: #fff;  /* لون الخط */
  --loader-accent: #d2c628; /* أخضر */
}
/* ✅ إخفاء اللودر لو sessionStorage موجود */
html.khalifa-loader-skip .khalifa-loader {
    display: none !important;
    opacity: 0 !important;
}

html.khalifa-loader-skip,
html.khalifa-loader-skip body {
    overflow: auto !important;
}
.khalifa-loader-skip .tax-product_taxonomy ,.khalifa-loader-skip .single-product {
    overflow: visible !important;
}
/* الكود الأصلي */
html.khalifa-loading,
body.khalifa-loading { 
    overflow: hidden !important; 
}

.khalifa-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: var(--loader-bg);
    opacity: 1;
}

.khalifa-loader__logo {
        position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    width: auto;
    max-width: 70vw;
    height: auto;
    max-height: 150px;
    opacity: 0;
}

.khalifa-loader__word {
    position: absolute;
    left: 6%;
    bottom: 36%;
    color: var(--loader-text);
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: capitalize;
    font-size: clamp(22px, 3.4vw, 46px);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(26px);
}

#brand-line-svg {
    position: fixed;
    left: 0;
    bottom: 10%;
    width: 100vw;
    height: 220px;
    display: block;
    pointer-events: none;
    opacity: 0;
}

#brand-line-svg path,
#brand-line-svg line {
    stroke: var(--loader-stroke);
    fill: none;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

@media (prefers-reduced-motion: reduce) {
    #brand-line-svg { opacity: 1 !important; }
    .khalifa-loader__logo,
    .khalifa-loader__word { 
        opacity: 1 !important; 
        transform: none !important; 
    }
}

/*# sourceMappingURL=main.css.map */
