.gallery-box {
    padding: 10px;
}

.box {
    padding: 15px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.gallery-img:hover {
    cursor: pointer;
    border: 5px solid #f44954;
    transform: rotate(-1deg) scale(1.05);
}

.modal {
    display: none;
    /* مخفی در حالت عادی */
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 50%;
    max-height: 90%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}