.projects-grid {
    display: block;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .project-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out;
  }
  
  .project-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
  }
  
  .project-card img,
  .project-card video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .project-card h3 {
    font-family: "Special Gothic Expanded One", sans-serif;
    color: #0a658d;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .project-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  
  .project-card a {
    display: inline-block;
    margin-top: 0.5rem;
    background-color: #0a658d;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .project-card a:hover {
    background-color: #084b6f;
  }
  