@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
      font-family: "Poppins", sans-serif;
    margin: 0;
    padding:  0;
    box-sizing: border-box;
    scroll-behavior: smooth;


}
.logo img{
    width: 4em;
    transition: transform 0.5s ease;

}
.logo img:hover {
transform: scale(1.1);
}
 header{
    background-color:  #ffffff3b;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4em  12em;
    transition: all 0.5s ease;
    pointer-events: auto;
 }
  header:hover{
    background-color: #02215b;

}

header:hover .Navigation a {
    color: #FFFFFF;

}
 
 .Navigation a{
    text-decoration: none;
    color: #02215b;
    font-weight: 700;
    font-size: 1em;
    padding-left: 2em;
    transition: all 0.5s ease;

 }

header:hover .Navigation a {
    color: #FFFFFF;
}

header:hover .Navigation a:hover {
    color: #FFB825;
}

.Navigation2{
    align-items: center;
    display: flex;
    justify-content: space-between;


}
.Navigation2 a{
    text-decoration: none;
    color: #FFB825;
    font-weight: 700;
    font-size: 1em;
    padding-left: 2em;
    transition: all 0.5s ease;
    padding-right: 1em;


}
.Navigation2 a:hover{
    color: #ffffff;
    font-size: 1.2em;


}

.Navigation2 img{
    width: 3em;
}


.Home{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:url(Images/BG\ Home.jpg) ;
    background-size: cover;
    background-position: center ;
    background-attachment: fixed;
    padding: 5em 10em;

}

.Home span{
    color: #FFFFFF;
    font-size: 3.2em;
    font-weight: 900;
}

.Home h2{
    color: #FFB825;
    text-shadow: 1px 1px 0px rgb(255, 255, 255);
    font-size: 2.2em;
    font-weight: 700;


}
.Home h3{
    color: #FFFFFF;
    font-size: 1.5em;
    font-weight: 500;

}
.Home p{
    color: #FFFFFF;
    font-size: 1.3em;
    font-weight: 500;
    padding-bottom: 20px;
    padding-right: 500px;
}
.main-btn{
    color: #ffffff;
    background-color: #FFB825;
    text-decoration: none;
    font-size: 1em;
    font-weight: 700;
    padding: 0.9375em 2.1875em;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 2px 2px 1px #ffffff;
    transition: 0.5s ease;

}

.main-btn:hover {
    background-color:#ff7700
    
}

.social{
margin-top: 1.2em;
margin-left: 3.5em;
}
.social a{
    color: #FFFFFF;
    font-size: 2.4em;
    padding-right: 1.5em;
    transition:all 0.5s ease;

}
.social a :hover{
    color: #FFB825;
    transform: 1.1em;
 
}

.About{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:50px 200px;
    background:url(Images/BG2.jpg) ;
    background-size: cover;
    background-position: center ;
    

}


.About p span{
    color: #FFB825;
    font-size: 1.2em;
}
.About h2{
    color: #ffffff;
    font-size:7em ;
    font-weight: 700;
    color: white; 
  -webkit-text-stroke: 2px #FFB825;
}
.About h3{
    background-color: #FFB825;
    color: #ffffff;
    font-size:2em ;
    font-weight: 700;
    text-align: center;

}
.About p{
    color: #000000;
    font-size:1.2em ;
    font-weight: 700;
    padding: 20px 0PX;


}
.About div{
background-color: #ffffff;
  border: 2px solid #FFB825;
  box-shadow: 2PX 2PX 2PX #bbbbbb ;
  border-radius: 8px; 
  padding: 2EM;
  margin: 1EM;
transition:all 0.5s ease;

}
.About div:hover{
background-color: #ffb6252d;
  transform: 3EM;
}
.cards{
    padding: 100px;
    background-color: #02215b;
}

.cards h2 {
    display: flex;
    justify-content: center;
    color: #ffffff;
    font-size: 2.2em;
    font-weight: 700;
    padding-bottom: 50PX;
}
.content{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.card {
    background-color: #FFFFFF;
    width: 25em;
    border-radius: 10px;  
    box-shadow: 0px 5px 25px rgba(1 1 1 / 15%);
    margin: 15px;
    transition:all 0.5s ease;
    position:relative;
    overflow: hidden


}
.card:hover{
    transform: 1.1em;
}
.icon img{
    color: #ff7700;
    width: 100%;
    object-fit: cover;
}
.info{
position: absolute;   
bottom: 0;            
left: 0;
right: 0;             
  
padding: 15px;       
word-wrap: break-word;
max-height: 100%;     
overflow-y: auto;    
  
background: rgba(0, 0, 0, 0.3); 
color: white;   
text-align: center;
transition:all 0.5s ease;


}
.info:hover{
background: rgba(0, 0, 0, 0.6); 
color: white;   

}

.info h3{
    text-align: center;
    color: #FFB825;
    font-size: 1.5em;
    font-weight: 700;

}
.info p{
    text-align: center;
    color: white;
    font-size: 0.0em;
    font-weight: 400;
    transition:all 0.7s ease;


}
.info:hover p{
    font-size: 0.9em;

}
.projects{
    padding: 100px 200px;
}
.projects h2{
    display: flex;
    justify-content: center;
    color: #02215b;
    font-size: 2.2em;
    font-weight: 700;
    padding-bottom: 50PX;
}
.content-projects{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;

}
.project-card{
    background-color: #02215b;
    border: 2px solid #FFB825;
    min-height: 14em;
    width: 30em;
    overflow: hidden;
    margin: 20px;
    transition: all 0.7 ease;
   

}
.projects-card:hover{
    transform:scale(1.1em);
}
.projects img{
    width: 100%;
    transition: all 0.7 ease;
    position: relative;


}
.projects img:hover{
opacity: 0.9;
}
.location-company{
    display: flex;
    gap: 10px;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    background-color: #FFB825;
    padding: 5px 0px;

}
.location-company a{
    
    color: #ffffff;
}
.info-projects-paragrapgh{
    display: flex;
    justify-content: last baseline;
    color: #FFFFFF;
    font-size: 0.9em;
    font-weight: 500;
    padding: 20px 40px;
    

}
.info-projects-seemore{
    
}
.info-projects-seemore a{
    display: flex;
    justify-content: right;
    color: #02215b;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    padding: 10px;
    background-color: #ffffff;
    transition: all 0.7 ease;

    
}
.info-projects-seemore a:hover{
    color: #ffffff;
    background-color: #FFB825;
    
}


.logos-container {
  overflow: hidden; 
  padding: 40px 0;
  background: #02215b; 
  white-space: nowrap; 
  position: relative;
}

.logos-container::before,
.logos-container::after {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  content: "";
  z-index: 2;
}
.logos-container::before {
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), #f9f9f9);
}
.logos-container::after {
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), #f9f9f9);
}

.logos-slide {
  display: inline-block;
  animation: 25s slide infinite linear; 
}

.logos-slide img {
  height: 250px; 
  margin: 0 40px; 
  border-radius: 20px;
  filter: grayscale(100%); 
  opacity: 0.6;
  transition: all 0.3s ease;
}

.logos-slide img:hover {
  filter: grayscale(0%); 
  opacity: 1;
}

.logos-container:hover .logos-slide {
  animation-play-state: paused;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%); 
  }
}
.Partners{
    background-color: #FFB825;
    padding-top: 20px;
}
.Partners h2{
    display: flex;
    justify-content: center;
    color: #ffffff;
    font-size: 2.2em;
    font-weight: 700;
    padding-bottom: 20PX;

}

.contact-form-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-container {
  max-width: 750px;
  margin: 0 auto;
  background: #fdfdfd;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
  direction: ltr; 
}

.form-container h2 {
  color: #FFB825;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.form-container p {
  color: #666666;
  font-size: 15px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.6;
  padding:0px 80px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 15px;
  color: #333333;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #134074; /* Accent blue */
  outline: none;
  box-shadow: 0 0 5px rgba(19, 64, 116, 0.2);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #134074;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #0b2545;
}

.submit-btn:active {
  transform: scale(0.98);
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-container {
    padding: 20px;
  }
}
.footer{
    background-color: #02215b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer img{
padding-top: 30px;}
.contacts-info{
    display: flex;
    gap: 10px;
    padding: 20px 50px;
    color: #ffffff;
}
.contacts-info a{
    padding-left: 20px;
    color: #ffffff;
}



@media (max-width: 1024px) {
    header {
        padding: 0.4em 2em; 
    }
    .Home {
        padding: 5em 3em;
    }
    .About {
        padding: 50px 40px;
    }
    .projects {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1em;
        position: relative; 
        background-color: #02215b;
    }
    
    .Navigation, .Navigation2 {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 0;
        width: 100%;
    }
    
    .Navigation a, .Navigation2 a {
        padding: 5px 10px;
        font-size: 0.9em;
        color: #fff;
    }

    .Home {
        padding: 4em 1.5em;
        text-align: center;
        min-height: auto;
    }
    
    .Home span {
        font-size: 2.2em;
    }
    
    .Home h2 {
        font-size: 1.6em;
    }
    
    .Home p {
        padding-right: 0;
        font-size: 1.1em;
    }
    
    .social {
        position: static;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
    .social a {
        padding: 0 10px;
        font-size: 2em;
    }

    .About {
        padding: 40px 15px;
        min-height: auto;
    }
    
    .About h2 {
        font-size: 3em; 
    }
    
    .About h3 {
        font-size: 1.5em;
    }
    
    .About div {
        padding: 1.2em;
        margin: 0.5em 0;
    }
    .social{
margin-top: 1.2em;
margin-left: 0em;
}

    .cards h2, .projects h2, .Partners h2 {
        font-size: 1.8em;
        padding-bottom: 25px;
    }
    
    .card, .project-card {
        width: 100%; 
        margin: 10px 0;
    }
    
    .info-projects-paragrapgh {
        padding: 15px;
    }
    .info h3 {
        font-size: 0.9em;
    }
    .info:hover p{
        font-size: 0.5em;
    }

    .logos-slide img {
        height: 80px; 
        margin: 0 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .form-container p {
        padding: 0;
    }

    .contacts-info {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        font-size: 0.6em;
    }
    
    .contacts-info a {
        padding-left: 0;
    }
}
/* أضيفي هذا الكود أسفل ملف الـ CSS */
.menu-toggle, .menu-close {
    display: none;
    font-size: 1.8em;
    color: #FFB825;
    cursor: pointer;
}
.mobile-only-link {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-left: 15px;
    }
    .mobile-only-link {
        display: block !important;
    }
    .Navigation {
        position: fixed;
        top: 0;
        right: -100%; /* القائمة مخفية برة الشاشة تماماً يمين */
        width: 260px;
        height: 100vh;
        background-color: #02215b;
        display: flex;
        flex-direction: column;
        padding: 100px 30px;
        gap: 25px;
        transition: right 0.4s ease-in-out;
        z-index: 10000;
    }
    .Navigation.active {
        right: 0; /* تتحرك المنيو لداخل الشاشة بسلاسة */
    }
    .menu-close {
        display: block;
        position: absolute;
        top: 25px;
        left: 25px;
        color: #ffffff;
    }
}