body {
  margin: 0;
  font-family: "Poppins", Arial, Helvetica;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.text-mini {
  font-size: 10px;
}

.justify {
  text-align: justify;
}

.nav-item a {
  color: #000;
}

.nav-item.active a {
  color: #0d6efd;
  font-weight: bold;
}

.hero {
  min-height: 100vh;
  padding-top: 80px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085")
      center/cover no-repeat;
}

.cardHover,
.card-portofolio,
.card-addons {
  transition: all 0.5s ease;
  position: relative;
  border: none;
  z-index: 1;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  /* cursor: pointer; */
}

.card {
  border-radius: 15px;
}

.cardHover:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* garis belang card */

/* Garis biru horizontal */
.line-wrapper {
  position: relative;
}

/* Garis horizontal tengah */
.line-wrapper::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 50%;
  height: 2px;
  opacity: 0.5;
  background-color: #0d6efd;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.btn-hover:hover {
  color: #0d6efd;
}

.popular-card {
  border: 2px solid #0d6efd;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  font-size: 0.85rem;
}

.hero-tentang {
  min-height: 50vh;
  padding-top: 80px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085")
      center/cover no-repeat;
}

.berkembang-bg {
  border-radius: 25px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085")
      center/cover no-repeat;
}

.card-nilai {
  transition: all 0.5s ease;
  position: relative;
  border: none;
  z-index: 1;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card-nilai:hover {
  transform: translatey(-5%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bullet-primary li::marker {
  color: var(--bs-primary);
}

.card-addons:hover {
  transform: translatey(-2%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.img-portofolio {
  overflow: hidden;

  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.img-portofolio img {
  width: 100%;
  transition: transform 0.4s ease;
}

.card-portofolio:hover {
  transform: translatey(-2%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-portofolio img {
  transition: transform 0.4s ease;
}

.card-portofolio img:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .line-wrapper::before {
    display: none;
  }
  .popular-card {
    transform: none;
  }
}
