body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fcfcfc;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Mencegah horizontal scroll saat animasi */
}

.text-teal { color: #009688; }
.bg-teal { background-color: #009688; }

.hero-section {
    background-color: #ffb74d;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 50px 0;
}

.hero-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-img-container {
    background-color: #e6f4f2;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center 10%; 
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.profile-img-container:hover img {
    transform: scale(1.05);
}

.brush-effect {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: rgba(0, 150, 136, 0.2);
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 40%);
    z-index: 1;
}

.nav-link { 
    font-weight: 600; 
    color: #333 !important; 
    transition: color 0.3s;
}

.nav-link:hover {
    color: #009688 !important;
}

.section-padding { padding: 80px 0; }

.card-custom {
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.timeline-item {
    border-left: 4px solid #ffb74d;
    padding-left: 20px;
    margin-bottom: 30px;
    position: relative;
}

.cert-img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s;
    cursor: pointer;
}
.cert-img:hover { transform: scale(1.03); }

.project-card {
    background-color: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    border: none;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.project-img-container {
    background-color: #f8f9fa;
    height: 250px; 
    overflow: hidden;
}

.project-img-container img {
    transition: transform 0.5s ease;
}

.project-card:hover .project-img-container img {
    transform: scale(1.1); 
}

.project-content {
    padding: 30px;
}

.project-title {
    color: #222;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.project-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tech-badge {
    padding: 5px 15px;
    background-color: #e6f4f2;
    border: 1px solid #009688;
    color: #009688;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-view-project {
    background-color: #009688;
    color: white;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.btn-view-project:hover {
    background-color: #00796b;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 150, 136, 0.3);
}

@media (max-width: 991px) {
    .profile-img-container {
        height: 400px;
        margin-top: 20px;
    }
}