/* Swiper Portfolio Slider */
.swiper-container {
    width: 100%;
    height: auto;
    background: white;
    border-radius: 0;
    overflow: hidden;
    margin-top: 66px;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background: white;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Swiper Pagination (Bullets) */
.swiper-pagination {
    position: relative;
    bottom: 20px;
    text-align: center;
    padding: 20px 0;
}

.swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background-color: #999;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 20px;
    height: 6px;
    background-color: #000;
    border-radius: 3px;
    opacity: 1;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

/* Touch Feedback */
.swiper-container {
    -webkit-user-select: none;
    user-select: none;
    touch-action: pan-y;
    cursor: grab;
}

.swiper-container:active {
    cursor: grabbing;
}

/* Responsive */
@media (max-width: 768px) {
    .swiper-container {
        margin-top: 0;
    }
}
