.pagination-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-buttons button {
    background-color: #ffc107; 
    color: #212529; 
    border: none;
    padding: 7px 20px;
    height: 40px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    font-weight: bold; 
    transition: background-color 0.3s ease;
}

.pagination-buttons button:hover {
    background-color: #e0a800;
}

.pagination-buttons button:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.our-projects {padding-top: 0 !important;}

/* Modal container */
.image-modal {
    display: none; 
    position: fixed;
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.modal-content {
    max-width: 90%; 
    max-height: 90%; 
    border-radius: 8px; 
    object-fit: contain; 
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1001; 
}

.close-modal:hover {
    color: #ffc107;
}