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: auto;
    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;
  }

  .contact-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;
  }

  }

/* / navbar */

/* علامه واتس */

  .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;
    }
  }
/* علامه واتس انتهى*/

/*  السهم الي يطلعك لفوق */
  .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
  }
/*  السهم الي يطلعك لفوق انتهى */

/* تنسيقات السكرول */
  /* عرض السكرول */
    ::-webkit-scrollbar {
      width: 10px;
    }

    /* الخلفية */
    ::-webkit-scrollbar-track {
      background: #414141; 
    }

    /* الجزء المتحرك */
    ::-webkit-scrollbar-thumb {
      background: #e3d8c8;
      border-radius: 10px;
    }

    /* عند المرور عليه */
    ::-webkit-scrollbar-thumb:hover {
      background: #8a5a4b;
    }
/* تنسيقات السكرول انتهى */


.contact-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.contact-subtitle {
  
  font-size: 20px;
  color: #6e473b;
  margin-bottom: 5px;
}

.contact-title {
  font-size: 28px;
  color: #2f1d0c;
  margin-bottom: 25px;
  font-weight: 700;
}

.contact-options {
  display: flex;
  justify-content: space-evenly;
  gap: 25px;
}

.contact-btn2 {
  margin-top: 25px !important;
  width: 70px;
  height: 70px;
  background: #f3ece6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #2f1d0c;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-btn2:hover {
  background: #6e473b;
  color: #fff;
  transform: translateY(-5px);
}

.whatsapp:hover {
  background: #25d366;
  color: white;
}

/* الجوال */
@media (max-width: 600px) {
  .contact-options {
    display: flex;
    justify-content: space-evenly;
  }

  .contact-btn2 {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .contact-title {
    font-size: 24px;
  }
}

a {
  text-decoration: none;
}

/* .number-home{
  text-align: center;
  margin-top: 10%;
  width: 200px;
  height: auto;
  background: #f3ece6;
  color: #2f1d0c;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 10%;
}

.number{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.number-false , .number-true{
  padding: 2%;
  border: 1px solid #2f1d0c;
  border-radius: 25%;
}

.active{
  opacity: none;
} */