body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background: #fdfdfd;
    color: #111;
  }
section {
    padding: 80px 10%;
  }
header {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1a3d2f;
    background: #fff;
  }
h1 {
    font-size: 48px;
    margin: 0;
  }
h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }
.projects, .resume {
    background: #f3f3f3;
  }
  .project-card {
    border: 1px solid #ccc;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: white;
  }
  .contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    background-color: #1a3d2f;
    color: white;
    font-size: 17px;
  }
  
  .contact-block {
    flex: 1;
  }
  
  .contact-block a {
    color: #a8f4c9;
    text-decoration: none;
  }
  
  .contact-block a:hover {
    text-decoration: underline;
  }
  
  .contact-right {
    text-align: right;
  }
  
  
  


  .intro {
    padding-top: 190px;  
  }

  .intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .intro-text {
    flex: 1;
  }
  
  .intro-image {
    flex: 1;
    max-width: 440px;
  }
  
  .intro-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;                           
    background-color: #1d7a55; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    font-family: 'Georgia', serif;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }
  
  .navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
  }
  
  .logo .home-link {
    font-size: 26px;
    color: white;
    text-decoration: none;
  }
  

  .nav-links a {
    margin-left: 24px;
    color: white;
    text-decoration: none;
    font-weight: 400;
  }
  
  @keyframes slideFadeIn {
    0% {
      transform: translateY(-30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  
  
  .intro-text h1,
  .intro-text h3 {
    opacity: 0;
    animation: slideFadeIn 1s ease forwards;
  }
  
  
  .intro-text h3 {
    animation-delay: 0.4s;
  }
  
  .projects {
    padding: 60px 10% 100px;
    background-color: #fdf9f2;
  }
  
  .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 5%;
  }
  
  .view-all {
    font-size: 18px;
    color: #2d3e66;
    text-decoration: underline;
  }
  
  .projects h2 {
    font-size: 40px;
    font-weight: bold;
    margin: 0;
    margin-top: 0;
  }
  
  .project-link {
    text-decoration: none;    
    color: inherit;           
    font: inherit;            
    cursor: pointer;
  }
  
  .project-link:hover {
    text-decoration: underline; 
  }
  
  .project-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  
  .project-card {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 480px; 
    text-align: center;
  }
  
  .project-card img {
    width: 100%;
    height: 300px;              
    object-fit: cover;          
    object-position: center;    
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  
  .project-card img:hover {
    transform: scale(1.03);
  }
  
  .project-card h3 {
    margin-top: 16px;
    font-size: 22px;
    color: #2d3e66;
    text-decoration: underline;
  }
  
  .subtitle {
    font-style: italic;
    font-size: 14px;
    color: #555;
  }
  
  .view-all-wrapper {
    text-align: right;
    margin-top: 10px;
    padding-right: 5%;
  }
  
  .view-all-link {
    font-size: 22px;
    color: #2d3e66;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  
  .view-all-link:hover {
    opacity: 0.7;
  }

  /*projects.html styles*/

  .projects-page {
    padding: 160px 10% 80px;
    background-color: #fdfaf4;
    text-align: center;
  }
  
  .projects-title {
    font-size: 48px;
    color: #2d3e66;
    margin-bottom: 60px;
  }
  
  .projects-grid {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .project-item {
    width: 500px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .project-item:hover {
    transform: scale(1.03);
  }
  
  .project-thumbnail {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  }
  
  .project-category {
    font-size: 18px;
    margin-top: 12px;
    font-weight: 400;
    color: #444;
  }
  
  .project-name {
    font-size: 26px;
    color: #2d3e66;
    margin-top: 4px;
    text-decoration: underline;
  }
  



  /*gdyu.html style*/
.project-content {
  max-width: 1200px;
  margin: 140px auto 80px;
  padding: 0 20px;
  text-align: left;
}
  
  .project-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  
  .project-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
  }
  
  .project-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
  }
  
  .back-link {
    display: inline-block;
    margin-top: 60px;
    font-size: 16px;
    color: #2d3e66;
    text-decoration: underline;
  }
  
  .project-description {
    font-family: 'Georgia', serif;  
    font-size: 18px;
    line-height: 1.8;               
    font-weight: 400;
    color: #333;                   
    text-align: left;
    margin-bottom: 24px;
  }

  .gdyu_link {
    color: #111;             
  }
  
  /* Resume Page Styles */
.resume-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('resume_Pic.jpeg');
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: center;
    padding: 40px;
    box-sizing: border-box;
  }
  
  .resume-button {
    background-color: #072d1e;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .resume-button:hover {
    background-color: #4c9d7d;
    transform: translateY(-2px);
  }


  