
* {
    box-sizing: border-box;
    margin: 0px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}



header {
    position: sticky;
    width: auto;
    height: 230px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mainContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slogan{
    position: absolute;
    top: 500px; 
    font-size: 50px;
    color: #D4AF5A;
}

.company-logo {
    width: 800px;
    height: auto;
    max-width: 80%;
}

.main-image{
    width: 100%;
}

.services {
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
}

.serviceProducts {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
}

.serviceBox {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 250px;
    margin-bottom: 100px;
}

.serviceProducts h2 {
    margin-top: 50px;
}

.icon {
    margin-bottom: -30px;
}

.serviceBox p {
    width: 200px;
    margin-top: 30px;
}

.line {
    width: 500px;
    height: 0;
    border: 1px solid #D4AF5A;
    margin: 3px;
    display:inline-block;
}

.contactUs {
    margin-top: 50px;
}

.contactContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    font-size: 20px;
    box-sizing: border-box;
}

.contactContainer form {
    width: 100%;
    max-width: 450px;
}

.contactContainer input,
.contactContainer textarea,
.contactContainer button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.contactContainer button {
    background-color: #D4AF5A;
}

.contactDetails {
    display: flex;
    flex-direction: row;
    gap: 10px;

}

.contactDetCon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    margin-top: -150px;
}

.contactDetCon p { 
    font-size: ;
}

.testimonialContainer {
    display: flex;
    align-items: center;
    margin-top: 50px;
    width: 100%;
    margin-left: 60%;
}

.testimonials {
    width: 45%;
    background-color: white;
    padding: 40px;
    z-index: 2;
    margin-right: -100px;
    height: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    left: 100px;
    max-width: 500px;
}


.bathImg {
    width: 70%;
    height: 900px;
    object-fit: cover;
    margin-bottom: 50px;

}

.stars {
    color: #D4AF5A;
    font-size: 40px;
}

.copyright {
    margin-top: 50px;
    margin-bottom: 50px;
}
/* Tablet Flexibility */

@media (max-width: 1100px) {
    .testimonialContainer {
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }

    .testimonials {
        width: 85%;
        height: auto;
        margin: 0;
        padding: 30px;
        margin-right: -100px;
        order: 2;
    }

    .bathImg {
        width: 100%;
        height: auto;
        order: 1;
        margin-bottom: 0;
    }
}

/* Mobile Responsive */

@media (max-width: 768px) {

     html,
    body {
        overflow-x: hidden;
    }

    header {
        height: 130px;
    }

    .company-logo {
        width: 400px !important;
        height: auto !important;
        max-width: 100% !important;
    }

    .slogan {
        top: 250px; 
        font-size: 30px;
    }


    .main-image {
        width: 100%;
        height: auto;
    }

    .serviceProducts {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .serviceBox {
        width: 90%;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .serviceBox p {
        width: 100%;
    }

    .line {
        width: 80%;
    }

    .contactContainer {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
        font-size: 16px;
    }

    .contactDetCon {
        margin-top: 0;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .contactDetails {
        justify-content: center;
        align-items: center;
    }

    .testimonialContainer {
        flex-direction: column;
        margin-top: 30px;
        margin-left: 0%;
    }

    .testimonials {
        width: 85%;
        height: auto;
        margin: 0;
        max-width: 100%;
        order: 2;
        box-sizing: border-box;
        
    }

    .bathImg {
        width: 100%;
        height: auto;
        margin-bottom: 0;
        order: 1;
        max-width: 100%;
    }

    .stars {
        font-size: 30px;
    }
}