*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "popins" , Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background:#f4f6f9 ;
    color: #333;
}
header{
    background:linear-gradient(135deg,#0073e6,#00b4d8);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}
header h1{
 font-size: 3rem;
 margin-bottom: 0.5rem;
}
header p{
    font-size: 1.3rem;
    color: #e0f4ff;
    margin-bottom: 1.5rem;
}
header a{
    display: inline-block;
    text-decoration:none;
    background: #fff;
    color:#0073e6;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}
header.btn:hover{
    background: #005bb5;
}
.section-title{
    text-align: center;
    margin:3rem 0 2rem;
    font-size: 2rem;
    color: #0073e6;
}
#skills {
  max-width: 600px;
  margin: 50px auto;
  text-align: left;
}

#skills h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #007bff;
}

.skill {
  margin-bottom: 20px;
}

.skill i {
  color: #007bff;
  margin-right: 10px;
  font-size: 20px;
}

.skill span {
  font-weight: bold;
}

.progress {
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
  height: 12px;
  margin-top: 8px;
}

.progress-bar {
  height: 12px;
  background: #007bff;
  border-radius: 20px;
}
#projects{
    text-align: center;
    margin:50px auto ;
}
.project-card{
    background: #f9f9f9;
    border-radius: 10px;
    padding:20px;
    margin: 20px auto;
    max-width: 500px;box-shadow: 0 4px 6px rgba(0,0, 0, 0.1);
}
.project-card h3{
    margin-bottom: 10px;
    color:#007bff;
}
.project-card p{
    margin-bottom: 15px;
    color:#333;
}
.btn{
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background-color:#0073e6;

}
.contact{
    text-align: center;
    margin: 4rem 0 2rem;
}
.contact p{
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #005bb5;
}
.contact a{
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #fff;
    background: #0073e6;
    padding: 10px 18px ;
    border-radius: 6px;
    transition: background 0.3s ease;
}
.contact a:hover{
    background:#005bb5;
}
.footer{
    text-align: center;
    padding: 1.5rem;
    background: #222;
    color: #ddd;
    font-size: 0.9rem;
}