.custom-project-box {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    background-color: #f1efef;
    height: auto;
    border-radius: 8px; /* Adds subtle rounded corners for a modern look */
    overflow: hidden;

}

.custom-project-box img {
    display: block;
    width: 100%; /* Ensure image occupies full width */
    height: auto;
}
.custom-project-title {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
    min-height: 50px; /* Ensure titles align properly */
    width: 100%; /* Ensure the title occupies full width */
}
.custom-project-title h4 {
    margin: 0;
    font-weight: 600;
    line-height: 1.2; /* Improve text spacing */
}
@media (max-width: 992px) {
    .col-lg-3 {
        flex: 0 0 33.33%; /* 3 columns on medium devices */
    }
}
@media (max-width: 768px) {
    .col-lg-3 {
        flex: 0 0 50%; /* 2 columns on small devices */
    }
}
@media (max-width: 576px) {
    .col-lg-3 {
        flex: 0 0 100%; /* Full width on extra small devices */
    }
}