body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    background-image: url('/assets/hero/hero.jpg'); /* replace with your image path */
    background-size: cover;
    background-position: center;
    position: relative;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(1, 1, 1, 0.1), rgba(0, 76, 255, 0.5)); /* gradient overlay */
    /* z-index: 1; */
}

.hero-section {
    position: relative;
    /* z-index: 2; */
}



.loading {
    display: none;
    font-size: 16px;
    color: #007bff;
}

.results {
    margin-top: 20px;
}

.error {
    color: red;
}

.hero-section {
    /* background-color: #f8f8f8; */
    /* border: 1px solid #ddd; */
    /* width: 900px; */
    min-height: 100px;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

label {
    font-size: 14px;
}

select {
    font-size: 14px;
    color: #333;
}

.loading {
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #007bff;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

  /* Dropdown Container */
  .form-select {
    width: 100%; /* Full width */
    max-width: 400px; /* Optional: Set a max-width */
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
    appearance: none; /* Removes default dropdown styling */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    position: relative;
}





.main_search .nav.nav-tabs {
    /* background: #fff; */
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    padding: 18px;
    border-radius: 6px 6px 0 0;
    margin-bottom: 0 !important
  }
  
  .main_search .bg-white {
    background: #fff !important
  }
  
  /* .main_search .nav.nav-tabs button{border:unset} */
  .search_box label {
    font-weight: 400
  }
  
  .main_search {
    border: 0 solid hsla(0, 0%, 100%, .2);
    border-radius: 10px 10px 10px 10px;
    border-radius: 10px !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    z-index: 100;
    position: relative
  }
  
  .main_search input:not([type="radio"]):focus {
    background: rgba(235, 235, 235, 0.31);
    border: 1px solid var(--theme-bg);
  }


/* Add a down-arrow for better UI */
.form-select::after {
    content: '\25BC'; /* Unicode character for the down arrow */
    font-size: 12px;
    color: #555;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Add hover effects */
.form-select:hover {
    border-color: #007bff;
}

/* Focused state */
.form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
    outline: none;
}
