*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* ##################### utility classes ################# */
.btn {
    display: inline-block;
    padding: 1em 2.5em;
    text-decoration: none;
    border-radius: 50px;
    outline: none;
    margin-top: 1em;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;

}

.container {
    max-width: 1300px;
    width: 90%;
    margin: auto;
}

.btn-primary {
    color: white;
    background: #16a083;
}

.btn-primary:hover {
    background-color: #16a082c2;
}




.navbar input[type='checkbox'],
.navbar .humburger-lines {

    display: none;
}

.navbar {
    box-shadow: 0px 2px 10px 0px #aaa;
    position: sticky;
    width: 100%;
    background: #fff;
    z-index: 999;
    opacity: 0.9;


}
.dev1{
    display: none;
}

.nav-container {
    display: flex;
    align-items: center;
    height: 65px;
    justify-content: space-between;

}

ul {
    display: flex;
}

ul li {
    list-style: none;
    font-size: 2.2rem;
    margin: 0 1rem;
}

ul li a {
    text-decoration: none;
    font-style: none;
    padding: 0.6rem;
    color: black;

}

ul li a:hover {

    color: #16a083;
}

ul li a:active {
    color: blue;
}

.logo {
    font-size: 3rem;
    text-transform: uppercase;
    transition: all 1.4s ease;
    border-radius: 10px;
    position: relative;
}

.logo::after {
    content: "";
    width: 0;
    height: 3px;
    background: black;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 1s;
}

.logo:hover::after {
    cursor: pointer;
    background: #16a083;
    width: 100%;

}

.logo:hover {
    color: #16a083;
    cursor: pointer;
}

.logo-1 {
    list-style: none;
    text-decoration: none;
    color: black;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.804), rgba(22, 10, 10, 0.451)), url("./image/flowers-gd5d6ac876_1920.jpg");
}

header .header-site {
    display: flex;
    flex-direction: column;
    height: 60vh;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.header-site h1 {
    font-size: 6rem;
    font-family: monospace, sans-serif;
    color: rgb(255, 255, 255);
}

.header-site h2 {
    padding: 10px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.623);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.contact-btn {
    margin: 10px;

}

.contact-btn button {
    background: none;
    border: none;
}

/* ######################## about us #################333333 */

.about-us {
    display: flex;
    flex-direction: column;
    display: block;
    text-align: center;


}

.about-us h1 {
    margin-top: 1em;
    margin-left: 2em;
    font-size: 3rem;
    text-transform: uppercase;
    transition: all 1.4s ease;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    font-weight: 300;
    color: #555;
    margin-bottom: 1em;

}

.about-us h1::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #555;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 1s;
}

.about-container {
    display: flex;
}

.about-text {
    padding: 4em;

}

.para-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    padding: 2rem;
}

.para-text p {
    font-size: 2rem;
    color: #555;
}

.para-text ul {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.para-text ul li {
    padding-top: 2rem;
    list-style: decimal;
    color: #666;
}
.about-img{
    margin: auto;
}

.about-img img {
  
    width: 100%;
}

.head-text {
    font-size: 2rem;
    font-weight: 400;
    padding: 1rem;
    display: flex;
    align-items: flex-start;

}

.head-text h3 {
    color: #333;
}





/* ######### section ###########3 */
.services {
    display: block;
    align-items: center;
    text-align: center;
}

.services h1 {
    margin-top: 1em;
    font-size: 3rem;
    text-transform: uppercase;
    transition: all 1.4s ease;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    font-weight: 300;
    color: #555;

}

.services h1::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #555;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 1s;
}

.card {
    display: flex;
    margin-top: 3em;

    font-size: 1.5rem;
}

.image {
    margin: 0 15px;
    position: relative;
    margin-bottom: 1em;
    margin-top: 2rem;
}

.img-text {
    color: white;
    font-size: 2rem;
    position: absolute;
    width: 100%;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.image a {
    margin-top: 2.5em;
    display: inline-block;
    font-size: 1.2rem;
}

.image::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.705);
    z-index: 1;
    transform: scaleY(0);
    transform-origin: 100% 100%;
    transition: all 0.3s ease-in-out;

}

.image:hover::after {
    opacity: 1;
    transform: scaleY(1);
}

.card .image img {
    display: block;
    width: 100%;
    max-height: 300px;
    margin: auto;
    object-fit: cover;
    object-position: center;
}

.image:hover .img-text {
    opacity: 1;
    top: 40%;
}


/* ################# testimonial ############ */

.testimonial {

    margin: 3em 4em;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.testimonial-tital h2 {
    margin-top: 1rem;
    font-size: 3rem;
    text-transform: uppercase;
    transition: all 1.4s ease;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    font-weight: 300;
    color: #555;


}

.testimonial-tital h2::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #555;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 1s;
}

.testimonial-card {
    margin-top: 5em;
    display: flex;
    align-items: center;

}

.testimonial-wrap .star h3 {
    font-weight: 700;
    font-size: 1.8rem;
    color: orangered;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.803);
}

.msg {
    margin-top: 1rem;
    font-size: 1.6rem;
    color: #555;
    padding: 0 1rem;

}

.testimonial-containter {
    align-items: center;
    text-align: center;
    padding-top: 2em;
    
    width: 100%;

}

.testimonial-wrap {
    box-shadow: 0 3px 2px 1px rgb(32, 31, 31);
    margin: 1rem;
    padding: 2em;
    background: #bafff095;
    border-radius: 8px;
    position: relative;
}

.customer-image {
    align-items: center;
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
}

.customer-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    position: absolute;
    top: -6em;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid white;
    box-shadow: 0 5px 2px 1px black;

}

.customer-name {
    margin-top: 2.7rem;
    color: rgb(0, 0, 0);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* ######################## owner contact ################### */

.owner {

    margin: 0 10em;
    display: flex;
    justify-content: space-between;

}

.owner-part {
    padding: 2em;
    background: black;
    color: white;
}

.details {
    display: flex;
    width: 50%;
}

.image-owner img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 3px solid #23ff52;
}

.owner-detail {
    margin-left: 2em;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.ownerofpalak {
    padding-bottom: 0.3rem;
    font-size: 1.4rem;
    font-weight: 400;
    color: #23ff52;
}

.owner-detail h2 {

    font-family: 300;
    font-size: 2.3rem;
    color: #aaa;
}

.owner-detail h3 {
    font-weight: 200;
    font-size: 2rem;
    color: #555;
}

/* .address{
    width: 30%;
} */
.address h1 {
    color: #555;
    font-size: 1.8rem;
    font-weight: 400;
    padding: 3px;

}

/* ############################## contact ######################## */
.contact {
    position: relative;
    min-height: 75vh;
    padding: 0px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #222;
}

.contact .content {
    max-width: 800px;
    text-align: center;
    padding: 1rem;
    /* box-shadow: inset 0 0 20px #fff; */
}

.contact .content h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 500;

}

.contact .content p {
    color: rgb(144, 144, 144);
    font-size: 1.1em;
    font-weight: 300;

}

.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}

.contact-container .contactinfo {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.contact-container .contactinfo .box {
    position: relative;
    padding: 20px 0;
    display: flex;
    cursor: pointer;
}

.contact-container .contactinfo .box .icon {
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    transition: 0.5s;
}

.contact-container .contactinfo .box:hover .icon {
    background: #16a083;
    color: #fff;
}

.contact-container .contactinfo .box .text h3 {
    font-weight: 500;
    color: #16a083;
    font-size: 2rem;
    margin-left: 2rem;
}

.text p {
    margin-left: 2rem;
    color: rgb(183, 183, 183);
    font-size: 1.5rem;
}

.contact-container .contactinfo .txt {
    color: #fff;
    margin-top: 50px;
    font-weight: 500;
    padding-left: 10px;
    border-left: 50px solid #16a083;
    line-height: 1em;
    font-size: 3.6rem;
}

.sci {
    position: relative;
    display: flex;
    margin: 20px 0;
}

.sci li {
    list-style: none;
}

.sci li a {
    color: #fff;
    font-size: 2em;
    transition: 0.5s;
}

.sci li a:hover {
    color: #16a083;
}

/* .sci .fb{
    color: white;
} */
.contact-container .contactForm {
    position: relative;
    width: 40%;
    background: #fff;
    min-height: 100px;
    padding: 60px;
}

.contact-container .contactForm h2 {
    font-size: 2em;
    color: #333;
    font-weight: 500;
}

.contact-container .contactForm .inputBox {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.contact-container .contactForm .inputBox input,
.contact-container .contactForm .inputBox textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 1.1em;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}

.contact-container .contactForm .inputBox span {
    position: absolute;
    left: 0;
    pointer-events: none;
    padding: 5px 0;
    margin: 10px 0;
    font-size: 1.4rem;
    color: #666;
    transition: 0.5s;
}

.contact-container .contactForm .inputBox input:focus~span,
.contact-container .contactForm .inputBox textarea:focus~span,
.contact-container .contactForm .inputBox input:valid~span,
.contact-container .contactForm .inputBox textarea:valid~span {
    color: #16a082c2;
    font-size: 1.2rem;
    transform: translateY(-20px);
}

.contact-container .contactForm .inputBox input,
.contact-container .contactForm .inputBox textarea {
    font-size: 1.5rem;
    color: #666;
}

.contact-container .contactForm .inputBox input[type="submit"] {
    width: 100px;
    background: #16a083;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 1.1em;
    font-weight: 500;
}

.inputBox input[type="submit"]:hover {
    transition: all 0.4s ease-in-out;
    box-shadow: inset 0 0 20px rgb(28, 2, 37);
}

/* ########## for Resopnsive ############### */

@media (max-width:991px) {
    .contact {
        padding: 50px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-container .contactinfo,
    .contact-container .contactForm {
        width: 100%;
    }

    .contact-container .contactForm {
        padding: 50px 30px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-img img {
        margin-top: 1rem;
    }

    .owner {
        margin: 1em;
    }
    .testimonial-containter{
        margin-top: 2.6rem;
    }
    
}

@media (max-width:800px) {
    .owner {
        flex-direction: column;
        margin: 2em;
    }

    .owner-part {
        margin: 0 0;
    }

    .details {
        width: 100%;
        margin: 3px 0;
        padding-top: 3rem;

    }

    .address {
        padding-top: 1rem;
        margin: auto;
        width: 100%;
    }

    .contact {
        padding: 10px 18px;
    }

    .contact-container .contactForm {
        padding: 20px;
    }

    .contact-container .contactinfo .txt {
        font-size: 2.5rem;
    }

    ul li {

        margin: 0 0.2rem;
    }

    .about-text {
        padding: 3px;
    }

    .about-us h1 {
        margin-left: 0;
    }

    .testimonial-tital h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        flex-direction: column;
    }

    .card {
        flex-direction: column;
    }

    .para-text {
        padding: 0 1rem;
    }

}

@media (max-width:420px) {
    .header-site h1 {
        font-size: 4rem;
    }

    .header-site h2 {
        font-size: 1.7rem;
    }

    .about-us h1 {
        font-size: 2em;
    }

    .services h1 {
        font-size: 2em;
    }

    .testimonial-tital h2 {
        font-size: 1.9em;
    }

    .owner-detail h2 {
        font-size: 1.4rem;
    }

    .owner-detail h3 {
        font-size: 1.3rem;
    }

    .para-text p {
        font-size: 1.6rem;
    }

    .head-text h3 {
        color: #555;
        font-weight: 400;
    }

    .para-text ul {
        padding: 0 2rem;
    }

    .card {
        color: #16a083;
        font-weight: 400;
        margin-top: 2em;
    }

    .testimonial-wrap {
        padding: 2em 0;
    }

    .footer-web h3 {
        font-size: 1.5rem;
    }
    .navbar{
        position: fixed;
    }
    .links ul li a{
        font-size: 2rem;
        font-weight: 400;
        color: #222;
    }
    .testimonial{
      
        padding: 0;
        margin: 3rem 0;
        
    }




    
    .nav-container {
        display: flex;
        position: relative;
        background: #fff;
        width: 100%;
        padding: 2rem;
    
    }
    .navbar .nav-container .items {
        position: fixed;
        left: 0;
        top: 63px;
       background: #fff;
       opacity: 1;
        width: 80%;
        padding-left: 3rem;
        height: 100vh;
       display:  none;
       transform: translateX(-110%);
       transition: transform 0.4s ease-in-out;
    }
    .dev1{
        display: block;
        margin-top: 4rem;
        
    }
    .dev1 h3{
        font-size: 2rem;
        font-weight: 400;
        padding: 1.6rem 0;
    }
    .dev1 p{
        font-size: 1.6rem;
        padding: 0.3rem;
        
    }
    .items li{
        padding-top: 3rem;
        
    }
    .items li a{
        font-size: 2.4rem;
        
    }
    .dev-line{
        display: inline-block;
        border-top: 2px solid rgb(156, 156, 156);
    }
    .navbar .nav-container input[type="checkbox"]{
        position: relative;
        width: 32px;
        height: 40px;
        z-index: 99;
        opacity: 0;
    }

    .navbar .nav-container input[type="checkbox"],
    .humburger-lines {
        display: block;
        
    }
     .nav-container input[type="checkbox"]:checked ~ .items{
        display: block;
        transform: translateX(0%);
        
    }
        

     .navbar .humburger-lines{
        width: 40px;
        height: 32px;
        position: absolute;
        /* background: #16a083; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .humburger-lines .line{
        height: 5px;
        width: 100%;
        display: block;
        background: #000;
        border-radius: 10px;
        
    }
    .humburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }
    .humburger-lines .line2{
       
        transition: transform 0.4s ease-in-out;
    }
    .humburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    .nav-container input[type="checkbox"]:checked ~ .humburger-lines .line1{
        transform: rotate(45deg);
    }
    .nav-container input[type="checkbox"]:checked ~ .humburger-lines .line2{
        transform: scaleY(0);
        
    }
    .nav-container input[type="checkbox"]:checked ~ .humburger-lines .line3{
        transform: rotate(-45deg);
    }



}

/* ############# humburger ############## */


/* ############################ footer ########################### */

.footer-web {
    background: black;
    color: #aaa;
    padding: 2rem;
    margin-top: -2em;
    text-align: center;
}

.footer-web h3 {
    font-size: 2rem;
    font-weight: 300;
}