.barislayanan-section {
    position: relative;
    width: 100%;
    color: #fff;
    overflow: hidden;
}

.barislayanan-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hapus gambar dari sini */
    background: linear-gradient(rgba(14, 68, 124, 0.7), rgba(14, 68, 124, 0.7));
    z-index: 1;
    /* background-attachment: fixed; */
    animation: backgroundFadeIn 1s ease-in-out forwards;
}

@keyframes backgroundFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Konten tetap di atas */
.barislayanan-section .container {
    position: relative;
    z-index: 2;
}

.barislayanan-section h4 {
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 2rem;
}

.barislayanan-section .carousel-item {
    min-height: 200px;
}

/* Atur tinggi kontainer agar gambar bisa bergerak leluasa */
.barislayanan .img-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Terapkan styling ke gambar di dalam kontainer */
.barislayanan-section img {
    max-height: 125px; /* Anda bisa tetap membatasi tinggi awal gambar */
    border-radius: 8px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.barislayanan-section img:hover {
    transform: scale(1.05); /* zoom 10% */
    box-shadow: 0 0 8px 5px rgba(255, 255, 255, 0.5); /* glow putih */
}

/* ---------------- NAVIGASI PANAH ---------------- */
.barislayanan-section .carousel-control-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: absolute;
    bottom: -22px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.barislayanan-section:hover .carousel-control-next {
    opacity: 1;
    pointer-events: auto;
}

.barislayanan-section .carousel-arrow-up {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin: auto;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 4l6 6H2z'/%3E%3C/svg%3E");
}

/* ---------------- VERTICAL SLIDE EFFECT ---------------- */
.barislayanan-section .carousel-inner {
    display: block;
    overflow: hidden;
}

.barislayanan-section .carousel-item {
    transition: transform 0.5s ease-in-out;
}

.barislayanan-section .carousel-item-next,
.barislayanan-section .active.carousel-item-left {
    transform: translateY(100%);
}

.barislayanan-section .carousel-item-prev,
.barislayanan-section .active.carousel-item-right {
    transform: translateY(-100%);
}

.barislayanan-section .carousel-item.active {
    transform: translateY(0);
}
