.pagination-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gallary_btn {
    padding: 12px 12px;
    border: none;
    background-color: white;
    color: #004195;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.gallary_btn:hover {
    background-color: #004195;
    color: white;
}

.gallary_btn.active {
    background-color: #004195;
    color: white;
    border-color: #007bff;
    font-weight: bold;
}

.ellipsis {
    display: flex;
    align-items: center;
    padding: 0 5px;
    font-size: 14px;
    color: #004195;
}

.gallery-item {
    text-align: center;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}