:root {
    --brand: #111827;
    --brand-dark: #0b0f19;
}

/* Section Base */
.infografis {
    position: relative;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    padding: 60px 0 140px;
    overflow: hidden;
}

.infografis h1,
.infografis h3,
.infografis p {
    color: #fff;
}

/* Swiper Container */
.mySwiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 70px;
}

/* Realistic 3D Card Look */
.swiper-slide {
    width: 260px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25), 0 12px 36px rgba(0, 0, 0, 0.25);
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.swiper-slide:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(4deg) scale(1.03);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45), 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Image Style */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    backface-visibility: hidden;
}

/* Text Content */
.infografis h3 {
    font-weight: 700;
    line-height: 1.4;
}

.infografis p {
    opacity: 0.9;
}

/* Swiper Controls */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    --swiper-navigation-size: 28px;
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 1;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Wave Divider */
.infografis-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.infografis-shape-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

.infografis-divider-spacer {
    height: 60px;
    z-index: 2;
    position: relative;
}

/* LightGallery BACKDROP */
.lg-infografis .lg-backdrop {
    background-color: rgba(0, 0, 0, 0.85) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .swiper-slide {
        width: 220px;
        height: 320px;
    }
}
@media (max-width: 768px) {
    .infografis {
        padding: 40px 0 100px;
    }
    .swiper-slide {
        width: 190px;
        height: 260px;
    }
    .infografis h3 {
        font-size: 1.25rem;
    }
    .infografis p {
        font-size: 0.95rem;
    }
}
