
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html{
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: white;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;

}

.navbar {
    display: flex;
    justify-content: center;
    width: 100%;
}

button {
    background: #D9D562;
    margin-top: 4vh;
    color: 000000;
;
    border: #000000;
    border-radius: 1rem;
    font-size: 2vh;
    cursor: pointer;
    width: 35%;
    height: 5vh;   
}


.logo {
    position: absolute;
    left: 10%;
    margin-top: 2%;
}

.logo img {
    width: 15vw;
    height: auto;
}


.hero {
    height: 100vh;
    width: 100vw;
    position: relative;
    background: 
    
    radial-gradient(
        circle at bottom right,
        #f3d79b 0%,
        #f7e9c8 20%,
        transparent 55%
    ),
    #faf9f7;

    
}

.headers {
    position: absolute;
    top: 8%;
    left: 80%;
    transform: translateX(-50%);
    display: flex;
    gap: 4vw; /* space between links */
}

.headers a {
    font-family: sans-serif;
    font-size: 2.2vh;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.05vw;

}

.hero_image {
    position: absolute;
    left: 60%;
    bottom: 0;
    width: 40%;
    background: transparent;
}

.hero_image img{
    width: 100%;
    display: block;
}

.hero_text {
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 30%;
}

.hero_text h1{
    font-size: 7vh;
    color: #000000;
}

.hero_text p{
    font-size: 2vh;
    margin-top: 2vh;
    color: #000000;
}

.hero_text button {
    background: #D9D562;
    margin-top: 4vh;
    color: 000000;

    border: #000000;
    border-radius: 1rem;
    font-size: 2vh;
    cursor: pointer;
    width: 30%;
    height: 5vh;   
}


.contact_container{
    position: absolute;
    height: 50%;
    width: 50%;
    background-color: #F7F7F7;
    top: 70%;
    left: 50%;
    border: 0.13vw solid #E0E0E0;
    border-radius: 0.6rem;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    
}


.contact-form {
    width: 80%;
    height: 100%;
}

.contact-form input {
    padding-left: 3%;
}


.contact-form textarea {
    padding-left: 3%;
    padding-top: 3%;
}


.name {
    width: 95%;
    height: 8%;
    margin-top: 5%;
    border: 0.13vw solid #E0E0E0;
    font-weight: bold;
    font-size: 1.4vh;


}

.email {
    width: 95%;
    height: 8%;
    margin-top: 5.5%;
    border: 0.13vw solid #E0E0E0;
    font-weight: bold;
    font-size: 1.4vh;

}


.subject {
    width: 95%;
    height: 8%;
    margin-top: 6%;
    border: 0.13vw solid #E0E0E0;
    font-weight: bold;
    font-size: 1.4vh;

}


.message {
    width: 95%;
    height: 15%;
    margin-top: 6.5%;
    border: 0.13vw solid #E0E0E0;
    font-weight: bold;
    resize: none;
    font-size: 1.4vh;

}

.contact-form button{
    width: 15%;
    height: 10%;
    background-color: #D9D562;
    border: none;
    cursor: pointer;
    border-radius: 0.3em;
    margin-top: 5%;
    font-size: 1.4vh;

}



.footer {
    position: relative;
    width: 100%;
    height: 35vh;
    background-color: #f7e9c8; 
    border-top: 0.3vh solid #E5D8B6;
}

.footer::before {
    content: "";
    position: absolute;
    top: 84%;
    left: 8%;
    width: 84%;
    height: 0.2vh;
    background: #D8CBAA;
}

.footer_company {
    position: absolute;
    top: 3%;
    left: 10%;
    color: #000;
    font-size: 2vh;
}

.email_button {
    display: inline-block;
    color: #fb8005;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: bold;
}

.email_button:hover {
    opacity: 0.8;
}

.phone_link {
    color: #fb8005;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0.5rem;
    transition: 0.25s ease;

}

.phone_link:hover {
    opacity: 0.8;
}

.Online_Enquiry_btn {
    color: #fb8005;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0.5rem;


}

.Online_Enquiry_btn:hover {
    opacity: 0.8;
    cursor: pointer;
}


.footer_services {
    position: absolute;
    top: 3%;
    left: 50%;
    color: #000;
    font-size: 2vh;
    line-height: 1.7;
}

.footer_disclaimer {
    position: absolute;
    top: 3%;
    right: 5%;
    width: 20%;
    font-size: 2.5vh;
    color: #000;
    display: block;
    margin-bottom: 2.5vh;
}

.footer_disclaimer p{
    font-size:  1.7vh;
    margin-top: 1vh;
    line-height: 1.3;
}



.footer_copyright {
    position: absolute;
    bottom: 5%;
    left: 9%;
    font-size: 2.0vh;
    font-weight: bold;
    color: #000;
}

.footer_logo {
    left: 9%;
    width: 15%;
    bottom: 17%;
    position: absolute;
}

.footer_logo img {
    width: 80%;
    height: auto;
    transition: .3s ease;
}

.footer_logo img:hover{
    transform: scale(1.05);
}

.google_review {
    position: absolute;
    top: 85%;
    left: 50%;
    width: 20%;
    height: auto;
}

.google_review a {
    display: block;
    width: 20%;
}

.google_review img {
    display: block;
    width: 100%;
    height: auto;
    transition: .3s ease;
}

.google_review img:hover{
    transform: scale(1.05);
}

.footer_resources{
    position: absolute;
    top: 3%;
    left: 30%;
    color: #000;
    font-size: 2vh;
    line-height: 1.7;
}

.footer_resources h3{
    font-size: 2.5vh;
    margin-bottom: 1vh;
}

.footer_resources a {
    display: block;
    color: #fb8005;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.7vh;
    margin-bottom: 1vh;
    transition: 0.25s ease;

}

.footer_resources a:hover{
    color: #d96d00;
    transform: translateX(5%);
}

.Online_Enquiry_btn {
    cursor: pointer;

}
.Online_Enquiry_btn :hover{
    cursor: pointer;
}


.chat_button {
    position: fixed;
    left: 1%;
    bottom: 5%;
    width: 5%;
    height: 7%;
    background-color: #D9D562;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vh;
    cursor: pointer;
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
}

.chat_window {
    position: fixed;
    left: 1%;
    bottom: 15%;
    width: 20%;
    height: 50vh;
    background-color: white;
    border: 0.13vw solid #E0E0E0;  
    border-radius: 1.2rem;
    flex-direction: column;
    display: none;
    overflow: hidden;
    box-shadow: 0 0.05vh 2vh rgba(0,0,0,0.15);
}

.chat_content {
    flex: 1;
    overflow-y: auto;
    padding: 5%;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;

}

.chat_content::-webkit-scrollbar {
    display: none;
}

.header_container {
    width: 100%;
    height: 15%;
    background-color: white;
    border-radius: 1.5rem;
}
.chat_header{
    background-color: #D9D562;
    Padding: 4%;
    margin-top: 1%;
    border-radius: 2rem;
    font-size: 1.6vh;
    font-weight: bold;
    color: black;
    text-align: center;


}

.greeting_cont{
    height: 12%;
    width: 70%;
    background-color: #f7e9c8;
    margin-top: 1%;
    margin-left: 5%;
    border-radius: 0.5rem;
    align-content: center;

}




.header_container_logo {
    width: 50%;
    height: auto;
    object-fit:contain;
    margin-top: 5%;
    margin-left: 5%;
}

.header_line {
    width: 85%;
    height: 0.2%;
    background-color: orange;
    margin: 5% auto;
}
.greeting_cont p{
    color: #000;
    font-size: 1.5vh;
    margin-left: 10%;
    font-weight: 500;

}




.question1{
    position: absolute;
    margin-left: 6%;
    margin-top: 8%;

    width: 22%;
    height: 4vh;
    background-color: #FFFFFF;
    cursor: pointer;
    font-size: 1.3vh;
    border-radius: 1.2rem;
    border: 0.3vh solid orange;
    font-weight: 600;

}

.question2{
    position: absolute;
    margin-left: 29%;
    margin-top: 8%;

    width: 25%;
    height: 4vh;
    background-color: #FFFFFF;
    cursor: pointer;
    font-size: 1.3vh;
    border-radius: 1.2rem;
    border: 0.3vh solid orange;
    font-weight: 600;

}

.question3{
    position: absolute;
    margin-left: 55%;
    margin-top: 8%;
    width: 30%;
    height: 4vh;
    background-color: #FFFFFF;
    cursor: pointer;
    font-size: 1.3vh;
    border-radius: 1.2rem;
    border: 0.3vh solid orange;
    font-weight: 600;

}

.question4{
    position: absolute;
    margin-top: 20%;
    margin-left: 13%;
    width: 20%;
    height: 4vh;
    background-color: #FFFFFF;
    cursor: pointer;
    font-size: 1.3vh;
    border-radius: 1.2rem;
    border: 0.3vh solid orange;
    font-weight: 600;

}

.question5{
    position: absolute;
    margin-top: 20%;
    margin-left: 34%;
    width: 25%;
    height: 4vh;
    background-color: #FFFFFF;
    cursor: pointer;
    font-size: 1.3vh;
    border-radius: 1.2rem;
    border: 0.3vh solid orange;
    font-weight: 600;

}

.question6{
    position: absolute;
    margin-top: 20%;
    margin-left: 60%;

    width: 25%;
    height: 4vh;
    background-color: #FFFFFF;
    cursor: pointer;
    font-size: 1.3vh;
    border-radius: 1.2rem;
    border: 0.3vh solid orange;
    font-weight: 600;
}

.topic {
    display: none;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    margin-top: 40%;
    font-size: 1.3vh;
    font-weight: bold;
}

.assistant_message {
    display: inline-block;
    max-width: 75%;

    margin: 1% 0;
    padding: 2% 3%;

    background-color: #FFFFFF;
    border: 0.15rem solid orange;
    border-radius: 1.0rem 1.0rem 1.0rem 0.2rem;

    color: #000;
    cursor: pointer;
    transition: 0.2s;
}

.assistant_message:hover{
    background: #D9D562
}

.user_bubble {
    margin-left: auto;
    margin-top: 40%;
    width: 70%;
    font-weight: bold;
    height: 20%;
    max-width: 75%;
    text-align: left;
    background: #fb8005;
    border: 0.13vw solid black;

    color: black;

    padding: 5% 15%;
    border-radius:  1.3rem 1.3rem 0.2rem 1.3rem;
}

.user_bubble p{
    margin: 0;
    text-align: left;
    line-height: 1.4;
}

.assistant_bubble{
    margin-top: 5%;
    border: 0.13vw solid black;
    width: fit-content;
    max-width: 75%;
    background: #f7e9c8;
    font-weight: bold;
    color: black;
    padding: 5% 10%;
    border-radius:  1.3rem 1.3rem 1.3rem 0.2rem;
}

.back_button{
    border-radius: 0.5rem;

}


@media(min-width:1200px) and (max-width:1600px){



        .question1{
        position: absolute;
        margin-left: 6%;
        margin-top: 8%;

        width: 22%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question2{
        position: absolute;
        margin-left: 29%;
        margin-top: 8%;

        width: 25%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question3{
        position: absolute;
        margin-left: 55%;
        margin-top: 8%;
        width: 30%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question4{
        position: absolute;
        margin-top: 22%;
        margin-left: 13%;
        width: 20%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question5{
        position: absolute;
        margin-top: 22%;
        margin-left: 34%;
        width: 25%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question6{
        position: absolute;
        margin-top: 22%;
        margin-left: 60%;

        width: 25%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;
    }

    .assistant_message {
        display: inline-block;
        max-width: 75%;
        margin: 1% 0;
        padding: 2% 3%;

        background-color: #FFFFFF;
        border: 0.15rem solid orange;
        border-radius: 1.0rem 1.0rem 1.0rem 0.2rem;

        color: #000;
        cursor: pointer;
        transition: 0.2s;
    }

    .price1{
        margin-top: 1.5rem;

        font-size: 1.8vh;
        font-weight: bold;
        color: #000;
        
    }

    .assistant_message:hover{
        background: #D9D562
    }

    .user_bubble {
        margin-left: auto;
        margin-top: 47%;
        width: 70%;
        font-weight: bold;
        height: 20%;
        max-width: 75%;
        text-align: left;
        background: #fb8005;
        border: 0.13vw solid black;

        color: black;

        padding: 5% 15%;
        border-radius:  1.3rem 1.3rem 0.2rem 1.3rem;
    }

    .user_bubble p{
        margin: 0;
        font-size: 1.6vh;
        text-align: left;
        line-height: 1.4;
    }

    .assistant_bubble{
        margin-top: 5%;
        border: 0.13vw solid black;
        width: fit-content;
        max-width: 75%;
        background: #f7e9c8;
        font-size: 1.6vh;
        font-weight: bold;
        color: black;
        padding: 5% 10%;
        border-radius:  1.3rem 1.3rem 1.3rem 0.2rem;
    }
    
}


/* Laptop / small desktop */
@media(min-width:769px) and (max-width:1199px){



    .logo img {
        width: 25vw;
        margin-left: 1%;
        margin-top: 10%;
    }

    .headers {
        position: absolute;
        top: 5%;
        left: 70%;
        transform: translateX(-50%);
        width: 90%;
        justify-content: center;
        gap: 5%;
        flex-wrap: wrap;
    }

    .headers a {
        font-size: 2vh;
    }

    .hero {
        height: 100vh;
        width: 100vw;
        position: relative;
        background: 
        
        radial-gradient(
            circle at bottom right,
            #f3d79b 0%,
            #f7e9c8 20%,
            transparent 55%
        ),
        #faf9f7;

        
    }






    .hero_image {
        position: absolute;
        left: 60%;
        bottom: 0;
        width: 40%;
        background: transparent;
    }

    .hero_image img{
        width: 100%;
        display: block;
    }

    .hero_text {
        position: absolute;
        text-align: center;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 30%;
    }

    .hero_text h1{
        font-size: 5vh;
        color: #000000;
    }

    .hero_text p{
        font-size: 1.7vh;
        margin-top: 2vh;
        color: #000000;
    }

    .hero_text button {
        background: #D9D562;
        margin-top: 4vh;
        color: 000000;

        border: #000000;
        border-radius: 1rem;
        font-size: 2vh;
        cursor: pointer;
        width: 30%;
        height: 5vh;   
    }


    .chat_button {
        position: fixed;
        left: 1%;
        bottom: 5%;
        width: 10%;
        height: 5%;
        background-color: #D9D562;
        border-radius: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2vh;
        cursor: pointer;
        box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
    }

    .chat_window {
        position: fixed;
        left: 1%;
        bottom: 12%;
        width: 35%;
        height: 45%;
        background-color: white;
        border: 0.13vw solid #E0E0E0;  
        border-radius: 1.2rem;
        flex-direction: column;
        display: none;
        overflow: hidden;
        box-shadow: 0 0.05vh 2vh rgba(0,0,0,0.15);
    }

    .chat_content {
        flex: 1;
        overflow-y: auto;
        padding: 5%;
        position: relative;
        scrollbar-width: none;
        -ms-overflow-style: none;

    }

    .chat_content::-webkit-scrollbar {
        display: none;
    }

    .header_container {
        width: 100%;
        height: 15%;
        background-color: white;
        border-radius: 1.5rem;
    }
    .chat_header{
        background-color: #D9D562;
        Padding: 4%;
        margin-top: 1%;
        border-radius: 2rem;
        font-size: 1.6vh;
        font-weight: bold;
        color: black;
        text-align: center;


    }

    .greeting_cont{
        height: 12%;
        width: 70%;
        background-color: #f7e9c8;
        margin-top: 1%;
        margin-left: 5%;
        border-radius: 0.5rem;
        align-content: center;

    }




    .header_container_logo {
        width: 50%;
        height: auto;
        object-fit:contain;
        margin-top: 5%;
        margin-left: 5%;
    }

    .header_line {
        width: 85%;
        height: 0.2%;
        background-color: orange;
        margin: 5% auto;
    }
    .greeting_cont p{
        color: #000;
        font-size: 1.5vh;
        margin-left: 10%;
        font-weight: 500;

    }




    .question1{
        position: absolute;
        margin-left: 1%;
        margin-top: 8%;

        width: 25%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question2{
        position: absolute;
        margin-left: 28%;
        margin-top: 8%;

        width: 26%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question3{
        position: absolute;
        margin-left: 55%;
        margin-top: 8%;
        width: 39%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question4{
        position: absolute;
        margin-top: 26%;
        margin-left: 9%;
        width: 24%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question5{
        position: absolute;
        margin-top: 26%;
        margin-left: 34%;
        width: 25%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question6{
        position: absolute;
        margin-top: 26%;
        margin-left: 60%;

        width: 30%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;
    }

    .topic {
        display: none;
        flex-direction: column;
        background: #fff;
        overflow: hidden;
        margin-top: 50%;
        font-size: 1.3vh;
        font-weight: bold;
    }

    .assistant_message {
        display: inline-block;
        max-width: 75%;

        margin: 1% 0;
        padding: 2% 3%;

        background-color: #FFFFFF;
        border: 0.15rem solid orange;
        border-radius: 1.0rem 1.0rem 1.0rem 0.2rem;

        color: #000;
        cursor: pointer;
        transition: 0.2s;
    }

    .assistant_message:hover{
        background: #D9D562
    }

    .user_bubble {
        margin-left: auto;
        margin-top: 55%;
        width: 70%;
        font-weight: bold;
        height: 20%;
        max-width: 75%;
        text-align: left;
        background: #fb8005;
        border: 0.13vw solid black;

        color: black;

        padding: 5% 15%;
        border-radius:  1.3rem 1.3rem 0.2rem 1.3rem;
    }

    .user_bubble p{
        margin: 0;
        text-align: left;
        line-height: 1.4;
    }

    .assistant_bubble{
        margin-top: 5%;
        border: 0.13vw solid black;
        width: fit-content;
        max-width: 75%;
        background: #f7e9c8;
        font-weight: bold;
        color: black;
        padding: 5% 10%;
        border-radius:  1.3rem 1.3rem 1.3rem 0.2rem;
    }

    .back_button{
        border-radius: 0.5rem;

    }

    .assistant_message {
        display: inline-block;
        max-width: 75%;
        margin: 1% 0;
        padding: 2% 3%;

        background-color: #FFFFFF;
        border: 0.15rem solid orange;
        border-radius: 1.0rem 1.0rem 1.0rem 0.2rem;

        color: #000;
        cursor: pointer;
        transition: 0.2s;
    }

    .assistant_message:hover{
        background: #D9D562
    }

    .user_bubble {
        margin-left: auto;
        margin-top: 50%;
        width: 70%;
        font-weight: bold;
        height: 20%;
        max-width: 75%;
        text-align: left;
        background: #fb8005;
        border: 0.13vw solid black;

        color: black;

        padding: 5% 15%;
        border-radius:  1.3rem 1.3rem 0.2rem 1.3rem;
    }

    .user_bubble p{
        margin: 0;
        font-size: 1.6vh;
        text-align: left;
        line-height: 1.4;
    }

    .assistant_bubble{
        margin-top: 5%;
        border: 0.13vw solid black;
        width: fit-content;
        max-width: 75%;
        background: #f7e9c8;
        font-size: 1.6vh;
        font-weight: bold;
        color: black;
        padding: 5% 10%;
        border-radius:  1.3rem 1.3rem 1.3rem 0.2rem;
    }



    .contact_container{
    position: absolute;
    height: 40%;
    width: 70%;
    background-color: #F7F7F7;
    top: 70%;
    left: 50%;
    border: 0.13vw solid #E0E0E0;
    border-radius: 0.6rem;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    
    }


    .contact-form {
        width: 80%;
        height: 100%;
    }

    .contact-form input {
        padding-left: 3%;
    }


    .contact-form textarea {
        padding-left: 3%;
        padding-top: 3%;
    }


    .name {
        width: 95%;
        height: 10%;
        margin-top: 5%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;
        font-size: 1.4vh;


    }

    .email {
        width: 95%;
        height: 10%;
        margin-top: 5.5%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;
        font-size: 1.4vh;

    }


    .subject {
        width: 95%;
        height: 10%;
        margin-top: 6%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;
        font-size: 1.4vh;

    }


    .message {
        width: 95%;
        height: 17%;
        margin-top: 6.5%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;
        resize: none;
        font-size: 1.4vh;

    }

    .contact-form button{
        width: 20%;
        height: 10%;
        background-color: #D9D562;
        border: none;
        cursor: pointer;
        border-radius: 0.3em;
        margin-top: 5%;
        font-size: 1.4vh;

    }


    .footer {
    position: relative;
    width: 100%;
    height: 35vh;
    background-color: #f7e9c8; 
    }

    .footer_company {
        position: absolute;
        top: 3%;
        left: 10%;
        color: #000;
        font-size: 1.7vh;
    }

    .email_button {
        display: inline-block;
        color: #fb8005;
        text-decoration: none;
        border-radius: 0.5rem;
        font-weight: bold;
    }

    .email_button:hover {
        opacity: 0.8;
    }

    .phone_link {
        color: #fb8005;
        text-decoration: none;
        font-weight: bold;
        border-radius: 0.5rem;

    }

    .phone_link :hover {
        opacity: 0.8;
    }

    .Online_Enquiry_btn {
        color: #fb8005;
        text-decoration: none;
        font-weight: bold;
        border-radius: 0.5rem;


    }

    .Online_Enquiry_btn :hover {
        opacity: 0.8;
        cursor: pointer;
    }


    .footer_services {
        position: absolute;
        top: 5%;
        left: 50%;
        color: #000;
        font-size: 1.7vh;
    }

    .footer_disclaimer {
        position: absolute;
        top: 50%;
        right: 5%;
        width: 90%;
        font-size: 1.3vh;
        color: #000;
    }

    .footer_disclaimer p{
        font-size:  1.1vh;
    }

    .footer_disclaimer strong{
        font-size: 2.2vh;
    }

    .footer_disclaimer .disclaimer_small{
        font-size: 1.0vh;
    }

    .footer_copyright {
        position: absolute;
        bottom: 5%;
        left: 9%;
        font-size: 1.7vh;
        font-weight: bold;
        color: #000;
    }

    .footer_logo {
        left: 9%;
        width: 15%;
        bottom: 17%;
        position: absolute;
    }

    .footer_logo img {
        width: 80%;
        height: auto;
    }

    .google_review {
        position: absolute;
        top: 87%;
        left: 76%;
        width: 60%;
        height: auto;
    }

    .google_review a {
        display: block;
        width: 20%;
    }

    .google_review img {
        display: block;
        width: 100%;
        height: auto;
    }

    .Online_Enquiry_btn {
        cursor: pointer;

    }
    .Online_Enquiry_btn :hover{
        cursor: pointer;
    }

}


@media(min-width:481px) and (max-width:768px){

    .hero {
        height: 100vh;
        overflow: hidden;
    }

    .hero_image {
        position: absolute;
        left: 40%;
        bottom: 0;
        width: 60%;
    }

    .hero_text{
        position: absolute;
        left: 8%;
        top: 35%;
        transform: translateY(-50%);
        width: 85%;
    }

    .hero_text h1{
        font-size: 5vh;
        line-height: 1.1;
    }

    .hero_text button {
        width: 50%;
        height: 5vh;
        font-size: 2vh;
    }

    .logo {
        position: absolute;
        left: 3%;
        margin-top: 6%;
    }

    .logo img {
        width: 35vw;
        height: auto;
    }


    .headers {
        position: absolute;
        top:8%;
        left: 70%;
        transform: translateX(-50%);
        width: 90%;
        justify-content: center;
        gap: 5%;
        flex-wrap: wrap;
    }

    .headers a {
        font-size: 2vh;
    }

    .footer_services{
        position: absolute;
        left: 40%;
        top: 5%;
        width: 50%;
    }
    
    .footer_disclaimer{
        position: absolute;
        left: 55%;
        top: 57%;
        width: 44%;
        right: auto;
    }

    .footer_disclaimer strong{
        font-size: 1.6vh;
    }

    .footer_disclaimer p,
    .footer_disclaimer .disclaimer_small{
        font-size: 1.2vh;
    }

    .google_review{
        top: 10%;
        left: 75%;
        width: 20%;
    }

    .google_review a {
        display: block;
        width: 100%;
    }

    .google_review img {
        width: 80%;
        height: auto;
    }





    .contact_container{
        position: absolute;
        height: 45%;
        width: 60%;
        background-color: #F7F7F7;
        top: 75%;
        left: 50%;
        border: 0.13vw solid #E0E0E0;
        border-radius: 0.6rem;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        
    }

    .contact-form {
        width: 90%;
        height: 100%;
    }

    .contact-form input {
        padding-left: 3%;
    }


    .contact-form textarea {
        padding-left: 3%;
        padding-top: 3%;
    }


    .name {
        width: 95%;
        height: 10%;
        margin-top: 5%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;


    }

    .email {
        width: 95%;
        height: 10%;
        margin-top: 5.5%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;

    }


    .subject {
        width: 95%;
        height: 10%;
        margin-top: 6%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;

    }


    .message {
        width: 95%;
        height: 25%;
        margin-top: 6.5%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;
        resize: none;


    }

    .contact-form button{
        border-radius: 0.3em;
        width: 35%;
        height: 10%;
        background-color: #D9D562;
        color: #000000;
    }


    .chat_button {
        position: fixed;
        left: 1%;
        bottom: 5%;
        width: 10%;
        height: 5%;
        background-color: #D9D562;
        border-radius: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2vh;
        cursor: pointer;
        box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
    }

    .chat_window {
        position: fixed;
        left: 1%;
        bottom: 12%;
        width: 35%;
        height: 45%;
        background-color: white;
        border: 0.13vw solid #E0E0E0;  
        border-radius: 1.2rem;
        flex-direction: column;
        display: none;
        overflow: hidden;
        box-shadow: 0 0.05vh 2vh rgba(0,0,0,0.15);
    }

    .chat_content {
        flex: 1;
        overflow-y: auto;
        padding: 5%;
        position: relative;
        scrollbar-width: none;
        -ms-overflow-style: none;

    }

    .chat_content::-webkit-scrollbar {
        display: none;
    }

    .header_container {
        width: 100%;
        height: 15%;
        background-color: white;
        border-radius: 1.5rem;
    }
    .chat_header{
        background-color: #D9D562;
        Padding: 4%;
        margin-top: 1%;
        border-radius: 2rem;
        font-size: 1.6vh;
        font-weight: bold;
        color: black;
        text-align: center;


    }

    .greeting_cont{
        height: 12%;
        width: 70%;
        background-color: #f7e9c8;
        margin-top: 1%;
        margin-left: 5%;
        border-radius: 0.5rem;
        align-content: center;

    }




    .header_container_logo {
        width: 50%;
        height: auto;
        object-fit:contain;
        margin-top: 5%;
        margin-left: 5%;
    }

    .header_line {
        width: 85%;
        height: 0.2%;
        background-color: orange;
        margin: 5% auto;
    }
    .greeting_cont p{
        color: #000;
        font-size: 1.5vh;
        margin-left: 10%;
        font-weight: 500;

    }




    .question1{
        position: absolute;
        margin-left: 1%;
        margin-top: 8%;

        width: 25%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question2{
        position: absolute;
        margin-left: 28%;
        margin-top: 8%;

        width: 26%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question3{
        position: absolute;
        margin-left: 55%;
        margin-top: 8%;
        width: 39%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question4{
        position: absolute;
        margin-top: 26%;
        margin-left: 9%;
        width: 24%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question5{
        position: absolute;
        margin-top: 26%;
        margin-left: 34%;
        width: 25%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question6{
        position: absolute;
        margin-top: 26%;
        margin-left: 60%;

        width: 30%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.3vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;
    }

    .topic {
        display: none;
        flex-direction: column;
        background: #fff;
        overflow: hidden;
        margin-top: 50%;
        font-size: 1.3vh;
        font-weight: bold;
    }

    .assistant_message {
        display: inline-block;
        max-width: 75%;

        margin: 1% 0;
        padding: 2% 3%;

        background-color: #FFFFFF;
        border: 0.15rem solid orange;
        border-radius: 1.0rem 1.0rem 1.0rem 0.2rem;

        color: #000;
        cursor: pointer;
        transition: 0.2s;
    }

    .assistant_message:hover{
        background: #D9D562
    }

    .user_bubble {
        margin-left: auto;
        margin-top: 55%;
        width: 70%;
        font-weight: bold;
        height: 20%;
        max-width: 75%;
        text-align: left;
        background: #fb8005;
        border: 0.13vw solid black;

        color: black;

        padding: 5% 15%;
        border-radius:  1.3rem 1.3rem 0.2rem 1.3rem;
    }

    .user_bubble p{
        margin: 0;
        text-align: left;
        line-height: 1.4;
    }

    .assistant_bubble{
        margin-top: 5%;
        border: 0.13vw solid black;
        width: fit-content;
        max-width: 75%;
        background: #f7e9c8;
        font-weight: bold;
        color: black;
        padding: 5% 10%;
        border-radius:  1.3rem 1.3rem 1.3rem 0.2rem;
    }

    .back_button{
        border-radius: 0.5rem;

    }

    .assistant_message {
        display: inline-block;
        max-width: 75%;
        margin: 1% 0;
        padding: 2% 3%;

        background-color: #FFFFFF;
        border: 0.15rem solid orange;
        border-radius: 1.0rem 1.0rem 1.0rem 0.2rem;

        color: #000;
        cursor: pointer;
        transition: 0.2s;
    }

    .assistant_message:hover{
        background: #D9D562
    }

    .user_bubble {
        margin-left: auto;
        margin-top: 47%;
        width: 70%;
        font-weight: bold;
        height: 20%;
        max-width: 75%;
        text-align: left;
        background: #fb8005;
        border: 0.13vw solid black;

        color: black;

        padding: 5% 15%;
        border-radius:  1.3rem 1.3rem 0.2rem 1.3rem;
    }

    .user_bubble p{
        margin: 0;
        font-size: 1.6vh;
        text-align: left;
        line-height: 1.4;
    }

    .assistant_bubble{
        margin-top: 5%;
        border: 0.13vw solid black;
        width: fit-content;
        max-width: 75%;
        background: #f7e9c8;
        font-size: 1.6vh;
        font-weight: bold;
        color: black;
        padding: 5% 10%;
        border-radius:  1.3rem 1.3rem 1.3rem 0.2rem;
    }

}

/* Mobile */
@media(max-width: 480px){

    .logo {
        position: absolute;
        left: 3%;
        margin-top: 6%;
    }
    .logo img {
        width: 35vw;
        height: auto;
    }

    .hero {
        height: 100vh;
        overflow: hidden;
    }

    .hero_image {
        position: absolute;
        left: 40%;
        bottom: 0;
        width: 60%;
    }

    .hero_text{
        position: absolute;
        left: 8%;
        top: 35%;
        transform: translateY(-50%);
        width: 85%;
    }

    .hero_text h1{
        font-size: 5vh;
        line-height: 1.1;
    }

    .hero_text button {
        width: 50%;
        height: 5vh;
        font-size: 2vh;
    }

    .headers {
        position: absolute;
        top:8%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        justify-content: center;
        gap: 5%;
	box-sizing: border-box;
        flex-wrap: wrap;
    }

    .headers a {
        font-size: 2vh;
    }


    .chat_button {
        position: fixed;
        left: 1%;
        bottom: 5%;
        width: 20%;
        height: 7%;
        background-color: #D9D562;
        border-radius: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2vh;
        cursor: pointer;
        box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
    }

    .chat_window {
        position: fixed;
        left: 1%;
        bottom: 15%;
        width: 45%;
        height: 35%;
        background-color: white;
        border: 0.13vw solid #E0E0E0;  
        border-radius: 1.2rem;
        flex-direction: column;
        display: none;
        overflow: hidden;
        box-shadow: 0 0.05vh 2vh rgba(0,0,0,0.15);
    }

    .chat_content {
        flex: 1;
        overflow-y: auto;
        padding: 5%;
        position: relative;
        scrollbar-width: none;
        -ms-overflow-style: none;

    }

    .chat_content::-webkit-scrollbar {
        display: none;
    }

    .header_container {
        width: 100%;
        height: 15%;
        background-color: white;
        border-radius: 1.5rem;
    }
    .chat_header{
        background-color: #D9D562;
        Padding: 4%;
        margin-top: 1%;
        border-radius: 2rem;
        font-size: 1.6vh;
        font-weight: bold;
        color: black;
        text-align: center;


    }

    .greeting_cont{
        height: 12%;
        width: 80%;
        background-color: #f7e9c8;
        margin-top: 1%;
        margin-left: 5%;
        border-radius: 0.5rem;
        align-content: center;

    }




    .header_container_logo {
        width: 50%;
        height: auto;
        object-fit:contain;
        margin-top: 5%;
        margin-left: 5%;
    }

    .header_line {
        width: 85%;
        height: 0.2%;
        background-color: orange;
        margin: 5% auto;
    }
    .greeting_cont p{
        color: #000;
        font-size: 1.4vh;
        margin-left: 10%;
        font-weight: 500;

    }




    .question1{
        position: absolute;
        margin-left: 61%;
        margin-top: 50%;

        width: 32%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.1vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question2{
        position: absolute;
        margin-left: 4%;
        margin-top: 8%;

        width: 50%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.1vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question3{
        position: absolute;
        margin-left: 55%;
        margin-top: 8%;
        width: 40%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.1vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question4{
        position: absolute;
        margin-top: 29%;
        margin-left: 1%;
        width: 27%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.1vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question5{
        position: absolute;
        margin-top: 29%;
        margin-left: 29%;
        width: 31%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.1vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;

    }

    .question6{
        position: absolute;
        margin-top: 29%;
        margin-left: 62%;
        width: 32%;
        height: 4vh;
        background-color: #FFFFFF;
        cursor: pointer;
        font-size: 1.1vh;
        border-radius: 1.2rem;
        border: 0.3vh solid orange;
        font-weight: 600;
    }

    .topic {
        display: none;
        flex-direction: column;
        background: #fff;
        overflow: hidden;
        margin-top: 80%;
        font-size: 1.3vh;
        font-weight: bold;
    }

    .assistant_message {
        display: inline-block;
        max-width: 75%;

        margin: 1% 0;
        padding: 2% 3%;

        background-color: #FFFFFF;
        border: 0.15rem solid orange;
        border-radius: 1.0rem 1.0rem 1.0rem 0.2rem;

        color: #000;
        cursor: pointer;
        transition: 0.2s;
    }

    .assistant_message:hover{
        background: #D9D562
    }

    .user_bubble {
        margin-left: auto;
        margin-top: 80%;
        width: 70%;
        font-weight: bold;
        height: 20%;
        max-width: 75%;
        text-align: left;
        background: #fb8005;
        border: 0.13vw solid black;

        color: black;

        padding: 5% 15%;
        border-radius:  1.3rem 1.3rem 0.2rem 1.3rem;
    }

    .user_bubble p{
        margin: 0;
        text-align: left;
        line-height: 1.4;
        font-size: 1.4vh;
    }

    .assistant_bubble{
        margin-top: 27%;
        border: 0.13vw solid black;
        width: fit-content;
        max-width: 75%;
        background: #f7e9c8;
        font-weight: bold;
        font-size: 1.4vh;

        color: black;
        padding: 5% 10%;
        border-radius:  1.3rem 1.3rem 1.3rem 0.2rem;
    }

    .back_button{
        border-radius: 0.5rem;

    }


    .footer {
    position: relative;
    width: 100%;
    height: 35vh;
    background-color: #f7e9c8; 
    }

    .footer_company {
        position: absolute;
        top: 3%;
        left: 5%;
        color: #000;
        font-size: 1.2vh;
    }

    .email_button {
        display: inline-block;
        color: #fb8005;
        text-decoration: none;
        border-radius: 0.5rem;
        font-weight: bold;
    }

    .email_button:hover {
        opacity: 0.8;
    }

    .phone_link {
        color: #fb8005;
        text-decoration: none;
        font-weight: bold;
        border-radius: 0.5rem;

    }

    .phone_link :hover {
        opacity: 0.8;
    }

    .Online_Enquiry_btn {
        color: #fb8005;
        text-decoration: none;
        font-weight: bold;
        border-radius: 0.5rem;


    }

    .Online_Enquiry_btn :hover {
        opacity: 0.8;
        cursor: pointer;
    }


    .footer_services {
        position: absolute;
        top: 3%;
        left: 60%;
        color: #000;
        font-size: 1.2vh;
    }

    .footer_disclaimer {
        position: absolute;
        top: 50%;
        right: 5%;
        width: 90%;
        font-size: 1.3vh;
        color: #000;
    }

    .footer_disclaimer p{
        font-size:  1.1vh;
    }

    .footer_disclaimer strong{
        font-size: 2.2vh;
    }

    .footer_disclaimer .disclaimer_small{
        font-size: 1.0vh;
    }

    .footer_copyright {
        position: absolute;
        bottom: 5%;
        left: 9%;
        font-size: 1.7vh;
        font-weight: bold;
        color: #000;
    }

    .footer_logo {
        left: 80%;
        width: 15%;
        bottom: 44%;
        position: absolute;
    }

    .footer_logo img {
        width: 80%;
        height: auto;
    }

    .google_review {
        position: absolute;
        top: 87%;
	right: 2%;
        left: auto;
        width: 35%;
	box-sizing: border-box;
	overflow: hidden;
        height: auto;
    }

    .google_review a {
        display: block;
        max-width: 100%;
	margin: auto;
    }

    .google_review img {
        display: block;
        width: 100%;
        height: auto;
	margin: 0;
    }

    .Online_Enquiry_btn {
        cursor: pointer;

    }
    .Online_Enquiry_btn :hover{
        cursor: pointer;
    }

    .footer_resources{
        position: absolute;
        top: 3%;
        left: 25%;
        color: #000;
        font-size: 1.2vh;
        line-height: 1.5;
    }

    .footer_resources h3{
        font-size: 1.5vh;
        margin-bottom: 1vh;
    }

    .footer_resources a {
        display: block;
        color: #fb8005;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.3vh;
        margin-bottom: 1vh;
        transition: 0.25s ease;

    }

    .footer_resources a:hover{
        color: #d96d00;
        transform: translateX(5%);
    }
    .footer::before {
        content: "";
        position: absolute;
        top: 86%;
        left: 8%;
        width: 84%;
        height: 0.2vh;
        background: #D8CBAA;
    }
	

    .contact_container{
        position: absolute;
        height: 45%;
        width: 80%;
        background-color: #F7F7F7;
        top: 75%;
        left: 50%;
        border: 0.13vw solid #E0E0E0;
        border-radius: 0.6rem;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        
    }

    .contact-form {
        width: 90%;
        height: 100%;
    }

    .contact-form input {
        padding-left: 3%;
    }


    .contact-form textarea {
        padding-left: 3%;
        padding-top: 3%;
    }


    .name {
        width: 95%;
        height: 10%;
        margin-top: 5%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;


    }

    .email {
        width: 95%;
        height: 10%;
        margin-top: 5.5%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;

    }


    .subject {
        width: 95%;
        height: 10%;
        margin-top: 6%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;

    }


    .message {
        width: 95%;
        height: 25%;
        margin-top: 6.5%;
        border: 0.13vw solid #E0E0E0;
        font-weight: bold;
        resize: none;


    }

    .contact-form button{
        border-radius: 0.3em;
        width: 35%;
        height: 10%;
        background-color: #D9D562;
        color: #000000;
    }
}


