body{
    margin: 0 0;
    background-color: #ffff;
    font-family: 'Cairo', sans-serif;
     overflow-x: hidden;
}


/*navbar*/

/* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #FFFFFF; /* أزرق فاتح */
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-weight: bold;
      font-size: 24px;
      width: 200px;
      height: 100px;
      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;
    }

    @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;
      }

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

      .menu-icon {
        display: block;
      }

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


    /* Overlay خفيف لتوضيح النص */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* يملى الشاشة بالكامل */
  background-image: url('imgs/bghome.jpg'); /* ضع رابط الصورة */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3); /* إضاءة سوداء خفيفة */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
}

/* زر السهم */
.scroll-down {
  position: absolute;
  bottom: 20px;
  font-size: 32px;
  color: #FFF3B0; /* أصفر فاتح */
  z-index: 2;
  text-decoration: none;
  animation: bounce 2s infinite;
}

/* حركة السهم */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .scroll-down {
    font-size: 24px;
  }
}



/*next section */

.swiper-slide {
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  border-radius: 10px;
}

.swiper-slide p {
  margin-top: 10px;
  font-weight: bold;
}

/*about us*/
.about-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px;
  background-color: #F4F4F4; /* خلفية فاتحة */
  border-radius: 15px;
  margin: 20px auto;
  max-width: 1200px;
}

.about-logo img {
  width: 400px; /* حجم اللوجو على الشاشات الكبيرة */
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 50px;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 32px;
  line-height: 1.6;
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 768px) {
  .about-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .about-logo img {
    width: 250px;
  }

  .about-text h2 {
    font-size: 50px;
  }

  .about-text p {
    font-size: 26px;
  }
}


/*ccs all web effect*/

.reveal {
  opacity: 0;
  transform: translateY(50px); /* يبدأ من تحت */
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/*مجالات*/

.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: #C1A05D; /* أصفر فاتح لتحديد كل مجال */
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
}

/* 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;
  }
}





/*تقنيات و الدعم */
.tech-support-box {
  position: relative;
  width: 90%;
  padding: 60px 20px;
  background-image: url('imgs/support.jpg'); /* ضع رابط الصورة */
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  margin: auto;
  color: #FFFFFF;
  overflow: hidden;
}

.tech-support-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.559); /* شفاف أسود لتوضيح النص */
  z-index: 1;
}

.tech-support-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
}

.tech-support-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-support-content ul {
  list-style: none;
  padding: 0;
}

.tech-support-content ul li {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-support-content h2 {
    font-size: 24px;
    justify-content: center;
  }
  .tech-support-content ul li {
    font-size: 16px;
  }
}








.clients-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.clients-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.clients-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Grid رسمي للعملاء */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.client-card {
  background-color: #F4F4F4; /* خلفية فاتحة */
  color: #1B1B1B;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr; /* كل عميل تحت بعض */
  }
}



/*hisang*/
.hisagn_custmors{
  display: block;
  width: 25%;
  
  margin: auto;
}

/*why*/
.why-support-box {
  position: relative;
  width: 90%;
  padding: 60px 20px;
  background-image: url('imgs/why.jpg'); /* ضع رابط الصورة */
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  margin: auto;
  color: #ffff;
  overflow: hidden;
}

.why-support-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.559); /* شفاف أسود لتوضيح النص */
  z-index: 1;
}






/*indstruy*/
.industries-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.industry-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.industry-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* الصور */
.industry-images {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.industry-images img {
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.industry-images .main-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  transform: rotate(-5deg);
}

.industry-images img:not(.main-img) {
  width: 60px;
  height: 60px;
  object-fit: cover;
  transform: rotate(-10deg);
}

.industry-images img:hover {
  transform: rotate(0deg) scale(1.1);
}

/* عنوان البوكس */
.industry-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

/* النص */
.industry-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* للموبايل */
@media (max-width: 768px) {
  .industries-container {
    flex-direction: column; /* البوكسات تبقى تحت بعض */
    align-items: center;
    padding: 15px;
  }

  .industry-box {
    width: 95%; /* تقريباً كامل عرض الشاشة */
    max-width: 400px;
    margin-bottom: 30px;
  }

  .industry-images {
    display: flex;
    gap: 10px;
    overflow-x: auto; /* سكرول أفقي */
    justify-content: center; /* الصور في النص */
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  /* الصور الكبيرة */
  .industry-images .main-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    transform: rotate(-5deg);
  }

  /* الصور الصغيرة */
  .industry-images img:not(.main-img) {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    transform: rotate(-10deg);
  }

  /* النص */
  .industry-box h3 {
    text-align: center;
    margin-bottom: 8px;
  }

  .industry-box p {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
  }
}







/*products*/

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.product-card {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background-size: cover;
  background-position: center;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4); /* Overlay */
}

.product-card span {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: rgba(0,0,0,0.3);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    height: 150px;
    font-size: 16px;
  }
}

h1{
    text-align: center;
}
.curved-hr{
    width: 90%;
    height: 50px;
    border-radius: 70%;
    border-top:#1B1B1B solid 10px ;
    margin: auto;
}




/*contact*/
.contact-section {
  padding: 40px 20px;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.contact-title {
  flex: 1 1 40%;
}

.contact-title h2 {
  font-size: 32px;
  color: #d32f2f;
  margin-bottom: 15px;
}

.contact-title p {
  font-size: 18px;
  color: #555;
}

.contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 90%;
}

.contact-form button {
  padding: 14px;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #b71c1c;
}

/* 📱 للموبايل */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-title {
    text-align: center;
  }

  .contact-title h2 {
    font-size: 28px;
  }
}







/*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 .tiktok { 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;
}




/**/
 .btn-products {
      padding: 15px 40px;
      font-size: 20px;
      font-weight: bold;
      color: #fff;
      background: #0073e6;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      animation: pulse 1.5s infinite ease-in-out;
      display: block;
      margin: auto;
      margin-top: 50px;
    }

    @keyframes pulse {
      0%   { transform: scale(1); }
      50%  { transform: scale(1.2); }
      100% { transform: scale(1); }
    }