/* =========================================================================
   FUTURISTIC SWIPER SLIDER
   ========================================================================= */

.cyber-swiper {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), 0 0 40px rgba(206, 14, 14, 0.1);
    border: 1px solid rgba(255,255,255,0.1);
    /* Futuristic border */
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.cyber-swiper .swiper-wrapper {
    margin: 0 !important;
    padding: 0 !important;
}

.cyber-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important; /* Ensure image doesn't overflow slide bounds during scale */
}

.cyber-swiper .swiper-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: brightness(0.6) contrast(1.1);
    transform: scale(1) !important;
    transition: transform 8s linear !important;
}

/* Ken Burns effect: Zoom from 100% to 110% smoothly */
.cyber-swiper .swiper-slide-active img {
    transform: scale(1.1) !important;
}

/* Glassmorphism Caption */
.cyber-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 60%;
    padding: 25px 35px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border-left: 4px solid #00f0ff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.8);
    /* Animation start state */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.3s;
}

.swiper-slide-active .cyber-caption {
    opacity: 1;
    transform: translateY(0);
}

.cyber-title {
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.cyber-desc {
    color: #e0e0e0;
    font-size: 16px;
    margin: 0 0 20px 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* Swiper Navigation Buttons (Cyberpunk Style) */
.cyber-swiper .swiper-button-next,
.cyber-swiper .swiper-button-prev {
    color: #00f0ff;
    background: rgba(10, 10, 10, 0.7);
    width: 50px;
    height: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid #00f0ff;
    border-radius: 0;
    transition: all 0.3s ease;
}

.cyber-swiper .swiper-button-next {
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    right: 20px;
}

.cyber-swiper .swiper-button-prev {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    left: 20px;
}

.cyber-swiper .swiper-button-next:after,
.cyber-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.cyber-swiper .swiper-button-next:hover,
.cyber-swiper .swiper-button-prev:hover {
    background: #00f0ff;
    color: #121212;
    box-shadow: 0 0 15px #00f0ff;
}

/* Swiper Pagination (Neon dashes) */
.cyber-swiper .swiper-pagination-bullet {
    width: 25px;
    height: 4px;
    border-radius: 0;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.cyber-swiper .swiper-pagination-bullet-active {
    background: #ce0e0e;
    width: 40px;
    box-shadow: 0 0 10px #ce0e0e;
}

/* Override global .span12>div padding for the slider */
.span12 > div.cyber-swiper {
    padding: 0 !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}
