.our_projects_conteinar{
    width: 100%;
    height: auto;
    padding-top: 100px;
}
.our_projects_conteinar_area{
    width: 95%;
    height: auto;
    margin: auto;
    min-height: 80vh;

}

/* Start All Projects Div Section */

.our_all_projects_section { 
    display: flex; 
    flex-wrap: wrap;
    padding: 20px; 
    justify-content: left; 
}
.project-card { 
    background: #fff;  
    overflow: hidden; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    transition: 0.3s; 
    width: 24%; 
    margin: 5px;
}
.project-card:hover { 
    transform: translateY(-5px); 
}
.project-image { 
    position: relative; 
}
.project-image img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
}
.status { 
    position: absolute; 
    top: 10px; 
    left: 10px; 
    background: green; 
    color: white; 
    padding: 5px 10px; 
    border-radius: 5px; 
    font-size: 12px; 
}
.like-icon { 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    color: white; 
    font-size: 20px; 
    cursor: pointer;
    transition: 0.3s;  
}
.like-icon:hover { 
    color: #e64a19; 
}
.bottom-icons { 
    position: absolute; 
    bottom: 10px; 
    left: 10px; 
    color: white; 
    font-size: 18px; 
}
.bottom-icons i { 
    margin-right: 5px; 
}
.price { 
    position: absolute; 
    bottom: 10px; 
    right: 10px; 
    background: rgba(0,0,0,0.7); 
    color: white; 
    padding: 5px 10px; 
    border-radius: 5px; 
}
.project-name { 
    font-size: 18px; 
    font-weight: bold;
    padding: 10px 10px; 
    color: #057C89;
}
.location { 
    display: flex; 
    /* align-items: center;  */
    font-size: 14px; 
    color: gray; 
    padding: 5px 10px;
}
.location i { 
    margin-right: 7px;
    color: #057C89;
}
.facilities { 
    display: flex; 
    justify-content: space-between; 
    font-size: 12px; 
    color: #555; 
    padding: 10px 10px; 
}
.facility { 
    display: flex; 
    align-items: center; 
}
.facility i { 
    margin-right: 5px; 
    color: #057C89;
}
.details-btn { 
    display: block; 
    text-align: center; 
    padding: 10px;
    border: 1px solid #eee;
    color: #057C89; 
    text-decoration: none;
    font-size: 14px; 
    transition: 0.3s; 
}
.details-btn:hover { 
    background: #057C89; 
    color: #fff;
}
@media (max-width: 1024px) { 
    .project-card { 
        width: 48%; 
    } 
}
@media (max-width: 768px) { 
    .project-card { 
        width: 100%; 
    } 
}


/* Project Status Section */
.Projects_status { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 200px; 
    background: #fff; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    margin: 20px; 
    text-align: center; 
}
.Projects_status p { 
    font-size: 18px; 
    color: #555; 
}