#projectModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
}
.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0; left: 0;
}
.modal-box {
    position: absolute;
    max-width: 600px;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}
.modal-image img {
    max-width: 100%;
    height: auto;
}
.modal-link a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: underline;
    color: #0073aa;
}
