*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#e5e5e5;
color:#333;
line-height:1.7;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
padding:60px 0;
}

.hero{
display:flex;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
align-items:center;
}

.hero-text{
flex:1;
}

.hero-text h2{
font-size:35px;
margin-bottom:15px;
}

.hero-card{
flex:1;
background:#4b4b4b;
color:white;
padding:30px;
border-radius:18px;
box-shadow:0 10px 20px rgba(0,0,0,.2);
}

.circle{
width:80px;
height:80px;
background:#bdbdbd;
border-radius:50%;
margin-bottom:20px;
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#555;
color:white;
text-decoration:none;
border-radius:8px;
transition:.3s;
}

.btn:hover{
background:#2f2f2f;
}

h2{
margin-bottom:25px;
color:#444;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:white;
padding:25px;
border-radius:15px;
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.project{
display:grid;
gap:20px;
}

.project div{
background:white;
padding:20px;
border-left:6px solid #555;
border-radius:10px;
}

.quote{
text-align:center;
font-size:20px;
font-style:italic;
}

footer{
background:#3d3d3d;
color:white;
text-align:center;
padding:20px;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    margin-bottom: 15px;
}

.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin: 60px auto;
}

.hero-photo img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #2d2d44;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.about{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 70px auto;
    align-items: flex-start;
}

.about-text{
    flex: 2;
}

.about-text h2{
    margin-bottom: 20px;
}

.about-text p{
    line-height: 1.8;
    text-align: justify;
    color: #555;
}

.about-info{
    flex: 1;
    background: #f5f5f5;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-info h3{
    margin-bottom: 15px;
}

.about-info p{
    margin: 12px 0;
}

.about{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;

    background: #f4f6fb;
    padding: 50px;
    border-radius: 20px;
    margin: 70px auto;
}

.section-title{
    text-align: center;
    margin-bottom: 40px;
}

.cards{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
}

.card{
    background: white;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    transition: .3s;
}

.card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(102,126,234,.3);
}

.icon{
    font-size: 45px;
    margin-bottom: 15px;
}

.card h3{
    margin-bottom: 10px;
}

.card p{
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

    background: linear-gradient(135deg, #2c2c31, #8d8b8f);
    color: white;

    padding: 60px;
    border-radius: 25px;
    margin: 50px auto;
}
.hero h2{
    color: white;
}

.hero p{
    color: #f3f3f3;
}

.skills {
    background: #3a3a3a; 
    padding: 50px 40px;
    border-radius: 20px;
    color: white;
}

.skills h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #f3f3f3
}


.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    color: #333;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}



.projects {
    background: #f1f1f1; /* abu-abu muda */
    padding: 50px 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.projects h2 {
    text-align: center;
    margin-bottom: 35px;
}


.project-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
}


.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


.project-content {
    padding: 20px;
}

.project-content h3 {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .project-cards {
        grid-template-columns: 1fr;
    }
}


/* PKL GOALS */

.goals-card {
    background: #333333;
    padding: 40px;
    border-radius: 25px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}


.goals-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}


.goals-title span {
    font-size: 35px;
}


.goals-title h2 {
    font-size: 32px;
    color: white;
}


.goals-desc {
    color: #dddddd;
    line-height: 1.7;
    margin-bottom: 30px;
}


.goals-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}


.goal-item {
    background: #444444;
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 18px;
    transition: .3s;
}


.goal-item:hover {
    transform: translateY(-5px);
    background: #505050;
}


.goal-icon {
    font-size: 35px;
}


.goal-item h3 {
    margin-bottom: 8px;
    color: white;
}


.goal-item p {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.5;
}


@media(max-width:768px){

    .goals-list{
        grid-template-columns:1fr;
    }

    .goals-card{
        padding:25px;
    }

}

/* SOCIAL MEDIA */

.social-media {
    margin-top: 60px;
    text-align: center;
}

.social-desc {
    color: #666;
    margin-bottom: 30px;
}


.social-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}


.social-card {
    width: 260px;
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}


.social-card:hover {
    transform: translateY(-8px);
}


.social-icon {
    font-size: 35px;
}


.social-card h3 {
    margin: 0;
    font-size: 20px;
}


.social-card p {
    margin-top: 5px;
    color: #777;
}


/* warna hover */

.instagram:hover {
    background: #ffe8f2;
}


.github:hover {
    background: #eeeeee;
}


.whatsapp:hover {
    background: #e5ffe9;
}