* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  .hero {
    background: linear-gradient(135deg, #6366f1, #4338ca);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
  }
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  .hero p {
    font-size: 1.2rem;
    opacity: 0.9;
  }
  .about {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
  }
  .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 9999px;
    object-fit: cover;
  }
  .tags {
    margin-top: 1rem;
  }
  .tags span {
    display: inline-block;
    background: #e2e8f0;
    color: #1e293b;
    padding: 0.3rem 0.7rem;
    margin: 0.2rem;
    border-radius: 6px;
    font-size: 0.8rem;
  }
  .projects {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap; /* Default: wrap on small screens */
  }
  
  /* Force single row layout on large screens (desktop) */
  @media (min-width: 1024px) {
    .projects {
      flex-wrap: nowrap;
      justify-content: center;
    }
  }
  
  .card {
    background: white;
    width: 400px;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }  

  .icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 0.5rem;
  }

  .icon-large {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 0.75rem;
  }

  .card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .card a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
  }
  .card a:hover {
    text-decoration: underline;
  }
  footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.9rem;
  }
  footer a {
    color: #2563eb;
  }
  
/* Project Page Header */
.project-header {
    text-align: center;
    padding: 4rem 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #4338ca);
    color: white;
  }
  
  .project-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
  
  .project-header p {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  /* Project Sections */
  .project-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .project-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
  }
  
  .project-section p,
  .project-section li {
    font-size: 1rem;
    color: #334155;
  }
  
  /* List Styling */
  .feature-list,
  .link-list {
    padding-left: 1.2rem;
    list-style: disc;
    margin-top: 0.5rem;
  }
  
  .feature-list li,
  .link-list li {
    margin-bottom: 0.5rem;
  }
  
  /* Screenshot Image */
  .screenshot {
    border-radius: 8px;
    margin-top: 1rem;
    max-width: 100%;
    height: auto;
  }
  
  /* Back Link */
  .back-link {
    text-align: center;
    margin-top: 2rem;
  }
  
  .back-link a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
  }
  
  .back-link a:hover {
    text-decoration: underline;
  }
  