/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  nav ul {
    list-style-type: none;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 10px;
  }
  
/* 1) No bullets for the card lists themselves */
.projects > ul,
.experience > ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* 2) Show bullets only for nested lists inside cards (the descriptions) */
.card ul {
  list-style: disc;
  margin: 0.5em 0 0 1.25em; /* indent bullets nicely */
}

.card ul li {
  margin-bottom: 0.4em;
}

  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #e1f4f3;
    color: #050505d5;
    line-height: 1.7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  /* Keyframes for fade-in effect */
  @keyframes fadeInSmooth {
    to {
      opacity: 1;
    }
  }
  
  /* Card styling for zoom effect */
  .card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
  }
  
  /* Hover effect for cards */
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  /* Container styling with subtle fade-in on load */
  .container {
    max-width: 900px;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
    opacity: 0; /* Initially hidden */
    animation: fadeInSmooth 0.6s ease-out forwards; /* Smooth fade-in */
  }
  
  /* Hover effect for container shadow */
  .container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  
  /* Text and link styling */
  h1,
  h2,
  h3 {
    color: #222;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  h2 {
    font-size: 1.8em;
    color: #000000bd;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
  }
  
  h3 {
    font-size: 1.3em;
    color: #000000bd;
  }
  
  p {
    color: #000000bd;
    margin-bottom: 1.2em;
  }
  
  a {
    color: #283747;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  button {
    padding: 10px 20px;
    background-color: #007acc;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #005f99;
  }
  
  /* Layout for header section */
  header {
    margin-bottom: 20px;
  }
  
  .intro {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  /* Bio and profile image styling */
  .bio {
    flex: 1;
  }
  
  .bio h1 {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 10px;
  }
  
  .bio p {
    font-size: 1.1em;
    color: #000000bd;
  }
  
  /* Profile styling with hover effect on photo */
  .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000000bd;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* Social icon hover effect */
  .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .social-links li {
    display: inline;
  }
  
  .social-links img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .social-links img:hover {
    transform: scale(1.15);
    opacity: 0.9;
  }
  
  /* Simple hover effect on section titles */
  h2:hover,
  h3:hover {
    color: #000000;
  }
  
  section {
    margin: 20px 0;
  }
  
  
  li {
    margin-bottom: 15px;
  }
  
  /* Separator styling */
  .separator {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
  }
  
  /* Job and project icon styling with subtle hover */
  .job-icon,
  .project-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
    border: 2px solid #ddd;
    transition: transform 0.3s ease;
  }
  
  .job-icon:hover,
  .project-icon:hover {
    transform: scale(1.1);
  }
  
  /* Custom color for hyperlinked titles in h3 tags */
  h3 a {
    color: #354e69;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  h3 a:hover {
    color: #000000;
  }
  
  footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
  }
  

/* Media card layout */
.media-card .media-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
  }
  
  /* Text section takes available space */
  .media-card .media-text {
    flex: 1 1 300px;
  }
  
  /* Image section: fixed max width but responsive */
  .media-card .media-image img {
    flex: 0 0 auto;
    max-width: 300px;        /* Adjust this width as desired */
    width: 100%;
    height: auto;
    border-radius: 6px;
  }
  
  
  /* On small screens: stack vertically */
  @media (max-width: 800px) {
    .media-card .media-content {
      flex-direction: column;
    }
  
    .media-card .media-image img {
      flex: none;
      width: 100%;
    }
  }
  