.logo{
    border-radius: 50%;
}

  .banner {
        position: relative;
        width: 100%;
        height: 90vh;
        background: linear-gradient(115deg, #5c4b25, #b1a269);
        display: flex;
        justify-content: flex-end;
        align-items: center;
        overflow: hidden; /* penting supaya bunga tidak keluar area */
    }

    .gambarbanner {
        margin-top: 90px;
        margin-right: 50px;
        padding: 50px;
        width: 30%;
        z-index: 2;
        max-width: 100%;
        height: auto;
    }

@media screen and (max-width: 768px) {
    .gambarbanner {
        width: 80%;
        padding: 20px;
        margin-top: 400px;
        margin-right: -10px;
    }
}

    @keyframes fall {
        0% {
            transform: translateY(-50px) rotate(0deg);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        100% {
            transform: translateY(400px) rotate(360deg);
            opacity: 0;
        }
    }

    .banner .text-banner {
        position: absolute;
        top: 55%;
        left: 35%;
        transform: translate(-50%, -50%);
        color: white;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        padding: 10px 20px;
        z-index: 2;
    }

    .banner .text-banner h1 {
        font-size: 2rem;
        font-weight: bold;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        padding: 10px 20px;
        z-index: 2;
    }

    .banner .text-banner p {
        margin-top: -20px;
        font-size: 15px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        padding: 10px 20px;
        z-index: 2;
        width: 90%;
        text-align: justify;
    }

/* button banner */
.Btn {
  position: relative;
  width: 150px;
  height: 55px;
  border-radius: 45px;
  border: none;
  background-color: rgb(177, 162, 105);
  color: white;
  box-shadow: 0px 10px 10px rgb(166, 151, 92) inset,
  0px 5px 10px rgba(177, 162, 105, 0.8),
  0px -10px 10px rgb(177, 162, 105) inset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 2%;
}

.Btn::before {
  width: 70%;
  height: 2px;
  position: absolute;
  background-color: rgba(250, 250, 250, 0.678);
  content: "";
  filter: blur(1px);
  top: 7px;
  border-radius: 50%;
}

.Btn::after {
  width: 70%;
  height: 2px;
  position: absolute;
  background-color: rgba(250, 250, 250, 0.137);
  content: "";
  filter: blur(1px);
  bottom: 7px;
  border-radius: 50%;
}

.Btn:hover {
  animation: jello-horizontal 0.9s both;
}

@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}
/* batas button banner */

.text-nav{
    text-align: center;
}

.navbar-nav .nav-link {
    font-weight: bold;
    color: #000000 !important; /* Warna teks saat hover */
    border-radius: 5px; /* Opsional: membuat sudut membulat */
    padding: 5px 10px; /* Opsional: membuat ruang lebih nyaman */
}

.navbar-nav .nav-link:hover {
    border-radius: 5px; /* Opsional: membuat sudut membulat */
    padding: 5px 10px; /* Opsional: membuat ruang lebih nyaman */
    color: #5f5300 !important;
}

.container-lg{

    width: 100%;
    height: 300px;
}

.txt-service1{
    text-align: right;
    font-family: "Quicksand", serif;
    font-weight: bold;
}

.card-service {
    background-color: #e2e0e0 !important; /* Warna latar card */
    border-radius: 8px; /* Opsional: Sudut melengkung */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Bayangan */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-service:hover {
    transform: scale(0.8) translateY(-40px) translateZ(-50px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 5); /* Bayangan */
}

img.img-fluid.rounded-start.img-services {
    height: 150px !important;
    width: 100%;
}


.text-title{
    text-align: justify;
}

.navbar-nav {
    display: flex;
    justify-content: center; /* Posisi horizontal */
    align-items: center;    /* Posisi vertikal */
    width: 90%;            /* Agar elemen mengambil seluruh lebar navbar */
  }

.navbar-brand {
    margin-left: 50px;
}

/* From Uiverse.io by alexroumi */ 

button.b-produk {
    width: 30%;
    height: 50px;
    
}
.b-produk{
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: white;
    z-index: 1;
    background: #b1a269;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    transition: all 250ms;
    overflow: hidden;
   }
   
   .b-produk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #5f5300;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    transition: all 250ms
   }
   
   .b-produk:hover {
    color: #e8e8e8;
   }
   
   .b-produk:hover::before {
    width: 100%;
   }

   .menu-why .box-why p {
    text-align: justify !important;
    font-size: 12px;
  }

  .menu-why .box-why .why-black{
    width: 40%;
    background-color: #000000;
    padding: 5px;
    border-radius: 5%;
  }

  .menu-why .box-why .why-gold{
    width: 40%;
    background-color: #b1a269;
    padding: 5px;
    border-radius: 5%;
  }

  .menu-why .box-why{
    width: 70%;
    text-align: center;  /* Memastikan teks di dalam p berada di tengah */
    margin: auto;
  }

  input#inputPassword4 {
    height: 120px;
    width: 100%;
}



/* button Contact */
/* From Uiverse.io by shah1345 */ 
.b-contact {

    margin-top: 20px;
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #090909;
    padding: 0.3em 1.7em;
    cursor: pointer;
    font-size: 18px;
    border-radius: 0.5em;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  }
  
  .b-contact:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
  }
  
  .b-contact:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .b-contact:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #5f5300;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .b-contact:hover {
    color: #ffffff;
    border: 1px solid #5f5300;
  }
  
  .b-contact:hover:before {
    top: -35%;
    background-color: #5f5300;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .b-contact:hover:after {
    top: -45%;
    background-color: #5f5300;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }


  .footer {
    width: 100%;
    height: 100px;
    background-color: #b1a269;
    display: flex; /* Menggunakan flexbox */
    justify-content: center; /* Memposisikan elemen secara horizontal di tengah */
    align-items: center; /* Memposisikan elemen secara vertikal di tengah */
  }
  
  .footer .text {
    color: white;
    margin: 0; /* Menghapus margin agar teks tepat di tengah */
    text-align: center;
  }

  .textvar1{
    font-family: "Bai Jamjuree", serif;
  }

  .textvar2{
    font-family: "Exo", serif;
  }

  .textvar3{
    font-family: "Playwrite NZ", serif;
  }
  
  .textvar4{
    font-family: "Quicksand", serif;
    font-weight: bold;
  }

.btn-logout{
  display: flex;
  justify-content: center;
    width: 100%;
    text-align: center;
    padding: 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    list-style: none;
    color: black;
    font-weight: bold;
}

/* Gambar dengan ukuran maksimal di desktop */
.img-product {
  width: 100%; /* Gambar akan menyesuaikan lebar kontainer */
  height: auto; /* Menjaga rasio gambar */
}

/* Responsif di desktop */
@media (min-width: 992px) {
  .img-product {
      max-width: 243px; /* Lebar maksimal gambar di desktop */
      max-height: 243px; /* Tinggi maksimal gambar di desktop */
  }
}

/* Responsif di mobile */
@media (max-width: 767px) {
  .img-product {
      max-width: 243px; /* Lebar maksimal gambar di mobile */
      max-height: 140px; /* Tinggi maksimal gambar di mobile */
  }
}



/* From Uiverse.io by wilsondesouza */ 
ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: left;
  align-items: left;
  margin-left: -20px;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
  background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: #3b5998;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}

.example-2 .icon-content a[data-social="gmap"] .filled,
.example-2 .icon-content a[data-social="gmap"] ~ .tooltip {
  background: conic-gradient(
    #4285F4 0% 20%,   /* Biru */
    #EA4335 20% 40%,  /* Merah */
    #FBBC05 40% 60%,  /* Kuning */
    #34A853 60% 80%,  /* Hijau */
    #3367D6 80% 100%  /* Biru Tua */
  );
}







