.project-left {
  width: 40%;
}

.project-right {
  width: 60%;
}

.project-row {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.project-left img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

.project-filter {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 6px;
  background: #f2f2f2;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.filter-btn:hover {
  background: #ddd;
}

.filter-btn.active {
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .project-row {
    flex-direction: column;
  }

  .project-left,
  .project-right {
    width: 100%;
  }
}
