.navbar-wrapper {
  position: absolute;
  top: 20px;
  width: 100%;
  z-index: 10;
  pointer-events: auto;
}

.navbar {
  background: white;
  border-radius: 50px;
  padding: 15px 30px;
  margin: 0 auto;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hero {
  padding-top: 80px; /* Kurangi dari 140px menjadi 80px atau sesuai selera */
  min-height: 100vh;
  display: flex;
  align-items: center; /* Ini akan menempatkan konten di tengah vertikal */
}
.hero2 {
  height: 17vh;
  background-color: #1e90ff;
  width: 100%;
  min-height: 80px;
}
.hero3 {
  background:
    linear-gradient(rgba(0, 123, 255, 0.5), rgba(0, 123, 255, 0.5)),
    url("../img/pemandangan2.webp");
  background-size: cover;
  background-position: center;
  min-height: 10vh; /* Sesuaikan tinggi sesuai kebutuhan */
}

.hero-person {
  max-height: 500px; /* atur tinggi orang */
}

.hero-content {
  padding-top: 60px;
}
@media (max-width: 768px) {
  .hero-person {
    position: static !important;
    max-height: 300px;
    margin-top: 30px;
  }
}

.card-img-top {
  height: 220px; /* SAMAKAN TINGGI GAMBAR */
  object-fit: contain; /* BIAR GAMBAR TIDAK PEYOK */
}

.keunggulan-section {
  background-image: url("../img/Group\ 2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}
.keunggulan-section {
  background-color: #f8f9fa; /* sama seperti bg-light */
}

.keunggulan-box {
  background: white;
  border-radius: 10px;
  padding: 20px;
}

/* CARD */
.tentang-card {
  position: relative; /* patokan overlay */
  overflow: hidden;
  cursor: pointer;
  border: none;
}

/* GAMBAR */
.tentang-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* hilangkan celah bawah */
}

/* OVERLAY */
.tentang-overlay {
  position: absolute;
  inset: 0; /* top:0 right:0 bottom:0 left:0 */
  background: rgba(30, 144, 255, 0.8);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;

  transform: translateY(100%);
  transition: transform 0.4s ease;
}

/* HOVER */
.tentang-card:hover .tentang-overlay {
  transform: translateY(0);
}

.footer-section {
  background-color: #1e90ff;
  color: #ffffff;
}

.footer-section h6 {
  color: #ffffff;
  font-weight: 600;
}

.footer-section p,
.footer-section i {
  color: #fafbfc;
}
/* Menjaga gambar tetap proporsional dan tidak terpotong */
.card-img-top {
  height: 180px; /* Tentukan tinggi tetap untuk area gambar */
  object-fit: contain; /* Gambar tidak terpotong, masuk semua ke kotak */
  padding: 10px;
}

/* Menghilangkan dekorasi link agar teks tidak biru/garis bawah */
.card-link {
  color: inherit;
  text-decoration: none;
}

.card {
  transition: transform 0.2s;
  border: 1px solid #ddd; /* Sesuaikan dengan border asli Anda */
}

.card:hover {
  transform: translateY(-5px); /* Efek angkat sedikit saat dihover */
}
