.jumbotron-custom {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.image-container img.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(6, 78, 59, 1) 0%, rgba(6, 78, 59, 0.8) 40%, rgba(6, 78, 59, 0) 100%);
}
.body-content img {
    max-width: 99%;
    height: auto;
    display: block;
    margin: 10px 0;
}
@media (max-width: 768px) {
    .overlay {
        position: absolute;
        z-index: 2;
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
    
    /* MUNCUL DARI BAWAH KE ATAS */
        background: linear-gradient(
            to top, 
            rgba(6, 78, 59, 1) 0%,      /* Hijau pekat di paling bawah */
            rgba(6, 78, 59, 0.7) 40%,    /* Mulai memudar di tengah */
            rgba(6, 78, 59, 0) 100%      /* Hilang total di paling atas */
        );
    }
}