/* HERO SECTION - CORPORATE STYLE */

.hero {
  background: url('../images/hero.jpg') center center / cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Overlay tipis elegan */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.75); /* biru tua gelap */
}

.hero-content {
  position: relative;
  color: white;
  max-width: 900px;
  padding: 20px;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.hero-line {
  width: 120px;
  height: 4px;
  background-color: #ffc107; /* kuning industri */
  margin: 20px auto;
}

.hero p {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* PROJECT GALLERY */

.project-img {
  width: 100%;
  height: 300px; /* tinggi seragam */
  overflow: hidden;
  border-radius: 8px;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* penting */
  transition: transform 0.4s ease;

}

.project-img:hover img {

  transform: scale(1.05);

}

.project-img iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .project-img {
    height: 220px;
  }
}

/* PROJECT SLIDER STYLE */

.project-slider {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
}

.project-slider img,
.project-slider iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive height */
@media (max-width: 768px) {
  .project-slider {
    height: 250px;
  }
}