* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  font-family: "Poppins", sans-serif;
}
.spacer {
  height: 20px;
}
.navbar {
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  position: fixed;
  z-index: 9999;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease-in-out;
  transform: translateY(0);
}
.navbar .navbar-brand a {
  font-size: 1.6rem;
  color: #ffffff;
}

.navbar .navbar-links a {
  padding: 0 20px;
  font-size: 1.2rem;
  color: #ffffff;
}
.navbar .navbar-extra {
  display: flex;
  align-items: center;
}
.navbar .navbar-extra .hamburger {
  display: none;
}
.navbar .navbar-extra .search {
  display: block;
  color: #fff;
}
/* pencarian */

.showSearch {
  position: absolute;
  top: -50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  z-index: 999;
}
.activeSearch {
  top: 50%;
}
.showSearch input[type="text"] {
  padding: 1rem;
  border: #000000 0.1rem solid;
  width: 80%;
  height: 4rem;
  font-size: 2rem;
  color: #000;
}
/* Navbar Mobile */
.navbar-mobile {
  display: none;
}

/* hero */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.hero.hero-home {
  background: url("../images/bg_big.jpeg") no-repeat;
  background-size: cover;
  background-position: center;
}
.hero.about-hero {
  background: url("../images/meeting_big.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}
.hero.product-hero {
  background: url("../images/contactSmall.jpeg") no-repeat;
  background-size: cover;
  background-position: center;
}
.hero.contact-hero {
  background: url("../images/product_hero_big.jpeg") no-repeat;
  background-size: cover;
  background-position: center;
}

.blur {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(8px); /* buat Safari */
  background-color: rgba(0, 0, 0, 0.8); /* transparan putih */
  transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
}
.blur::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.1);
  z-index: 99999;
}
.banner-transparent {
  all: unset;
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.banner-transparent h1 {
  font-size: 2.5rem;
  color: #fff;
}
.banner-transparent p {
  font-size: 1.5rem;
  color: rgb(231, 227, 227);
}
.banner-transparent button {
  display: block;
  margin: 2rem auto;
  padding: 1rem;
  border: 2px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  background: transparent;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.banner-transparent button a {
  color: #fff;
}
.banner-transparent button a:hover {
  display: block;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.container-inner {
  display: flex;
  gap: 10px;
  align-items: center;
}
.container-row {
  display: flex;
}
.column {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 10%;
}
.column-inner {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.center-pose {
  height: 100vh;
}
.awal {
  align-self: flex-start;
}

.bg-primary {
  background-color: #000000;
}
.bg-secondary {
  background-color: #fff;
}
.bg-yellow {
  background-color: #f7dc6f;
}
.bg-abu {
  background-color: #3434;
}
.text-primary {
  color: #000000;
}
.text-secondary {
  color: #fff;
}
.value {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5%;
  min-height: 100vh;
  justify-content: center;
}

.valueContainer {
  display: flex;
  margin-top: 1.5rem;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.valueContainer.visible {
  opacity: 1;
  transform: translateY(0);
}
.title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title h2::after {
  display: block;
  content: "";
  border-bottom: #000000 solid 0.2rem;
  transform: scaleX(0.5);
  padding-bottom: 1rem;
}
.value-inner {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value-inner h2 {
  font-size: 1.5rem;
}

.value-inner .icon-set {
  display: block;
  object-fit: cover;
  height: auto;
  width: 100%;
  max-width: 100px;
  margin-bottom: 10px;
}
.about-us {
  display: flex;
  padding: 10%;
  width: auto;
  gap: 20px;
}
.about-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

p.box {
  padding: 1rem;
  text-align: justify;
}
.text-center {
  text-align: center;
}
h1 {
  margin-top: 10px;
}
h2 {
  padding: 0 10px;
  margin-bottom: 10px;
}
h4 {
  padding: 0 10px;
}

.img-box {
  width: 100%;
  height: auto;
  padding: 10px;
  object-fit: cover;
}
ul {
  display: block;
  margin: 0 20px;
}
ul li {
  margin: 10px;
  padding: 0 5px;
}
button.btn-produk {
  padding: 10px;
  margin: 10px;
  border: none;
  border-radius: 10px;
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  width: 100px;
  font-size: 1rem;
}

.containerPartner {
  padding: 1rem;
}
.partner {
  display: flex;
}
.partnerBox {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2%;
}
.partnerBox img {
  width: 100%;
  object-fit: cover;
  height: auto;
}
.containerFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
}
.footerRightMenu {
  display: block;
  margin: 0 10px;
  color: #000000;
}
.footerRightMenu a {
  margin: 0 10px;
  color: #000000;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  z-index: 999;
}

#scrollToTopBtn.show {
  display: block;
  opacity: 1;
}

/* halaman kontak */
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #d4d4d4;
}
.contact .contact-left,
.contact .contact-right {
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 1.4rem 5%;
}
.contact .contact-left h4 {
  font-size: 1.5rem;
}
.contact .contact-left p {
  font-size: 1.2rem;
  padding: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.form-group input[type="text"] {
  padding: 0.5rem;
}
.form-group input[type="email"] {
  padding: 0.5rem;
}
button .btn {
  display: block;
  padding: 2rem;
}
.btn-primary {
  color:#fff
  background-color: #000;
}
/* untuk tampilan laptop */
@media (max-width: 1366px) {
  html {
    font-size: 75%;
  }
}
/* untuk tampilan mobile */

@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
  .navbar {
    display: none;
  }

  .navbar-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    z-index: 9999;
    width: 100%;
    background-color: #d4d4d4;
  }
  .navbar-brand-mobile h4 {
    font-size: 1.5rem;
    color: #000000;
    text-align: center;
  }

  .navbar-links-mobile {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100vh;
    transition: 0.3s;
  }
  .navbar-links-mobile a {
    display: block;
    padding: 10px;
    color: #000000;
  }

  .navbar-extra-mobile-menu {
    display: block;
  }
  .hamburger,
  .cari {
    display: block;
    color: #000000;
  }

  .navbar-extra-mobile-search {
    display: block;
  }
  .active {
    right: 0;
  }
  #menu {
    display: inline-block;
  }
  .about-us,
  .valueContainer,
  .product-container,
  .partner {
    flex-direction: column;
  }
  .containerFooter {
    display: none;
  }
  /* ini modifikasi dari chatgpt */
  .navbar-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem 7%;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-extra .hamburger {
    display: block;
    color: #fff;
    cursor: pointer;
  }
  .contact-left,
  .contact-right {
    flex: 1 1 100%;
  }
}
