


@charset "utf-8";
/* إعداد الوضع الفاتح */
body.light-mode {
    background-color: #FFFDDE;
    color: #000000;
  }
  
  /* إعداد الوضع الداكن */
  body.dark-mode {
    background-color: #121212;
    color: #FFFDDE;
  }
  
  /* تصميم الزر */
  button#theme-toggle {
    padding: 10px 15px;
    background-color: #ffffff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button#theme-toggle:hover {
    background-color: #f1f1f1;
  }
  
  body {    
    background-color: #FEF9F2;
    font-size: 16px;
  }


/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-secondary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #457CDA !important;
    font-size: 16px;
    font-weight: 900;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #457CDA !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 55px;
    padding-bottom: 10px;
    transition: .5s;
}
.navbar-light .navbar-brand img-fluid{
    color: var(--bs-primary);
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}



/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
    
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    /* height: 700px; */
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(0, 0, 0, .5); */
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}
/*** Carousel Hero Header End ***/

/*** Top Feature ***/
.top-feature  .img-fluid{
    width: 110px;
    height: 110px;
}
.top-feature .px-5{
    padding-right: 1rem !important;
    padding-left: 1.5rem !important;  
}

.top-feature .ps-3{
    margin-top: 20px;
    margin-left: 25px;
    padding-left: 0rem !important;
}
.top-feature .ps-3 h4{
    text-align: center;
    font-size: 18px;
}
.top-feature .ps-3 h4 span{
    color: var(--bs-secondary);
    font-size: 15px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.top-feature .ps-3 span{
    font-size: 15px;
}
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -50px;
        z-index: 1;
    }
   
}
@media (max-width: 991.98px) {
    .py-5 {
        padding-top: 0.2rem !important;
        padding-bottom: 0.2rem !important;
    }
}

@media (max-width: 800px) {
    .top-feature .ps-3 span{
        font-size: 12px;
    }
}
@media (max-width: 400px) {
    .top-feature .ps-3 span{
        font-size: 12px;
    } 
}


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
}

 .bg-breadcrumb .breadcrumb-item a {
 color: var(--bs-white) !important;
} 
/*** Single Page Hero Header End ***/




 /*** About Start ***/

.about .about-img .video {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-cyan) var(--bs-cyan) var(--bs-cyan) var(--bs-cyan);
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 145px; 
    left: -125px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}


@media (max-width: 992px) {
    .about .about-img .about-experience {
        top: 120px;
        left: -105px;
        font-size: 25px;
        font-weight: 900;
        letter-spacing: 2px;
    }
    
}



/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    bottom: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 33px;
    height: 300px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-cyan);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 30px solid var(--bs-white);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    margin-left: 2px;
    right: 8px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (max-width: 992px) {
    .video .btn-play {
        bottom: 40%;
        left: 40%;
        transform: translate(-50%, -50%);
        width: 33px;
        height: 100px;
        border-radius: 50%;
        transition: 0.5s;
    }

    .video .btn-play:after{
        width: 60px;
        height: 60px;
    }
    .video .btn-play span{
        border-left: 20px solid var(--bs-white);
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        right: 4px;
    }
}
/*** Youtube Video End ***/


/*** Appointment End ***/

.rows {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
   
  }
  .rows{
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
  }

 .about .sections-title {
    direction: rtl;
    color: #d72e48;
    text-align: right;
    /* width: 100%; تأكد أن الحاوية تتناسب مع العرض */
     /* منع تجاوز العناصر حدود الحاوية */
    margin: 25px; /* تأكد من تمركز الحاوية */
    box-sizing: border-box; /* يضمن أن الحواف والحشوات محسوبة ضمن العرض */
}

.about .sections-title h1{
    color: #D10057;
    font-size: 40px;
    
}
.about .sections-title P{
    color: #000000;
    font-size: 18px;
    
}
.about .sections-title h5{
    color: #0D6EFD;
    font-size: 25px;
}
  
.containerd .sections-title{

    padding-left: 100px;
   
  }
  
  .character-containerd {
    margin-right: 30px;
  }
  
  .character {
    width: 150px;
    height: 600px;
    position: relative;
    z-index: 1;
  }
  
  .mobile-frame {
    width: 300px;
    height: 600px;
    border: 10px solid #333;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
  }
  
  .image-slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    flex: 0 0 100%;
    position: relative;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
  }
  
  .play-button i {
    color: #333;
    font-size: 24px;
  }
  
  .text-containerd {
    margin-left: 50px;
    max-width: 400px;
    position: relative;
    z-index: 1;
  }
  
  .text-containers p {
    margin-bottom: 20px;
  }

  
 

@media (width:1280px) {
    .character{
        right: 20px;
        
    }
    .col-lg-7{
        width: 550px;
    }
    .mobile-frame {
        width: 280px;
        right: 80px;
        
    }
    .about .sections-title P{
        color: #000000;
        font-size: 13px;
        
    }
    .about .sections-title h5{
        color: #0D6EFD;
        font-size: 20px;
        font-weight: 900;
    }
    .about .sections-title .m-0{
        font-size: 15px;
    }
} 
@media (width:1024px) {
    .character{
        right: 20px;
        
    }
    .col-lg-7{
        width: 400px;
    }
    .mobile-frame {
        width: 280px;
        right: 80px;
        
    }
    .about .sections-title P{
        color: #000000;
        font-size: 13px;
        
    }
    .about .sections-title h5{
        color: #0D6EFD;
        font-size: 15px;
        font-weight: 900;
    }
    .about .sections-title .m-0{
        font-size: 12px;
    }
}

@media (width: 820px) {
    .character{
        /* right: 30px; */
        display: none;
        
    }
    .col-lg-7{
        width: 350px;
    }
    .mobile-frame {
        width: 280px;
        right: 70px;
        /* margin-right: 80px; */
        
    }
    .about .sections-title P{
        color: #e50808;
        font-size: 13px;
        
    }
    .about .sections-title h5{
        color: #0D6EFD;
        font-size: 20px;
        font-weight: 900;
    }
    .about .sections-title .m-0{
        font-size: 15px;
    }
  }


  @media (min-width: 768px) {
    .containerd .sections-title{
        padding-left: 0px;
    }
  
    .mobile-frame {
        width: 300px;
        height: 550px;
        border: 10px solid #333;
        border-radius: 30px;
        margin-left: 30px;
      }
      
      .image-slider {
        width: 100%;
        height: 100%;
        display: flex;
        transition: transform 0.5s ease-in-out;
      }
    .character {
        width: 200px;
        height: 600px;
        margin-left: 30px;
      }
  }

  @media (max-width: 767px) {
    .mobile-frame-containerd {
      flex-direction: column;
      align-items: center;
      margin-top: 30px;
    }
   
    .about .sections-title{
        margin: 0px;
        font-size: 10px;
        font-weight: 700;
    }
    .about .sections-title h1{
        font-size: 23px;
    }
    .containerd .sections-title{
        padding-left: 10px;
        padding-right: 10px;
    }
  
    .character-containerd {
      margin-right: 0;
      margin-bottom: 30px;
    }
  
    .character {
      width: 150px;
      height: 400px;
    }
  
    .mobile-frame {
      width: 50%;
      height: auto;
      
    }
  
    .text-containerd {
      margin-left: 0;
      margin-top: 30px;
      font-size: 10px;
    }
  }
 
  
 @media (max-width: 550px) {
    .containerd .sections-title{
        padding-left: 10px;
        padding-right: 15px;
    }
    .mobile-frame {
        width: 55%;
        height: 430px;
        margin-top: 20px;
        margin-bottom: 20px;
      }
      .character {
        width: 150px;
        height: 500px;
      }
   
 }
/* From Uiverse.io by escannord */ 
/* This is an example, feel free to delete this code */
.tooltip-containerd {
    --background: #4132c9;
    --support-size: 50px;
    --tooltip-radius: 10px 10px 10px 0;
    --outline-border-color: #0096aa;
    position: relative;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 17px;
    font-weight: bold;
    padding: 0.7em 1.8em;
    color: var(--background);
    border: solid 2px var(--background);
    width: 150px;
    margin-top: 90px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  
  .tooltip-containerd::before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.5s linear;
    outline: 3px solid transparent;
    background: var(--background);
  }
  .tooltip-containerd:hover {
    color: white;
  }
  .tooltip-containerd:hover:before {
    width: 100%;
    height: 100%;
    border-radius: 0;
    outline-offset: 5px;
    outline-color: var(--outline-border-color);
  }
  .tooltip {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 50%;
    transform: translateX(-5%);
    padding: 0.3em 0.6em;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    background: var(--background);
    border-radius: var(--tooltip-radius);
    color: white;
    box-shadow: 3px 3px 0px var(--outline-border-color);
  }
  
  .tooltip::after {
    content: "يسعدنا أتصالكم👋";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background);
    text-align: center;
    border-radius: var(--tooltip-radius);
  }
  .tooltip::before {
    position: absolute;
    content: "";
    bottom: 0;
    border-style: solid;
    border-width: 10px;
    left: 0;
    transform: translateX(-50%);
    border-color: transparent var(--background) var(--background) transparent;
    box-shadow: 0px 3px 0px var(--outline-border-color);
  }
  
  .tooltip-containerd:hover .tooltip::after {
    animation: hidden 0.5s 1.5s linear forwards;
  }
  
  .tooltip-containerd:hover .tooltip {
    top: calc(-100% - var(--support-size) * 0.5);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: shake 0.5s 1s linear;
    transition: all 0.3s 0.5s;
  }
  
  @keyframes hidden {
    50% {
      transform: translate(-50%, -50%) scale(0.5);
      background-color: #1ca0f5;
    }
    100% {
      transform: translate(0, -50%) scale(0.5);
      opacity: 0;
    }
  }
  
  @keyframes shake {
    0%,
    40%,
    80% {
      transform: translateX(-10%);
    }
    20%,
    60%,
    100% {
      transform: translateX(0);
    }
  }
  
  .st2 {
    fill: #f9c8a7;
  }
  .st3 {
    fill: #ff9e97;
  }
  .st6 {
    fill: #d72e48;
  }
  .st7 {
    fill: #ffffff;
  }
  .st8 {
    fill: #ff8d7f;
  }
  .st10 {
    fill: #3d3d3b;
  }
  .st11 {
    fill: #1ca0f5;
  }
  .st12 {
    opacity: 0.2;
  }
  .st14 {
    fill: #b7b7b7;
  }
  .st15 {
    fill: #ead9cf;
  }
  #Calque_1 {
    display: inline-block;
    height: var(--support-size);
    position: absolute;
    opacity: 0;
    transition: all 0.5s;
    z-index: -1;
    left: 0;
    top: 0;
  }
  #left_x5F_arm_2_ {
    transform: translateX(2px);
  }
  
  .tooltip-containerd:hover #Calque_1 {
    top: calc(var(--support-size) * -1);
    opacity: 1;
  }
  


/*** About End ***/



.container-flui{
   margin-top:-80px ;
   flex: auto;
}

/* Counter Facts */
.container-fluid .con {
    width: 100%;
    height: 100%;
    background: lightblue;
    position: relative;
    overflow: hidden;
  }
  
 .container-fluid .con::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #3498db 10%, transparent 20%),
      radial-gradient(circle, transparent 10%, #3498db 20%);
    background-size: 30px 30px; /* Adjust the size of the pattern */
    animation: moveBackground 8s linear infinite; /* Adjust the animation duration and timing function */
  }
  
  @keyframes moveBackground {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(20%, 20%);
    }
  }

.counter-facts {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: white;
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    /* background-color: var(--bs-primary); */
    background: rgba(1, 9, 96, 0.941);
}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-primary);
    background: rgba(0, 21, 254, 0.516);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}
.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-primary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}

/*** Counter Facts End ***/


  /*Truck Start*/
/* الحاوية الرئيسية */
.containers {
    display: flex; /* تفعيل فليكس بوكس */
    flex-wrap: wrap; /* السماح بتغليف العناصر */
    justify-content: space-between; /* توزيع العناصر بالتساوي */
    align-items: center; /* محاذاة العناصر عموديًا */
    width: 100%; /* عرض كامل للحاوية */
    padding: 20px; /* مسافة داخلية */
    background-color: #1b5489; /* لون خلفية خفيف للحاوية */
    border-radius: 8px; /* حواف مستديرة */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ظل الحاوية */
    margin: 20px 0; /* مسافة خارجية لإظهار الحاوية */
    box-sizing: border-box; /* أخذ الحواف ضمن الحساب */
}

/* نموذج التتبع */
.tracking-form {
    display: flex; /* ترتيب العناصر أفقيًا */
    gap: 10px; /* مسافة بين العناصر */
    width: 100%; /* عرض كامل داخل الحاوية */
    margin-bottom: 20px; /* مسافة سفلية للنموذج */
}

.tracking-form input, .tracking-form select {
    flex: 1; /* جعل العناصر تأخذ عرض متساوٍ */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* منع تجاوز العرض */
}

.tracking-form button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0; /* منع تصغير الزر */
}

.tracking-form button:hover {
    background-color: #218838;
}

/* مربعات المعلومات */
.info-box {
    display: flex; /* ترتيب العناصر أفقيًا */
    justify-content: space-between; /* توزيع المربعات بالتساوي */
    gap: 10px; /* مسافة بين المربعات */
    width: 100%; /* عرض كامل داخل الحاوية */
}

.info {
    flex: 1; /* جعل كل مربع يأخذ نفس العرض */
    background-color: #007bff; /* لون خلفية افتراضي */
    color: white; /* لون النص */
    padding: 15px; /* مسافة داخلية أكبر */
    text-align: center; /* محاذاة النص في الوسط */
    border-radius: 4px; /* حواف مستديرة */
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* ظل خفيف */
}

.info span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
}

.info:nth-child(2) {
    background-color: #28a745; /* لون أخضر للمربع الثاني */
}
/* تصميم متجاوب للشاشات الصغيرة */
@media (max-width: 768px) {
    .info {
        flex: 1 1 100%; /* كل مربع يأخذ العرض الكامل */
    }
    .tracking-form {
        flex-direction: column; /* ترتيب عمودي للعناصر */
    }
    .tracking-form button {
        width: 100%; /* الزر يأخذ العرض الكامل */
    }
}
  
  /*Truck End*/


/*** Service Start ***/
.service .service-item {
    direction: rtl;  
    transition: all 0.3s ease-in-out; 
    font-size: 20px;
  }
  .service .service-item:hover{
      box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
  }
  
  .service .service-item::before{
      transition: all 0.3s;
  }
 
  
  .service .service-item .service-img {
      position: relative;
      overflow: hidden;
      z-index: 1;
  }
  
  .service .service-item .service-img img {
      transition: 0.5s;
  }
  
  .service .service-item .service-img::before {
      width: 100%;
      height: 0;
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      border-top-right-radius: 10px;
      border-top-left-radius: 10px;
      transition: 0.5s;
      z-index: 5;
      
  }
  
  .service .service-item:hover .service-img::before {
      height: 100%;
      background: rgba(21, 185, 217, .3);
  }
  
  .service .service-item .service-img:hover img {
      transform: scale(1.3);
  }
  
  .service .service-item .service-content {
      position: relative;
      z-index: 2;
  
  }
  .service .service-item .service-content p{
    font-size: 12px;
    color: #000000;
    font-weight: 600;
  }
  
  .service .service-item .service-content::before {
      width: 100%;
      height: 8px;
      position: absolute;
      content: "";
      bottom: 0;
      left: 0;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      background: rgba(21, 185, 217, .5);
      transition: 0.5s;
      z-index: 3;
  }
  
  .service .service-item:hover .service-content::before {
      background: rgba(21, 185, 217, .5);
      height: 100%;
  }
  
  .service .service-item .service-content .service-content-inner {
      transition: 0.5s;
  }
  
  
  .service .service-item:hover .service-content .service-content-inner {
      position: relative;
      color: var(--bs-white) !important;
      z-index: 9;
  }
  .service .service-item:hover .service-content .service-content-inner h5 {
      color: var(--bs-secondary);
  }
  
  /*** Service End ***/



 
  .containered {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: var(--container-height, 200px); /* التحكم في الارتفاع */
    background: linear-gradient(rgba(69, 124, 218, 0.913), rgba(69, 124, 218, 0.813)), url(../img/rocket-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

  }

  .image {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    animation: move-left 10s linear infinite; /* حركة متكررة */
  }

  @keyframes move-left {
    0% {
      left: 100%;
    }
    100% {
      left: -100%;
    }
  }



/*** Feature Start ***/
.feature .feature-text{
    direction: rtl;
}
.feature .mb-0 {
    color: #000;
    font-weight: 700;
    padding-right: 10px;
}
.feature .text-secondary{
    font-size: 30px;
}
.feature .mb-5{
 color: #D10057;
 font-weight: 700;
}
.feature .ms-4 h5{
    color: #0D6EFD;

}
.feature .position-absolute{
    border-radius: 40px;
    box-shadow: 0 0 29px 0 rgba(208, 218, 244, 0.8);
}
.feature .position-absolute:hover{
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
    
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: #0D6EFD;
} 
/*** Feature End ** */


/*****Call To Action Start*****/
.call-to-action .background-video {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    object-fit: cover;
    z-index: 1;
}
@media (max-width: 1280px) {
    .call-to-action .background-video {
        height: auto;
    }
}

.call-to-action:before {
    /* content: "";   وجودهما مسبب مشكلة في السليدر */
    /* background: rgba(0, 0, 0, 0.3); طبقة شفافة فوق الفيديو /جودهما مسبب مشكلة في السليدر */
    position: absolute;
    inset: 0;
    z-index: 2;
}

/*****Call To Action End*****/





.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .stars {
    display: flex;
    gap: 5px;
    cursor: pointer;
  }

  .stars i {
    font-size: 30px;
    color: #ccc;
    transition: color 0.3s;
  }

  .stars i:hover,
  .stars i.selected {
    color: gold;
  }

  .thank-you {
    margin-top: 10px;
    display: none;
    color: green;
    font-size: 18px;
  }



/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(69, 124, 218, 0.913), rgba(69, 124, 218, 0.813)), url(../img/blog.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


 /*** serv Start ***/
.serv .serv-item {
    position: relative;
    overflow: hidden;
}

.serv .serv-item .serv-inner .serv-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.serv .serv-item .serv-inner .serv-title .serv-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.serv .serv-item:hover .serv-inner .serv-title .serv-content {
    bottom: 0;
    opacity: 1;
}

.serv .serv-item .serv-inner .serv-title .serv-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.serv .serv-item .serv-inner .serv-title .serv-title-name {
    transition: 0.5s;
}

.serv .serv-item:hover .serv-inner .serv-title .serv-title-name {
    opacity: 0;
}

.serv .serv-item .serv-inner .serv-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.serv .serv-item .serv-inner .serv-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.serv .serv-item:hover .serv-inner .serv-img::after {
    height: 100%;
    opacity: 1;
}

.serv .serv-item .serv-inner .serv-img img {
    transition: 0.5s;
}

.serv .serv-item:hover .serv-inner .serv-img img {
    transform: scale(1.3);
}

@media (max-width: 400px) {
     .pb-4 p{
        font-size: 10px;
     }
}


/*** Serv End ***/


 /**********************************About Start****************************/

 


/*** Hearo Header Start ***/
.hero-header{
    direction: rtl;
    margin: 0; /* إزالة الهوامش */
    padding: 0;
}
.col-lg-6 img{
    border-radius: 20px;
}
.fs-4 {
    font-size: calc(0.775rem + 0.3vw) !important;
    color: #000000;
    font-weight: 900;
}
.ms-4 h6{
    color: #0D6EFD;
    font-weight: 900;
}

.header::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--bs-light);
    border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
    animation: bgMove 5s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0%   {right: 0px;}
    50%   {right: 20px;}
    100%  {right: 0px;}
}

.header::before {
    content: "";
    position: absolute;
    bottom: -9%;
    left: -7%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 30px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveHeader 5s linear infinite;
    z-index: -1;

}

@keyframes RotateMoveHeader {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }


    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 9%;}
    100%  {bottom: 0px;}
}

.hero-header {
    padding-top: 120px;
    padding-bottom: 50px;
    position: relative;
}

.hero-header::after {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 58px;
    height: 50px;
    background: url(../img/sty-1.png) center center no-repeat;
    animation: RotateMoveSty-3 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-3 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}

.hero-header::before {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 300px;
    height: 300px;
    border-radius: 150px;
    border: 30px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: RotateMoveSty-4 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-4 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}


.hero-header .rotate-img {
    position: absolute;
    top: 70px;
    left: 20px;
}

.hero-header .rotate-img .rotate-sty-2 {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 5px solid rgba(247, 71, 128, 0.1);
    background: transparent;
    animation: RotateMoveSty-2 45s linear infinite;
    transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
    0%   {left: 0px;}
    40%   {top: -30px;}
    50%   {left: 500px;}
    70%   {top: 200px;}
    80%   {left: 100px;}
    95%   {top: -30px;}
    100%  {left: 0px;}
}

.hero-header .rotate-img img {
    position: relative;
    animation: RotateMove 30s linear infinite;
    z-index: -1;
}

@keyframes RotateMove {
    0%   {left: 0px;}
    50%   {left: 200px;}
    100%  {left: 0px;}
}

@media (max-width: 991.99px) {
    .hero-header{
        padding-top: 10px;
    }
}

/*** About Start ***/
.btn-lg-square {
    width: 38px;
    height: 38px;
    margin-left: 10px;
}

.about .about-item{
    direction: rtl;
    margin: 0; /* إزالة الهوامش */
    padding: 0;
}
.about .about-item h1{
    font-size: 30px;
}
.about .col-12{
    padding-left: 60px;
}
.about .pe-4{
    padding-left: 10px;
}

.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px; 
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--bs-primary);
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-primary);
    color: var(--bs-white);
    border: 1px solid var(--bs-primary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}
/*** About End ***/



/******* Experience CSS ********/
.experience {
    position: relative;
    padding: 45px 0 15px 0;
    background: linear-gradient(rgb(1, 32, 93), rgba(2, 1, 82, 0.653)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;
    margin: 0; /* إزالة الهوامش */
    padding: 0;
    
}
.experience .container h2{
    margin-bottom: 30px;
    font-size: 4rem;
   font-weight: 900;
}
.experience .section-title{
    margin-top: 80px;
}

.experience .timeline-text{
    direction: rtl;
}
.experience .timeline {
    position: relative;
    width: 100%;
}

.experience .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #EF233C;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.experience .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.experience .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #ffffff;
    border: 2px solid #EF233C;
    border-radius: 16px;
    z-index: 1;
}

.experience .timeline .timeline-item.right::after {
    left: -8px;
}

.experience .timeline .timeline-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 46px;
  right: 10px;
  z-index: 1;
  border: 10px solid;
  border-color: transparent transparent transparent #dddddd;
}

.experience .timeline .timeline-item.right::before {
  left: 10px;
  border-color: transparent #dddddd transparent transparent;
}

.experience .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
    font-size: 1.5rem;
    font-family: serif;
}

.experience .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
    font-family: serif;
}

.experience .timeline .timeline-text {
    padding: 30px;
    background: #ffffff;
    position: relative;
    border-right: 5px solid #dddddd;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
}

.experience .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border-left: 5px solid #dddddd;
}

.experience .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
    color: #ff0000;
}


.experience .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}

.experience .timeline .timeline-text p {
    margin: 0;
    font-size: 16px;
    color: #000000;
}

.experience .section-header h2{
    color: #ff0000;
}
.experience .sub-style h4{
    color: #ff0000;
}
.experience .section-title P{
    color: #ffffff;
    font-weight: 900;
    margin-top: 10px;
}

@media (max-width: 767.98px) {
    .experience .timeline::after {
        left: 8px;
    }

    .experience .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }
    
    .experience .timeline .timeline-item.left {
        padding-right: 0;
    }
    
    .experience .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .experience .timeline .timeline-item.left::after, 
    .experience .timeline .timeline-item.right::after {
        left: 0;
    }
    
    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before {
        left: 18px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border-left: 5px solid #dddddd;
    }
}

/********* Experience CSS End *********/


/*** Banner Start ***/
.banner {
    position: relative;
    overflow: hidden;
    padding: 10px 0 10px 0;
    margin: 50px 0 50px 0;
    background: linear-gradient(rgb(28, 82, 189), rgba(2, 1, 82, 0.653)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner .container {
    position: relative;
    z-index: 99;
}

.banner::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    top: -200px;
    left: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    bottom: -200px;
    right: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner .banner-design-1 {
    position: absolute;
    width: 30px;
    height: 500px;
    top: -165px;
    left: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

.banner .banner-design-2 {
    position: absolute;
    width: 30px;
    height: 500px;
    bottom: -165px;
    right: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

.banner .section-title{
    margin-top: 90px;
}
.banner .section-title p{
    color: azure;
}
/*** Banner End ***/

    /******************************End About****************************/   

    /******************************Start logistics**********************/
    
   

/*** Hear Header Start ***/
.her-header{
    direction: rtl;
}
.her-header .ms-4 h6{
    color: #0D6EFD;
    font-weight: 700;
}
.col-lg-6 img{
    border-radius: 20px;
}
.her-header::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--bs-light);
    border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
    animation: bgMove 5s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0%   {right: 0px;}
    50%   {right: 20px;}
    100%  {right: 0px;}
}

.her-header::before {
    content: "";
    position: absolute;
    bottom: -9%;
    left: -7%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 30px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveHeader 5s linear infinite;
    z-index: -1;

}

@keyframes RotateMoveHeader {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }


    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 9%;}
    100%  {bottom: 0px;}
}

.her-header {
    padding-top: 100px;
    /* padding-bottom: 100px; */
    position: relative;
}

.her-header::after {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 58px;
    height: 50px;
    background: url(../img/sty-1.png) center center no-repeat;
    animation: RotateMoveSty-3 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-3 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}

.her-header::before {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 300px;
    height: 300px;
    border-radius: 150px;
    border: 30px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: RotateMoveSty-4 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-4 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}


.her-header .rotate-img {
    position: absolute;
    top: 70px;
    left: 20px;
}

.her-header .rotate-img .rotate-sty-2 {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 5px solid rgba(247, 71, 128, 0.1);
    background: transparent;
    animation: RotateMoveSty-2 45s linear infinite;
    transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
    0%   {left: 0px;}
    40%   {top: -30px;}
    50%   {left: 500px;}
    70%   {top: 200px;}
    80%   {left: 100px;}
    95%   {top: -30px;}
    100%  {left: 0px;}
}

.her-header .rotate-img img {
    position: relative;
    animation: RotateMove 30s linear infinite;
    z-index: -1;
}

@keyframes RotateMove {
    0%   {left: 0px;}
    50%   {left: 200px;}
    100%  {left: 0px;}
}


 @media (max-width: 992px) {
    .her-header {
        padding-top: 50px;
        
    }

    .her-header .rotate-img img {
        margin-top: 150px;
    }
   
} 
   /*** Her Header End ***/

    /*** Projects Start ***/
.projects h1 {
    color: #D10057;
    font-size: 35px;
}
.projects .projects-item {
    direction: rtl;
}

.projects .nav-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.169);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.projects-item .projects-content {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.178);
}

.projects .nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects .nav-item a span {
    font-size: 20px;
    color: #0D6EFD;
    font-weight: 700;
}

.projects .nav-item a.active span {
    color: var(--bs-primary);
}

/*** Responsive Adjustments ***/
@media (max-width: 768px) {
    .projects .nav-item {
        font-size: 16px;
    }
}

#overview  .d-flex h1{
    color: #ff0000;
}


/*** Ser Start ***/
.ser .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    
}

.ser .nav .nav-item a {
    display: flex;
    justify-content: center;
}
.ser .tab-content .ser-item{
    direction: rtl;
}
.ser  .ser-item  .mb-3{
    color: #0D6EFD;
    font-size: 16px;
    font-weight: 700;
}
/* .owl-stage-outer {
    margin-right: -1px;
} */
.ser .nav-item a.active {
    background: var(--bs-primary);
}

.ser .nav-item a span {
    color: var(--bs-dark);
}

.ser .nav-item a.active span {
    color: var(--bs-white);
}

.ser-carousel .owl-nav .owl-prev,
.ser-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.ser-carousel .owl-nav .owl-prev:hover,
.ser-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .ser-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }
    
    .ser-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }
    .ser-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .ser-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .ser .nav {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ser .nav-item {
        font-size: 16px;
    }
}
/*** Ser End ***/

    /****************************End logistics***************************/
    

    

/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(69, 124, 218, 0.913), rgba(69, 124, 218, 0.813)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    direction: rtl;
}
.contact .mb-0{
    color: #D10057;
    font-size: 20px;
    font-weight: 900;
}

.contact .contact-form {
    direction: rtl;
}

.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}
 .mb-0{
    padding-bottom: 45px;
}
.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}


/*** Contact End ***/




/********Start Car*********/
.truckLogo {
    position: absolute;
    top: 10px; /* اضبط الموضع العمودي */
    left: 20px; /* اضبط الموضع الأفقي */
    width: 50px; /* اضبط العرض */
    height: auto; /* للحفاظ على النسبة */
    z-index: 10; /* للتأكد من الظهور فوق العناصر الأخرى */
  }
  
.loader {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .truckWrapper {
    width: 200px;
    height: 100px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    overflow-x: hidden;
  }
  /* truck upper body */
  .truckBody {
    width: 130px;
    height: fit-content;
    margin-bottom: 6px;
    animation: motion 1s linear infinite;
  }
  /* truck suspension animation*/
  @keyframes motion {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(3px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  /* truck's tires */
  .truckTires {
    width: 130px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px 0px 15px;
    position: absolute;
    bottom: 0;
  }
  .truckTires svg {
    width: 24px;
  }
  
  .roads {
    width: 100%;
    height: 1.5px;
    background-color: #282828;
    position: relative;
    bottom: 0;
    align-self: flex-end;
    border-radius: 3px;
  }
  .roads::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 100%;
    background-color: #282828;
    right: -50%;
    border-radius: 3px;
    animation: roadAnimation 1.4s linear infinite;
    border-left: 10px solid white;
  }
  .roads::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    background-color: #282828;
    right: -65%;
    border-radius: 3px;
    animation: roadAnimation 1.4s linear infinite;
    border-left: 4px solid white;
  }
  
  .lampPost {
    position: absolute;
    bottom: 0;
    right: -90%;
    height: 90px;
    animation: roadsAnimation 1.4s linear infinite;
  }
  
  @keyframes roadsAnimation {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-350px);
    }
  }
  /***** End Car***/




/*** Footer Start ***/

/* الرسوم المتحركة */

/* تعديل للفوتر ليكون في أسفل الصفحة */


.main {
    min-height: 100vh;/* التأكد من أن القسم الرئيسي يغطي كامل الشاشة */
    width: 100%; 
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* وضع الفوتر في أسفل الصفحة */
    background-image: url("../img/sky.jpg"); /* خلفية السماء */
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}

/* الطريق */
.road {
    height: 200px;
    width: 500%;
    display: block;
    background-image: url("../img/road.jpg"); /* خلفية الطريق */
    background-size: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-repeat: repeat-x;
    animation: road 3.5s linear infinite;
}

@keyframes road {
    0% {
        left: -100%;
    }
    100% {
        left: 0%; /* تجعل الطريق يغطي كل العرض */
    }
}

/* المدينة */
.city {
    height: 250px;
    width: 500%;
    background-image: url("../img/city.png"); /* خلفية المدينة */
    position: absolute;
    bottom: 200px;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    animation: city 3.5s linear infinite;
}

@keyframes city {
    0% {
        left: -100%;
    }
    100% {
        left: 0%; /* تجعل الطريق يغطي كل العرض */
    }
}

/* السيارة */
.car {
    width: 400px;
    left: 47%;
    bottom: 43px;
    transform: translateX(-50%);
    position: absolute;
    z-index: 3;
}

.car img {
    width: 100%;
    animation: car linear infinite;
}

@keyframes car {
    0%, 100% {
        transform: translateY(-1px);
    }
    
}

/* العجلات */
.wheel {
    left: 51%;
    bottom: 100px;
    transform: translateX(-50%);
    position: absolute;
    z-index: 4;
}

.wheel img {
    width: 72px;
    height: 72px;
    animation: wheel 1s linear infinite;
}

@keyframes wheel {
    100% {
        transform: rotate(-360deg);
    }
}

.back-w {
    left: -195px;
    position: absolute;
}

.front-w {
    left: 29px;
    position: absolute;
}


.footer {
    /* text-align: center; */
    direction: rtl;
    z-index: 5;
}

.footer .container {
    width: 100%;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .col-md-6, .footer .col-lg-3 {
    /* flex: 0 0 25%; */
    flex: 0 0 auto;
    margin-bottom: 20px;
    width: 40%;
}
.footer  p{
    color: #ffffff;
} 
.footer .footer-item a{
    color: #ffffff;
    line-height: 40px;
}
.footer .footer-item i{
    color: #D10057;
    margin-left: 10px;
}


/* تعديل أحجام السيارة والأعمدة للشاشات المختلفة */
@media (max-width: 1200px) {
    .footer .col-md-6, .footer .col-lg-3 {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 1025px) {
    .car img{
        width: 40vh;
        padding-right: 30px;
    }
    .wheel img {
        width: 70px;
        height: 70px;
    }
    .back-w {
        left: -171px;
    }
    .front-w {
        left: 51px;
    }
    .footer .col-md-6, .footer .col-lg-3 {
        /* flex: 0 0 25.333%; */
        flex: 0 0 39%;
    }
 }

@media (max-width: 768px) {
    .car {
        width: 300px;
        bottom: 50px;
    }
    .wheel {
        bottom: 78px;
    }
    .wheel img {
        width: 55px;
        height: 55px;
    }
    .back-w {
        left: -131px;
    }
    .front-w {
        left: 34px;
    }
    .footer .col-md-6, .footer .col-lg-3 {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .car {
        width: 220px;
        bottom: 45px;
    }
    .wheel {
        bottom: 68px;
        left: 50%;
    }
    .wheel img {
        width: 40px;
        height: 40px;
    }
    .back-w {
        left: -85px;
    }
    .front-w {
        left: 39px;
    }
    .footer .col-md-6, .footer .col-lg-3 {
        flex: 0 0 100%;
    }
}

/*** footer end ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
    position: relative;
    text-align: center;
   
}
.copyright::before{
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    top: 0;
    left: 25%;
    background: rgba(256, 256, 256, .2);
}
/*** copyright end ***/


/* تصميم الأيقونة */
.whatsapp-icon {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
  }

  /* تصميم أيقونة الواتساب */
  .whatsapp-icon img {
    width: 35px;
    height: 35px;
  }

  /* تأثير عند التمرير */
  .whatsapp-icon:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
  }


  .instagram-icon {
    position: fixed;
    bottom: 180px; /* Above WhatsApp icon */
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

.instagram-icon:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}



