body {
    
    font-family: "Noto Kufi Arabic", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2386c8;
}
a{
    text-decoration: none;
}

.container {
    width:72%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 15%;
   
    
}
@media (min-width: 668px) {
    .col-md-4 {
        flex: 0 0 auto;
        width: 81.333333%;
    }
    .navbar{
        margin-bottom: 50px;
    }

}




h1, h2 {
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
   
}
#allData {
    display: flex;
    flex-direction: column;  /* جعل العناصر تتراصف عموديًا */
    align-items: center;     /* محاذاة العناصر أفقيًا في المنتصف */
    justify-content: center; /* محاذاة العناصر عموديًا في المنتصف */
    gap: 20px;               /* المسافة بين المشاريع */
    padding: 20px;
      /* المسافة بين المشاريع */
}
#projectsList {
    display: flex;
    flex-direction: column;  /* جعل العناصر تتراصف عموديًا */
    align-items: center;     /* محاذاة العناصر أفقيًا في المنتصف */
    justify-content: center; /* محاذاة العناصر عموديًا في المنتصف */
    gap: 20px;               /* المسافة بين المشاريع */
    padding: 20px;
      /* المسافة بين المشاريع */
    margin-right:7%;
    margin-top: 10%;
    width: 100%;
}

.project-card {
    width: 100%;  /* جعل كل مشروع يأخذ العرض الكامل */

}
.container .search-box{
    width: 100%;
    border: 1px solid gray;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.container .search-box input{
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    font-size: 18px;
}
.container .search-box i{
    margin-right: 10px;
    cursor: pointer;
}
#projectsList,#allData:hover{
    color: gray;
    cursor: pointer;
}
