body{
     font-family: 'Cairo', sans-serif;
     margin:  0 0;
     background-color: #ffff;
    color: #202020;

}

/* شاشة التحميل */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* النقاط */
.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: black;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.4);
    opacity: 1;
  }
}

/* اللوجو صورة */
#preloader  .logo {
  margin-top: 20px;
  width: 100px; /* اضبط حسب حجم شعارك */
  height: auto;
  animation: logoMove 1s ease-in-out infinite alternate;
  border-radius: 50%;
}


@keyframes logoMove {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-20px);
  }
}
#main{
    display:none ;
}



/*navbar*/

/* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      position: sticky;
      top: 0;
      z-index: 100;
      background-color: #ffff;
    }

    .logo {
      font-weight: bold;
      font-size: 24px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      color: #1B1B1B; /* أسود داكن */
    }

    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .nav-links li a {
      text-decoration: none;
      color: #1B1B1B;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links li a:hover {
      color: #FFF3B0; /* أصفر فاتح */
    }

    .lang-btn {
      padding: 5px 10px;
      background-color: #FFF3B0; /* أصفر فاتح */
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
    }

    /* Mobile */
    .menu-icon {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }
    .menu-icon.scrolled{
      color: white;
    }

    .navbar.scrolled {
  background-color: #202020; /* أبيض بعد السكرول */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-links.scrolled a{
  color: #FFF;
}

    @media (max-width: 992px) {
      .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        height: 100vh;
        width: 250px;
        background-color: #ffff;
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        transition: right 0.3s;
        color: #202020;
      }
      .nav-links.scrolled a{
        color: #202020;
      }

      .nav-links.show {
        right: 0;
      }

      .menu-icon {
        display: block;
      }

      .navbar {
        justify-content: space-between;
      }
    }


   /*service*/

/*مجالات*/

.specialties-box {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

.specialties-header .icon img {
  width: 80px;
  margin-bottom: 10px;
}

.specialties-header h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* البوكس على هيئة سبورة */
.specialties-board {
  background-color: #F5F0EC; /* أزرق فاتح يشبه السبورة */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.specialties-board ul {
  list-style: none;
  padding: 0;
}

.specialties-board ul li {
  background-color: #1B1B1B; /* أصفر فاتح لتحديد كل مجال */
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .specialties-header h2 {
    font-size: 24px;
  }
  .specialties-header .icon img {
    width: 60px;
  }
  .specialties-board ul li {
    font-size: 16px;
    padding: 8px 12px;
  }
}








/* Form */
.cta-form {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cta-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1B1B1B;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #b3b9c9;
  border-radius: 8px;
  font-size: 14px;
}

.cta-form button {
  width: 100%;
  padding: 14px;
  background: rgb(34, 107, 34);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-form button:hover {
  background:rgb(40, 244, 40) ;
}








/*footer*/
.footer {
  background-color: #1B1B1B;
  color: #fff;
  padding: 40px 20px;
}

.footer a{
  color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-logo img {
  width: 300px;
}

/* قسم التواصل */
.footer-contact h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 16px;
}


.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* ألوان الأيقونات حسب المنصة */
.social-icons .facebook { background-color: #3b5998; color: #fff; }
.social-icons .instagram { background-color: #E1306C; color: #fff; }
.social-icons .linkedin { background-color: #000000; color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}


.footer-bottom {
  background-color: #151515; /* لون أغمق من Footer الأساسي */
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
}

.footer-bottom a {
  color: #FFA500; /* لون مميز للرابط */
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}



/*floating whatsapp*/
/* زر واتساب عائم */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px; /* لو عايزها الشمال غيرها left: 20px; */
  background-color: #25D366; /* أخضر واتساب */
  color: #fff;
  font-size: 20px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  text-align: center;
  animation: pulse 1.5s infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* أنيميشن */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
