*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


/* Navigation Fix */
section{
    scroll-margin-top:100px;
}



body{

    font-family:'Segoe UI', Arial, sans-serif;
    background:#f4f7fb;
    color:#334155;
    line-height:1.7;

}



/* NAVBAR */

.navbar{

    background:#0f172a;
    position:sticky;
    top:0;
    z-index:1000;
    padding:15px 0;

}



.nav-container{

    width:90%;
    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

}



.logo{

    color:white;
    font-size:24px;
    font-weight:700;

}



.nav-menu{

    display:flex;
    list-style:none;
    gap:25px;

}



.nav-menu a{

    color:white;
    text-decoration:none;
    font-weight:600;

}



.nav-menu a:hover{

    color:#38bdf8;

}






/* HERO */


.hero{

    min-height:85vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:linear-gradient(
        135deg,
        #0f172a,
        #2563eb
    );

    color:white;

}



.hero-content{

    width:90%;
    max-width:850px;

}



.profile-img{

    width:180px;
    height:180px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid white;

    margin-bottom:20px;

}



.hero h1{

    font-size:45px;

}



.hero h2{

    font-size:25px;
    font-weight:500;

}



.tagline{

    margin:15px 0;
    font-size:18px;

}



.experience-badge{

    display:inline-block;

    margin-top:20px;

    padding:8px 22px;

    background:white;

    color:#2563eb;

    border-radius:30px;

    font-weight:700;

}






/* SECTION */


.section{

    width:90%;
    max-width:1200px;

    margin:60px auto;

}



.section-title{

    text-align:center;

    font-size:32px;

    color:#0f172a;

    margin-bottom:35px;

}






/* CARD */


.card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

}



.card h2{

    color:#2563eb;

    margin-bottom:20px;

}








/* SKILLS */


.skills-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}



.skill-card{

    background:white;

    padding:25px;

    border-radius:15px;

    text-align:center;

    font-weight:600;

    box-shadow:
    0 8px 20px rgba(0,0,0,0.08);

    transition:.3s;

}



.skill-card:hover{

    transform:translateY(-5px);

    background:#eff6ff;

}







/* EXPERIENCE */


.experience-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}



.experience-card{

    background:white;

    padding:25px;

    border-radius:20px;

    display:flex;

    gap:20px;

    align-items:center;

    border-top:5px solid #2563eb;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.08);

    transition:.3s;

}



.experience-card:hover{

    transform:translateY(-5px);

}



.company-badge{

    width:80px;
    height:80px;

    background:#2563eb;

    color:white;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    font-weight:700;

    font-size:14px;

    flex-shrink:0;

}



.experience-card h3{

    color:#2563eb;

    margin:8px 0;

}



.experience-card h4{

    color:#0f172a;

}



.date{

    color:#64748b;

    font-size:14px;

    font-weight:700;

}







/* CONTACT BUTTONS */

.buttons{

    margin-top:30px;

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}



.btn{

    padding:13px 28px;

    border-radius:30px;

    color:white;

    text-decoration:none;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    transition:0.3s;

    font-size:15px;

}



.btn i{

    font-size:18px;

}



.btn:hover{

    transform:translateY(-4px);

    opacity:0.9;

}



/* Button Colors */

.cv{

    background:#dc2626;

}



.linkedin{

    background:#0077b5;

}



.whatsapp{

    background:#16a34a;

}



.email{

    background:#2563eb;

}



.call{

    background:#059669;

}






/* FOOTER */


footer{

    background:#0f172a;

    color:white;

    text-align:center;

    padding:25px;

}







/* MOBILE */


@media(max-width:768px){


.nav-container{

    flex-direction:column;

}



.nav-menu{

    margin-top:15px;

    gap:15px;

    flex-wrap:wrap;

    justify-content:center;

}



.hero h1{

    font-size:34px;

}



.hero h2{

    font-size:21px;

}



.profile-img{

    width:140px;
    height:140px;

}



.skills-grid{

    grid-template-columns:1fr;

}



.experience-grid{

    grid-template-columns:1fr;

}



.experience-card{

    flex-direction:column;

    text-align:center;

}



.section{

    width:92%;

}



.card{

    padding:22px;

}


}
.email{

    background:#2563eb;

}


.call{

    background:#16a34a;

}
