
.hidden {
    display: none !important;
}

.pagination-container {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-buttons {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.pagination-button {
    padding: 12px 25px;
    background-color: #00aa7b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination-button:hover {
    background-color: #008c65;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pagination-button:active {
    transform: translateY(0);
}

.pagination-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagination-info {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.loading-spinner {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid #ffffff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fade-enter {
    opacity: 0;
    transform: translateY(20px);
}

.fade-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pagination-button .icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.gallery_sec {
    width: 100%;
    padding: 80px 0;
}

.heading {
    width: 100%;
    text-align: center;
}

.heading h2 {
    font-size: 30px;
    font-weight: bold;
    border-bottom: 2px solid #000;
    padding-bottom: 25px;
}

.gallery_sec img {
    width: 100%;
    /*        margin-bottom: 30px;*/
    height: 250px;
    transition: opacity 0.3s ease-in-out;
    object-fit: contain;
}

.gallery_sec a {
    position: relative;
    transition: 0.3s ease-in-out;
    display: block;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.gallery_sec a:hover .overlay {
    opacity: 1;
}

.gallery_sec img {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.gallery_sec a:hover img {
    position: relative;
    width: 100%;
}

.gallery_sec a:hover img {
    opacity: 0.2;
}

.gallery_sec a {
    position: relative;
}

.gallery_sec a:hover::before {
    position: absolute;
    content: "";
    background: url(https://i.ibb.co/3fMkjjF/Resize.png);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 99;
}


.gallery_sec .overlay {
    position: absolute;
    /* top: 50%;
    left: 50%;
     transform: translate(-50%, -50%);*/
    color: white;
    font-size: 20px;
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    /* Ensure the overlay is above the image */
}

.gallery_sec {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 40px 0;
}

.gallery_item {
    position: relative;
    width: 200px;
}

.gallery_item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.img-over-add-txt {
    display: flex;
    justify-content: center;
    align-items: center;

}

.lightgallery-sec {
    background-color: rgb(239, 239, 239);
    object-fit: cover;
    padding: 10px;
}
