     .search-section {
  margin: 0 auto 30px;
  max-width: 1200px;
  position: relative;
}

.search-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.search-background {
  position: relative;
  height: 140px; /* Increased height for title */
  background: #002777; /* Navy blue */
}

.search-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(211, 153, 63, 0.15) 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0.8;
}

.search-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 39, 119, 0.9), rgba(0, 39, 119, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 25px 30px;
}

.section-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.title-decoration {
  height: 3px;
  width: 60px;
  background: #D3993F; /* Gold */
  border-radius: 3px;
  margin-bottom: 15px;
}

.search-content {
  position: relative;
  padding: 0 25px;
  margin-top: -40px;
}

.search-input-container {
  display: flex;
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: white;
  position: relative;
  z-index: 2;
  border-bottom: 3px solid transparent;
}

.search-input:focus {
  outline: none;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
  transform: translateY(-2px);
  border-bottom-color: #D3993F; /* Gold accent */
}

.search-button {
  padding: 16px 25px;
  background: #D3993F;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 2;
  white-space: nowrap;
}

.search-button:hover {
  background: #001f5c;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: #7f8c8d;
  transition: all 0.3s ease;
}

.search-input:focus + .search-icon {
  color: #002777; /* Navy blue */
  stroke-width: 2.5;
}

.search-decoration {
  position: absolute;
  bottom: -8px;
  left: 25px;
  right: 25px;
  height: 4px;
  display: flex;
  z-index: 1;
}

.decoration-bar {
  height: 100%;
  transition: all 0.4s ease;
}

.gold-bar {
  background: #D3993F; /* Gold */
  flex: 0 0 30%;
}

.navy-bar {
  background: #002777; /* Navy blue */
  flex: 1;
}

.search-input:focus ~ .search-decoration .gold-bar {
  flex: 0 0 40%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-background {
    height: 120px;
  }
  
  .search-overlay {
    padding: 0 15px 25px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .search-content {
    padding: 0 15px;
  }
  
  .search-input {
    padding: 14px 15px 14px 45px;
  }
  
  .search-button {
    padding: 14px 20px;
  }
  
  .search-icon {
    left: 15px;
  }
  
  .search-decoration {
    left: 15px;
    right: 15px;
  }
}
.search-filters-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-dropdown {
    position: relative;
    flex: 1;
    max-width: 250px;
}

.search-select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    appearance: none;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.search-select:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-bottom-color: #D3993F;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    pointer-events: none;
}

/* Adjust existing search input container */
.search-input-container {
    flex: 2;
    position: relative;
}

/* Existing search button styles - ensure they match */
.search-button {
    padding: 0 20px;
    background-color: #D3993F;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.search-button:hover {
    background-color: #c28e37;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-filters-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-dropdown {
        max-width: 100%;
    }
    
    .search-input-container {
        width: 100%;
    }
}
  /* Force Select2 to match other form-select fields */
.select2-container .select2-selection--single {
  height: 48px !important;       /* match your other dropdowns */
  border: 1px solid #ced4da;     /* same border as Bootstrap */
  border-radius: 0.375rem;       /* same radius */
  display: flex;
  align-items: center;
}

.select2-container .select2-selection__rendered {
  line-height: 38px !important;  /* vertically center text */
  padding-left: 8px;
}

.select2-container .select2-selection__arrow {
  height: 36px !important;       /* keep arrow aligned */
}
