body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #111;
  }

  header {
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  header h1 {
    font-size: 1.5rem;
    margin: 0;
  }

  nav a {
    margin-left: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
  }

  nav a:hover {
    text-decoration: underline;
  }
  * {
    box-sizing: border-box;
  }
  #hero {
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    color: white;
    padding: 120px 20px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding-top: 100px;
    box-shadow: #111;
    -webkit-box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 4px 0px 0px rgba(0,0,0,0.75);
  }
  #hero h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }

  #hero p {
    font-size: 1.25rem;
  }

  section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .project-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .project-card h3 {
    margin-top: 0;
  }

  .project-card a {
    color: #4e54c8;
    font-weight: 600;
  }

  footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #f1f1f1;
    font-size: 0.9rem;
  }
  .resume-container {
    width: 100%;
    height: 100vh;
    margin: 20px 0;
  }
  
  .resume-container embed {
    width: 100%;
    height: 100%;
    border: none;
  }
  .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .contact-card {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.2
  }  
  .resume-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 130%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .resume-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    width: 100%;
    height: 100%;
    border: none;
    
  }
  
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    
    
      .nav-links {
        display: none;
      }
  
    .nav-links a {
      font-size: 0.95rem;
      text-align: center;
    }
  
    #hero h2 {
      font-size: 2rem;
    }
  
    #hero p {
      font-size: 1rem;
    }
  
    section {
      padding: 40px 16px;
    }
  
    .project-card,
    .contact-card {
      width: 100%;
    }
  }
  
  