.aes-slider-widget {
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aes-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.4s ease;
}

.aes-slide-content {
    max-width: 85%;
    padding: 20px;
    z-index: 2;
    color: #fff;
}

.aes-title {
    margin: 0 0 15px 0;
    color: #fff;
    line-height: 1.2;
}

.aes-description {
    margin: 0 0 25px 0;
    color: #fff;
    max-width: 700px;
}

.aes-button {
    display: inline-block;
    color: #fff;
    background-color: #0073aa;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.3);
}

.aes-button:hover {
    box-shadow: 0 8px 25px rgba(0, 115, 170, 0.4);
}

/* Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(0,0,0,0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(0,115,170,0.9);
    transform: scale(1.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

/* Pagination */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #0073aa;
    opacity: 1;
    transform: scale(1.3);
}

.aes-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;           /* default center – repeater override karega */
    justify-content: center;
    z-index: 1;
    transition: all 0.4s ease;
}

.aes-slide-content {
    max-width: 85%;
    padding: 20px;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;        /* important for vertical choose */
}



/* Device visibility */
@media (min-width: 1025px) {
    .aes-hide-desktop { display: none !important; }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .aes-hide-tablet { display: none !important; }
}
@media (max-width: 767px) {
    .aes-hide-mobile { display: none !important; }
}