/* Hero Section Styling */
.hero-section {
    background: url('hero-section-bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    min-height: 60vh;
}

/* Optional Dark Overlay for Contrast */
/* .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 31, 63, 0.7);
    z-index: 1;
} */

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

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Input and Button Alignment */
.input-group .form-control.address-input,
.input-group .btn.address-button {
    height: 50px;
    padding: 10px 20px;
    font-size: 1rem;
}

.input-group .form-control.address-input {
    border-radius: 30px 0 0 30px;
    border: 1px solid #5c6bc0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.input-group .form-control.address-input:focus {
    box-shadow: 0 0 10px rgba(92, 107, 192, 0.5);
}

.input-group .btn.address-button {
    border-radius: 0 30px 30px 0;
    background-color: #5c6bc0;
    border: none;
    transition: all 0.3s ease;
}

.input-group .btn.address-button:hover {
    background-color: #7986cb;
    box-shadow: 0 5px 15px rgba(92, 107, 192, 0.4);
}

/* Button Styling */
.btn-outline-light {
    border-color: #FFFFFF;
    color: #FFFFFF;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-light:hover {
    background-color: #FFFFFF;
    color: #0a2a55;
}



.suggestions-container {
    position: absolute;
    top: 11rem; /* Align just below the input box */
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1050; /* High z-index to appear on top of other DOM elements */
    margin-top: 5px; /* Small gap between input and dropdown */
    overflow: hidden;
    max-height: 200px; /* Optional: Add max height with scroll */
    overflow-y: auto;
    
    /* left: 25vw; */
    /* min-width: 30vw; */
    transform: translateX(-50%);
    left: 50%;
}

/* Individual suggestion item */
.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #3a4472;
    transition: background-color 0.2s ease-in-out;
}

/* Hover effect */
.suggestion-item:hover {
    background-color: #f1f1f1;
    color: #007bff;
}

/* No results message */
.no-results {
    padding: 10px 15px;
    font-size: 14px;
    color: #666;
    text-align: center;
}