/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior:smooth;
  }
  
  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: center;
    padding: 10px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    padding: 8px 16px;
    transition: background 0.3s;
  }
  
  nav a:hover {
    background-color: #555;
    border-radius: 4px;
  }
  
  section {
    height: max-content;
    padding: 60px 20px;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  section.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  h1 {
    margin-top: 10%;
    margin-bottom: 30%;
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  h2 {
    font-size: 36px;
    position: sticky;
    text-align: center;
    margin-bottom: 30px;
  }

  h2 #education {
    margin-inline: 100%;
  }
  
  p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  #about {
    background-color: #f1f1f1;
    padding-bottom: 10%;
  }
  
  #education {
    background-color: #4CAF50;
    color: white;
  }
  
  #experience {
    background-color: #27c4ac;
    color: white;
  }

  #career {
    background-color: #f12c2c;
    color: white;
  }
  
  #skills {
    background-color: #2196F3;
    color: white;
  }

  #awards {
    background-color: #84026d;
    color: white;
  }

  #certifications {
    background-color: #eeb63c;
    color: white;
  }
  
  #contact {
    background-color: #673AB7;
    color: white;
    height: fit-content;
  }

  #contact-content {
    width:30%;
    min-height:40%;
    position: relative;
    left: 40%;
    padding-bottom: 5%;
    margin-left: -100px;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
  }
  
  footer p {
    margin: 0;
  }
  