.home-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #ffffff; /* White background */
    padding: 10px;

   
}
/*.slick-sliders {*/
/*	position: relative;*/
/*	min-height: 45%!important;*/
/*	max-height: 45%!important;*/
/*	height: 45%!important;*/
/*}*/
/* Ensures equal spacing */
.home-form .form-group {
    flex: 1;
    min-width: 210px;
}

/* Labels */
.home-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0px !important;
}

/* Input fields */
.home-form.form-control {
    border: none !important;  /* Remove border */
    outline: none !important; /* Remove focus outline */
    box-shadow: none !important; /* Remove Bootstrap default shadow */
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s ease;
    background: #fff;
}

/* Focus effect */
.home-form-control:focus {;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Search button */
#searchBtn {
    padding: 2px 14px;
    font-size: 16px;
    font-weight: 600;
    background-color: #F5C27D;
    color: white;
    border: none;
    border-radius: 100%;
    transition: background 0.3s ease;
}




/* Responsive layout */
@media (max-width: 767px) {
    .home-form {
        flex-direction: column;
        align-items: stretch;
    }

    .home-form .form-group {
        width: 100%;
    }

    #searchBtn {
        width: 100%;
    }
    
    #heading1, #heading2 {
        font-size: 48px; /* Increase font size for mobile */
    }
}

.faq-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    color: #343a40;
}

.faqText {
    font-size: 1.1rem;
    font-weight: 500;
    color: #007bff;
    transition: 0.3s;
    text-align: center;
}

.faqText:hover {
    color: #0056b3;
    text-decoration: underline;
}

.faq-divider {
    border-bottom: 3px solid #f5c27d;
    width: 100%;
    margin: 15px 0px;
}
