body {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
 
}

.shadow-navbar {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.70);
}

.list-check li {
  margin-bottom: 10px;
}

.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}


.dropdown-menu {
  min-width: 220px;
}

.bg-header{
 background-image:url('../images/bg-header-4.png');background-size: cover;
 background-position: right;
 background-repeat: no-repeat;
 text-shadow:1;
}

.logo-utama{
  width: 310px;      /* lebar logo */
  height: auto; 
}



/* Navbar font & warna umum */
.nav-link {
  position: relative;
  color: dark-gray !important;
  text-decoration: none;
  padding-bottom: 5px;
}


/* Garis bawah animasi hanya saat hover */
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: red;
  transition: width 0.3s ease;
}

/* Muncul saat hover */
.nav-link:hover::before {
  width: 100%;
}

/* Khusus dropdown toggle (Produk), override panah Bootstrap */
.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.4em;
  vertical-align: 0.1em;
  content: "▼"; /* atau bisa gunakan background-image/icon */
  font-size: 0.6em;
  color: white;
}

/* Hindari garis merah muncul saat tidak hover */
.navbar .dropdown-toggle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: red;
  transition: width 0.3s ease;
}

.navbar .dropdown-toggle:hover::before {
  width: 100%;
}

.icon-about-us{
  width: 140px;      /* lebar logo */
  height: auto; 
}

.prolog-tentang-kami{
color:gray;
text-align: justify;
}
.wa-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 1000;
    transition: background 0.3s ease, transform 0.2s ease;
}
.wa-button img {
    margin-right: 10px;
}
.wa-button:hover {
    background-color: #1ebe5b;
    transform: scale(1.05);
}

.image-product-1{
  width: 400px;      /* lebar logo */
  height: auto; 
}

.img-carousel {
  max-height: 100px;
  width: auto;         /* Supaya lebarnya tidak 100% */
  max-width: 100%;     /* Supaya tidak keluar dari kolom */
  object-fit: cover;
}



 /* Hilangkan border dan radius dari card */
  .card {
    border: 1 !important;
    border-radius: 2 !important;
    box-shadow: none !important;
  }

  /* Header tab */
  .card-header {
    border-bottom: none;
    background-color: #fff;
    border-radius: 0 !important;
  }

  /* Tab navigasi */
  .nav-tabs {
    border-bottom: 1px solid #dee2e6;
  }

  .nav-tabs .nav-link {
    border-radius: 2 !important;
    border: 1px solid transparent;
    border-bottom: none !important;
  }

  /* Konten tab (bagian ini penting untuk bagian bawah) */
  .tab-content {
    border-radius: 0 !important;
    overflow: hidden;
  }

  /* Optional: Jika ada padding di card-body, hilangkan radius juga */
  .card-body {
    border-radius: 0 !important;
  }
  .nav-link-tab {
  @extend .nav-link;
}

.nav-link-tab.active {
      background-color: #09349D !important;
      color: white !important;
      border: none !important;
}


/* css mobile */
@media (max-width: 991.98px) { /* Bootstrap breakpoint untuk 'lg' */
  .navbar.bg-white {
    background-color: transparent !important;
    box-shadow: none !important;
  }

  .navbar .navbar-brand {
   /* display: none !important; */ /* Sembunyikan logo */
  }

  .navbar .navbar-collapse {
   /*  display: none !important; */ /* Sembunyikan menu */
  }

  .navbar .navbar-toggler {
    display: block !important; /* Pastikan hamburger tetap tampil */
  }
}