@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

:root{
    --bgcolour: rgb(250, 248, 250);
    --darkpink: rgb(134, 12, 87);
    --cardbg: rgb(147, 43, 111);
    --darkblue: rgb(15, 15, 141);
    --secondary-color-light: rgb(235, 98, 201);
    --footer-font: rgb(92, 91, 91);
    --palepink: rgb(239, 177, 208);
    --white: #fff;
    --light: rgba(255, 255, 255, 0.8);
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--bgcolour);
}

header{    
    background: -webkit-linear-gradient(#f6f6f6ab,rgba(226, 230, 234, 0.394));
    color: rgb(255, 255, 255);   
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);   
    position: fixed;
    background: var(--bgcolour);

    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

header .logo {
    display: inline-block;
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: magenta;
}

.logo img{
    max-width: 200px;
    height: auto;
}

header nav ul{
    display: flex;
}

header nav ul li a{
    display: inline-block;
    color: #000;
    padding: 5px 0;
    margin: 0 10px;
    border: 3px solid transparent;
    text-transform: uppercase;
}

header nav ul li a:hover,
header nav ul li a.active{
    border-bottom-color: var(--darkpink);
}

.hamburger{
    cursor: pointer;
    display: none;
}

.hamburger div{
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background: #000;
}

/*End of header and Navbar*/

/*Start of Hero section*/

#hero{
    background-image: linear-gradient(90deg, var(--darkpink), rgba(230, 82, 181, 0.525)), url(images/cleaning6.png);
    background-repeat: no-repeat;
    height: 100dvh;
    max-width: 100%;
    background-size: cover;
}

#hero .linear-text-gradient {
    background: linear-gradient(90deg, rgba(180, 105, 156, 0.801), rgb(238, 217, 239));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.container{
    max-width: 100%;
    padding: 16px;
    margin: auto;
    display: flex;
}

section{
    max-width: 100%;
}

.button{
    border-radius: 10px;
    padding: 10px 30px;
    background: transparent;
    cursor: pointer;
}

.btn{
    border: 1px solid #fff;
    color: var(--bgcolour);
    text-decoration: none;
    font-weight: bold;
}

.btn:hover{
    background-color: var(--bgcolour);
    color: black;
}


.main-content{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
    color: white;
}

.main-content .title{
    color: var(--bgcolour);
    font-size: 4.2em;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 30px;
    padding: 5px;
    letter-spacing: -4px;
}

.main-content .subtitle{
    
    font-size: 1.3em;
    margin-top: 0px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
    font-style: italic;
    z-index: 4;
}

/* .main-content .subtitle .star{
    position: absolute;
    height: 200px;
    width: 200px;
    top: 80px;
    left: 760px;
    z-index: 5;
    opacity: 0.9;
} */

.inner-container{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 30%;
}

.icons h6{
    padding-top: 10px;
    padding-left: 10px;
    font-weight: 600;
    font-size: 0.9em;
    text-align: center;
}

.icons{
    display: flex;
    justify-content: center;
    width: 200px;
}

.icons img{
    max-width: 100%;
    border-radius: 15px;
    width: 30px;
    height: 30px;
}

.popup{
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #f04bcc;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 8px;
    position: absolute;
    z-index: 20;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 
    inset 0 4px 8px rgba(255, 255, 255, 0.2);
  }
  
  .popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fc0ac7 transparent transparent transparent;
  }
  
  .popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
  }
  
  @-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }


/********End Hero***************************/

#services .container{
    max-width: 100%;
    padding: 0;
    margin: 0 10%;
}

.section-title h1{
    font-size: 45px;
    text-align: center;
    margin-top: 20px;
}

.section-title .line{
    width: 150px;
    height: 4px;
    border: 10px;
    background: var(--secondary);
    margin: auto;
}

.services{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.service{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 350px;
    height: 300px;
    padding: 0 20px;
    border: 1px solid var(--darkpink);
    box-shadow: 10px 4px 30px rgba(32, 32, 32, 0.1);
    transition: transform 0.8s;
    border-radius: 10px;
}

.service:hover{
    transform: translateY(-5px);
    background-color: rgba(var(--secondary-color-light),0.1); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 
    inset 0 4px 8px rgba(255, 255, 255, 0.2);
}
.service img{
    margin-top: 0;
    margin-bottom: 15px;
    height: 100px;
    width: 100px;
}


.service p{
    margin-top: 10px;
}

.service h3{
    margin: 10px;
}
/******End Services*****/

#meet{
    max-width: 100%;
    height: auto;
    background-color: var(--darkpink);
    padding-top: 10px;
    background-image: linear-gradient(90deg, var(--darkpink), rgba(168, 12, 116, 0.15)),url("images/pale overlay.png");
    background-repeat: no-repeat;
    object-fit: cover;
}

#meet .meet-container{
    max-width: 100%;
    padding: 0;
    margin: 0 2%;
}

#meet h2{
    padding-top: 20px;
    text-align: center;
    color: var(--bgcolour);
    font-size: 2em;
}

#meet h4{
    padding-top: 5px;
    text-align: center;
    color: var(--bgcolour);
    font-size: 1em;
    font-weight: 300;
    line-height: 1.9;
}

.cards{
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
    justify-content: center;
    gap: 80px;
    align-items: center;
    padding: 20px;
}

.card{
    height: 360px;
    width: 250px;
    padding: 0px 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.8s;
}

.cards .card:hover {
    transform: translateY(-5px);
    background-color: rgba(var(--secondary-color-light),0.1); 
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 
    inset 0 4px 8px rgba(255, 255, 255, 0.2);
  }

.card-front-top{
    padding-top: 5px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.card-front-bottom h6{
    font-size: 1em;
    margin-top: -5px;
    padding-bottom: 0;
    margin-bottom: 0;
    color: var(--bgcolour);
}

.card-front-bottom p{
    font-size: 0.8em;
    color: var(--bgcolour);
    font-weight: 200;
}


.card-image{
    display: block;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-color: #fff;
    border: 6px solid var(--darkpink) ;
    object-fit: cover;
}

/*****End of Cards section******/

#reviews{
    max-width: 100%;
    height: auto;
    background-color: var(--bgcolour);
}

.reviews-title{
    padding-top: 20px;
    text-align: center;
}

#reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
  }
  
  .review {
    width: 25%;
    height: auto;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 15px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.8s;
  }

  .review:hover{
    transform: translateY(-5px);
    background-color: rgba(var(--secondary-color-light),0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 
    inset 0 4px 8px rgba(255, 255, 255, 0.2);
  }

#achievements{
    background-image: linear-gradient(90deg, var(--darkpink), rgba(168, 12, 116, 0.55)), url(images/spraying.png);
    background-repeat: no-repeat;
    object-fit: cover;
    background-position: bottom center;
}

#achievements .container{
    display: flex;
    flex-direction: column;
    align-items: left;
    max-width: 100%;
    gap: 30px;
    padding: 40px 16px;
}

#achievements .inner-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 50%;
    max-width: 100%;
    margin: auto;
    gap: 100px;
    padding: 0 0;
}

.achievement-headings{
    text-align: center;
}

#achievements h2{
    color: var(--bgcolour);
    font-size: 3em;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

#achievements h4{
    color: var(--secondary-color-light);
    font-size: 1.1em;
    font-weight: 600;
    padding: 0;
    margin: 0 0;
}

#achievements h5{
    color: var(--bgcolour);
    font-size: 1em;
    font-weight: 300;
    font-style: italic;
}

#achievements .numbers h4{
    font-size: 1.7em;
    color: whitesmoke;
    font-weight: 500;
}

#achievements .numbers p{
    font-size: 1em;
    color: whitesmoke;  
}


/*#achievements .counter{
    font-size: 1.7em;
    color: whitesmoke;
    font-weight: 500;
}*/


#contact{
    max-width: 100%;
    min-height: 50dvh;
    background-color: var(--darkpink);
    padding-top: 20px;
}

#contact .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: auto;
    gap: 30px;
}

#contact h2{
    text-align: center;
    font-size: 2em;
    color: white;
}


.align{
    text-align: center;
}

.contact-headings{
    display: flex;
    flex-direction: column;
    text-align: center;
}

#contact .inner-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 50%;
    max-width: 100%;
    margin: auto;
    gap: 50px;
    padding: 20px 20px;
}

#contact h1{
    text-align: left;
    margin-left: 11%;
    font-size: 2.5em;
    color: #fff;
}

#contact h3{
    color: #fff;
    font-weight: 300;
    font-size: 1.2em;
    margin-top: 10px;
    font-style: italic;
}

.contact-img{
    text-align: center;
}

.img1{
    width: 40px;
    height: 40px;
}

.img2{
    width: 40px;
    height: 40px;
}

.img3{
    width: 40px;
    height: 40px;
}

.contact-title{
    color:var(--bgcolour);
    font-size: 0.925;
    text-align: center;
    margin-bottom: 10px;
}

.contact-desc{
    color:var(--bgcolour);
    font-size: 0.8em;
    font-weight: 200;
    text-align: center;
}

#socials {
    max-width: 100%;
    margin: auto;
    height: auto; 
    background-color: var(--bgcolour);
    padding: 25px 0; 
}

.socials-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; 
    width: auto;
    padding: 0;
}


.fa-facebook, .fa-instagram {
    background: var(--palepink);
    color: var(--darkpink);
}

.my-x-icon {
    width: 40px;
    height: 40px;
    object-fit: cover; 
    border-radius: 50%; 
    margin-top: 7px;
}


.fa {
    padding: 10px;
    font-size: 20px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
  }

   .my-x-icon:hover {
    opacity:0.7;
  }

  .fa:hover {
    opacity: 0.7;
  }


  hr{
    margin-top: 2%;
    margin-left: 10%;
    margin-bottom: 0;
    width: 80%;
    border: 1px solid lightgray;
  }

  .clearfix {
    overflow: auto;
  }


  footer{
    display: flex;
    padding-top: 0;
    margin-top: 0;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: var(--bgcolour);
    color: var(--footer-font);
    font-size: 0.8em;
    }

    footer a{
        color: var(--footer-font);
    }


      
    

  /************Tablet and Mobile Section********************/

@media (min-width:769px) and (max-width:900px) {
    .hamburger {
        display: block;
    }

    header nav {
        position: absolute;
        left: -100%;
        top: 70px;
        width: 100%;
        background: #fff;
        padding: 30px;
        transition: 0.3s;
    }

    header #nav_check:checked ~ nav {
        left: 0;
    }

    header nav ul{
        display: block;
    }

    header nav ul li a {
        margin: 5px 0;
    }

    #hero{
        background-image: linear-gradient(90deg, var(--darkpink), rgba(230, 82, 181, 0.525)), url(images/cleaning6.png);
        height: 100dvh;
        max-width: 100%;
        padding-top: 50px;
        background-position: bottom;
    }


    .main-content .title{  
        font-size: 3.5em;
    }


    .main-content .subtitle{
        color: var(--bgcolour);
        font-size: 1em;
        text-align: center;
        font-weight: 200;
    }

    .main-content .btn{
        padding: 6px 10px;
    }
    

    #services{
        height: auto;
    }
    
    #meet{
        height: auto;
    }
    
    .meet-subtitle h4{
        font-size: 0.8em;
    }
    
    #reviews{
        height:auto;
    }

    #achievements{
        background-image: linear-gradient(90deg, var(--darkpink), rgba(168, 12, 116, 0.55)), url(images/cleaning10.png);
        height: 100dvh;
        background-position: top left;
    }

    
    #achievements .row{
        gap:20%;
        padding-top:0;
        margin-top:0;
    }

    #contact{
        height: auto;
    }

    #contact h1{
        text-align: center;
        margin: 0;
    }

    #contact h3{
        text-align: center;
        margin: 0;
        padding-top: 25px;
    }

    
    hr{
        margin-top: 15px;
    }
    
    footer{
        margin-left: 10px;
        margin-right: 10px;
        padding-top: 15px;
        flex-direction: row;
        gap: 5px;
    }

    
#contact .inner-container{
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between;
    margin: 0;
    gap: 30px;
}

/* .fa{
    padding: 2%;
} */

}


/****************Mobile Phones**************/
@media only screen and (max-width:768px){
    .hamburger {
        display: block;
    }

    header nav {
        position: absolute;
        left: -100%;
        top: 70px;
        width: 100%;
        background: #fff;
        padding: 30px;
        transition: 0.3s;
    }

    header #nav_check:checked ~ nav {
        left: 0;
    }

    header nav ul{
        display: block;
    }

    header nav ul li a {
        margin: 5px 0;
    }


/*****End  Header and Navbar*****/

#hero{
    background-position: bottom;
    height: auto;
}

.main-content .title{
    top: 25%;
}

.main-content .title{  
    margin-top: 60px;
    font-size: 3em;
    letter-spacing: -2px;
    line-height: 1;
}

.main-content .subtitle{
    top: 45%;
}

.main-content .subtitle{
    line-height: 1.2;
    font-size:1em ;
}


#services{
    height: auto;
}

.service{
    padding: 0 20px;
    gap: 0;
    margin: 0;
}
#meet{
    height: auto;
}

#meet h4{
    font-size: 0.7em;
    margin: 0 10px;
}

.meet-subtitle h4{
    font-size: 0.8em;
}

#reviews-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
  }

  .review{
    width: 80%;
    margin: auto;
  }

#achievements{
    background-image: linear-gradient(90deg, var(--darkpink), rgba(168, 12, 116, 0.55)), url(images/cleaning10.png);
    height: auto;
    background-position: top left;
}

#achievements .inner-container{
    flex-direction: column;
    justify-content: center;
    align-items: start;
    flex-grow: 1;
    max-height: 100%;
    gap: 10px;
    margin: auto;
    margin-left: 25%;
}

#achievements h2{
    font-size: 1em;
    margin: 20px auto;
}
#achievements h4{
    margin: auto;
    font-size: 0.8em;
}

#achievements h5{
    font-size: 0.7em;
    font-weight: 300;
}

#contact h1{
    text-align: center;
    margin: auto;
}

#contact h2{
    font-size: 1em;
    margin: 20px auto;
}
#contact h3{
    text-align: center;
    margin: auto;
    font-size: 0.8em;
    font-weight: 300;
}


#contact .inner-container{
    text-align: center;
    flex-direction: column;
    justify-content:space-between;
    margin: 0;
    gap: 30px;
}

/*     padding: 10px;
    font-size: 20px;
    width: 40px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%; */

.fa {
    width: 42px;
    height: 42px;
    padding: 2%;
}

hr{
    margin-top: 45px;
}

footer{
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 0;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}


}