.card-img-top {
  height: 300px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h2, h3 {
  color: #2d472c;
}

.btn-success {
  background-color: #5da15d;
  border-color: #5da15d;
}
.theme-green{
  color: #355528;
}
.bg-theme-green{
background-color: #355528;;
}
.bg-theme-green:hover {
  background-color: #2B4420; /* Slightly darker green on hover */
  color: #fff; /* Keep text white */
  cursor: pointer; /* Optional: pointer cursor on hover */
}
.accordion-button {
  background-color: transparent;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  padding: 1.2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center; /* ✅ Ensures vertical centering */
}

.accordion-button::after {
  content: "+";
  font-size: 18px;
  font-weight: bold;
  color: #2B5329;
  background-color: #ECF3EB;
  border: 1px solid #355528;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
  box-sizing: border-box;
  margin-left: auto; /* ✅ Pushes icon to the right */
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: "−";
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 15px;
  padding: 0.5rem 1rem 1rem;
  color: #333;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

      .card-title{
    color: #355528;
    font-size: 18px;
    font-weight: 600;
  }
.why-choose-us {
  position: relative;
  background-color: #355528;
  background-image: url('public/src/images/home/whychooseus/whychooseus-bg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
}
.why-choose-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(47, 81, 50, 0.85); /* semi-transparent green overlay */
  z-index: 1;
}

.why-choose-us > .container {
  position: relative;
  z-index: 2;
}



.why-choose-us .icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-top: 4px;
}

.why-choose-us .d-flex {
  align-items: flex-start; /* Align icon and text top aligned */
}

.why-choose-us h5 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.why-choose-us p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.cta-section {
  background-color: #fdfced; /* light cream shade */
}

.cta-section h2 {
  font-size: 1.75rem;
}

.cta-input {
  max-width: 400px;
  padding: 0.75rem 1rem;
  border: 2px solid #f4cf99;
  border-radius: 6px;
  font-size: 1rem;
  flex: 1 1 auto;
}

.cta-section .btn-success {
  min-width: 100px;
  border-radius: 6px;
  font-weight: 500;
}

/*footer*/
.footer {
  background-color: #fff;
  color: #333;
  line-height: 2rem;
}

.footer-link {
  color: #333;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  color: #198754;
}

.footer i.bi {
  font-size: 1.2rem;
  color: #198754;
}

.footer i.bi:hover {
  color: #145c35;
}
/*carousel*/
.carousel-inner {
  border-radius: 12px;
}

.carousel-indicators [data-bs-target] {
  background-color: #198754;
}
.text-home{
  color:E9B45D;
}
.nav-link.active {
  color: #E9B45D !important;
  font-weight: 600; /* Optional: make it stand out */
}