/* KS Image Carousel Styles - A.K.P. College Theme Edition */
.ks-carousel-container {
    position: relative;
    width: 100%;
    margin-bottom: 35px;
    perspective: 1500px;
}

.ks-carousel-title {
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    font-family: serif;
    letter-spacing: 0.5px;
    color: #8b0000; /* Deep College Crimson */
}

/* 🏛️ Academic Crimson & Gold-Trimmed 3D Frame */
.ks-carousel-container .swiper {
    position: relative;
    width: 100%;
    max-width: var(--ks-carousel-width, 900px);
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: #120a0a;
    
    /* Rich Crimson Wood Frame with Institutional Gold Trim */
    border: 10px solid #5c0606;
    outline: 2px solid #d4af37; /* Institutional Gold Accent */
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.9), /* Deep recessed frame shadow */
        0 15px 35px rgba(92, 6, 6, 0.35),   /* Warm crimson-tinted drop shadow */
        0 0 20px rgba(212, 175, 55, 0.25); /* Golden ambient glow */
        
    transform-style: preserve-3d;
}

.ks-carousel-container .swiper-slide {
    text-align: center;
    background: #fcfbfa; /* Clean museum archival mat board */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px; /* Creates the professional photo mat border */
    box-sizing: border-box;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
    transform: scale(0.88) translateZ(-50px);
    filter: brightness(0.7) blur(1px);
}

.ks-carousel-container .swiper-slide-active {
    transform: scale(1) translateZ(0px);
    filter: brightness(1) blur(0px);
}

/* 📐 Adaptive Auto-Detect Image View Inside Mat */
.ks-carousel-container .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    user-select: none;
}

/* 3D Pop-In Animation on Active Slide */
.ks-carousel-container .swiper-slide-active img {
    animation: ksThemePopIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes ksThemePopIn {
    0% {
        opacity: 0.5;
        transform: scale(0.94) translateZ(-30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateZ(20px);
    }
}

/* College Theme Pagination Dots */
.ks-carousel-container .swiper-pagination-bullet {
    background: #5c0606;
    opacity: 0.4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.ks-carousel-container .swiper-pagination-bullet-active {
    background: #d4af37; /* Prestige Gold Active Dot */
    opacity: 1;
    transform: scale(1.3);
}