.project-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .project-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 15px;
  }
  .project-card {
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  .project-card:hover {
    transform: scale(1.05);
  }
  .project-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .project-button {
    margin-top: 10px;
  }
  .project-container {
    padding: 40px 0;
  }