body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: black;
    color: white;
    scroll-behavior: smooth;
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: white;
    color: black;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
  }
  
  nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: black;
    font-weight: 500;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  .hero {
    text-align: center;
    padding: 4rem 2rem;
  }
  
  .about-section {
    padding: 4rem 2rem;
    background-color: #0b0b0b;
    color: white;
  }
  
  .about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.25rem;
  }
  
  .about-blurb {
    max-width: 800px;
    margin: 0.5rem auto 0;
    color: #d1d1d1;
    line-height: 1.6;
    font-size: 1.05rem;
    text-align: center;
  }
  
  .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid white;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
  }
  
  .name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d1d1d1;
  }
  
  .socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.15);
  }
  
  .experience-section {
    padding: 4rem 2rem;
    background-color: black;
    color: white;
    text-align: center;
  }
  
  .experience-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .experience-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .card {
    background-color: white;
    color: black;
    border-radius: 10px;
    width: 220px;
    padding: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.2s ease;
  }

  /* Ensure 4 cards per row on desktop */
  @media (min-width: 900px) {
    .experience-cards { flex-wrap: nowrap; }
    .experience-cards .card { width: calc((100% - 6rem) / 4); }
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
  }
  
  .card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .card h3 span {
    font-size: 0.85rem;
    font-weight: normal;
    color: #555;
  }
  
  .date-range {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: #f1f1f1;
    color: #333;
  }
  
  .role-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
  }



  .role-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0.5rem;
    color: #333;
    font-size: 0.9rem;
  }

  .role-list li { margin: 0.15rem 0; }

  .logo a {
    text-decoration: none;
    color: inherit;
  }
  
  .projects-section {
    padding: 4rem 2rem;
    background-color: black;
    color: white;
    text-align: center;
  }
  
  .projects-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .project-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .project-card {
    position: relative;
    width: 350px;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
  }
  
  .project-card:hover { transform: translateY(-5px); }
  

  .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  
  
  .project-card .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    text-align: left;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  
  .project-card h3,
  .project-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
    overflow-wrap: break-word;
  }
  
  
  .clickable {
    text-decoration: none;
    color: inherit;
  }
  
  .contact-box {
  margin-top: 8rem;
  padding: 2.5rem 1.75rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

  .contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fff, #ddd, #fff);
    opacity: 0.7;
  }

  .contact-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    color: white;
    font-weight: 500;
  }

  .contact-box p {
    color: #d1d1d1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
  }

  .contact-box .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #000;
    font-weight: 600;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
  }

  .contact-box .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #f0f0f0 0%, #fff 100%);
  }

  .contact-box .divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #888;
    font-size: 0.9rem;
  }

  .contact-box .divider::before,
  .contact-box .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }

  .contact-box .divider span {
    padding: 0 1rem;
  }

  .contact-box .email-section {
    margin-top: 1.5rem;
  }

  .contact-box .email-section strong {
    color: white;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  .contact-box .email-link {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
  }

  .contact-box .email-link:hover {
    color: #66b3ff;
    border-bottom-color: #66b3ff;
  }
  
  .solid-text-card {
    background-color: #1f1f1f;
    width: 350px;
    height: 240px;
    border-radius: 10px;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  

.solid-text-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.solid-text-card p {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

  