.test {
    color: #aaa;
    /* Teks pudar */
    filter: grayscale(100%);
    /* Hitam putih */
    opacity: 0.6;
    /* Sedikit transparan */
    pointer-events: none;
    /* Tidak bisa diklik */
    transition: all 0.3s ease;
    /* Transisi halus */
}

/* Default card styling */
.zoom-content {
    transition: transform 0.3s ease, filter 0.3s ease;
    transform: scale(1);
    filter: blur(0);
}

/* Zoom effect on hover */
.zoom-content:hover {
    transform: scale(1.1);
    z-index: 2;
}

/* Zoom effect on the image inside the card */
.zoom-content:hover img {
    transform: scale(1.1);
    /* Ukuran zoom pada gambar */
    transition: transform 0.3s ease;
    /* Efek transisi */
}

/* Blur effect on other cards when one is hovered */
.card:hover~.card {
    filter: blur(5px);
}

.card:hover~.card {
    filter: blur(5px);
    pointer-events: none;
    /* Mencegah interaksi dengan kartu buram */
}

.fix-content-detail {
    /* position: fixed;  */
    position: sticky;
    top: 0;
}

.title-project-detail {
    font-size: 5em;
}

.small {
    font-size: 13px;
}
/* start detail project */
.custom-fs-3 {
    font-size: 1.5rem;
}

.custom-fs-4 {
    font-size: 1rem;
}



.detail-aplikasi, p {
    line-height: 2.2em;
    font-size: 1.4vw;
}

.detail-aplikasi, h1 {
    margin-bottom: .8em;
}
.detail-aplikasi, h2 {
    margin-bottom: .5em;
}

.detail-aplikasi > h1 + p {
    margin-bottom: 3em;
}

.detail-aplikasi > h2:first-of-type {
    margin-top: 2em;
}

.detail-aplikasi > h2 {
    margin-top: 1.5em;
}

/* end detail project */

.custom-container {
    width: 100%;
    padding: 0 5vw;
    /* margin: 0 2vw; */
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 4vw;
}



.font-sizel-category {
    font-size: 1.25rem !important;
}

/* Jika lebar layar lebih kecil dari 768px (tablet & HP / mobile) */
@media (max-width: 768px) {
    
    .detail-aplikasi, p {
        line-height: 2.2em;
        font-size: 4vw;
    }

    .title-project-detail {
        font-size: 2.5em;
    }

    .fix-content-detail {
        position: static;
        /* top: 0; */
    }

    #categoryBox {
        position: static !important;
        margin-top: 0 !important;
    }

    .custom-fs-4 {
        font-size: .9rem;
    }

    .custom-fs-3 {
        font-size: 1.1rem;
    }


}