body {
  margin: 0;
  direction: rtl;          /* الموقع عربي */
  font-family: 'Tajawal', sans-serif; /*كل الموقع بذا الخط*/
  margin-top: 0%;
}

/* navbar */
  header{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .header{
    width: 100%;
    position: relative;
    height: 80px;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    color: #fff;
    padding: 0 0 0 3em;
    z-index: 20;
  }

  .header.scrolled {
    position: fixed;      /* يصير ثابت */
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    background-color: #000000a8;
  }

  .logo img {
    cursor: pointer;
    margin: 5% 30% 0% 0%;
    width: 150px;   /* غيره مثل ما تبغى */
    height: 80%;
    object-fit: fill;
    object-position: center bottom ;
  }
      /* */
   .logo .scrolled{
    cursor: pointer;
    width: auto;   /* غيره مثل ما تبغى */
    height: auto;
    margin: 5px;
   }

  .humburger {
    display: none;
  }

  .navbar ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar ul li a{
    color: #ffff;
    text-decoration: none;
    margin: 0 20px;
    cursor: pointer;
  }

  .navbar ul li a:hover{
    color: #6e473b;
  }

  .home-btn {
    color: #6e473b !important;
    font-weight: 600;
  }

  
  @media (max-width: 900px){

    .logo img {
      margin: 5% 5% 0% 0%;
      width: 120px;
    }


    .header{
      position: relative;
    }

  .humburger {
    display: block;
    cursor: pointer;
    font-size: 25px;
    width: 45px;
    height: 45px;
  }

  .humburger i {
    position: absolute;
    bottom: 33%;
    left: 7%;
    width: max-content; /*تاخذ اقصى عرض*/
    height: max-content; /*تاخذ اقصى طول*/
    opacity: 0;
    transition: 0.3s ease;
  }

  .humburger i.active {
    opacity: 1;
    transform: rotate(180deg);
  }

  .navbar{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.484);
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 1rem;
    opacity: 0; /*نخفيها كامل*/
    transition: 0.3s ease;
  }

  .navbar.active{
    opacity: 1; /* نضهرها عند الضغط*/
  }

  .navbar ul{
    display: block;
  }
  
  .navbar ul li {
    margin: 20px 0;
    border-right: 1px solid #a4a4a4;
  }

  .title {
    font-size: 35px;

  }

  }

/* / navbar */

/* صورة الواجهه */
  /* تخلي القسم يملأ الشاشة */
  .image-wrapper {
    position: relative;
    width: 100%;
    height: 90vh; /* هذا مهم */
    overflow: hidden;
  }

  /* الصورة تغطي الشاشة بالكامل */
  .custom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* الطبقة الحمراء */
  .overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
      135deg,
      #2f1d0cbb
    );

    z-index: 1;
  }

  /* النص فوق كل شيء */
  .overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 2;
  }

  .butabout {
    background: #746856;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }

  .butabout:hover {
    background: #2f1d0c;
    color: #746856;
    
  }

  /* تنسيق العنوان */
  .title {
    font-size: 48px;
    margin-bottom: 20px;
  }


  /* الفقرة */
  .overlay-content p {
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  @media screen and (max-width: 400px){
    .title {
      font-size: 40px;
      margin-bottom: 10px;
    }
  }
  
/* صورة الواجهه انتهى */

/* style scroll */

/* عرض السكرول */
  ::-webkit-scrollbar {
    width: 10px;
  }

  /* الخلفية */
  ::-webkit-scrollbar-track {
    background: #414141; 
  }

  /* الجزء المتحرك */
  ::-webkit-scrollbar-thumb {
    background: #746856;
    border-radius: 10px;
  }

  /* عند المرور عليه */
  ::-webkit-scrollbar-thumb:hover {
    background: #8a5a4b;
  }
/* style scroll/ */

/* تنسيقات الخطوط  */
  .line {
    width: 150px;      /* طول الخط */
    height: 4px;       /* سماكة الخط */
    background-color: #746856; /* لون الخط */      
    border: none;
    margin: 30px auto; /* يخليه في الوسط */
    border-radius: 10px; /* شكل ناعم (اختياري) */
  }

  .line2 {
    width: 50px;      /* طول الخط */
    height: 4px;       /* سماكة الخط */
    background-color: #6e473b; /* لون الخط */      
    border: none;
    margin: 20px auto; /* يخليه في الوسط */
    border-radius: 10px; /* شكل ناعم (اختياري) */
  }
/* تنسيقات الخطوط انتهى */


/* المشاريع */
  .titl-project{
    font-size: 30px;
    text-align: center;
    color: #2f1d0c;
    transform: scale(0.8);
    opacity: 0;
    animation: pop 2s ease forwards;
  }  
  

/* card */
  .card {
    margin-bottom: 5% !important;
    height: 60% !important;
    background-color: #ffffff;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: end;
    justify-content: end;
    color: white;
    border-radius: 30px;
    position: relative;
    top: 20px;
    box-shadow: 0px 0px 15px rgb(0, 0, 0, 0.15);
    border: 1px solid #fdfdfd;
    
  }


    

  /* titl card */

    .titlcard-box2{
      width: 50%;
      border-radius: 15px;
      background: #a9a9a9;
      overflow: hidden;
      font-weight: bold;
      display: flex;
      justify-content: center;
      color: #000;
      position: absolute;
      bottom: 95% !important;
      z-index: 300;
    }
    

    /* الجزء المتعبّي */
    .titlcard-box2::before {
      display: block;
      content: "";
      position: absolute;
      inset: 0;
      width: var(--titlcard);
      background: linear-gradient(90deg, #6e473b, #a06b5a);
      z-index: 0;
      transition: 0.5s ease;
    }

    /* النص يكون فوق التعبئة */
    .titlcard-box2 span {
      position: relative;
      bottom: 10% !important;
      z-index: 1;
      font-size: 15px;
      color: #2f1d0c !important;
      font-weight: 900 !important;
      direction: rtl !important;
    }

  /* /titl card */


  /* img card */
    .img-card {
      width: 100%;
      height:  100%;
      z-index: 1;
      border-radius: 30px;
    }
    .c-img-card {
      width: 80%;
      height:  80%;
      z-index: 1;
      position: relative;
      bottom: 20%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  /* /img card */   
  
  /* card body */
    .card h3{
      margin-bottom: 10% !important;
      color: #2f1d0c;
      font-size: 17px;
    }

    .card p{
      margin-bottom: 50% !important;
      color: #2f1d0c;
    }

    .card span{
      color: #746856;
    }
  /* /card body */

  /* card foot */
    .foot-card {
      margin-right: 0;
      margin-left: 0;
      background-color: #2f1d0c;
      width: 100%;
      height: 15% !important;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      z-index: 1;
      border-radius: 0 0 30px 30px;
    }
    .card-foot > * {
      margin: 0;
    }
    .foot-card-a {
      color: #746856;
      text-decoration: none;
      font-weight: bold;
    }

    .foot-card-a:hover {
      color: floralwhite;
    }

  /* /card foot */
/* card */
/* card phon */
@media screen and (max-width: 768px){
  .card{
    width: 100% !important;
    height: 50% !important;
    position: relative;
    top: 0px;
  }

  /* titl card */
    .titlcard-box2{
      width: 80%;
      border-radius: 15px;
      background: #a9a9a9;
      overflow: hidden;
      font-weight: bold;
      display: flex;
      justify-content: center;
      color: #000;
      position: absolute;
      bottom: 95% !important;
      z-index: 300;
    }
    
  /* /titl card */


  /* img card */
    .img-card {
      width: 100%;
      height:  100%;
      z-index: 1;
      border-radius: 30px;
    }
    .c-img-card {
      width: 80%;
      height:  80%;
      z-index: 1;
      position: relative;
      bottom: 10%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

  /* /img card */   
  
  /* card body */
    .card h3{
      margin-bottom: 10% !important;
      color: #2f1d0c;
      font-size: 24px;
      font-weight: 800;
    }

    .card p{
      margin-bottom: 40% !important;
      color: #2f1d0c;
      font-size: 20px;
      font-weight: 600;
      text-align: center;
    }

    .card span{
      color: #746856;
      font-size: 16px;
      font-weight: 400;
    }

  /* /card body */

  /* card foot */
      .foot-card {
      margin-right: 0;
      margin-left: 0;
      background-color: #2f1d0c;
      width: 100%;
      height: 15%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      z-index: 1;
      border-radius: 0 0 30px 30px;
    }
    .card-foot > * {
      margin: 0;
    }
    .foot-card-a {
      color: #746856;
      text-decoration: none;
      font-weight: bold;
    }

  /* /card foot */

  .slide-content{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 10px;
    
  }
  .slide-container{
    max-width: 1120px;
    width: 100%;
    padding:  0;
  }
  .bodyy{
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 60px !important;
  }
  }
/* card phon/ */

/* Google Fonts - Poppins */
/* slider */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
  .bodyy, .bodyy * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
  }
  .bodyy{
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide-container{
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
  }
  .slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
  }

  .swiper-navBtn{
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #746856;
    color: #ffffff;
    transition: all 0.8s ease;
  }
  .swiper-navBtn:hover{
    color: #746856;
    background-color: #ffffff;
    border: 1px solid #746856;
  }
  .swiper-navBtn::before,
  .swiper-navBtn::after{
    font-size: 35px;
  }
  .swiper-button-next{
    right: 0;
  }
  .swiper-button-prev{
    left: 0;
  }
  .swiper-pagination-bullet{
    background-color: #3f3f3fbf;
    opacity: 1;
  }
  .swiper-pagination-bullet-active{
    background-color: #3f3f3f;
  }

  .slide-content{
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 0 10px;
  }

  @media screen and (max-width: 768px) {
    
    .slide-content{
      margin: 0 10px;
      padding: 0 10px;
    }
    .swiper-navBtn{
      display: none;
    }
  }
/* slider/ */

  /* all pro */
    .all-pro {
      width: 100%;
      height: 10%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .all-pro button{
      width: 150px;
      height: 40px;
      color: #2f1d0c;
      background-image: linear-gradient(to bottom right, #2f1d0c , transparent  );
      border: 1px solid #2f1d0c;
      border-radius: 15px;
      transition: all 1s ease;
      font-weight: 800;
    }

    .all-pro button:hover{
      background-color: #2f1d0c;
      color: #746856;
    }
  /* /all pro */
/* انتهى المشاريع  */

/* من نحن */
    .about-home{
      width: 100%;
      overflow: hidden;
    }

    .about-short{
      background-color: #2f1d0c;
      width: 100%;
      height: 80%;
      color: #ffffff;
      padding: 20px;
      text-align: center;
    }
    .about-short h2{
      text-align: center;
      font-size: 30px;
    }
    .about-short p{
      display: flex;
      justify-content: center;
      font-size: 15px;
    }
    .hm{
      color: #6e473b;
    }

    .contact{
      background-color: #6e473b;
      width: 100%;
      height: 20%;
      color: #746856;
      text-align: center;
    }
    .contact-box{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .phone-btn{
      background-color: #6e473b;
      border: none;
      font-family: 'Tajawal', sans-serif;
      font-size: 20px;
      font-weight: bold;
      color: #e3d8c8;
      cursor: pointer;
    }
    .phone-btn:hover{
      background-color: #746856;
      color: #6e473b;
      border-radius: 40px;
    }
    .contact-options {
      margin:  0px 30px 0px 0px;
      opacity: 0;
      transition: all 0.5s ease;
    }
    .contact-options i{
      color: #746856;
      font-size: x-large;
      margin: 10px;
    }
    .contact-options.active{
      opacity: 1;
    }

    @media (max-width: 600px ){
      .contact-box h2{
        font-size: 20px;
        align-items: center;
      }
      .about-short h2{
        font-size: 25px;
      }
      .about-short p{
        font-size: 13px;
        text-align: center;
      }
      .about-short{
        padding: 5px;
      }

    }
/* انتهى من نحن */

/* علامه واتس */

  .fa-square-whatsapp{
    padding: 5px;
    background-color: #ffff;
    font-size: xx-large;
    color: #2f1d0c;
    z-index: 5;
    border-radius: 49%;
    position: fixed;
    top: 90%;
    right: 95%;
  }

  @media (max-width: 600px ){
    .fa-square-whatsapp{
      padding: 5px;
      background-color: #ffff;
      font-size: xx-large;
      color: #2f1d0c;
      z-index: 5;
      border-radius: 49%;
      position: fixed;
      top: 90%;
      right: 85% !important;
    }
  }
/* علامه واتس انتهى*/

/* شركاء النجاح */
  :root {
    --uslider-width: 260px;
    --uslider-gap: 15px;
    --uslider-visible: 3;
  }

  .unique-slider {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    box-sizing: border-box;
  }

  .viewport {
    width: calc((var(--uslider-width) + var(--uslider-gap)) * var(--uslider-visible));
    overflow: hidden;
  }

  .track {
    display: flex;
    gap: var(--uslider-gap);
    transition: transform 0.3s ease;
  }

  .item img {
    width: var(--uslider-width);
    border-radius: 15px;
    flex-shrink: 0;
    display: block;
  }

  .arrow-left, .arrow-right {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
    color: #000000;
  }

  

  .arrow-left { left: 100px; }
  .arrow-right { right: 100px; }

  @media (max-width: 600px ){
    .arrow-left { left: 20px; }
    .arrow-right { right: 20px; }

    .item img {
      width: var(--uslider-width );
      border-radius: 15px;
      flex-shrink: 0;
      display: block;
    }

    :root {
      --uslider-width: 260px;
      --uslider-gap: 15px;
      --uslider-visible: 1;
    }
  }
  
/* شركاء النجاح انتهى */

/* الحقوق */

  .Rights{
    position: absolute;
    top: 300px;
    display: flex;
    justify-content: space-around !important;
    width: 100%;
    font-family: 'Tajawal', sans-serif;
    color: #fff;
    background-color: #000;
  }

  .Rights a{
    text-decoration: none;
    background: linear-gradient(90deg, #00d4ff, #7b2cff, #ff2fd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 5s ease;
  }

  .Rights a:hover {
    background: linear-gradient(90deg, #ff2fd1, #7b2cff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .pasadroot{
    background: linear-gradient(90deg, #ff2fd1, #7b2cff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    transition: all 5s ease;
  }

  .pasadroot:hover {
    background: linear-gradient(90deg, #00d4ff, #7b2cff, #ff2fd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

   @media (max-width: 600px ){
    .Rights{
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
    }

  @media (max-width: 600px ){
    .Rights p{
      text-align: center;
      font-size: smaller;
    }

  }
   }
/* الحقوق انتهى */

/*  السهم الي يطلعك لفوق */
  .hide{
    display: none;
  }
  #shmtob{
    color: #fff;
    background: #6e473bd2;
    border: none;
    padding: 3px ;
    height: 25px;
    width: 25px;
    position: fixed;
    z-index: 20;
    top: 80%;
    border-radius: 15px 0px 0px 15px
  }
/*  السهم الي يطلعك لفوق انتهى */

  *{
    font-family: 'Tajawal', sans-serif;
    /* border: 1px solid red; */
  }

  /* الانميشن */

/* البداية: العنصر مخفي */
    .animate {
      opacity: 0;
      transition: 1.8s ease;
    }

    /* لما يدخل العنصر الشاشة */
    .animate.show {
      opacity: 1;
      transform: translate(0,0);
    }

    /* من اليمين لليسار */
    .right-to-left {
      transform: translateX(50px);
    }

    /* من اليسار لليمين */
    .left-to-right {
      transform: translateX(-50px);
    }

    /* من فوق لتحت */
    .top-to-bottom {
      transform: translateY(-50px);
    }

    /* من تحت لفوق */
    .bottom-to-top {
      transform: translateY(50px);
    }


  /* الانميشن انتهى */
