
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:linear-gradient(135deg,#f8fbff,#eef5ff,#fff0f7);
    color:#222;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    padding:18px 0;
    background:rgba(255,255,255,.7);
    backdrop-filter:blur(10px);
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
    color:#222;
}

.nav-link{
    margin-left:20px;
    font-weight:500;
    color:#444;
    transition:.3s;
}

.nav-link:hover{
    color:#ff5fa2;
}


/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:120px 0 80px;
    position:relative;
}

.hello{
    display:inline-block;
    padding:8px 22px;
    background:#ffe3f1;
    color:#ff4f9a;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
    animation:fadeDown .8s;
}

.hero h1{
    font-size:60px;
    font-weight:800;
    color:#222;
    line-height:1.2;
    margin-bottom:15px;
    animation:fadeUp .8s;
}

.hero h5{
    color:#666;
    margin-bottom:25px;
    animation:fadeUp 1s;
}


.hero-card{
    background:white;
    padding:30px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
    animation:fadeUp 1.2s;
}

.hero-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.hero-card p{
    margin:0;
    line-height:1.8;
    color:#555;
}


/* FOTO */

.hero-image{
    width:420px;
    max-width:100%;
    border-radius:35px;
    border:10px solid white;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    animation:float 4s ease-in-out infinite;
}



/* BUTTON */

.btn-primary{
    border-radius:30px;
    padding:12px 30px;
    background:#ff5fa2;
    border:none;
    transition:.3s;
}

.btn-primary:hover{
    background:#ff3d8d;
    transform:translateY(-3px);
}


/* DECORATION */

.hero::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#dceaff;
    border-radius:50%;
    top:80px;
    right:100px;
    z-index:-1;
    filter:blur(2px);
}

.hero::after{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:#ffd7ea;
    border-radius:50%;
    bottom:40px;
    left:70px;
    z-index:-1;
}


/* SECTION CARD */

.card{
    border:none;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}


/* TITLE SECTION */

section h2{
    font-weight:700;
    color:#222;
}

section p{
    color:#666;
}


/* SKILL */

.skill-box{
    background:white;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
    transition:.3s;
}

.skill-box:hover{
    transform:translateY(-10px);
}


/* ANIMATION */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}



/* RESPONSIVE */

@media(max-width:992px){

.hero{
    text-align:center;
}

.hero h1{
    font-size:42px;
}

.hero-image{
    margin-top:40px;
    width:100%;
}

.nav-link{
    margin-left:0;
}

}
/* ABOUT */

.about-image{
    width:350px;
    height:350px;
    object-fit:cover;
    border-radius:50%;
    border:10px solid white;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}


.about-content{
    background:white;
    padding:35px;
    border-radius:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}


.about-content h3{
    font-weight:700;
    margin-bottom:20px;
}


.about-content p{
    color:#666;
    line-height:1.8;
}
/* SOCIAL MEDIA */

.social-media{
    margin-top:25px;
    display:flex;
    gap:15px;
}


.social-media a{
    width:45px;
    height:45px;
    background:#ff5fa2;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    text-decoration:none;
    transition:.3s;
}


.social-media a:hover{
    transform:translateY(-5px);
    background:#ff3d8d;
}
/* SOCIAL TITLE */

.social-title{
    font-weight:700;
    font-size:20px;
    margin-top:25px;
    margin-bottom:15px;
    color:#222;
}
/* SKILLS */

.skill-card{
    background:linear-gradient(135deg,#ffe8f3,#f7e9ff,#e8f3ff);
    padding:30px;
    border-radius:25px;
    text-align:center;
    min-height:280px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
    border:2px solid rgba(255,255,255,.7);
}

.skill-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 20px 40px rgba(255,95,162,.25);
}

.skill-card:hover{
    transform:translateY(-10px);
}


.skill-card h4{
    color:#ff5fa2;
    font-weight:700;
    margin-bottom:15px;
}


.skill-card p{
    color:#666;
    line-height:1.7;
}
/* PROJECT */

.project-card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}


.project-card:hover{
    transform:translateY(-10px);
}



.project-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    background:#fff;
    padding:10px;
}


.project-content{
    padding:25px;
}


.project-content h4{
    font-weight:700;
    margin-bottom:15px;
}


.project-content p{
    color:#666;
    line-height:1.7;
}


.project-content span{
    display:inline-block;
    background:#ffe3f1;
    color:#ff4f9a;
    padding:6px 15px;
    border-radius:20px;
    font-size:14px;
    margin-right:5px;
}
/* EXPERIENCE */

.experience-card{
    background:white;
    padding:30px;
    border-radius:25px;
    height:100%;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}


.experience-card:hover{
    transform:translateY(-8px);
}


.experience-card h4{
    font-weight:700;
    margin-bottom:10px;
}


.experience-card h6{
    color:#ff5fa2;
    margin-bottom:15px;
}


.experience-card p{
    color:#666;
    line-height:1.8;
}


.experience-card span{
    display:inline-block;
    background:#ffe3f1;
    color:#ff4f9a;
    padding:6px 15px;
    border-radius:20px;
    margin:5px 3px 0 0;
    font-size:14px;
}
/* PERSONAL */

.personal-content{
    background:white;
    padding:35px;
    border-radius:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    max-width:900px;
    margin:auto;
}


.personal-content p{
    color:#666;
    line-height:1.8;
    font-size:16px;
    margin-bottom:15px;
}
/* CONTACT */

.contact-content{
    background:white;
    padding:35px;
    border-radius:30px;
    max-width:800px;
    margin:auto;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}


.contact-content p{
    color:#666;
    line-height:1.8;
}


.contact-info{
    margin-top:25px;
}


.contact-info p{
    margin-bottom:12px;
}


.contact-info strong{
    color:#ff5fa2;
}
/* CONTACT */

.contact-box{
    background:linear-gradient(135deg,#ffffff,#f8f4ff);
    padding:45px;
    border-radius:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}


.contact-box h3{
    font-size:35px;
    font-weight:700;
    margin-bottom:20px;
}


.contact-box p{
    color:#666;
    line-height:1.8;
}


.contact-card{
    background:white;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
}


.contact-item{
    padding:15px 0;
    border-bottom:1px solid #eee;
}


.contact-item:last-child{
    border-bottom:none;
}


.contact-item h6{
    color:#ff5fa2;
    font-weight:600;
    margin-bottom:5px;
}


.contact-item p{
    margin:0;
    color:#444;
}


.contact-social a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:20px;
    padding:12px 28px;
    background:#25D366;
    color:white;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.contact-social a:hover{
    background:#1EBE5D;
    transform:translateY(-3px);
}
.skill-icon{
    width:80px;
    height:80px;
    line-height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:white;
    color:#ff5fa2;
    font-size:42px;
    box-shadow:0 8px 20px rgba(255,95,162,.25);
}
.personal-card{
    background:linear-gradient(135deg,#ffe8f3,#f7e9ff,#e8f3ff);
    padding:35px;
    border-radius:25px;
    text-align:center;
    height:100%;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.personal-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(255,95,162,.25);
}

.personal-icon{
    font-size:55px;
    color:#ff5fa2;
    margin-bottom:20px;
}

.personal-card h4{
    font-weight:700;
    margin-bottom:15px;
    color:#ff5fa2;
}

.personal-card p{
    color:#555;
    line-height:1.8;
}