.swiper {
    width: 100%;
    position: relative;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
}

.swiper-slide-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

/* Custom height mode styles */
.swiper-custom-height .swiper-slide,
.swiper-custom-height .swiper-slide-inner {
    height: 100%;
}

.swiper-custom-height .swiper-slide img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content Positioning */
.swiper-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    padding: 20px;
}

.swiper-slide-title {
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-size: 2.5em;
    line-height: 1.2;
    font-weight: 700;
}

.swiper-slide-description {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

/* Responsive Typography */
@media screen and (max-width: 1024px) {
    .swiper-slide-title {
        font-size: 2em;
        margin-bottom: 12px;
    }
    
    .swiper-slide-description {
        font-size: 1.05em;
        max-width: 600px;
    }
}

@media screen and (max-width: 767px) {
    .swiper-slide-content {
        width: 95%;
        padding: 15px;
    }
    
    .swiper-slide-title {
        font-size: 1.8em;
        margin-bottom: 10px;
    }
    
    .swiper-slide-description {
        font-size: 1em;
        line-height: 1.4;
    }
}

/* Overlays */
.swiper-slide-inner.overlay-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.swiper-slide-inner.overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

/* Pagination */
.swiper-pagination {
    position: absolute;
    width: 100%;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
}

.swiper-pagination-bullet {
    display: inline-block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Remove the duplicate closing brace at the end */
.swiper-pagination-bullet-active {
    opacity: 1;
} 