:root{

    /*========================== COLORS ==========================*/

    --white: #fff;
    --dark-black: #000;
    --light-gray: #d9d9d9;
    --gray: #545454;
    --dark-gray: #242424;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --orange: #8D4004
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.head h2{
    color:#fc7901 !important;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 10px 45px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.7);    
}

header.sticky{
    padding: 5px 45px;
    background: var(--white);
}

.logo{
    position: relative;
    text-decoration: none;
    background-image: url(logo.png);
    background-size: cover;
    height: 6rem;
    width: 7rem;
    transition: 0.6s;
}

.nav__list{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li{
    position: relative;
    list-style: none;
}

.nav__link{
    position: relative;
    text-decoration: none;
    color: var(--dark-black);
    margin: 0 15px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.6s;
    padding-bottom: 17px;
}

header ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: var(--dark-black);
    display: block;
    margin: auto;
    transition: 0.5s;
}

header ul li:hover::after{
    width: 100%;
}

.nav__toggle,
.nav__close{
    display: none;
}

.dropdown{
    width: 13.5rem;
    background-color: var(--dark-gray);
    position: absolute;
    z-index: 999;
    display: none;
    list-style: none;
    margin-top: 1rem;
    border-radius: .5rem;
}

ul li .dropdown li a{
    text-decoration: none;
    color: var(--white);
    transition: color .4s;
}

ul li .dropdown li{
    padding: 1rem 0 .7rem .7rem;
    display: block;
    font-size: .85rem;
    transition: .2s;
}

ul li:hover .dropdown{
    display: block;
}

.dropdown li:hover{
    background-color: var(--white);
}

.dropdown li:hover a{
    color: var(--dark-black);
}

.banner{
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(header-pic.jpg);
    background-size: cover;
}

.textbox{
    position: relative;
    top: 40%;
    margin-left: 7rem;
}

.textbox h1{
    color: var(--white);
    font-size: 2.2rem;
}

.textbox .home-btn{
    margin-top: .60rem;
    background: transparent;
    border: 2px solid var(--white);
    padding: 1.1rem 3rem;
    color: var(--white);
    font-size: 1.1rem;
    transition: 0.7s;
}

.textbox .home-btn:hover{
    background: var(--white);
    color: var(--dark-black);
    cursor: pointer;
}

@media (max-width: 600px) {
    header{
        padding: 10px 10px;
    }

    header.sticky{
        padding: 5px 10px;
    }

    .banner{
        background-image: url(header-res.jpg);
        background-size: cover;
    }

    .nav__menu{
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding-block: 4.5rem 3.5rem;
        z-index: 100;
        transition: top 1s;
    }

    .nav__list{
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        text-align: center;
    }

    .nav__link{
        color: var(--dark-black);
        text-decoration: none;
    }

    .nav__close{
        position: absolute;
        top: 1.15rem;
        right: 1.5rem;
    }

    .show-menu{
        top: 0;
    }

    .fa-bars{
        margin-right: 2rem;
    }

    .nav__toggle,
    .nav__close{
        font-size: 1.25rem;
        color: var(--dark-black);
        cursor: pointer;
        display: block;
    }

    .nav__link i{
         display: none;
    }

    ul li:hover .dropdown{
        display: none;
    }

    .textbox{
        margin-left: 2rem;
    }

    .textbox h1{
        font-size: 1.6rem;
    }

    .textbox .home-btn{
        padding: .90rem 2rem;
        font-size: .90rem;
    }
}

@media (min-width: 600px) and (max-width: 1024px){
    header{
        padding: 10px 15px;
    }
    
    header.sticky{
        padding: 5px 15px;
    }

    .nav__menu{
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding-block: 4.5rem 3.5rem;
        z-index: 100;
        transition: top 1s;
    }

    .nav__list{
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        text-align: center;
    }

    .nav__link{
        color: var(--dark-black);
        text-decoration: none;
    }

    .nav__close{
        position: absolute;
        top: 1.15rem;
        right: 1.5rem;
    }

    .show-menu{
        top: 0;
    }

    .fa-bars{
        margin-right: 2rem;
    }

    .nav__toggle,
    .nav__close{
        font-size: 1.25rem;
        color: var(--dark-black);
        cursor: pointer;
        display: block;
    }

    .nav__link i{
         display: none;
    }

    ul li:hover .dropdown{
        display: none;
    }

    .textbox{
        margin-left: 4rem;
    }

    .textbox h1{
        font-size: 1.9rem;
    }

    .textbox .home-btn{
        padding: 1rem 2.2rem;
        font-size: .97rem;
    }
}

.about{
    background: var(--dark-gray);
}

.head{
    padding-top: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 12rem 0 12rem;
    text-align: center;
}

.head h1{
    color: var(--white);
    font-size: 2.2rem;
}

.head p{
    color: var(--light-gray);
    font-size: .95rem;
    margin-top: 1rem;
}

.about-text {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Ensure both items stretch to the same height */
    flex-wrap: wrap;
    margin-top: 0rem;
    padding-bottom: 2rem;
}

.about-text .img {
    flex-basis: 30%;
    height: auto; /* Let the height adjust based on content */
    background-image: url(aboutus-pic.jpg);
    background-size: cover;
    background-position: center;
    flex-grow: 0; /* Prevent it from expanding beyond 35% */
    margin-bottom: 4rem; 
}

.about-textbox{
    flex-basis: 36%;
    background-color: var(--white);
    margin-top: 0rem;
    position: relative;
    right: -2%;
    z-index: 10;
    flex-grow: 0; /* Prevent it from expanding beyond 35% */
    margin-left: 10px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
}
.about-text .imge {
    flex-basis: 30%;
    height: auto; /* Let the height adjust based on content */
    background-image: url(mission-pic.jpeg);
    background-size: cover;
    background-position: center;
    flex-grow: 0; /* Prevent it from expanding beyond 35% */
    margin-bottom: 0rem; 
}

.about-textbox3 {
    flex-basis: 36%;
    background-color: var(--white);
    margin-top: 0rem;
    position: relative;
    right: -2%;
    z-index: 10;
    flex-grow: 0; /* Prevent it from expanding beyond 35% */
    margin-right: 14px;
    margin-top: 65px;
    /*padding-left: 20px;*/
    /*padding-right: 20px;*/
    /*padding-top: 10px;*/
    /*padding-bottom: 10px;*/
   border-radius: 20px;
    /*<img src="bathroomrenovation-pic2.jpeg" style="width:100%">*/
   background-image: url(bathroomrenovation-pic2.jpeg);
}

.about-textbox {
    flex-basis: 36%;
    background-color: var(--white);
     margin-top: 4rem; 
    position: relative;
    right: 2%;
    z-index: 10;
    flex-grow: 0;
        margin-right: 10px;
}
.about-textbox {
    flex-basis: 36%;
    background-color: var(--white);
    margin-top: 0rem;
    position: relative;
    right: 2%;
    /*z-index: 10;*/
    flex-grow: 0;
}

.about-textbox {
    flex-basis: 36%;
    background-color: var(--white);
    margin-top: 4rem;
    position: relative;
    right: 2%;
    z-index: 10;
    flex-grow: 0; /* Prevent it from expanding beyond 35% */
}
.about-textbox h1{
    color: var(--dark-black);
    padding: 1.5rem 2rem 0 1.5rem;
    font-size: 2rem;
}

.about-textbox .p1{
    color: var(--gray);
    padding: .75rem 1.5rem 0 1.5rem;
    font-size: .85rem;
    margin-right: 10px;
}
.h2{
    color:#8d4004;
}
.about-textbox h2{
    color: var(--dark-black);
    padding: .75rem 1.5rem 0 1.5rem;
    font-size: 1.5rem;
}

.about-textbox .p2{
    color: var(--gray);
    padding: .75rem 1.5rem 0 1.5rem;
    font-size: .75rem;
}

.about-textbox .p3{
    color: var(--gray);
    padding: .75rem 1.5rem 3rem 1.5rem;
    font-size: .75rem;
}

@media (min-width: 800px) and (max-width: 1024px){
    .head h1, .head2 h1{
        font-size: 1.9rem;
    }

    .head p, .head2 p{
        font-size: .80rem;
    }

    .about-text .img{
        flex-basis: 39%;
    }
    
    .mission-text .img{
        flex-basis: 39%;
    }

    .about-textbox{
        flex-basis: 43%;
    }

    .about-textbox h1{
        font-size: 1.8rem;
    }

    .about-textbox .p1{
        font-size: .75rem;
    }

    .about-textbox h2{
        font-size: 1.2rem;
    }

    .about-textbox .p2{
        font-size: .70rem;
    }

    .about-textbox .p3{
        font-size: .70rem;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .head, .head2{
        margin: 0 6rem 0 6rem;
    }
    .head h1, .head2 h1{
        font-size: 1.9rem;
    }

    .head p, .head2 p{
        font-size: .80rem;
    }

    .about-text {
        flex-direction: column;
        align-items: center; /* Center the content horizontally */
    }
    
    .mission-text {
        flex-direction: column;
        align-items: center; /* Center the content horizontally */
    }

    .about-text .img {
        width: 80%; 
        height: 20rem; 
        flex-basis: auto; 
        margin-bottom: 2rem; 
    }
    
    .about-textbox {
        width: 80%;
        flex-basis: auto;
        right: 0;
        margin-top: 0;
    }
    
    .about-textbox h1{
        font-size: 1.8rem;
    }

    .about-textbox .p1{
        font-size: .75rem;
    }

    .about-textbox h2{
        font-size: 1.2rem;
    }

    .about-textbox .p2{
        font-size: .70rem;
    }

    .about-textbox .p3{
        font-size: .70rem;
    }
}

@media (max-width: 600px){
    .head, .head2{
        margin: 0 3rem 0 3rem;
    }
    .head h1, .head2 h1{
        font-size: 1.6rem;
    }

    .head p, .head2 p{
        font-size: .70rem;
    }

    .about-text {
        flex-direction: column;
        align-items: center; 
    }

    .mission-text {
        flex-direction: column;
        align-items: center; /* Center the content horizontally */
    }
    
    .about-text .img {
        width: 80%; 
        height: 20rem; 
        flex-basis: auto; 
        margin-bottom: 2rem; 
    }
    
    .about-textbox {
        width: 80%;
        flex-basis: auto;
        right: 0;
        margin-top: 0;
    }
    
    
    .about-textbox h1{
        font-size: 1.5rem;
    }

    .about-textbox .p1{
        font-size: .65rem;
    }

    .about-textbox h2{
        font-size: 1rem;
    }

    .about-textbox .p2{
        font-size: .60rem;
    }

    .about-textbox .p3{
        font-size: .60rem;
    }
}

.counter{
    background-image: url(projectpanel-pic.jpg);
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all 0.7s linear;
    text-align: center;
    color: var(--white);
    background-color: var(--light-black);
    background-blend-mode: hard-light;
    flex-wrap: wrap;
    background-position: center;
}

.counter-box{
    margin-top: 7rem;
    margin-bottom: 7rem;
    flex-basis: 24%;
}

.counter-numbers{
    font-size: 4rem;
    text-shadow: 1px 1px 2px black;
}

.counter-para{
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px black;
}

@media (min-width: 600px) and (max-width: 1024px){
    .counter-box{
        flex-basis: 40%;
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
    .counter-numbers{
        font-size: 3.5rem;
    }
    .counter-para{
        font-size: 1rem;
    }
}

@media (max-width: 600px){
    .counter{
        background-image: url(counter-res.jpg);
        background-size: cover;
    }
    .counter-box{
        flex-basis: 60%;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .counter-numbers{
        font-size: 3rem;
    }
    .counter-para{
        font-size: .80rem;
    }
}

.services-section{
    background: var(--dark-gray);
}

.services-container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 6rem 9rem 0 9rem;
    justify-content: center;
    align-items: center;
    padding-bottom: 6rem;
}

.service {
    position: relative;
    overflow: hidden;
    background-color: black;
    height: 35vw;
    width: 100%;
    margin-bottom: 4rem;
}

.service img {
    width: 100%; 
    height: 35vw;
    display: block;
}

.services-text{
    position: absolute;
    top: 50%; 
    left: 50%; 
    width: 100%;
    transform: translate(-50%, -50%); 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.services-text h1{
    color: var(--white); 
    font-size: 4vw; 
    font-weight: 700; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
    text-align: center; 
}

.services-btn{
    margin-top: .60rem;
    background: transparent;
    border: 3px solid var(--white);
    padding: 2.2vw 5vw;
    color: var(--white);
    font-size: 1.5vw;
    font-weight: 700;
    transition: 0.7s;
}

.services-btn:hover{
    background: var(--white);
    color: var(--dark-black);
    cursor: pointer;
}

.slideshow img {
    position: absolute;
    opacity: 0;
    animation: fade 8s infinite;
    width: 100%; 
    display: block;
}

.slideshow img:nth-child(1) { animation-delay: 0s; }
.slideshow img:nth-child(2) { animation-delay: 4s; }

@keyframes fade {
    0% { opacity: 0; }
    12.5% { opacity: 1; }
    37.5% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

@media (max-width: 600px){
    .services-btn{
        border: 2px solid var(--white);
    }
    .contact-section{
        background-image: url(contact-reshalf-pic.jpg);
        background-size: cover;
    }
    .service{
        margin-bottom: 1.5rem;
    }
    .services-container{
        margin: 6rem 2rem 0 2rem;
    }
}

@media (min-width: 600px) and (max-width: 1024px){
    .services-container{
        margin: 6rem 4rem 0 4rem;
    }
    .service{
        margin-bottom: 2.5rem;
    }
}

.contact-section{
    background: url(contact-full-page.jpg);
    background-position: center;
    background-size: cover;
}

.contact-us-information{
    margin: 7rem 0 0 0;
    display: flex;
    justify-content: center;
}

form{
    display: flex;
    flex-direction: column;
    width: 40rem;
}

.form-input input{
    border: none;
    padding: 1.5rem 1rem;
    border-radius: 4px;
    display: block;
    width: 100%;
    outline: none;
    margin-top: .35rem;
    margin-bottom: 1.3rem;
}

.top{
    margin-top: 2rem;
}

textarea{
    border: none;
    height: 11rem;
    padding: 1rem;
    border-radius: 4px;
    width: 100%;
    display: block;
    outline: none;
    margin-top: .35rem;
    margin-bottom: 1.3rem;
}

.form-input label{
    color: var(--light-gray);
    font-size: 1.2rem;
}

.form-input{
    position: relative;
    margin-bottom: 3rem;
}

.form-input input:focus {
    outline: 0;
    border-color: #777;
}

.form-input.success input{
    border: 2px solid var(--success-color);
}

.form-input.error input{
    border: 2px solid var(--error-color);
}

.form-input textarea:focus {
    outline: 0;
    border-color: #777;
}

.form-input.success textarea{
    border: 2px solid var(--success-color);
}

.form-input.error textarea{
    border: 2px solid var(--error-color);
}

.form-input small {
    color: var(--error-color);
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
}

.form-input.error small {
    visibility: visible;
}

.form-input.error small{
    visibility: visible;
    color: #A52A2A;
    font-weight: 500;
}

.contact-us-btn{
    margin-top: .60rem;
    background: transparent;
    border: 3px solid var(--white);
    padding: 1.2rem 2.7rem;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    transition: 0.7s;
}

.contact-us-btn:hover{
    background: var(--white);
    color: var(--dark-black);
    cursor: pointer;
}

.contact-us-information{
    padding-bottom: 12rem;
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 600px) and (max-width: 1024px){
    .contact-us-information{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    form{
        width: 30rem;
    }

    .contact-us-btn{
        font-size: 1.2rem;
        padding: 1.1rem 2.2rem;
    }

    .form-input label{
        font-size: 1rem;
    }
}

@media (max-width: 600px){
    .contact-us-information{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    form{
        width: 18rem;
    }
    
    #name, #email, #number{
        padding: 1rem 1rem;
        border: 1px solid black;
    }
    
    #message{
        height: 8rem;
        padding: 1rem;
        border: 1px solid black;
    }
    
    .contact-us-btn{
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .form-input label{
        font-size: .90rem;
    }
}

.footer{
    background: var(--light-gray);
}

.footer-links{
    padding-top: 7rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 5rem;
}

.footer-link{
    flex-basis: 20%;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
}

.footer-ul-h1{
    color: var(--dark-black);
    font-size: 1.5rem;
}

.footer-link p{
    color: var(--gray);
    font-size: .75rem;
    margin-top: .75rem;
    margin-right: 3rem;
}

.footer-link ul{
    list-style-type: none;
}

.footer-link ul li a{
    text-decoration: none;
    color: var(--gray);
    transition: 0.5s;
}

.footer-link ul li a:hover{
    color: var(--dark-black);
}

.footer-link ul li{
    font-size: .75rem;
    margin-top: .75rem;
}

.footer-link ul li:hover{
    color: var(--dark-black);
}

.fa-phone, .fa-location-dot, .fa-envelope, .fa-whatsapp{
    margin-right: 1rem;
}

.fa-brands{
    margin-right: 1rem;
    font-size: 1.1rem;
}

.footer-panel{
    background-color: var(--dark-gray);
    color: var(--white);
    padding:  1.8rem 0;
    font-weight: 700;
    font-size: .85rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 600px) and (max-width: 1024px){
    .footer-text{
        margin-left: 2rem;
    }
    .footer-h1{
        margin-left: 2rem;
        font-size: 2rem;
    }
    .footer-link{
        flex-basis: 40%;
        margin-bottom: 2rem;
        margin-right: 1rem;
    }
    .footer-ul-h1{
        font-size: 1.1rem;
    }
}


@media (max-width: 600px){
    .footer-text{
        margin-left: 0;
    }
    .footer-text .small{
        margin-left: 1.5rem;
    }
    .footer-h1{
        margin-left: 2rem;
        font-size: 1.5rem;
    }
    .footer-link{
        flex-basis: 80%;
        margin-bottom: 2rem;
        margin-right: 1rem;
    }
    .footer-ul-h1{
        font-size: 1rem;
    }
    .footer-link ul li{
        font-size: .65rem;
    }
    .footer-link p{
        font-size: .65rem;
    }
    .footer-panel{
        padding: 1.4rem 0;
        font-size: .65rem;
    }
}
 
.page1-header{
    height: 40rem;
    background-image: url(villa-int-sep-pic.jpg);
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.page-links{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 40%;
}

.page-links ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
}

.page-links ul li{
    margin-right: .55rem;
}

.page-links ul li a{
    text-decoration: none;
    color: var(--light-gray);
    font-size: .85rem;
}

.page-links h1{
    color: var(--white);
    font-size: 2rem;
    text-align: center;
}

@media (min-width: 600px) and (max-width: 1024px){
    .page-links h1{
        font-size: 1.8rem;
    }
    .page-links ul li a{
        font-size: .75rem;
    }
}

@media (max-width: 600px){
    .page1-header{
        background-image: url(villaint-res-pic.jpg);
        background-size: cover;
    }
    .page-links h1{
        font-size: 1.4rem;
    }
    .page-links ul li a{
        font-size: .55rem;
    }
}

.page1-main{
    background: var(--dark-gray);
}

.swiper-service {
    width: 75%;
    height: 22rem;
    background-color: var(--dark-gray);
}

.swiper-service .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-service .swiper-slide img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 600px) and (max-width: 1024px){
    .swiper-service{
        width: 90%;
    }
}

@media (max-width: 600px){
    .swiper-service{
        width: 92%;
    }
}

.bottom{
    padding-bottom: 5rem;
}

.bottom-mar{
    margin-bottom: 5rem;
}

.orange{
    color: var(--orange);
}

.head2{
    padding-top: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 12rem 0 12rem;
    text-align: center;
}

.head2 h1{
    color: var(--orange);
    font-size: 2.2rem;
}

.head2 p{
    color: var(--light-gray);
    font-size: .95rem;
    margin-top: 1rem;
}
    
@media (min-width: 800px) and (max-width: 1024px){
    .head2 h1{
        font-size: 1.9rem;
    }

    .head2 p{
        font-size: .80rem;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .head2{
        margin: 0 6rem 0 6rem;
    }
    .head2 h1{
        font-size: 1.9rem;
    }

    .head2 p{
        font-size: .80rem;
    }
}

@media (max-width: 600px){
    .head2{
        margin: 0 3rem 0 3rem;
    }
    .head2 h1{
        font-size: 1.6rem;
    }

    .head2 p{
        font-size: .70rem;
    }
    .page2-header{
        background-image: url(villaext-res-pi.jpg);
        background-size: cover;
    }
    .page3-header{
        background-image: url(acduct-res-pic.jpg);
        background-size: cover;
    }
    .page4-header{
        background-image: url(acmain-res-pic.jpg);
        background-size: cover;
    }
    .page5-header{
        background-image: url(electric-res-pic.jpg);
        background-size: cover;
    }
    .page6-header{
        background-image: url(plumbing-res-pic.jpg);
        background-size: cover;
    }
    .page7-header{
        background-image: url(gypsum-res-pic.jpg);
        background-size: cover;
    }
    .page8-header{
        background-image: url(carpentry-res-pic.jpg);
        background-size: cover;
    }
    .services-header{
        background-image: url(services-res-pic.jpg);
        background-size: cover;
    }
    .contact-header{
        background-image: url(contact-res-pic.jpg);
        background-size: cover;
    }
    .about-header{
        background-image: url(about-res-pic.jpg);
        background-size: cover;
    }
}

.page2-header{
    height: 40rem;
    background-image: url(villa-ext-sep-pic.jpg);
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.hidden {
    opacity: 0;
    transform: translateY(150px);
    transition: all 1.5s ease;
}

.show {
    opacity: 1;
    transform: translateY(0px);
}

.page3-header{
    height: 40rem;
    background-image: url(acduct-sep-pic.jpg);
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.page4-header{
    height: 40rem;
    background-image: url(acmaintenance-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.page5-header{
    height: 40rem;
    background-image: url(electricwork-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.page6-header{
    height: 40rem;
    background-image: url(plumbingwork-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.page7-header{
    height: 40rem;
    background-image: url(gypsumwork-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.page8-header{
    height: 40rem;
    background-image: url(carpentry-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.services-header{
    height: 40rem;
    background-image: url(services-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-header{
    height: 40rem;
    background-image: url(contact-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-section2{
    background: var(--dark-gray)
}

.about-header{
    height: 40rem;
    background-image: url(about-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.mission-text {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: stretch; /* Ensure both items stretch to the same height */
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-bottom: 10rem;
}

.mission-text .img {
    flex-basis: 30%;
    height: auto; /* Let the height adjust based on content */
    background-image: url(mission-pic.jpeg);
    background-size: cover;
    background-position: center;
    flex-grow: 0; /* Prevent it from expanding beyond 35% */
    margin-bottom: 4rem; 
}


.mission-textbox {
    flex-basis: 36%;
    background-color: var(--white);
    margin-top: 4rem;
    position: relative;
    left: 2%;
    z-index: 10;
    flex-grow: 0; /* Prevent it from expanding beyond 35% */
}

.mission-textbox h1{
    color: var(--dark-black);
    padding: 1.5rem 2rem 0 1.5rem;
    font-size: 2rem;
}

.mission-textbox .p1{
    color: var(--gray);
    padding: .75rem 1.5rem 0 1.5rem;
    font-size: .85rem;
}

.mission-textbox h2{
    color: var(--dark-black);
    padding: .75rem 1.5rem 0 1.5rem;
    font-size: 1.5rem;
}

.mission-textbox .p2{
    color: var(--gray);
    padding: .75rem 1.5rem 0 1.5rem;
    font-size: .75rem;
}

.mission-textbox .p3{
    color: var(--gray);
    padding: .75rem 1.5rem 3rem 1.5rem;
    font-size: .75rem;
}

@media (min-width: 800px) and (max-width: 1024px){
    .head h1, .head2 h1{
        font-size: 1.9rem;
    }

    .head p, .head2 p{
        font-size: .80rem;
    }
    
    .mission-text .img{
        flex-basis: 39%;
    }

    .mission-textbox{
        flex-basis: 43%;
    }

    .mission-textbox h1{
        font-size: 1.8rem;
    }

    .mission-textbox .p1{
        font-size: .75rem;
    }

    .mission-textbox h2{
        font-size: 1.2rem;
    }

    .mission-textbox .p2{
        font-size: .70rem;
    }

    .mission-textbox .p3{
        font-size: .70rem;
    }
}

@media (min-width: 600px) and (max-width: 800px){
    .head, .head2{
        margin: 0 6rem 0 6rem;
    }
    .head h1, .head2 h1{
        font-size: 1.9rem;
    }

    .head p, .head2 p{
        font-size: .80rem;
    }
    
    .mission-text {
        flex-direction: column;
        align-items: center; /* Center the content horizontally */
    }

    .mission-text .img {
        width: 80%; 
        height: 20rem; 
        flex-basis: auto; 
        margin-bottom: 2rem; 
    }
    
    .mission-textbox {
        width: 80%;
        flex-basis: auto;
        left: 0;
        margin-top: 0;
    }
    
    .mission-textbox h1{
        font-size: 1.8rem;
    }

    .mission-textbox .p1{
        font-size: .75rem;
    }

    .mission-textbox h2{
        font-size: 1.2rem;
    }

    .mission-textbox .p2{
        font-size: .70rem;
    }

    .mission-textbox .p3{
        font-size: .70rem;
    }
}

@media (max-width: 600px){
    .head, .head2{
        margin: 0 3rem 0 3rem;
    }
    .head h1, .head2 h1{
        font-size: 1.6rem;
    }

    .head p, .head2 p{
        font-size: .70rem;
    }

    .mission-text {
        flex-direction: column;
        align-items: center; /* Center the content horizontally */
    }
    
    .mission-text .img {
        width: 80%; 
        height: 20rem; 
        flex-basis: auto; 
        margin-bottom: 2rem; 
    }
    
    .mission-textbox {
        width: 80%;
        flex-basis: auto;
        left: 0;
        margin-top: 0;
    }
    
    .mission-textbox h1{
        font-size: 1.5rem;
    }

    .mission-textbox .p1{
        font-size: .65rem;
    }

    .mission-textbox h2{
        font-size: 1rem;
    }

    .mission-textbox .p2{
        font-size: .60rem;
    }

    .mission-textbox .p3{
        font-size: .60rem;
    }
}


.aim-panel{
    background-image: url(aim-pic.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-position: center;
    height: 27rem;
    width: 100%;
}

.aim{
    margin: 0 12rem;
}

.aim h1{
    font-size: 2.1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);    
}

.aim p{
    font-size: 1.1rem;
    color: var(--light-gray);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);    
}

@media (min-width: 600px) and (max-width: 1024px){
    
.aim{
    margin: 0 6rem;
}

.aim h1{
    font-size: 1.9rem;
}

.aim p{
    font-size: .90rem;
}
}

@media (max-width: 600px){
       
.aim{
    margin: 0 1.5rem;
}

.aim h1{
    font-size: 1.6rem;
}

.aim p{
    font-size: .80rem;
}
}

.customer-sat-sec{
    background: var(--dark-gray);
}

.customer-sec{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
}

.customer-sec h1{
    color: var(--white);
    font-size: 2.2rem;
    padding-top: 5rem;
}

.customer-p{
    margin: 1rem 10rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.customer-sec p{
    margin-top: 2.5rem;
    color: var(--light-gray);
    font-size: .85rem;
    flex-basis: 40%;
    margin-right: 2rem;
}

@media (min-width: 600px) and (max-width: 1024px){
    .customer-sec h1{
        font-size: 1.9rem;
    }
    .customer-p{
        margin: 1rem 5rem;
        text-align: center;
    }
    .customer-p p{
        flex-basis: 100%;
        font-size: .75rem;
    }
}

@media (max-width: 600px){
    .customer-sec h1{
        font-size: 1.6rem;
    }
    .customer-p{
        margin: 1rem 3rem;
        text-align: center;
    }
    .customer-p p{
        flex-basis: 100%;
        font-size: .70rem;
    }
    .commercial-header{
        background-image: url(commercial-res-pic.jpg);
        background-size: cover;
    }
    .renovation-header{
        background-image: url(renovation-res-pic.jpg);
        background-size: cover;
    }
    .pool-header{
        background-image: url(pool-res-pic.jpg);
        background-size: cover;
    }
    .fitout-header{
        background-image: url(villafitou-res-pic.jpg);
        background-size: cover;
    }
    .hospitality-header{
        background-image: url(hospitality-res-pic.jpg);
        background-size: cover;
    }
    .office-header{
        background-image: url(office-res-pic.jpg);
        background-size: cover;
    }
    .salon-header{
        background-image: url(salon-res-pic.jpg);
        background-size: cover;
    }
    .shop-header{
        background-image: url(shop-res-pic.jpg);
        background-size: cover;
    }
    .clinic-header{
        background-image: url(clinic-res-pic.jpg);
        background-size: cover;
    }
    .project-header{
        background-image: url(projects-res-pic.jpg);
        background-size: cover
    }
    .bathroom-header{
        background-image: url(bathroomrenovation-res.jpg);
        background-size: cover;
    }
    .floortiling-header{
        background-image: url(floortiling-res.jpg);
        background-size: cover;
    }
    .kitchenrenovation-header{
        background-image: url(kitchenrenovation-res.jpg);
        background-size: cover;
    }
}

.commercial-header{
    height: 40rem;
    background-image: url(commercial-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.renovation-header{
    height: 40rem;
    background-image: url(renoation-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.pool-header{
    height: 40rem;
    background-image: url(pool-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.fitout-header{
    height: 40rem;
    background-image: url(villafitout-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.bathroom-header{
    height: 40rem;
    background-image: url(bathroomrenovation-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.floortiling-header{
    height: 40rem;
    background-image: url(floortiling-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.kitchenrenovation-header{
    height: 40rem;
    background-image: url(kitchenrenovation-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (min-width: 600px) and (max-width: 1024px){
    .fitout-header{
        background-position: right;
    }
}

.hospitality-header{
    height: 40rem;
    background-image: url(hospitality-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.office-header{
    height: 40rem;
    background-image: url(office-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.salon-header{
    height: 40rem;
    background-image: url(salon-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.shop-header{
    height: 40rem;
    background-image: url(shop-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.clinic-header{
    height: 40rem;
    background-image: url(clinic-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-header{
    height: 40rem;
    background-image: url(project-sep-pic.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.container {
    position: relative;
}
.container .image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
    padding-top: 5rem;
}
.container .image-container .media {
    height: 350px;
    width: 450px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    overflow: hidden;
    cursor: pointer;
}
.container .image-container .media img, 
.container .image-container .media video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}
.container .image-container .media:hover img, 
.container .image-container .media:hover video {
    transform: scale(1.1);
}
.container .popup-media {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .9);
    z-index: 100;
    display: none;
}
.container .popup-media span {
    position: absolute;
    top: 13%;
    right: 10px;
    font-size: 60px;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}
.container .popup-media img,
.container .popup-media video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    max-height: 90%;
    max-width: 90%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .container .popup-media img,
    .container .popup-media video {
        width: 90%;
    }
}

.projects{
    background: var(--gray);
}

.btn-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.projects-btn{
    margin-top: .60rem;
    background: transparent;
    border: 3px solid var(--white);
    padding: 1.2vw 4vw;
    color: var(--white);
    font-size: 1.5vw;
    font-weight: 700;
    transition: 0.7s;
}

.projects-btn:hover{
    background: var(--white);
    color: var(--dark-black);
    cursor: pointer;
}

.more{
    margin-bottom: 5rem;
}

.google-main{
    padding-top: 5rem;
}

.googlemain-head{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.google-headmaintext{
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-headmaintext h1{
    color: var(--dark-black);
    font-size: 5rem;
}

.google-headmaintext p{
    color: var(--dark-black);
    font-size: 1.3rem;
    margin-top: 2rem;
}

.fivestars{
    height: 5rem;
}

.fivestars img{
    height: 100%;
    width: 100%;
}

.star-p{
    color: var(--dark-black);
    font-weight: 700;
    font-size: 1.1rem;
}

.review-swiper {
    width: 75%;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.review-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #fff4f2;
    height: auto;
}

.swiper-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.fivestars2{
    height: 3rem;
    width: 9rem;
}

.fivestars2 img{
    height: 100%;
    width: 100%;
}

.googleicon{
    height: 2rem;
    width: 6rem;
}

.googleicon img{
    height: 100%;
    width: 100%;
}

.small-starp{
    color: var(--dark-black);
    font-size: 1.1rem;
}

.swiperbox-text{
    margin: 2rem;
}

.name-review{
    color: var(--gray);
    font-weight: 700;
    font-size: 1.1rem;
}

.date-review{
    color: var(--gray);
    font-size: .70rem;
}

.review{
    color: var(--gray);
    margin-top: 2rem;
    font-size: .80rem;
    margin-right: 2rem;
}

@media (min-width: 600px) and (max-width:1024px){
    .google-headmaintext h1{
        font-size: 3.5rem;
    }
    .google-headmaintext p{
        font-size: 1rem;
    }
    .fivestars{
        height: 3rem;
    }
    .star-p{
        font-size: .90rem;
    }
    .swiper-box{
        margin-top: 1rem;
    }
    .swiperbox-text{
        margin: 1rem;
    }
    .fivestars2{
        height: 2rem;
        width: 7rem;
    }
    .googleicon{
        height: 1.5rem;
        width: 4rem;
    }
    .name-review{
        font-size: .95rem;
    }
    .date-review{
        font-size: .65rem;
    }
    .review{
        margin-right: 1rem;
        margin-top: 1.5rem;
        font-size: .70rem;
    }
    .small-starp{
        font-size: .75rem;
    }
}

@media (max-width: 600px){
    .review-swiper{
        width: 70%;
    }
    .google-headmaintext h1{
        font-size: 2.8rem;
    }
    .google-headmaintext p{
        font-size: .90rem;
    }
    .fivestars{
        height: 2rem;
    }
    .star-p{
        font-size: .80rem;
    }
    .swiper-box{
        margin-top: 2rem;
    }
    .swiperbox-text{
        margin: 2rem;
    }
    .fivestars2{
        height: 1.2rem;
        width: 5rem;
    }
    .googleicon{
        height: 1.5rem;
        width: 3rem;
    }
    .name-review{
        font-size: .85rem;
    }
    .date-review{
        font-size: .55rem;
    }
    .review{
        margin-right: 2rem;
        margin-top: 1rem;
        font-size: .60rem;
    }
    .small-starp{
        font-size: .65rem;
    }
}

.visa{
    padding: 3rem 0 0 5rem;
}

.visa-card{
    width: 25%;
}

.visa-card img{
    /*height: 100%;*/
    width: 100%;
}

@media (min-width: 600px) and (max-width:1024px){
    .visa{
        padding: 2.2m 0 0 3rem;
    }
    .visa-card{
        width: 32%;
    }
}

@media (max-width: 600px){
    .visa{
        padding: 2rem 0 0 2.2rem;
    }
    .visa-card{
        width: 60%;
    }
}

hr {
    border: 0;
    height: 2px;
    width: 100%;
    background-color: var(--gray);
}

.whatsapp-main {
    position: fixed;
    bottom: 40px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    width: 4rem;
}

.whatsapp-main a {
    display: block;
    margin-bottom: 0.5rem; /* Adjust spacing between icons as needed */
}

.whatsapp-img, .whatsapp-main img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 600px){
    .whatsapp-main{
        width: 3rem;
    }
}

.logos{
    padding: 40px 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 6rem 0;
    background: var(--light-gray);
  }
  
  .logos:hover .logos-slide{
    animation-play-state: paused;
  }
  
  .logos-slide{
    display: inline-block;
    animation: 30s slide infinite linear;
  }
  
  .logos-slide img{
    padding: 0 40px;
  }
  
  @keyframes slide {
    from{
      transform: translateX(0);
    }
    to{
      transform: translateX(-100%);
    }
  }

  @media (min-width: 600px) and (max-width: 1024px){
    .logos{
        padding: 20px 0;
    }
}

@media (max-width: 600px){
    .logos{
        padding: 10px 0;
    }
}

.head-logo{
    padding-top: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 12rem 0 12rem;
    text-align: center;
}

.head-logo h1{
    font-size: 2.2rem;
    color: var(--dark-black);
}

@media (min-width: 600px) and (max-width: 800px){
    .head-logo{
        margin: 0 6rem 0 6rem;
    }
    .head-logo h1{
        font-size: 1.9rem;
    }
}

@media (max-width: 600px){
    .head-logo{
        margin: 0 3rem 0 3rem;
    }
    .head-logo h1{
        font-size: 1.6rem;
    }
}

.mar-t{
    margin-top: 2rem;
    margin-bottom: .50rem;
}

.icons{
    text-decoration: none;
    color: var(--gray);
    transition: 0.5s;
}

.icons:hover{
    color: var(--dark-black);
}

.fa-instagram, .fa-facebook-f, .fa-tiktok{
    font-size: 1.5rem;
}

.more-fs{
    font-size: 23px;
}

.blog_button{background-color:#FC7A02;
    margin-top:50px ;
padding:10px 18px 10px 18px;
color:#fff;
    border-radius: 5px;
    text-decoration: none;

}
.blog_p{margin-bottom:20px;}

