*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:Segoe UI,sans-serif;
}

body{
    background:#0d1117;
    color:white;
}

header{
    background:#161b22;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
}

.logo{
    color:white;
}

.logo span{
    color:#00c3ff;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:100px 10%;
}

.hero-text{
    width:50%;
}

.hero-text h1{
    font-size:55px;
    color:#00c3ff;
}

.hero-text h2{
    margin:10px 0;
}

.hero-text p{
    line-height:1.8;
    margin:20px 0;
}

.btn{
    background:#00c3ff;
    padding:12px 30px;
    color:white;
    text-decoration:none;
    border-radius:30px;
}

.hero-image img{
    width:350px;
    border-radius:20px;
    box-shadow:0 0 30px #00c3ff;
}

section{
    padding:100px 10%;
}

section h2{
    text-align:center;
    margin-bottom:40px;
    color:#00c3ff;
}

.skill{
    margin-bottom:20px;
}



.progress{
    height:15px;
    background:#ffbb00;
    border-radius:20px;
}

.p1{width:75%;}
.p2{width:70%;}
.p3{width:73%;}
.p4{width:75%;}
.p5{width:70%;}

.cards{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.card{
    flex:1;
    min-width:250px;
    background:#161b22;
    padding:25px;
    border-radius:15px;
    text-align:center;
}

.card i{
    font-size:40px;
    color:#00c3ff;
    margin-bottom:15px;
}

.contact-box{
    text-align:center;
}

.contact-box p{
    margin:15px;
}

.wa-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 30px;
    background:#25D366;
    color:white;
    text-decoration:none;
    border-radius:30px;
}

footer{
    background:#161b22;
    text-align:center;
    padding:20px;
}

@media(max-width:768px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-text{
    width:100%;
}

.hero-image img{
    width:250px;
    margin-top:30px;
}

nav{
    flex-direction:column;
}

nav ul{
    margin-top:15px;
}
}