/* Pengurus Card Styles */
.pengurus-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pengurus-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #18cbf4, #f4b518);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pengurus-card:hover::before {
    transform: scaleX(1);
}

.pengurus-card.ketua {
    border-color: #f4b518;
}

.pengurus-card.wakil {
    border-color: #18cbf4;
}

/* Profile Image Circle */
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Badge for position */
.position-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Organizational Chart */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-level {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.org-node {
    text-align: center;
    margin: 0 20px;
    position: relative;
}

.org-connector {
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: #18cbf4;
    transform: translateX(-50%);
}

/* Social Icons */
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Hero section for pengurus page */
.pengurus-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1560279966-8ff2f6c92c30?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
            center/cover no-repeat;
}
