/* Hero Section */
.portfolio-hero {
  text-align: center;
  padding: 80px 20px 50px;
  background: #f8f9fc;
}

.portfolio-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.portfolio-hero p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Portfolio Project */
.portfolio-project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 10%;
}

.portfolio-project.reverse {
  flex-direction: row-reverse;
}

.project-text {
  flex: 1;
}

.project-text h2 {
  font-size: 28px;
  font-weight: 600;
  color: #009688;
  margin-bottom: 15px;
}

.project-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.project-image {
  flex: 1;
}

.project-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.project-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .portfolio-project {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .portfolio-project.reverse {
    flex-direction: column;
  }
  .project-image {
    margin-top: 20px;
  }
}
