:root{
    --orange-1 :#F96D34;
    --orange-2 :#EE7746;
    --main-bg: #FFF7E9;
    --brown : #603626;
    --black: #171717;
}

body {
    background-color: var(--main-bg);
    font-family: 'Poppins';
    max-width: 100vw;
}

.hero {
    color: #fff;
    position: relative;
    height: 100vh;
    background: linear-gradient(181deg, rgba(0, 0, 0, 0.00) 26.21%, rgba(0, 0, 0, 0.48) 94.87%), url('images/hero_bg_phone.png') lightgray no-repeat ;
    background-size: cover;
}

.hero img{
    height: 100vh;
    display: none;
}

.hero-content {
    position: absolute;
    z-index: 2;
    bottom: 0;
    margin-left: 5%;
    margin-bottom: 20%;
    margin-top: 70px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hero {
        height: auto;
    }

    .hero img{
        height: auto;
        display: block;
    }

    .hero-content {
        margin-left: 10%;
        margin-bottom: 10%;
    }
  }

.btn-primary {
    background-color: var(--orange-1);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--orange-2);
    /* Slightly darker shade for hover effect */
}

.fixed-top {
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* Logo styling */
.logo {
    width: auto;
    height: 50px;
}

.logo-text {
    width: auto;
    height: 40px;
}

/* Navbar styling */
.navbar {
    background-color : rgba(0, 0, 0, 0.20) !important;
    backdrop-filter: blur(8px);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

footer{
    background-color: var(--brown);
    color: #fff;
}

.text-white{
    color: #fff !important;
}

.text-orange-1{
    color: var(--orange-1) !important;
}

.text-orange-2{
    color: var(--orange-2) !important;
}

.text-brown{
    color: var(--brown) !important;
}

.bg-orange-1{
    background-color: var(--orange-1) !important;
}

.bg-orange-2{
    background-color: var(--orange-2) !important;
}

.bg-brown{
    background-color: var(--brown) !important;
}

.card-body {
    padding: 2rem; /* Add extra padding to the card body */
}

.form-label {
    font-weight: bold; /* Make labels bold for better readability */
}

.form-control, .form-select, .form-textarea {
    border-radius: .25rem; /* Rounded corners for inputs */
}

textarea.form-control {
    resize: vertical; /* Allow vertical resizing only */
}

.form-select{
    width: 100%; /* Full width select */
    padding: 0.375rem 0.75rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #ced4da;
    background-color: #fff;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"%3E%3Cpath fill="%23343a40" d="M2 0L0 2h4zm0 5L0 3h4z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 8px 10px;
}

.form-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.form-check-input {
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.form-check-label {
    margin-left: 0.5rem;
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}
* html .ui-autocomplete {
    height: 200px;
}
.autocomplete-container {
    position: relative;
}
.autocomplete-dropdown-icon {
    position: absolute;
    top: 55%;
    right: 20px;
    cursor: pointer;
    z-index: 999;
}

.error {
    color: red;
    font-size: 0.875em;
    display: none;
}