:root {
    --bs-primary: #02916f;
}



.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-item {
  padding: 0 0.3rem;
}

.dropdown-toggle::after {
  margin-left: 0.7rem;
}

.custom-gradient-navbar {
  background: linear-gradient(to right, white 12%, var(--bs-primary) 75%);
}

.section-title {
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid black;
}

.section-title h2 {
  text-align: left;
}

.section-title span {
  color: var(--bs-primary);
}

.section-content {
  margin-bottom: 1rem;
}

.section-content h4 {
  text-align: left;
  border-left: 5px solid var(--bs-primary);
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-content p {
  text-align: left;
}

.section-content ul {
  text-align: left;
  padding-left: 1rem;
}

.section-content .card-title {
  text-align: left;
}

#product-content, .content {
  margin-top: 2rem;
  margin-bottom: 8rem;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 83vh; /* bisa Anda sesuaikan */
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  /*background: rgba(2, 145, 111, 0.5);  overlay semi-transparan dengan warna primer */
}

.nav-link.active {
  border-bottom: 3px solid white;
  font-weight: 500;
}

.dropdown-item.active {
  color: var(--bs-primary);
  background-color: unset;
}

.dropdown-item:hover {
  background-color: var(--bs-primary);
  color: white;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 25px;
}

.card:hover {
  transform: scale(1.05); /* perbesar 5% */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* lebih besar dan blur */
  border: 1.5px solid var(--bs-primary);
}

.card .card-body {
  transition: transform 0.3s ease, color 0.3s ease;
}

.card:hover .card-body {
  transform: translateY(-5px);
}

.card:hover img {
  filter: brightness(1.2);
  transition: filter 0.3s ease;
}

.card:hover .card-title {
  color: var(--bs-primary);
}

.card-title {
  margin-bottom: 1rem;
}

#contact-content {
  padding: 1rem 10rem;
  background-color: #e8f5f3 ;
}

.contact-info {
  color: var(--bs-primary);
}

.contact-info span a {
  color: var(--bs-primary);
  text-decoration: none;
}

.bx-lg {
  font-size: 4rem;
}

.card-link {
  text-decoration: none;
}

footer {
    background-color: var(--bs-primary);
    position: fixed;
    bottom: 0;
    width: 100vw;
}
