/* PPID Pelaksana Section */
.ppid-section {
   background: white;
    padding: 60px 0;
    margin-top: 60px;
}

.ppid-title {
    font-size: 42px;
    font-weight: 800;
    color: #002733;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.ppid-card {
    background: #3a7283;
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ppid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.ppid-card:hover::before {
    left: 100%;
}

.ppid-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: #2d5a67;
    box-shadow: 0 20px 50px rgba(58, 114, 131, 0.4);
}

.ppid-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}