.pcm-container {
    position: relative;
}

.pcm-wrapper {
    width:74vw;
    margin-left:calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

/* NAV CONTAINER */
.pcm-nav {
    position: absolute;
    top: 25px; /* posisi di atas card */
    right: 25px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* BUTTON */
.pcm-nav button {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid #1a4dc4;
    background: #fff;
    color: #1a4dc4;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.pcm-nav button:hover {
    background: #1a4dc4;
    color: #fff;
}

/* TRACK */
.pcm-track {
    display: flex;
    gap: 30px;
    align-items: center;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* CARD DEFAULT */
.pcm-card {
    min-width: 260px;
    height: 180px;
    background: #fff;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;   /* VERTIKAL TENGAH */
    align-items: center;       /* HORIZONTAL TENGAH */

    text-align: center;
    gap: 15px;

    transition: 0.3s;
    color: #1a3faa; /* warna awal text */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* CENTER CARD (AKTIF) */
.pcm-card.active {
    transform: scale(1.1);
    opacity: 1;
    background: #1a4dc4;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ICON */
.pcm-card img {
    width: 70px;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* ICON PUTIH SAAT AKTIF */
.pcm-card.active img {
    filter: brightness(0) invert(1);
}

/* HOVER */
.pcm-card:hover {
    background: #1a4dc4;
    color: #fff;
}

.pcm-card:hover h3 {
    color: #fff !important;
}

.pcm-card:hover img {
    filter: brightness(0) invert(1);
}

/* AUTO SLIDER */
@keyframes scroll {
    0% {transform: translateX(0);}
    100% {transform: translateX(-50%);}
}

@media (max-width: 768px) {
    .pcm-nav {
        top: 30px;
        right: 10px;
    }

    .pcm-nav button {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}