
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

.request-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;

}

.request-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 90%;          /* ✅ عرض أكبر */
  max-width: 1000px;   /* ✅ نزيد الحد الأقصى */
  text-align: center;
}

.request-box h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color:#1a202c ;
}

.request-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.request-box input,
.request-box textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.request-box button {
  background: #1a202c;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.request-box button:hover {
  background: #12435f90;
}

.customers-section {
  text-align: center;
  padding: 30px;
}

.customers-section h2 {
    font-size: 32px;
    margin-bottom: 36px;
    color:rgb(87 89 91) ;
}





















.customers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.customer-card {
  background: linear-gradient(to bottom right, #3f7e6b, #2a5e4d);
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  width: 180px;
  text-align: center;
}

.customer-card img {
  width: 60px;
  margin-bottom: 10px;
}

.customer-card h3 {
  font-size: 18px;
  margin: 8px 0;
}

.customer-card p {
  margin-bottom: 8px;
  font-size: 14px;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icons img {
  width: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icons img:hover {
  transform: scale(1.1);
}

/* موبايل */
@media (max-width: 768px) {
  .customers-grid {
    flex-direction: column;
    align-items: center;
  }
}


.customer-card:hover {
  transform: scale(1.05);
}

.customer-card img {
  width: 80px;
  margin-bottom: 10px;
}

.customer-card h3 {
  font-size: 20px;
  margin: 10px 0 5px;
}

.customer-card p {
  margin-bottom: 10px;
  font-size: 16px;
}

.customer-card .icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.customer-card .icons img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.customer-card .icons img:hover {
  transform: scale(1.2);
}

/* 🔥 حركة الألوان */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 📱 للجوال */
@media (max-width: 768px) {
  .customers-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}



.customers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}

@media (max-width: 992px) {
  .customers-grid {
    grid-template-columns: repeat(2, 1fr); /* للجوال صفين بعمودين */
  }
}

@media (max-width: 600px) {
  .customers-grid {
    grid-template-columns: 1fr; /* للجوال الصغير كرت واحد */
  }
}

.customers-section {
  text-align: center;
  margin: 40px auto;
  max-width: 950px; /* 🔥 تحديد عرض أقل عشان تصير الكروت في النص */
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px; /* 🔥 مسافة قليلة بين الكروت */
  justify-content: center; /* 🔥 يضمن أن الشبكة كلها في النص */
  align-items: center;
  margin: 0 auto;
}

.customer-card {
  background: linear-gradient(135deg, #4e54c8, #8f94fb);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.customer-card:hover {
  transform: scale(1.05);
}

.customer-card h3 {
  margin: 8px 0 4px;
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.customer-card p {
  font-size: 14px;
  color: #fff;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 كروت بالصف */
  gap: 20px;
  justify-content: center;
  justify-items: center;
  padding: 20px;
  max-width: 1600px; /* مساحة أعرض */
  margin: auto;
}
.customer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px; /* مسافة بين الكروت */
  padding: 20px;
}

.customer-card {
  flex: 0 1 22%;
  min-width:240px ;
  min-height: 180px; /* 🔥 كبرنا الكرت عشان الصورة */
  text-align: center;
  border-radius: 12px;
  color: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; /* 🔥 الصورة بالنص */
  background:linear-gradient(135deg, #4372a1, rgb(80 125 156 / 51%), #1a202c94) ;
  animation: gradientMove 6s infinite alternate;
}

.customer-card img {
  width: 90px; /* 🔥 حجم الصورة */
  height: 90px;
  border-radius: 50%;
  margin-bottom: 12px; /* مسافة بين الصورة والاسم */
  border: 3px solid #fff; /* إطار أبيض */
}

/* ✅ أيباد */
@media (min-width: 769px) and (max-width: 1024px) {
  .customers-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
  }
  .customer-card {
    max-width: 380px; /* أعرض على الايباد */
    min-height: 130px;
  }
}

/* ✅ جوال */
@media (max-width: 768px) {
  .customers-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .customer-card {
    width: 95%;
    max-width: 420px; /* أعرض للجوال */
    min-height: 120px;
  }
}

/* ✅ موبايل وتابلت */
@media (max-width: 992px) {
  .customers-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .customers-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .customers-grid {
    display: flex;            /* نستخدم فليكس بدل جريد */
    flex-direction: column;
    align-items: center;       /* ✅ الكروت بالنص */
    gap: 12px;
  }

  .customer-card {
    width: 80%;                /* ✅ عرض مناسب */
    max-width: 280px;
  }
}
/* ✅ أيباد - صفين وكل صف فيه كرتين بالنص */
@media (min-width: 769px) and (max-width: 1024px) {
  .customers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* صفين */
    gap: 15px;
    justify-items: center; /* يخلي الكروت بالنص */
  }

  .customer-card {
    width: 85%;
    max-width: 260px;
  }
}

/* ✅ جوال - كروت بالنص */
@media (max-width: 768px) {
  .customers-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .customer-card {
    width: 80%;
    max-width: 280px;
  }
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* الصف الأول 5 أعمدة */
  gap: 20px;
  max-width: 1400px;
  margin: auto;
  justify-items: center;
}

/* ✅ الصف الثاني (من الكرت 6 إلى 9) */
.customers-grid .customer-card:nth-child(n+6) {
  grid-column: span 1;
}

/* نوزعهم بحيث يكون 4 بالصف الثاني */
.customers-grid .customer-card:nth-child(6) { grid-column: 2; }
.customers-grid .customer-card:nth-child(7) { grid-column: 3; }
.customers-grid .customer-card:nth-child(8) { grid-column: 4; }
.customers-grid .customer-card:nth-child(9) { grid-column: 5; }

/* ✅ استايل الكرت */
.customer-card {
  background: linear-gradient(135deg, #4372a1, rgb(80 125 156 / 51%), #1a202c94);
  color: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  min-height: 180px;
  width: 100%;
  max-width: 220px;
  transition: transform 0.3s ease;
}

.customer-card:hover {
  transform: scale(1.05);
}

.customer-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 12px;
}

/* ✅ أيباد - صفين كل صف فيه 2 أو 3 */
@media (max-width: 1024px) {
  .customers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ جوال */
@media (max-width: 600px) {
  .customers-grid {
    grid-template-columns: 1fr;
  }
}

.customers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* ✅ يخلي أي صف أقل يطلع بالنص */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.customer-card {
  background: linear-gradient(135deg, #4372a1, rgb(80 125 156 / 51%), #1a202c94);
  color: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  min-height: 180px;
  width: 200px;   /* ✅ عرض ثابت لكل الكروت */
  transition: transform 0.3s ease;
}

.customer-card:hover {
  transform: scale(1.05);
}

.customer-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 12px;
}

/* ✅ أيباد */
@media (max-width: 1024px) {
  .customers-grid {
    justify-content: center;
  }
  .customer-card {
    width: 45%;  /* صفين بكرتين */
  }
}

/* ✅ جوال */
@media (max-width: 600px) {
  .customer-card {
    width: 100%; /* كرت واحد بالصف */
  }
}

.customers-section {
  text-align: center;
  margin: 40px auto;
  max-width: 1400px;
}

.customers-grid {
  display: grid;
  gap: 20px;
  justify-items: center;
  grid-auto-rows: auto;
}

/* الصف الأول 4 أعمدة */
.customers-grid .customer-card:nth-child(-n+4) {
  grid-column: span 1;
}

.customers-grid {
  grid-template-columns: repeat(4, 1fr); /* افتراضياً للصف الأول */
}

/* الصف الثاني 5 أعمدة */
.customers-grid .customer-card:nth-child(n+5):nth-child(-n+9) {
  grid-column: span 1;
}

@media (min-width: 1200px) {
  /* جعل الصف الثاني 5 أعمدة */
  .customers-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* بطاقة الموظف */
.customer-card {
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.customer-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.customer-card h3 {
  margin: 5px 0;
  font-size: 18px;
}

.customer-card p {
  font-size: 14px;
  margin-bottom: 8px;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icons img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icons img:hover {
  transform: scale(1.2);
}

/* 📱 أيباد وجوال */
@media (max-width: 1024px) {
  .customers-grid {
    grid-template-columns: repeat(2, 1fr); /* صفين كل صف عمودين */
  }
}

@media (max-width: 768px) {
  .customers-grid {
    grid-template-columns: 1fr; /* كرت واحد لكل صف */
  }
}

.customers-section {
  text-align: center;
  margin: 40px auto;
  max-width: 1200px;
}

/* كل الصفوف flex */
.customers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ✅ يجعل الصفوف في المنتصف */
  gap: 20px;
  margin-bottom: 20px;
}

/* الصف الأول 4 موظفين */
.customers-grid.row-1 .customer-card {
  flex: 0 1 22%; /* تقريبا 4 أعمدة */
  max-width: 200px;
}

/* الصف الثاني 5 موظفين */
.customers-grid.row-2 .customer-card {
  flex: 0 1 18%; /* تقريبا 5 أعمدة */
  max-width: 180px;
}

/* بطاقة الموظف */
.customer-card {
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.customer-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.customer-card h3 {
  margin: 5px 0;
  font-size: 18px;
}

.customer-card p {
  font-size: 14px;
  margin-bottom: 8px;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icons img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icons img:hover {
  transform: scale(1.2);
}

/* 📱 أيباد وجوال */
@media (max-width: 1024px) {
  .customers-grid.row-1 .customer-card,
  .customers-grid.row-2 .customer-card {
    flex: 0 1 45%; /* صفين لكل صف */
  }
}

@media (max-width: 768px) {
  .customers-grid.row-1 .customer-card,
  .customers-grid.row-2 .customer-card {
    flex: 0 1 80%; /* كرت واحد لكل صف */
  }
}

.footer {
  background-color: #1c3c2e69;
  color: #333030;
  font-weight: 900;
  padding: 60px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* ✅ تقسيم الأعمدة على الشاشات المتوسطة */
@media (min-width: 769px) and (max-width: 1200px) {
  .footer .col {
    flex: 1 1 45%;   /* كل عمود يأخذ 45% */
    max-width: 45%;
  }
  .footer {
    justify-content: center;
  }
}

/* ✅ للجوال */
@media (max-width: 768px) {
  .footer {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .col {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* 📱 في الجوال والآيباد */
@media (max-width: 1024px) {
  .footer {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .col {
    width: 100%;
    text-align: center;
  }

  .contact {
    text-align: center;
  }

  .contact .number,
  .contact .title {
    text-align: center;
    display: block;
    width: 100%;
  }

  .social-icons {
    justify-content: center;
    margin: 10px auto 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.col h3 {
 font-size: 26px;
    margin-bottom: 17px;
    font-weight: 900;
}

.col p, .col li, .col a {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    line-height: 25px;
    text-decoration: none;
}

.col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.col li {
  margin-bottom: 6px;
}

.contact .title {
      font-size: 24px;
    margin-bottom: 17px;
    color: #232323;
}

.contact .number {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  
}

.social-icons a {
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #012a4a;
  font-size: 20px;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #61a5c2;
  color: #fff;
}

.footer-bottom {
  background:#00000040 ;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.footer-bottom p {
  color: #fff;
 font-size: 17px;
    font-weight: 800;
}

.footer-logo {
  width: 60px;
  height: auto;
}

/* 📱 الجوال */
@media (max-width: 768px) {
  .footer {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .col {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* media query */

@media (max-width:800px) {
    nav ul{
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    nav ul li:last-child{
        padding-bottom: 40px;
    }
    .menu-icon{
        display: block;
    }
    .hero-section{
        flex-direction: column;
        height: auto;
        padding-top: 40px;
        padding-bottom: 0;
    }
    .hero-section .left,.hero-section .right{
        width: 100%;
    }
    #heroSection,#blogsection,#testimonialSection,#trendSection,#blogsection{
        padding: 40px 2rem;
        padding-top: 80px;
    }
    nav{
        padding: 1rem 2rem;
    }
}

@media (max-width:500px) {
    .hero-section .left h1{
        font-size: 30px;
    }
    footer{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 0;
    }
}