/* Base style */
body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: teal;
    background-color: #eaeff3;
    margin: 0;
    padding: 0;
    
}
/*Header(Top of the page)*/
header{
    background-color:violet;
    color: white;
    padding: 20px;
    text-align: center;
}
header h1{
    margin: 0;
    font-size: 28px;
}
/*3.Navigation menu*/
nav{
    background-color: lightgreen;
    padding: 12px;
    text-align: center;
}
nav a{
    color: white;
    text-decoration: none;
    margin: 15px;
    font-size: 18px;
}
nav a:hover{
    color: #2c5282;
}
.hero-section{
    background-color: aquamarine;
    color: azure;
    text-align: center;
    padding: 50px 20px;
    margin: 20px;
    border-radius: 10px;
}
.hero-section h2{
    font-size: 32px;
    margin-bottom: 15px;
}
.hero-section p{
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 25px;
}
.hero-section a{
    background-color: bisque;
    color: #b65f5f;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    display: inline-block;
}
.hero-section a:hover{
      background-color: blueviolet;

}
section{
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}
.my-goal,.services,.who-iam,.background,.skills{
    background-color: azure;
    padding: 25px;
    border-radius: 10;
    border: 1px solid#ddd;
    margin-bottom: 25px;
}
.services h2{
    color: #1e3a5f;
    margin-bottom: 20px;
}
.services li{
    background-color: #e0f2fe;
    padding: 12px 20px;
    border-radius: 6px;
    list-style-position:inside;
}
.page-title{
    text-align:center;
    color: #1e3a5f;
    margin: 30px 0;
}
table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
th,td{
    border: 1px solid#ccc;
    padding: 12px;
    text-align: left;
}
th{
    background-color: #1e3a5f;
    color: white;

}
.skills ul{
    list-style-type: square;

}
.skills li{
    padding: 8px 0;
    font-size: 18px;
}
.contact-form{
  max-width: 600px;
  margin: 0 auto;
  background-color: #ddd;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid#ddd;
}
.contact-form label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-form input,.contact-form textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid#ccc;
    border-radius: 6px;
    font-size: 16px;
}
.contact-form input[type="submit"]:hover{
    background-color: #2c5282;
}
aside{
    max-width: 1000px;
    margin: 30px auto;
    background-color: #1e3a5f;
    color: white;
    padding: 20px;
    text-align: center;
}
aside p{
    margin: 8px 0;
    font-size: 18px;
}
footer{
    background-color: #1e3a5f;
    color: #ccc;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
@media(max-width:768px){
    nav a{
        display: block;
        margin: 10px 0;
    }
    .hero-section{
        margin:10px
        padding:30px 15px;
    }
}