
*{
margin:0;
padding:0;
box-sizing:border-box;
}


body{
font-family:Arial, sans-serif;
background:#f4f4f4;
color:#333;
line-height:1.8;
}

header{
background:#0d6efd;
color:white;
padding:20px;
}

header h1{
font-size:35px;
margin-bottom:20px;
color:#ffffff;
}


nav{
display:flex;
gap:20px;
flex-wrap:wrap;
}

nav a{
text-decoration:none;
color:white;
font-size:18px;
font-weight:bold;
}

nav a:hover{
color:yellow;
}

main{
padding:40px;
}
hero h2{
color:#0d6efd;
font-size:42px;
}

.hero h3{
color:#ff6b35;
font-size:30px;
margin:15px 0;
}

.hero p{
font-size:18px;
margin-bottom:20px;
}

.hero a{
display:inline-block;
background:#0d6efd;
color:white;
text-decoration:none;
padding:12px 25px;
border-radius:6px;
margin-right:15px;
margin-top:15px;
}

.hero a:hover{
background:#084298;
}


.profile-box{
    text-align:center;
    margin-bottom:30px;
}

.profile-img{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #1769e8;
}
.about{
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 5px 10px rgba(0,0,0,0.1);
}

.about h2{
color:#0d6efd;
font-size:40px;
text-align:center;
margin-bottom:20px;
}

.about h3{
color:#ff6b35;
font-size:28px;
margin-top:30px;
margin-bottom:15px;
border-left:5px solid #0d6efd;
padding-left:10px;
}

.about p{
font-size:18px;
text-align:justify;
margin-bottom:20px;
}

.about strong{
color:#0d6efd;
}

.about ul{
list-style:none;
}

.about ul li{
background:#f8f9fa;
margin-bottom:12px;
padding:15px;
border-left:5px solid #0d6efd;
border-radius:8px;
}

.about ul li:hover{
background:#0d6efd;
color:white;
}


.skill{
margin:25px 0;
}

.skill p{
display:flex;
justify-content:space-between;
font-weight:bold;
margin-bottom:8px;
}

.progress{
width:100%;
height:12px;
background:#ddd;
border-radius:20px;
overflow:hidden;
}

.progress div{
height:100%;
border-radius:20px;
}

.html{
width:100%;
background:#ff5722;
}

.css{
width:100%;
background:#2196f3;
}

.responsive{
width:100%;
background:#4caf50;
}

.frontend{
width:100%;
background:#9c27b0;
}

.networking{
width:88%;
background:#ff9800;
}

.cyber{
width:85%;
background:#009688;
}


.services h2{
    text-align:center;
    color:#198754;
    font-size:40px;
    margin-bottom:30px;
}

.services p{
    text-align:center;
    margin-bottom:30px;
}

.service{
    background:#fff;
    padding:25px;
    margin-bottom:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.service:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.service h3{
    color:#dc3545;
    margin-bottom:15px;
}

.service p{
    color:#555;
    text-align:left;
}


.portfolio h2{
color:#6f42c1;
text-align:center;
font-size:38px;
margin-bottom:25px;
}

.project{
background:white;
padding:20px;
margin-bottom:25px;
border-radius:10px;
box-shadow:0 5px 10px rgba(0,0,0,0.1);
}

.project h3{
color:#fd7e14;
margin-bottom:15px;
}

.project img{
width:100%;
max-width:350px;
border-radius:10px;
margin:15px 0;
}

.project p{
color:#555;
}


.contact{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 10p…
}
.footer{
    background:#0d6efd;
    color:white;
    text-align:center;
    margin-top:15px;
    margin-top:15px;
}


    


    
