/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  padding-top: 100px; /* supaya tidak tertutup navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 97, 65, 0.6), rgba(24, 138, 85, 0.6)),
                    url('img/hero.jpg'); /* Ganti sesuai nama file gambar */
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: -1;
}
.hero .container{
    margin-top:200px;
}
/* Navbar logo box */
.logo-box {
  font-size: 1.2rem;
}
/* Navbar scroll effect */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background-color: #1a7e54 !important; /* Biru tua */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
/* Dropdown hover style */
.navbar-nav .nav-link,
.navbar-nav .dropdown-menu a {
  color: white;
}
.navbar-nav .dropdown-menu {
  background-color: #343a40;
}
.navbar-nav .dropdown-menu a:hover {
  background-color: #495057;
}



/* section 1 */
.why-section .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(25, 135, 84, 0.1); /* soft green */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.why-box {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.why-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}



/* section 2 */
.tab-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  background-color: #f1f1f1;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-btn i {
  font-size: 1.2rem;
}
.tab-btn.active {
  background-color: #198754;
  color: #fff;
}


/* section 3 */
/* Hilangkan panah bawaan Bootstrap */
.accordion-button::after {
  display: none !important;
}
/* Tambahkan ikon plus/minus custom */
.accordion-button::before {
  font-family: bootstrap-icons;
  content: "\f4fe"; /* bi-plus */
  font-size: 1rem;
  font-weight: normal;
  color: #198754;
  margin-right: 10px;
  transition: transform 0.2s ease;
}
/* Saat terbuka, ganti jadi minus */
.accordion-button:not(.collapsed)::before {
  content: "\f2ea"; /* bi-dash */
}




/*section brosur*/
  
.custom-card {
      background-color: #0f6c2d; /* hijau pekat sesuai gambar */
      color: white;
      border-radius: 15px;
      padding: 40px;
}