/* Base styles */
body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: black;
    background-color:goldenrod;
     margin: 0;
    padding: 0;
}
header{
    background-color: #1e3a5f;
    color: white;
    padding: 20px;
    text-align: center;
}
h1{
    margin: 0;
    font-size: 28px; 
}
  /*navigation menu*/
  nav{
      background-color: #2c5282;
      padding: 12px;
      text-align: center;
  }

  nav a{
      color: white;
      text-decoration: none;
      margin: 0 15px;
      font-size: 18px;
  }
  nav a:hover{
      color: #90cdf4;
  }
  .hero section{
      background-color: #1e3a5f;
      color: white;
      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: #0284c8;
      color: white;
      padding: 12px 30px;
      text-decoration: none;
      border-radius: 25px;
      font-size: 18px;
      display: inline-block;
  }
  .hero-section a:hover{
      background-color: #0369a1;
  }
  section{
      max-width: 1000px;
      margin: 30px auto;
      padding: 0 20px;
  }
    .skills{
        background-color: white;
        padding: 25px;
        border-radius: 10px;
        border: 1px solid #ddd; 
        margin-bottom: 25px;
    }
    /*what i do*/
    .services h2{
        color: #e0f2fe;
        margin-bottom: 20px;
    }
    .services li{
        background-color:#1e3a5f;
        padding: 12px 20px;
        margin-bottom: 10px;
        border-radius: 6px;
        list-style-position: inside;
    }
    .page title{
        text-align: center;
        color: #1e3a5f;
        margin: 30px 0;
    }
    /*Education Table*/
    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 section*/
    .skills ul{
        list-style-type: square;
    }
    .skills li{
        padding: 8px 0;
        font-size: 18px;
    }
    /*contact form*/
    .contact-form{
        max-width: 600px;
        margin: 0 auto;
        background-color: white;
        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"]{
        background-color: #1e3a5f;
        color: white;
        border: none;
        padding: 12px;
        font-size: 18px;
        cursor: pointer;
        border-radius: 6px;
    }
    .contact-form input[type="submit"]:hover{
        background-color: #2c5282;
    }
    aside{
        max-width: 1000px;
        margin: 30px auto;
        background-color: #1e3a5f;
        color: white;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
    }
    aside p{
        margin: 8px 0;
    }
    /*footer*/
    footer{
        background-color: black
        color: #ccc;
        text-align: center;
        padding: 20px;
        margin-top: 40px;
    }