
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;

    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;   
}

.hero_image {
    position: absolute;
    left: 70%;
    bottom: 0;
    width: 30%;
    background: transparent;
}

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

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

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

.hero {
    height: 100vh;
    width: 100vw;
    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_text {
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 40%;
}

.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: 0.5em;
    font-size: 2vh;
    cursor: pointer;
    width: 30%;
    height: 5vh;   
}

.blue {
    color: #F2C83A;
}


.about_section {
    width: 85%;
    margin: auto;
}


/* About Header */

.about_header {
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;

}

.about_header h1 {
    font-size: 5vh;
    color: #000;
}

.about_header p {
    width: 70%;
    margin: auto;
    font-size: 2vh;
    color: #555;
    line-height: 1.6;
}



/* Main About Content */

.about_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
}


.about_text {
    width: 40%;
}


.about_text h2 {
    font-size: 3.5vh;
}


.about_text p {
    font-size: 2vh;
    line-height: 1.7;
    color: #333;
}


.about_text button {

    margin-top: 3%;

    width: 25%;
    height: 5vh;

    background-color: #D9D562;
    color: #000;

    border: none;
    border-radius: 0.5rem;

    font-size: 1.8vh;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s ease;
}


.about_text button:hover {
    background-color: #c9c354;
    transform: translateY(-5%);
}



/* About Image */

.about_image {
    width: 40%;
    transition: 0.3s ease;
    transition: 0.3s ease;

}

.about_image:hover{
    transform: translateY(-5%);
}
.about_image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}




.technology_section {
    margin-top: 10%;
    text-align: center;
}


.technology_section h1 {
    font-size: 4vh;
}


.technology_section > p {
    width: 60%;
    margin: auto;
    color: #555;
    font-size: 2vh;
}




.tech_badges {
    gap: 1%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    margin-top: 5%;
    padding:2%;

}



.tech_badge {
    height: 45vh;
    width: 100%;
    background: #ffffff;
    padding: 3%;
    border-radius: 1rem;
    border: 0.2vh solid #E0E0E0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}



.tech_badge:hover {
    transform: translateY(-5%);
}



.tech_badge img {
    width: 35%;
    height: auto;
    transform: translateY(-15%);
}



.tech_badge h3 {
    font-size: 2.5vh;
}



.tech_badge p {
    font-size: 1.7vh;
    color: #555;
    line-height: 1.5;
}



/* Coverage Section */

.Coverage_Map.reveal {

    transition-delay: 0.2s;

}
.reveal {
    opacity: 0;
    transform: translateY(20%);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.coverage_section {
    margin-top: 10%;
    text-align: center;
}


.coverage_section h1 {
    font-size: 4vh;
    margin-bottom: 3%;
}


.coverage_section p {
    width: 70%;
    margin: auto;
    font-size: 2vh;
    color: #555;
    line-height: 1.6;
}



.Coverage_Map {
    display: block;
    width: 70%;
    margin: 5% auto;
    border-radius: 1rem;
    border: 0.2vh solid #E0E0E0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}


.Coverage_Map:hover {
    transform: scale(1.02);
}





.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: 50%;
    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;

}

/* Large desktop */
@media(min-width:1200px) and (max-width:1600px){


        .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;
    }

    .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;
    }

    
}


/* 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;
    }





    .text_container {
        padding: 2%;
        width: 80%;
        height: 90%;
        background-color: #F7F7F7;
        display: flex;
        flex-direction: column;
        align-items: center;
        
        
    }
    .text_container h1 {
        font-size: 3.2vh;
        color: #000000;
    }

    .text_container p {
        font-size: 1.7vh;
        margin-top: 7%;
        letter-spacing: 0.1em;
        color: #000000;
        line-height: 1.6;

    }

    .text_container button{


        background: #D9D562;
        margin-top: 4vh;
        color: 000000;
        border: #000000;
        border-radius: 0.5em;
        font-size: 1.7vh;
        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;
    }
    .about_section {
        width: 90%;
        margin: auto;
    }


    /* About Header */

    .about_header {
        text-align: center;
        margin-top: 5%;
        margin-bottom: 10%;

    }

    .about_header h1 {
        font-size: 3vh;
        color: #000;
    }

    .about_header p {
        width: 70%;
        margin: auto;
        font-size: 1.7vh;
        color: #555;
        line-height: 1.6;
    }



    /* Main About Content */

    .about_content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 5%;
        width: 100%;
    }


    .about_text {
        width: 100%;
        text-align: center;
    }


    .about_text h2 {
        font-size: 3.5vh;
    }


    .about_text p {
        font-size: 1.3vh;
        width: 85%;
        margin: 0 auto;
        line-height: 1.7;
        color: #333;
        text-align: center;
    }


    .about_text button {

        margin-top: 3%;

        width: 25%;
        height: 5vh;

        background-color: #D9D562;
        color: #000;

        border: none;
        border-radius: 0.5rem;

        font-size: 1.8vh;
        font-weight: bold;

        cursor: pointer;

        transition: 0.3s ease;
    }


    .about_text button:hover {
        background-color: #c9c354;
        transform: translateY(-5%);
    }



    /* About Image */

    .about_image {
        width: 50%;
        margin-bottom: 10%;
        transition: 0.3s ease;
        transition: 0.3s ease;

    }

    .about_image:hover{
        transform: translateY(-5%);
    }
    .about_image img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }




    .technology_section {
        margin-top: 10%;
        text-align: center;
    }


    .technology_section h1 {
        font-size: 4vh;
    }


    .technology_section > p {
        width: 60%;
        margin: auto;
        color: #555;
        font-size: 2vh;
    }




    .tech_badges {
        row-gap: 1%;
        column-gap: 9%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 5%;
        padding:2%;
        width: 100%;

    }



    .tech_badge {
        height: 45vh;
        width: 100%;
        background: #ffffff;
        padding: 3%;
        border-radius: 1rem;
        border: 0.2vh solid #E0E0E0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: 0.3s ease;
        text-align: center;
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }



    .tech_badge:hover {
        transform: translateY(-5%);
    }



    .tech_badge img {
        width: 35%;
        height: auto;
        transform: translateY(-15%);
    }



    .tech_badge h3 {
        font-size: 2.3vh;
    }



    .tech_badge p {
        font-size: 1.5vh;
        color: #555;
        line-height: 1.5;
    }

    .container {
        width: 100%;
        height: 110vh;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;   /* centres horizontally */
        justify-content: center; /* centres vertically */
        text-align: center;
        background-color: #ffffff;
    }


    .text_container {
        padding: 2%;
        width: 90%;
        height: 80%;
        background-color: #F7F7F7;
        display: flex;
        flex-direction: column;
        align-items: center;
        
        
    }
    .text_container h1 {
        font-size: 3.5vh;
        color: #000000;
    }

    .text_container p {
        font-size: 1.5vh;
        margin-top: 7%;
        letter-spacing: 0.1em;
        color: #000000;
        line-height: 1.6;

    }

    .text_container button{


        background: #D9D562;
        margin-top: 4vh;
        color: 000000;
    ;
        border: #000000;
        border-radius: 0.5em;
        font-size: 2vh;
        cursor: pointer;
        width: 30%;
        height: 5vh;  


    }

    .Coverage_Map.reveal {

        transition-delay: 0.2s;

    }
    .reveal {
        opacity: 0;
        transform: translateY(20%);
        transition: opacity 1s ease, transform 1s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .coverage_section {
        margin-top: 20%;
        text-align: center;
    }


    .coverage_section h1 {
        font-size: 4vh;
        margin-bottom: 3%;
    }


    .coverage_section p {
        width: 70%;
        margin: auto;
        font-size: 2vh;
        color: #555;
        line-height: 1.6;
    }



    .Coverage_Map {
        display: block;
        width: 70%;
        margin: 5% auto;
        border-radius: 1rem;
        border: 0.2vh solid #E0E0E0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: 0.3s ease;
    }


    .Coverage_Map:hover {
        transform: scale(1.02);
    }

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

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

    .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_resources{
        position: absolute;
        top: 3%;
        left: 35%;
        color: #000;
        font-size: 2vh;
        line-height: 1.7;
    }

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

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

    }

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

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

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

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



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

    .footer_logo {
        left: 55%;
        width: 15%;
        bottom: 2%;
        position: absolute;
    }

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

    .google_review {
        position: absolute;
        top: 87%;
        left: 76%;
        width: 50%;
        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;
        width: 100%;
        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;
    }


    .about_section {
        width: 90%;
        margin: auto;
    }


    /* About Header */

    .about_header {
        text-align: center;
        margin-top: 5%;
        margin-bottom: 10%;

    }

    .about_header h1 {
        font-size: 3vh;
        color: #000;
    }

    .about_header p {
        width: 70%;
        margin: auto;
        font-size: 1.7vh;
        color: #555;
        line-height: 1.6;
    }



    /* Main About Content */

    .about_content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 5%;
        width: 100%;
    }


    .about_text {
        width: 100%;
    }


    .about_text h2 {
        font-size: 3.5vh;
    }


    .about_text p {
        font-size: 1.5vh;
        line-height: 1.7;
        color: #333;
    }


    .about_text button {

        margin-top: 3%;

        width: 25%;
        height: 5vh;

        background-color: #D9D562;
        color: #000;

        border: none;
        border-radius: 0.5rem;

        font-size: 1.8vh;
        font-weight: bold;

        cursor: pointer;

        transition: 0.3s ease;
    }


    .about_text button:hover {
        background-color: #c9c354;
        transform: translateY(-5%);
    }



    /* About Image */

    .about_image {
        width: 50%;
        margin-bottom: 10%;
        transition: 0.3s ease;
        transition: 0.3s ease;

    }

    .about_image:hover{
        transform: translateY(-5%);
    }
    .about_image img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }




    .technology_section {
        margin-top: 10%;
        text-align: center;
    }


    .technology_section h1 {
        font-size: 4vh;
    }


    .technology_section > p {
        width: 60%;
        margin: auto;
        color: #555;
        font-size: 2vh;
    }




    .tech_badges {
        gap: 1%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
        margin-top: 5%;
        padding:2%;

    }



    .tech_badge {
        height: 45vh;
        width: 100%;
        background: #ffffff;
        padding: 3%;
        border-radius: 1rem;
        border: 0.2vh solid #E0E0E0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }



    .tech_badge:hover {
        transform: translateY(-5%);
    }



    .tech_badge img {
        width: 35%;
        height: auto;
        transform: translateY(-15%);
    }



    .tech_badge h3 {
        font-size: 2.3vh;
    }



    .tech_badge p {
        font-size: 1.5vh;
        color: #555;
        line-height: 1.5;
    }

    .chat_button {
        position: fixed;
        left: 1%;
        bottom: 5%;
        width: 15%;
        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: 40%;
        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: 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: 5%;
        margin-top: 8%;

        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;

    }

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

        width: 30%;
        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: 64%;
        margin-top: 8%;
        width: 30%;
        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: 23%;
        margin-left: 2%;
        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: 23%;
        margin-left: 30%;
        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: 23%;
        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: 55%;
        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: 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;
        text-align: left;
        line-height: 1.4;
        font-size: 1.4vh;
    }

    .assistant_bubble{
        margin-top: 10%;
        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: 10%;
        color: #000;
        font-size: 1.5vh;
    }

    .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_resources{
        position: absolute;
        top: 3%;
        left: 35%;
        color: #000;
        font-size: 2vh;
        line-height: 1.7;
    }

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

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

    }

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

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

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

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



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

    .footer_logo {
        left: 55%;
        width: 15%;
        bottom: 2%;
        position: absolute;
    }

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

    .google_review {
        position: absolute;
        top: 87%;
        left: 76%;
        width: 50%;
        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;
    }



    .text_container {
        padding: 2%;
        width: 80%;
        height: 80%;
        background-color: #F7F7F7;
        display: flex;
        flex-direction: column;
        align-items: center;
        
        
    }
    .text_container h1 {
        font-size: 3.2vh;
        color: #000000;
    }

    .text_container p {
        font-size: 1.7vh;
        margin-top: 7%;
        letter-spacing: 0.1em;
        color: #000000;
        line-height: 1.6;

    }

    .text_container button{


        background: #D9D562;
        margin-top: 4vh;
        color: 000000;
        border: #000000;
        border-radius: 0.5em;
        font-size: 1.7vh;
        cursor: pointer;
        width: 30%;
        height: 5vh;  


    }
}


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

    .hero_image {
        position: absolute;
        left: 70%;
        bottom: 0;
        width: 30%;
        background: transparent;
    }

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

    .hero_text button {
        background: #D9D562;
        margin-top: 4vh;
        color: 000000;
        border: #000000;
        border-radius: 0.5em;
        font-size: 2vh;
        cursor: pointer;
        width: 50%;
        height: 5vh;   
    }

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


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

    .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;
    }

    .about_section {
        width: 90%;
        margin: auto;
    }


    /* About Header */

    .about_header {
        text-align: center;
        margin-top: 5%;
        margin-bottom: 10%;

    }

    .about_header h1 {
        font-size: 3vh;
        color: #000;
    }

    .about_header p {
        width: 70%;
        margin: auto;
        font-size: 1.7vh;
        color: #555;
        line-height: 1.6;
    }



    /* Main About Content */

    .about_content {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 5%;
        width: 100%;
    }


    .about_text {
        width: 100%;
        text-align: center;
    }


    .about_text h2 {
        font-size: 3.5vh;
    }


    .about_text p {
        font-size: 1.3vh;
        width: 85%;
        margin: 0 auto;
        line-height: 1.7;
        color: #333;
        text-align: center;
    }


    .about_text button {

        margin-top: 3%;

        width: 25%;
        height: 5vh;

        background-color: #D9D562;
        color: #000;

        border: none;
        border-radius: 0.5rem;

        font-size: 1.8vh;
        font-weight: bold;

        cursor: pointer;

        transition: 0.3s ease;
    }


    .about_text button:hover {
        background-color: #c9c354;
        transform: translateY(-5%);
    }



    /* About Image */

    .about_image {
        width: 50%;
        margin-bottom: 10%;
        transition: 0.3s ease;
        transition: 0.3s ease;

    }

    .about_image:hover{
        transform: translateY(-5%);
    }
    .about_image img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }




    .technology_section {
        margin-top: 10%;
        text-align: center;
    }


    .technology_section h1 {
        font-size: 4vh;
    }


    .technology_section > p {
        width: 60%;
        margin: auto;
        color: #555;
        font-size: 2vh;
    }




    .tech_badges {
        row-gap: 1%;
        column-gap: 9%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 5%;
        padding:2%;
        width: 100%;

    }



    .tech_badge {
        height: 45vh;
        width: 100%;
        background: #ffffff;
        padding: 3%;
        border-radius: 1rem;
        border: 0.2vh solid #E0E0E0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: 0.3s ease;
        text-align: center;
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }



    .tech_badge:hover {
        transform: translateY(-5%);
    }



    .tech_badge img {
        width: 35%;
        height: auto;
        transform: translateY(-15%);
    }



    .tech_badge h3 {
        font-size: 2.3vh;
    }



    .tech_badge p {
        font-size: 1.5vh;
        color: #555;
        line-height: 1.5;
    }

    .container {
        width: 100%;
        height: 110vh;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;   /* centres horizontally */
        justify-content: center; /* centres vertically */
        text-align: center;
        background-color: #ffffff;
    }


    .text_container {
        padding: 2%;
        width: 90%;
        height: 80%;
        background-color: #F7F7F7;
        display: flex;
        flex-direction: column;
        align-items: center;
        
        
    }
    .text_container h1 {
        font-size: 3.5vh;
        color: #000000;
    }

    .text_container p {
        font-size: 1.5vh;
        margin-top: 7%;
        letter-spacing: 0.1em;
        color: #000000;
        line-height: 1.6;

    }

    .text_container button{


        background: #D9D562;
        margin-top: 4vh;
        color: 000000;
    ;
        border: #000000;
        border-radius: 0.5em;
        font-size: 2vh;
        cursor: pointer;
        width: 30%;
        height: 5vh;  


    }

    .Coverage_Map.reveal {

        transition-delay: 0.2s;

    }
    .reveal {
        opacity: 0;
        transform: translateY(20%);
        transition: opacity 1s ease, transform 1s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .coverage_section {
        margin-top: 20%;
        text-align: center;
    }


    .coverage_section h1 {
        font-size: 4vh;
        margin-bottom: 3%;
    }


    .coverage_section p {
        width: 70%;
        margin: auto;
        font-size: 2vh;
        color: #555;
        line-height: 1.6;
    }



    .Coverage_Map {
        display: block;
        width: 70%;
        margin: 5% auto;
        border-radius: 1rem;
        border: 0.2vh solid #E0E0E0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: 0.3s ease;
    }


    .Coverage_Map:hover {
        transform: scale(1.02);
    }
    .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%;
        height: auto;
	box-sizing: border-box;
	overflow: hidden;
    }

    .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;
    }
}
