@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
/* Hero */
  .hero-services {
    position: relative;
    height: 300px;
    background: url('../img/background.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 95, 153, 0.6); /* biru transparan */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .hero-text p {
    font-size: 1.1rem;
    color: #f1f1f1;
  }

  /* Services */
  .services-section {
    padding: 60px 20px;
    background: #f9fcff;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  /* Container Grid */
.keterangan-layanan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Card */
.keterangan-layanan-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.keterangan-layanan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Bagian gambar full */
.keterangan-layanan-image {
  width: 100%;
  height: 220px; /* tinggi tetap */
  overflow: hidden;
}

.keterangan-layanan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* gambar nutup full */
  display: block;
}

/* Bagian isi */
.keterangan-layanan-content {
  padding: 20px;
  text-align: center;
}

.keterangan-layanan-content h3 {
  color: #005f99;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
}

.keterangan-layanan-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsif HP */
@media (max-width: 768px) {
  .keterangan-layanan-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .keterangan-layanan-image {
    height: 150px;
  }
}