.hero-section {
    min-height: 28rem;
    background: url("../images/portfolio-banner.png") center/cover no-repeat;
    position: relative;
}

.portfolio {
  padding: 100px 0;
  background: radial-gradient(circle at top, #24124d, #0b0616);
}

.portfolio-card {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.portfolio-card:hover {
  border-color: #b57cff;
}

/* Video wrapper */
.portfolio-media {
  position: relative;
  height: 35rem;
  overflow: hidden;
}

.portfolio-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play video on hover */
.portfolio-card:hover video {
  play-state: running;
}

/* Content */
.portfolio-content {
  padding: 18px 16px;
  text-align: center;
}

.portfolio-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
}

.portfolio-content span {
  font-size: 13px;
  color: #ff7acb;
  font-weight: 600;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 992px) {
  .portfolio-media {
    height: 200px;
  }
}

@media (max-width: 768px) {
.hero-section {
    min-height: auto;
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .portfolio {
    padding: 70px 0;
  }

  .portfolio-media {
    height: 180px;
  }
}