body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Agar anchor link tidak tertutup navbar saat di-klik */
section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Hero Section Style */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #000000 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -80px;
    /* Kompensasi navbar fixed */
    padding-top: 100px;
}

.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

/* Card Hover Effect */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Skill Badges */
.skill-badge {
    font-size: 0.9rem;
    padding: 0.5em 1em;
}