.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-box {
    background: #fff;
    width: 70%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 10px;
    padding: 25px;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.modal-close:hover {
    color: #81d23f;
}

.project-desc {
    font-size: 14px;
    line-height: 1.6;
}

.project-desc .full-text {
    display: none;
}

.project-desc .see-more {
    color: #94c84a;
    cursor: pointer;
    font-size: 0.9em;
    margin-left: 5px;
    text-decoration: underline;
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.page-link {
    padding: 8px 16px;
    border-radius: 25px;
    background-color: #94c84a !important;
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}
.page-link.active,
.page-link:hover {
    background: #91c241ff !important;
    color: #fff !important;
    border-color: #91c241ff !important;
}

.page-link.disabled {
    background-color: #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

.pagination-info {
    font-weight: 600;
    color: #333;
}