/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #f9fafb;
    color: #333;
    line-height: 1.6;
  }
  
  /* Containers */
  .container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  /* Header */
  .header {
    background: #1a365d;
    color: white;
    text-align: center;
    padding: 50px 20px;
  }
  
  .header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
  }
  
  /* Sections */
  h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a365d;
  }
  
  /* About */
  .about p {
    font-size: 1.1rem;
    max-width: 700px;
  }
  
  /* Projects */
  .projects .project-card {
    background: white;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
  
  .project-card h3 {
    margin-top: 0;
  }
  
  .project-card a {
    display: inline-block;
    margin-right: 15px;
    margin-top: 10px;
    text-decoration: none;
    color: #1a365d;
    font-weight: 600;
  }
  
  .project-card a:hover {
    text-decoration: underline;
  }
  
  /* Contact */
  .contact p {
    margin: 8px 0;
  }
  
  .contact a {
    color: #1a365d;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 20px;
    background: #eceff1;
    font-size: 0.9rem;
    color: #555;
  }
  
  /* Header with photo */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .profile-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 20px;
  }
  .project-img {
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .resume-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background-color: #287474;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
  }
  
  .resume-button:hover {
    background-color: #1f5d5d;
  }
  