.hght img {
  height: 200px;
  border-radius: 5px; /* Ensures the image scales nicely while maintaining aspect ratio */
}
.carousel-item img {
  width: 100% !important;
}

.container-fluid{
  --bs-gutter-x:none !important;
}
.top-50 {
    top: 48% !important;
}
.btn-primary {
  color: #fff;
  background: #225528 !important;
  border: #225528 !important;
}
.bg-primary {
  background-color: rgb(204 167 13) !important;
}
.btn-outline-secondary:hover{
    background-color: rgb(204 167 13) !important;
    color: black;
    border: black;
}

/* Target the placeholder text color */
.form-control::placeholder {
    color: white;
    opacity: 1; /* Ensures the color is fully opaque */
  }
  
  /* Optional: Customize input text color for consistency */
  .form-control {
    color: white;
    background-color: transparent; /* If desired */
    border: 1px solid white; /* Optional for styling */
  }
  .accordion-button:not(.collapsed) {
    color: #225528;
    background-color: #f1fef3;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: #225528;
    
}


.dropdown-large {
    position: static !important;
  }
  
  .dropdown-menu-large {
    margin-left: 16px;
    margin-right: 16px;
    padding: 20px 0;
    display: flex; /* To create a multi-column layout */
    flex-wrap: wrap; /* Wrap items in smaller screens */
  }
  
  .dropdown-menu-large > .dropdown-column {
    flex: 1; /* Makes all columns equal width */
    padding: 0 15px; /* Add some padding between columns */
    min-width: 200px; /* Ensure columns have a minimum width */
  }
  
  .dropdown-menu-large ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .dropdown-menu-large ul li {
    list-style: none;
  }
  
  .dropdown-menu-large ul li a {
    display: block;
    padding: 5px 15px;
    clear: both;
    font-weight: normal;
    line-height: 1.5;
    color: #333333;
    white-space: normal;
  }
  
  .dropdown-menu-large ul li a:hover,
  .dropdown-menu-large ul li a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
  }
  
  .dropdown-menu-large .disabled > a,
  .dropdown-menu-large .disabled > a:hover,
  .dropdown-menu-large .disabled > a:focus {
    color: #999999;
    cursor: not-allowed;
    background-color: transparent;
  }
  
  .dropdown-menu-large .dropdown-header {
    color: #0d6efd; /* Bootstrap 5's primary color */
    font-size: 18px;
    padding: 10px 15px;
  }
  
  @media (max-width: 768px) {
    .dropdown-menu-large {
      margin-left: 0;
      margin-right: 0;
      flex-direction: column; /* Stack columns vertically on small screens */
    }
    .dropdown-menu-large > .dropdown-column {
      margin-bottom: 20px;
    }
    .dropdown-menu-large .dropdown-header {
      padding: 10px 15px !important;
    }
  }
  