.product {
  padding: 15px 60px;
}
.search-button {
  border: none;
  background-color: #a0522d;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-button img {
  filter: invert(1);
}

.header-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-text h1 {
  max-width: 80%;
  color: #a15a00;
  font-size: 50px;
}
.header-images img {
  margin: 0 10px;
  width: 150px;
  height: 113px;
}
.header-button {
  background: linear-gradient(45deg, #ff9900, #ff6600);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.header-images img {
  animation: slideInFromLeft 1s ease-out; /* Ganti durasi sesuai kebutuhan */
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.header-image img {
  animation: slideInFromRight 1s ease-out; /* Ganti durasi sesuai kebutuhan */
}

/* Profile Section */
.profile-section {
  padding: 50px;
  text-align: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.profile-section h2 {
  color: #a15a00;
  font-size: 36px;
  text-align: left;
  margin-left: 0;
  margin-bottom: 20px;
  font-weight: bold;
}

.profile-section h3 {
  color: #a15a00;
  text-align: left;
  margin-left: 0;
  font-size: 28px;
  margin-bottom: 20px;
}

.profile-section .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-section .col-md-4 img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.profile-section .col-md-8 {
  text-align: left;
  padding-left: 20px;
}

.profile-section .col-md-8 p {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  text-align: justify;
}

/* Product */
.card-title {
  color: #a15a00;
  font-size: 16px;
  margin-top: 10px;
}
.card-text {
  font-size: 14px;
  margin: 10px 0;
}
.btn-warning {
  background-color: #ff9900;
  border: none;
  color: white;
  width: 100%;
}
.btn-warning:hover {
  background-color: #ff6600;
}
.card {
  margin-bottom: 20px;
}
h2 {
  color: #a15a00;
  text-align: center;
}
.btn-custom-outline {
  border: 2px solid #ff9900 !important;
  color: #ff9900 !important;
  background-color: transparent !important;
  border-radius: 25px !important;
  padding: 5px 15px !important;
  font-weight: bold !important;
}

.btn-custom-outline:hover {
  background-color: #ff9900 !important;
  color: white !important;
}

/* Why Choose Us */
#why-choose-us h2 {
  color: #a15a00;
  font-size: 36px;
  font-weight: bold;
}
#why-choose-us h5 {
  color: #a15a00;
  font-size: 24px;
  font-weight: bold;
}
#why-choose-us p {
  font-size: 16px;
  color: #333;
  margin: 0;
}
#why-choose-us .me-2 {
  width: 24px;
  height: 24px;
}

/* Testimonial */
.testimonials {
  text-align: center;
  padding: 50px 0;
  background-color: #f9f9f9;
}

.section-title {
  color: #ff6347; /* Testimonial title color */
  font-size: 18px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: left;
}

.stars {
  color: #ffcc00; /* Star color */
  font-size: 20px;
}

.testimonial-text {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
}

.customer-name {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}

@media (max-width: 768px) {
  .header-section {
    flex-direction: column;
    text-align: center;
  }
  .header-text h1 {
    font-size: 36px;
    max-width: 100%;
  }
  .header-images {
    flex-direction: row;
    gap: 1rem;
  }
  .header-images img {
    height: auto;
    margin: 10px 0;
  }
  .header-button {
    margin-top: 20px;
  }
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .header-images img {
    width: 45%;
    height: 100%;
  }
}
