/* .completed-projects {
  padding: 80px 5%;
  background-color: #f8f9fa;
}

.completed-projects h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  color: #111;
}

.masonry-grid {
  column-count: 3;
  column-gap: 16px;
}

.masonry-grid img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 12px;
  display: block;
  break-inside: avoid;
  transition: transform 0.3s ease;
}

.masonry-grid img:hover {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry-grid {
    column-count: 1;
  }
} */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

.projects-gallery {
  padding: 80px 5%;
  background-color: #f9fafb;
  font-family: 'Manrope', sans-serif;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.projects-gallery .section-title {
  font-size: 2.4rem;
  margin-bottom: 40px;
  font-weight: 800;
}

.projects-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
}

.project-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-card h3 {
  padding: 16px;
  font-size: 1.2rem;
  color: #111;
  font-weight: 600;
}
