@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
:root{
    --main-color:#f04814cf;
    --color-default: #fff;
    --color-secondary: #161718;
    --black : #000;
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition:all .2s linear;
    transition:width none;
    scroll-behavior: smooth;
    font-family: "Tajawal", sans-serif;
  }

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width:1rem;
}

html::-webkit-scrollbar-track{
    background:transparent;
}

html::-webkit-scrollbar-thumb{
    background:  var(--main-color);
}
body{
    direction: rtl;
    overflow-x: hidden;
    color: var(--color-default);
    background: url('../img/bg.png')
}
a{
    text-decoration: none;
}
section{
    padding: 50px 0;
}
.section-title {
  font-size: 48px; 
  color: white;
  padding: 20px;
  position: relative;
  display: inline-block; 
}
.section-title h2 {
  font-size: 3rem !important;
  font-weight: bolder !important;

}

.section-title::before {
  content: '';
  position: absolute;
  right: 15px;
  top: 30%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: 50%;
  z-index: 0;
  background-color: transparent;
}

.section-title::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 34%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #f15a29;
  border-radius: 50%;
  z-index: -1;
}


@media (max-width:991px){

    html{
        font-size: 55%;
    }
}
@media (max-width:768px){

    html{
        scroll-padding-top: 0;
    }
}
@media (max-width:450px){

    html{
        font-size: 50%;
    }

}
.swal2-html-container{
    font-size: 2rem !important;
}
.progressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: var(--main-color);
    width: 0%;
    z-index: 100;
    transition: width 0.2s ease-out;
}
  /*Scroll Top*/
  #scroll_top{
    position: fixed;
    bottom: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--main-color);
    cursor: pointer;
    z-index: 4;
    border-radius: 50%;
    font-size: 3rem;
    font-weight: 800;
    transition: 1s;
    transform: rotate(-90deg);
    right: 10px;
    bottom: -60px;
}
#scroll_top:hover{
    background: transparent;
    color: var(--main-color);
    transform: scale(1.1) rotate(-90deg) translateX(10px);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* Optional background color */
  background-image: url('../img/bg/statistics-bg.png');
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader-logo {
  opacity: 1;
  animation: pulse 2s infinite ease-in-out; /* Pulsing opacity effect */
  transition: transform 1s ease-out, opacity 0.5s ease-out;
}
@media (max-width : 767px){
  .preloader-logo {
    width: 80%;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

#preloader.loaded .preloader-logo {
  transform: scale(1.5); 
  opacity: 0; 
  animation: none;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

body {
  overflow: hidden; 
}

body.loaded {
  overflow: auto; 
}

/* Header */
  .header {
    height: 75px;
    transition: all 0.5s;
    z-index: 9;
    padding: 0;
    background-color: transparent; 
    box-shadow: none; 
  }

  .header.scrolled {
    background-color: #fff; 
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); 
  }

  .header.scrolled .logo img {
    content: url('../img/logo.png'); 
}
  .header .logo {
    transition: 0.3s;
  }

  .header .logo img {
    width: 110px;
    margin-right: 8px;
  }

  .header .logo h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 400;
    color: #fff;

  }

  .header .logo i {
    font-size: 32px;
    margin-right: 8px;
    line-height: 0;
  }

  @media (max-width: 575px) {
    .header .logo h1 {
      font-size: 26px;
    }

    .header .logo i {
      font-size: 24px;
    }
  }

  .header .header-social-links {
    padding-right: 15px;
  }

  .header .header-social-links a {
    color: white;
    padding-left: 15px;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
    font-size: 20px;
  }
  .header.scrolled .header-social-links a ,
  .header.scrolled .navbar a,
  .header.scrolled .navbar a:focus
  {
    color: rgb(0 0 0 / 50%);
  }

  .header .header-social-links a:hover {
    color: var(--main-color);
  }

  @media (max-width: 575px) {
    .header .header-social-links a {
      padding-left: 5px;
    }
  }
  @media (min-width: 1280px) {
    .navbar {
      padding: 0;
    }

    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }

    .navbar li {
      position: relative;
    }

    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0 10px 30px;
      text-transform: uppercase;
      letter-spacing: 0px;
      font-size: 20px;
      font-weight: 400;
      color: white;
      white-space: nowrap;
      transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }

    .navbar a:hover,
    .navbar li:hover>a {
      color: #000;
    }

    .navbar .active,
    .navbar .active:focus{
        color: var(--main-color) !important;
    }
    .navbar .dropdown ul {
      display: block;
      position: absolute;
      left: 14px;
      top: calc(100% + 30px);
      margin: 0;
      padding: 10px 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      background: var(--color-secondary);
      transition: 0.3s;
      border-radius: 4px;
    }

    .navbar .dropdown ul li {
      min-width: 200px;
    }

    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      font-weight: 400;
    }

    .navbar .dropdown ul a i {
      font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
      color: #fff;
    }

    .navbar .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
      top: 0;
      left: calc(100% - 30px);
      visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: 100%;
      visibility: visible;
    }
  }

  @media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }

  @media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
      display: none;
    }
    .navbar li#navbar_logo {
        display: none;
      }
  }
/* Mobile */
  @media (max-width: 1279px) {
    .navbar {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 400px;
      bottom: 0;
      transition: 0.3s;
      z-index: 9997;
    }

    .navbar ul {
      position: absolute;
      inset: 0;
      padding: 50px 0 10px 0;
      margin: 0;
      background: rgb(255 255 255 / 90%);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
        font-size: 20px;
      text-transform: uppercase;
      font-weight: 400;
      color: rgba(0, 0, 0, 0.5);
      letter-spacing: 1px;
      white-space: nowrap;
      transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
      color: #000;
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
      position: static;
      display: none;
      padding: 10px 0;
      margin: 10px 20px;
      transition: all 0.5s ease-in-out;
      border: 1px solid black;
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
      display: block;
    }

    .mobile-nav-show {
      color: var(--main-color);
      font-size: 28px;
      cursor: pointer;
      line-height: 0;
      transition: 0.5s;
      z-index: 9999;
      margin: 0 10px 0 10px;
    }

    .mobile-nav-hide {
      color: #000;
      font-size: 32px;
      cursor: pointer;
      line-height: 0;
      transition: 0.5s;
      position: fixed;
      left: 20px;
      top: 20px;
      z-index: 9999;
    }

    .mobile-nav-active {
      overflow: hidden;
    }

    .mobile-nav-active .navbar {
      right: 0;
    }

    .mobile-nav-active .navbar:before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(22, 23, 24, 0.8);
      z-index: 9996;
    }
    .navbar li#navbar_logo img{
        width: 50%;
        padding: 10px 20px;
    }
  }

  .hero {
    width: 100%;
    min-height: 100vh;
    background-size: cover !important;
    background: url('../img/hero-bg.png');
    position: relative;
    padding: 140px 0 60px 0;
    overflow: hidden;
  }
  .hero .hero-logo{
    width: 230px;
    margin-bottom: 40px;
  }
  .hero h2 {
    margin: 0 0 10px 0;
    font-size: 38px;
    font-weight: 700;
    color: #fff;

  }

  .hero h2 span {
    position: relative;
    z-index: 1;
    padding: 0 10px;
    display: inline-block;
    color: white;
  }

  .hero h2 span:before {
    content: "";
    border-radius: 4px;
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--main-color);
    z-index: -1;
  }

  .hero p {
    color: white;
    margin-bottom: 30px;
    font-size: 18px;
  }

  .hero .btn-get-started {
    font-weight: 400;
    font-size: 22px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 4px;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid var(--main-color);
    color: white;
    background: var(--main-color);
  }

  .hero .btn-get-started:hover {
    background: transparent;
    border: 1px solid  var(--main-color);
    color:  var(--main-color);
  }
  .hero .arrow{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    bottom: 30px;
  }
  .hero .arrow a{
    cursor: pointer;
    font-size: 35px;
    color: var(--main-color);
  }
  .hero .arrow a:hover{
    transform: translateY(10px);
  }
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 32px;
    }
  }
/* Message - Vision */
.message-vision{
  background: url('../img/mv-bg.png');
  background-size: cover !important;
    position: relative;
    padding: 50px 0;
}
.message-vision .image-content{
    display: flex;
    align-items: center;
    justify-content: center;
}
.message-vision .image-content img{
    width: 70%;
}
.message-vision .text-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.message-vision .text-content .message ,
.message-vision .text-content .vision{
    position: relative;
    width: 80%;
    padding: 20px;
    border: 1px solid #777;
    border-radius: 4px;
}
.message-vision .text-content .message:hover ,
.message-vision .text-content .vision:hover{
    transform: scale(1.05);
    border-color: var(--main-color);
}
.message-vision .text-content .message .icon ,
.message-vision .text-content .vision .icon{
    color: var(--main-color);
    position: absolute;
    font-size: 6rem;
    left: 0;
    top: 0;
}
.message-vision .text-content .message h2,
.message-vision .text-content .vision h2{
    font-weight: bold;
    font-size: 3.2rem;
}
.message-vision .text-content .message p,
.message-vision .text-content .vision p{
    font-size: 1.6rem;
}
/* advantages */
.advantages{
    position: relative;
    padding: 150px 0;
}
.advantages img.advantages-icon{
  background: #d64215;
  padding: 7px;
  border-radius: 10px;
  width: 40px;
}
.advantages .cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.advantages .cards .advantage-card{
    width: 28%;
    border: 1px solid #777;
    border-radius: 4px;
    padding: 20px;
}
.advantages .cards .advantage-card:hover{
    transform: scale(1.05);
    border-color: var(--main-color);
}
.advantages .cards .advantage-card h2{
    font-size: 3.2rem;
    font-weight: bold;
}
.advantages .cards .advantage-card h2 i{
    position: relative;
    top: -8px;
    background: var(--main-color);
    border-radius: 4px;
    padding: 5px;
    margin-right: 10px;
    color: white;
    font-size: 2.4rem;
}
.advantages .cards .advantage-card p{
    font-size: 1.6rem;
    text-align: justify;
}
.advantages .cards .advantage-card hr{
    height: 4px;
    background-color: var(--main-color);
    margin-bottom: 20px;
    border: none;
    opacity: 1;
    border-radius: 4px;
}

/* services */
.services{
    padding: 50px 0;
    position: relative;
}
.services .container{
    background: #f04714e0;
    padding: 10px 25px;
    border-radius: 12px;
}
.services .services-desc{
  font-size: 1.4rem;
}
.services .services-category-icon{
  width: 40px;
}
.services  ul{
    list-style: none;
    counter-reset: item;
}
.services  li{
  position: relative;
  font-size: 1.3rem;
  color: white;
  counter-increment: item;
  margin: 10px 0;
  font-weight: 400;

}
.services i:after{
  content: '';
  background-color: #ffffff7d;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 4px;
  top: 12px;
  z-index: -1;
  }
.services i {
  margin-right: 9px;
  color: white;
  font-size: 2.2rem;
  margin-left: 5px;
  } 

  .company-advantages .text-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }



.portfolio .section-title p{
    font-size: 18px;
}
.portfolio .portfolio-item {
    margin-bottom: 30px;
  }

  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
  }

  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }

  .portfolio #portfolio-flters li:hover,
  .portfolio #portfolio-flters li.filter-active {
    color: var(--main-color);
  }

  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }

  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    height: 350px;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 4px;
  }
  .portfolio .portfolio-wrap img {
    max-width: 100%;
    height: 425px;
    width: 100%;
    object-fit: cover;
  }
  .portfolio .portfolio-wrap::before {
    content: "";
    background: #000000bb;
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }

  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }

  .portfolio .portfolio-wrap .portfolio-info p {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
  }

  .portfolio .portfolio-wrap .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
  }

  .portfolio .portfolio-wrap .portfolio-links a {
    color: var(--main-color);
    margin: 0 2px;
    font-size: 24px;
    display: inline-block;
    transition: 0.3s;
    background: #eaf8ff;
    border-radius: 50px;
    line-height: 0;
    padding: 6px;
  }

  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #fff;
    color: var(--main-color);
  }

  .portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
  }

  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    top: calc(50% - 48px);
  }

  .portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    bottom: calc(50% - 50px);
  }

  .portfolio-details {
    padding-top: 40px;
  }

  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }

  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(54, 65, 70, 0.08);
  }

  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }

  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }

  .portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
  }

  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }

  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .portfolio-details .portfolio-description p {
    padding: 0;
  }
  .hidden {
    display: none;
}
#load-more{
  background-color: var(--main-color) !important;
  color: white;
  border: none;
  transition: .5s;
}
#load-more:hover{
  transform: scale(1.05);
  border: none;
}
  .gdesc-inner{
    display: none;
  }
/* Customers */
.gallery{
    position: relative;
    padding: 150px 0;
}

.gallery .images{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .gallery .partner-image{
  width: 100%;
} */

.gallery .section-title p{
    font-size: 16px;
}
.gallery .single-image{
    display: flex;
    justify-content: center;
    margin-top: 75px;
    margin-bottom: 20px;
}
.gallery .single-image img{
    width: 40%;
}
.gallery .owl-carousel .owl-item img{
  display: block;
  width: 80%;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
}
.gallery .owl-carousel .owl-item img:hover{
    transform: scale(1.05);
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination button {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
}

.pagination .active {
  background: #007bff;
  color: #fff;
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}


/* Footer */
footer {
  border-radius: 8px;
    padding:  50px 0;
    background-color: white;
    position: relative;
    top: -80px;
 }
 footer .btn-footer{
  font-weight: 400;
  font-size: 1.4rem;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: 0.3s;
  border: 1px solid var(--main-color);
  color: white;
  background: var(--main-color);
 }
 @media (min-width:768px){
   footer .col-md-4{
    display: flex;
    justify-content: center;
    align-items: baseline;
 }
 }

    footer > .row > .col-md-4:nth-of-type(2) {
      position: relative; }
      footer > .row > .col-md-4:nth-of-type(2)::after {
        content: "";
        display: block;
        height: 100%;
        width: 1px;
        background-color: #000;
        position: absolute;
        inset-inline-end: 0;
        inset-block-start: 0; }
    footer img {
      width: 170px; }
    footer h4 {
        font-size: 2rem;
        font-weight: bold;
        color: black;
    }
    footer ul {
      padding: 0;
      list-style: none;
    }
      footer ul li {
        font-size: 1.6rem;
        font-weight: 500;
        color: white
    }
    footer ul li a,
    footer ul li a:hover{
        color: black;
    }
    footer ul li:hover {
        color: var(--main-color);
    }
    footer ul li i{
        margin-left: 10px;
        color: var(--main-color);

    }
    footer .social-media {
        margin-top: 25px;
        display: flex;
        justify-content: start;
    }
    footer .social-media a i{
      color: white;
      font-size: 1.8rem;
      background: var(--main-color);
      padding: 12px;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .5s;
    }
    footer .social-media a i:hover,
    footer .btn-footer:hover
    {
        transform: scale(1.05);
    }
    footer .border-right{
      border-right:1px solid #000;
    }
    .rights{
      font-size: 2rem !important;
      text-align: center;
      padding: 20px 0;
      margin: 0;
      position: relative;
      top: -50px;
    }

        @media (max-width:768px){
            footer > .row > .col-md-4:nth-of-type(2)::after{
                content: "";
                display: block;
                height: 2px;
                width: 34%;
                background-color: black;
                position: absolute;
                inset-inline-start: 0;
                inset-block-start: 110px;
            }
            footer img{
                width: 200px;
                display: block;
                }
            footer h4{
                text-align: right !important;
                margin-top: 30px;
            }
            footer .social-media{
                justify-content: flex-start;
            }
            footer .border-right{
              border-right:none;
            }
        }

        /* Silder */      
      .slider-section {
         padding: 0;
          position: relative;
      }
      .slider-section .slide-content {
        width: 100%;
    }
      .slider-section .hero-logo {
        width: 150px !important;
      }
      
      .static-logo {
          position: absolute;
          top: 70px;
          left: 20px;
          z-index: 1000;
      }
      
      .static-logo img {
          width: 50px;
          height: auto;
      }
      
      .owl-carousel .item {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        height: 90vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }
      
      .text-content {
        display: flex;
        max-width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 70%);
        padding: 20px 100px 50px 0;
        border-radius: 10px;
        width: 100%;
        justify-content: start;
        flex-direction: row-reverse;
    }    
    .text-content .text{
      margin-right: 20px;
    }
      
      .slide-title {
          font-size: 24px;
          margin-bottom: 10px;
      }
      
      .slide-date {
          font-size: 16px;
          margin-bottom: 20px;
      }
      
      .slide-desc {
          font-size: 18px;
          margin-bottom: 20px;
      }
      
      .logo-and-button {
        display: flex;
        align-items: center;
        gap: 20px;
        padding-left: 40px;
        border-left: 3px solid var(--main-color);
        flex-direction: column;
        justify-content: center;
      }
      
      .company-logo {
          width: 50px;
          height: auto;
          margin-right: 10px;
      }
      
      .slide-button {
        padding: 10px 20px;
        background-color: var(--main-color);
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        transition: 0.3s ease;
      }
      
      .slide-button:hover {
          transform: scale(1.05);
          color: white;
      }
      @media(max-width:776px){
        .text-content{
          display: flex;
          max-width: 100%;
          background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 70%);
          padding: 20px 0 50px 0;
          border-radius: 10px;
          width: 100%;
          justify-content: start;
          flex-direction: column-reverse;
        }
        .logo-and-button{
          display: flex;
          align-items: flex-start;
          gap: 20px;
          padding-left: 40px;
          flex-direction: column;
          justify-content: center;
          margin-bottom: 25px;
          padding: 20px 0;
          border-left: none
        }
        img.logo-and-button {
          margin: 0 !important;
        }
      }
      
      /* statistics */
      .statistics{
        background-color: white;
        background-image: url('../img/bg/statistics-bg.png');
        padding: 75px  0;
        background-size: cover;
      }
      .statistics .statistics-icon{
        width: 35px;
        margin: 0 10px;
      }
      .stat-item {
        font-size: 24px;
        color: #e74c3c; 
    }
    
    .image-container img {
        max-width: 100%;
        height: auto;
    }
    
    .count {
        font-size: 48px;
        font-weight: bold;
    }

    .partners-slider-mobile{
      display:  none !important;
    }
/* Responsive */
@media (max-width:991px){



}
@media (max-width:768px){
    .header .header-social-links{
        display: none;
    }
    .message-vision .image-content img{
        display: none;
    }
    .message-vision .text-content .message,
    .message-vision .text-content .vision{
        width: 90%;
        margin: 15px 0;
    }
    .advantages .cards{
        flex-direction: column;
    }
    .advantages .cards .advantage-card{
        margin: 15px 0;
        width: 90%;
    }
    .services .container{
        padding: 50px 25px;
    }
    .services .text-content li{
        font-size: 1.6rem;
    }
    .services .text-content{
        margin-bottom: 25px;
    }
    .services .image-content img{
        width: 80%;
    }
    .portfolio .portfolio-wrap{
        width: 90%;
        margin: 0 auto;
    }
    .owl-carousel .owl-item img{
        margin: unset;
        width: 90%;
    }
    .advantages,.gallery{
        padding: 50px 0;
    }
    #scroll_top{
        right: unset;
        left: 10px;
    }
    .partners-slider-mobile{
      display: block !important;
    }
    .partners-slider-desktop{
      display: none;
    }
}
