/* Container for all cards */
.project-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Card styling */
.project-card {
  background-color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Image styling */
.project-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Text section */
.project-content {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #3C1C75; /* match your footer color */
}

.project-description {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}
