@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Foldit:wght@600&family=Montserrat:ital,wght@0,700;1,100&family=Poppins:ital,wght@0,100;0,300;0,500;0,600;0,700;1,300;1,400&display=swap');
*,
*::after,
*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;

}
html{
    font-size: 62.5%;
}
body{
    font-family: 'poppins',sans-serif;
}

/* ############- utility class -############# */
.container{
    max-width: 1200px;
    width: 90%;
    margin: auto;
}
/* ############ NAV-BAR STYLING   ########## */

/* -------------FOR DESKTOP MODE-------------- */
.navbar input[type='checkbox'],      /* when we work on styling of desktop so mobile disply should be none */
.navbar .hm-line
{
    display: none;
}

/* ----------navbar-styling-------- */
.navbar{
    /* border: 2px solid black; */
    width: 100%;
    background: #fff;
    color: #000;
    position: fixed;
    box-shadow: 0px 5px 10px 0px ;
    opacity: .85;
    z-index: 9999;
}

/* ----------navbar items styling -------- */
.navbar-container{
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}.menu-items{
    display: flex;
}.menu-items li{
    font-size: 1.8rem;
    margin-left: 1.5em;
    list-style: none;
}.navbar a{
    color: black;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}.navbar a::after{
    content: '';
    width: 0;
    height: 3px;
    background:black;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: .3s;
}
.navbar a:hover::after{
    width: 100%;
}

/* ############---Home styling/showcase---################ */
#home{
    height: 60vh;
    background: url(image/about\ background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}.home-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 100%;
    padding-bottom: 1em;
}.btn{
    display: inline-block;
    padding: .5em 1.5em;
    text-decoration: none;
    border-radius: 45%;
    cursor: pointer;
    outline: none;
    font-size: 2rem;
    font-weight: 700;
    margin-top: .5em;       
}.primary-btn{
    color: #fff;
    background: #16a083;
}.home-container h1{
    text-align: center;
    font-size: 5rem;
}.home-container p{
    font-size: 2rem;
    text-align: center;
}

/* #########---About us ------############ */

#about{
    background: #f5f5f6;
    margin-top: 1em;
}
.about-container{
    /* border: 2px solid yellow; */
    display: flex;
    justify-content:space-around;
    height: 35vh;
    width: 100%;
}
.about-container .about-content{
    /* border: 5px solid red; */
    width: 45%;
    margin: auto;
    animation-name:swipe-right;
    transform: translatex(-150%);
    animation: swipe-right 2s forwards ease-in-out;

    
    
}@keyframes swipe-right{
    100%{
        transform: translate(0);
    }

}

.about-content h3{
    margin-bottom: .5em;
    font-size: 2rem;
    font-weight: 600;

}.about-content h1{
    font-size: 3rem;
    font-weight: 700;
    word-spacing: 0em;
    margin-bottom: .5em;
}.about-content p{
    font-size: 1.5rem;
    font-weight: 400;
}

.about-container .about-img{
    /* border: 5px solid red; */
    width: 40%;
    height: 100%;
    transform: translateX(150%);
    animation: swipe-left 2s forwards ease-in-out;

}@keyframes swipe-left{
    100%{
        transform: translate(0);
    }
}

.about-container .about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    

}

/* <!-- #################-categories-########### --> */
#categories{
    background: rgb(226,226,226);
    margin-top: 2em;
    padding: 2em;
}

#categories h1{
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
}.categories-container{
    /* border: 5px solid red; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    height: 50vh;

 }.df-type{
    /* border:3px  solid green; */
    width: 19%;
    height: 48%;
}.df-type .image-container{
    /* border: 2px solid yellow; */
    width: 100%;
    height: 100%;
    position: relative;
}.image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}.image-content{
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%,-50%);
    opacity: 0;
    z-index: 2;
    text-align: center;
    /* transition: all .3s ease-in-out ; */

}.image-content h3{
    color: #f5f5f6;
    font-size: 3rem;

}.image-content a{
    font-size: 0.5 rem;
    padding: .2em .2em;
    border-radius: 45%;
}.image-container::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.871);
    opacity: 0;
    z-index: 1;

    transform: scaleY(0);
    transform-origin:100% 100% ;
    transition: all .3s ease-in-out ;

}.image-container:hover::after{
    opacity: 1;
    transform: scaleY(1);

}.image-container:hover .image-content{
    opacity: 1;
    top: 40%;
}




/* <!-- #######################--price-------############### --> */

#price{
    margin-top: 2em;
    background: #f5f5f6;
    padding: 2em;
}
.price-container{
    /* border: 6px solid red; */
    display: flex;
    flex-wrap: wrap;
    height: 90vh;
    justify-content: space-around;
}
.price-itme{
    /* border: 3px solid yellow ; */
    display: flex;
    flex-wrap: wrap;
    width: 40%;
    height: 20%;
    

}.price-img{
    /* border: 3px solid green; */
    width: 50%;
    height: 100%;
}.price-content{
    /* border: 3px solid blue; */
    width: 50%;
    height: 100%;
    font-size: 1.2rem;
    margin: auto;
}.price-img img{
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}.price-content h3{
    font-size: 3rem;
    font-weight: 600;
}.price-content p{
font-size: 1.6rem;
font-weight: 500;
}
#price h2{
    text-align: center;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1em;

}

/* <!-- #######################--contact-------------contact############### --> */
#contact{
    margin-top: 2em;
    padding: 5rem 0;
    background: rgb(226,226,226);
    /* border: 2px solid black; */
}
.contact-container{
    /* border: 5px solid red; */
    display: flex;
    background: #fff;

}.contact-container .contact-img{
    /* border: 3px solid yellow; */
    width: 50%;
}.contact-img img{
    display: block;
    height: 400px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.contact-container .contact-form{
    /* border: 3px solid yellow; */
    width: 50%;
    padding-left: 1em;


}.contact-form h2{
    font-size: 4rem;
    font-weight: 600;
    margin-top: 1em;
    margin-bottom: .5em;
}.contact-form input{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid#ddd;
    padding: 1rem o;
    box-shadow: none;
    outline: none;
    margin-bottom: 1rem;
    color: #444;
    font-weight: 500;

}.contact-form textarea{
    display: block;
    width: 100%;
    padding: 1rem 0;

}


/* ##################footer########## */
    
#footer h2{
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    background: rgb(65,65,65);
    padding: 2.5rem;

}



/* ###################### Media quaries ########## */
@media(max-width:768px){
    .navbar{
        opacity: .95;
    }
    .navbar input[type='checkbox'],
    .navbar .hm-line{
    display: block;
    }
    .navbar-container{
        display: block;
        position: relative;
        height: 64px;
    }.navbar-container input[type='checkbox']{
        position: absolute;
        display: block;
        height: 32px;
        width: 40px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
    }.navbar-container .hm-line{
        display: block;
        height: 32px;
        width: 40px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }.navbar-container .hm-line .line{
        display: block;
        height: 4px;
        width: 100%;
        background: #333;
    }.navbar-container .hm-line .line1{
        transform-origin: 0% 0%;
        transition: transform .4s ease-in-out;
    }.navbar-container .hm-line .line2{
        /* transform-origin: 0% 0%; */
        transition: transform .4s ease-in-out;
    }.navbar-container .hm-line .line3{
        transform-origin: 0% 0%;
        transition: transform .4s ease-in-out;
    }.navbar .menu-items{
        padding-top: 100px;
        background: #fff;
        height: 100vh;
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 50px ;
        transition: transform .5px ease-in-out;

    }.menu-items li{
        margin-bottom: 3rem;
        font-size: 2rem;
        font-weight: 500;

    }.logo{
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 3rem;

    }.navbar-container input[type='checkbox']:checked~.menu-items{
        transform: translate(0);
    }.navbar-container input[type='checkbox']:checked ~ .hm-line .line1{
        transform: rotate(45deg);
    }.navbar-container input[type='checkbox']:checked ~ .hm-line .line2{
        transform: scaleY(0)
    }.navbar-container input[type='checkbox']:checked ~ .hm-line .line3{
        transform: rotate(-45deg);
    }
    



    /* ############---Home styling/showcase---################ */
    #home{
        height: 40vh;
        background: url(image/about\ background.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }.btn{
        font-size: 1.5rem;
        font-weight: 500;
        margin-top: .3em;       

    }.home-container h1{
        font-size: 2rem;
    }.home-container p{
        font-size: 1.5rem;
    }




    /* #########---About us ------############ */

    #about{
    background: #f5f5f6;
    margin-top: 1em;
    padding-bottom: 1em;
    }
    .about-container{
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 70vh;
    }
    .about-container .about-content{
    width: 100%;
    height: 50%;
    }.about-container h1{
        font-size: 2rem;
    }
    .about-container .about-img{
    width: 100%;
    height: 50%;
    }
    /* <!-- #################-categories-########### --> */

    .categories-container{
    height: 125vh;
    }
    .df-type{
    width:49% ;
    height: 19%;
    }
    .image-content h3{
    color: #f5f5f6;
    font-size: 2rem;
    }
    .image-content a{
    font-size: 0.3 rem;
    padding: .2em .2em;
    border-radius: 40%;
    }



    /* ###################price############ */

    .price-container{
        /* border: 5px solid red; */
        height: 200vh;
    }
    .price-itme{
        width: 100%;
        height: 9%;
        margin-bottom: 1em;
        
    
    }.price-img{
        width: 40%;
    }.price-content{
        /* border: 3px solid blue; */
        width: 60%;
        height: 100%;
        /* font-size: 1rem; */
    }.price-content h3{
        font-size: 2rem;
        font-weight: 600;
        margin-left: 1em;
    }.price-content p{
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: 1em;
    }


    /* <!-- #######################--contact-------------contact############### --> */
    #contact{
    padding: 3rem ;
    }
    .contact-container{
    /* border: 5px solid red; */
    height: 85vh;
    display: flex;
    flex-direction: column;

    }.contact-container .contact-img{
    /* border: 3px solid yellow; */
    width: 100%;
    height: 35%;
    }.contact-img img{
    height: 100%;
    width: 100%;
    }
    .contact-container .contact-form{
    /* border: 3px solid yellow; */
    width: 100%;
    height: 65%;
    }
    .contact-form h2{
    font-size: 3rem;
    margin-top: .5em;
    }

}
@media(max-width:380px){
    .about-container h1
    {
    font-size: 1.7rem;
    }
    .about-container h3
    {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: .5em;
    margin-bottom: 0;

    }
    .about-container p
    {
    font-size: 1rem;
    }
    

}






