/* ================= Swiper 3D Gallery CSS ================= */

.swiper.mySwiper3D {
    width: 90%;
    max-width: 1000px;
    height: 400px;
    margin: 40px auto;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 10px 0;
    font-weight: bold;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-slide:hover .overlay {
    opacity: 1;
}

/* Pagination bullets */
.swiper-pagination-bullet {
    background: #007a00;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #d40000;
}