/* --- Gallery Slider --- */
.gallery-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 10px auto;
}
.gallery-title {
    color: green;
}
.slider-container {
    display: flex;
    gap: 15px;
    animation: scrollSlider 25s linear infinite;
}

.slider-container img {
    width: 350px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-container img:hover {
    transform: scale(1.05);
}

/* Infinite Scroll Animation */
@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
