
  *{
    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-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 {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* ✅ خيارات احترافية */
.options-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.option-card {
  position: relative;
  cursor: pointer;
}

.option-card input {
  display: none; /* إخفاء الـ radio الأصلي */
}

.option-card span {
  display: inline-block;
  padding: 15px 25px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}

/* ✅ عند التحديد */
.option-card input:checked + span {
  background-color: #1a202c;
  color: #fff;
  border-color: #1a202c;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.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;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.employee-card {
  background: linear-gradient(135deg, #4372a1, rgb(80 125 156 / 51%), #1a202c94);
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.employee-card:hover {
  transform: scale(1.03);
}

.employee-photo {
     width: 156px;
    height: 124px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.employee-card h3 {
  margin: 10px 0 5px;
       font-size: 20px;
    color: #1c2630;
}

.employee-name {
  font-weight: bold;
  margin-bottom: 15px;
  color: #444;
      font-size:17px ;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-icons a {
  width: 44px;
  height: 44px;
  background-color: #f3f3f3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.contact-icons a:hover {
  background-color: #ddd;
}

.contact-icons img {
  width: 22px;
  height: 22px;
}


.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;
    }
}