/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400..900&family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Annie+Use+Your+Telescope&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
    font-family: var(--poppins-font);
}

/* Variables */

:root{
    --main-color: #7F503C;
    --second-color: #df582e;
    --text-color: #060413;
    --text-main-color: #4C7031;
    /* --btn-color: #E78917; */
    --btn-color: #FDB046;
    --nav-color: #984C2C;
    --container-color: #f8e4be;
    --bg-color: #f9f6f2;
    /* --bg-color-product: #F5E1DA; */
    --bg-color-product: #FFF1B8;
    --text-alter-color: #beb7b5;
    --text-search-color: #928d8c;
    --poppins-font: "Poppins",  sans-serif ;
    --font-family-2: "Playfair Display", serif ;
    --font-family-3: "Amatic Sc", sans-serif;
    --font-family-4: "Annie Use Your Telescope", cursive;
}

body{
    color: var(--text-color);
    background: var(--bg-color);
    background-image: url('../images/doodle.png') ;
}

/* Custom Scroll Bar */
html::-webkit-scrollbar{
    width: 1rem;

}

html::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 1rem;
}

a{
    text-decoration: none;
}

img{
    width: 100%;
}

section{
    padding: 3rem 0 2rem;
}

.container{
    max-width: 1060px;
    margin: auto;
    width: 100%;
}

header {
    position: fixed;
    width: 100%;
    top: 20px;
    left: 0;
    z-index: 100;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--nav-color);
    padding: 17px 20px;
    border-radius: 2rem;
}

/* .logo{
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--container-color);
} */

.logo {
    display: flex;
    align-items: center;
}

.logo img{
    background-color: transparent;
    position: absolute;
    z-index: 100;
    /* top: 10px; */
    top: -22px;
    width: 140px;
    height: 140px;
    left: 40px;
    border: 4px solid var(--bg-color);
    border-radius: 50%;
    box-shadow: 0 4px 16px hsla(355, 25%, 15%, 0.1);
}

.navbar{
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
}

.nav-link{
    font-size: 0.88rem;
    color: var(--bg-color);
    font-family: var(--poppins-font);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-link:hover{
    color: var(--btn-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-icons{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.nav-icons .bx{
    color: var(--bg-color);
    font-size: 20px;
}

/* Menu Icon */
.menu-icon{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
    cursor: pointer;
    z-index: 200;
    transform: 0.3s;
}

.menu-icon div{
    display: block;
    background: var(--bg-color);
    height: 2px;
    width: 23px;
    transition: 0.3s;
}

.move .line1{
    transform: rotate(-45deg) translate(-5px, 5px);
}

.move .line2{
    opacity: 0;
}

.move .line3{
    transform: rotate(45deg) translate(-5px, -5px);
}

.home{
    min-height: 650px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
}

.home-text h1{
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-family-3);
    color: var(--text-main-color);
}

.home-text p{
    max-width: 300px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--poppins-font);
    margin: 1rem 0 1.5rem;
    color: var(--main-color);
}

.home-img{
    max-width: 560px;
    width: 100%;
    margin-top: 10%;
}

.btn{
    max-width: 160px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border-radius: 2rem;
    background: var(--btn-color);
}

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

.btn span{
    font-family: var(--poppins-font);
    color: var(--bg-color);
    text-transform: capitalize;
}

.btn .bx{
    font-size: 20px;
    background: var(--second-color);
    color: var(--bg-color);
    padding: 5px;
    border-radius: 50%;
    /* transform: rotate(60deg); */
}

.heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.heading h2{
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-family-3);
    color: var(--text-main-color);
}

.service-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 160px));
    justify-content: space-between;
    gap: 1rem;
}

.service-box{
    background: var(--main-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    padding: 35px 20px;
    border-radius: 2rem;
}

.service-box img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.service-box p{
    color: var(--bg-color);
    font-family: var(--font-family-4);
    font-size: 1.2rem;
}

.heading p{
    max-width: 550px;
    width: 100%;
    font-size: 1rem;
    font-family: var(--poppins-font);
    color: var(--main-color);
    margin-top: 1rem;
}

.products-heading{
    margin-top: 3rem;
}

.product-content{
    display: grid;
    grid-template-columns: repeat(3, 250px);
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-color-product);
    border-radius: 1.5rem;
    padding: 40px 60px;
}

.product-box{
    background: #fff8f7;
    padding: 20px;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.product-box img{
    margin-top: 1.5rem;
    width: 140px;
    height: 140px;
    border-radius: 1.5rem;
    object-fit: cover;
}

.product-box .heart-icon{
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px;
    background: #fff;
    color: var(--second-color);
    border-radius: 50%;
}

.product-box p{
    color: var(--bg-color);
    font-size: 0.7rem;
    font-weight: 500;
    font-family: var(--poppins-font);
    padding: 2px 7px;
    /* border: 1px solid var(--text-alter-color); */
    border-radius: 1rem;
    background: var(--btn-color);
    margin: 1rem 0 0.5rem;
}

.product-box h2{
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--poppins-font);
}

.product-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    width: 100%;
}

.product-info span{
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--poppins-font);
}

.product-info .bx{
    padding: 8px;
    background: var(--second-color);
    color: var(--bg-color);
    border-radius: 50%;
    cursor: pointer;
}

.product-info .bx:hover{
    background: var(--btn-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.about{
    margin-top: 6rem;
    min-height: 650px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
}

.about-content{
    display: grid;
    grid-template-columns: repeat(3, 250px);
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-color-product);
    border-radius: 1.5rem;
    /* padding: 40px 60px; */
}

.about-text h1{
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-family-3);
    color: var(--text-main-color);
}

.about-text p{
    max-width: 100%;
    font-size: 1rem;
    font-family: var(--poppins-font);
    margin: 1rem 0 1.5rem;
    color: var(--main-color);
}

.about-img{
    max-width: 560px;
    width: 100%;
}

.team-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    gap: 1.5rem;
}

.team-box img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.team-box h2{
    font-size: 1rem;
    font-weight: 500;
    color: var(--main-color);
    font-family: var(--poppins-font);
    margin-top: 1rem;
}

.team-box span{
    /* font-size: 1rem;
    color: var(--text-alter-color);
    font-family: var(--poppins-font);
    border-radius: 1rem;
    background: var(--btn-color); */

    color: var(--bg-color);
    font-size: 0.8rem;
    /* font-weight: 500; */
    font-family: var(--poppins-font);
    padding: 2px 7px;
    border-radius: 1rem;
    background: var(--btn-color);
    margin: 2rem 0 0.5rem;
}

.team-box p{
    font-size: 1rem;
    font-family: var(--poppins-font);
    color: var(--main-color);
    margin-top: 10px;
}

.review{
    max-width: 550px;
    margin: auto;
    width: 100%;
}

.review-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem !important;
}

.review-box img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 7px solid #fff8f7;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 4px 16px hsla(355, 25%, 15%, 0.1);
}

.review-box h2{
    font-size: 1rem;
    color: var(--main-color);
    font-family: var(--poppins-font);
    font-weight: 500;
    margin: 1rem 0;
}

.review-box span{
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--main-color);
    font-family: var(--font-family-2);
}

.review-box p{
    font-size: 0.9rem;
    font-family: var(--poppins-font);
    columns: var(--text-alter-color);
    margin-top: 1rem;
}

.swiper-pagination-bullet{
    width: 12px !important;
    height: 12px !important;
    border-radius: 0.2rem !important;
    background: var(--main-color) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active{
    width: 1.5rem !important;
    background: var(--second-color) !important;
}

.book{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--bg-color);
    padding: 40px 20px;
    position: relative;
}

.book-img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    z-index: -1;
}

.book-overlay{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.8);
    border-radius: 1rem;
    z-index: -1;
}

.book-data{
    margin-top: 4rem;
}

.book-data h2{
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-family-4);
    text-align: center;
}

.book-data p{
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
    font-family: var(--poppins-font);
}

.book-data form{
    display: flex;
    align-items: center;
    gap: 10px;
    /* background: var(--bg-color); */
    border-radius: 2rem;
    padding: 2px 10px;
    margin: 1rem 0;
}

.book-data svg{
    color: var(--bg-color);
}

.input-box{
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.input-box .bx{
    color: var(--text-color);
}

.input-box input{
    width: 100%;
    border: none;
    outline: none;
    padding: 15px 0;
    background: transparent;
    font-family: var(--poppins-font);
}

.book-btn{
    text-align: center;
    font-family: var(--poppins-font);
    font-size: 1rem;
    padding: 10px 14px;
    background: var(--btn-color);
    color: var(--bg-color);
    border-radius: 2.5rem;
    margin: auto;
}

.book-btn:hover{
    background: var(--second-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);

}

/*  */

.client-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 180px));
    justify-content: space-between;
    gap: 1rem;
}

.client-box{
    /* background: var(--main-color); */
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    padding: 10px 10px;
    border-radius: 2rem;
}

.client-box img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.client-box p{
    color: var(--bg-color);
    font-family: var(--font-family-4);
    font-size: 1.2rem;
}


.search-data{
    margin-top: 1rem;
}

.search-data form{
    display: flex;
    /* align-items: center; */
    gap: 10px;
    /* padding: 2px 10px; */
    margin: 1rem 0;
}

.search-box{
    display: flex;
    align-items: center;
    column-gap: 5px;
    background: var(--bg-color-product);
    border-radius: 2rem;
    padding: 2px 10px;
    width: 300px;
}

.search-box .bx{
    color: var(--text-color);
}

.search-box select{
    width: 100%;
    border: none;
    outline: none;
    padding: 15px 0;
    background: var(--bg-color-product);
    font-family: var(--poppins-font);
    font-size: 1rem;
    color: var(--text-search-color);
    border-radius: 2rem;
}

.search-box select option{
    width: 100%;
    border: none;
    outline: none;
    padding: 15px 0;
    background: transparent;
    font-family: var(--poppins-font);
}

.search-btn{
    text-align: center;
    font-family: var(--poppins-font);
    font-size: 1rem;
    padding: 2px 30px;
    background: var(--btn-color);
    color: var(--bg-color);
    border-radius: 2rem;
    border: none;
}

.search-btn:hover{
    background: var(--second-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);

}

.how-btn{
    text-align: center;
    font-family: var(--poppins-font);
    font-size: 1rem;
    padding: 15px 30px;
    background: var(--text-main-color);
    color: var(--bg-color);
    border-radius: 2rem;
    border: none;
}

.how-btn:hover{
    background: var(--second-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);

}

.footer{
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem !important;
}

.footer .logo-footer{
    /* color: var(--main-color);
    margin-bottom: 1rem; */
    display: flex;
    align-items: center;
}

.footer .logo-footer img{
    /* top: 10px; */
    margin-bottom: 1rem;
    height: 100px;

}

.footer-box{
    display: flex;
    flex-direction: column;
}

.footer-box h3{
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-3);
}

.footer-box p{
    color: var(--main-color);
    margin-bottom: 10px;
    font-weight: 400;
    font-family: var(--poppins-font);
}

.footer-box a{
    color: var(--main-color);
    /* margin-bottom: 10px; */
    font-weight: 400;
}

.footer-box a:hover{
    color: var(--second-color)

}

.footer-box .bx{
    font-size: 20px;
}

.social{
    display: flex;
    align-items: center;
    /* margin-top: 1rem; */
}

.social a{
    font-size: 24px;
    color: var(--main-color);
    margin-right: 1rem;
}

.social a:hover{
    color: var(--second-color);
}

.social .bx{
    padding: 8px;
    background: var(--second-color);
    color: var(--bg-color);
    border-radius: 50%;
    cursor: pointer;
}

.copyright{
    font-family: var(--poppins-font);
    padding: 30px;
    color: var(--main-color);
    text-align: center;
}

/* Whatapp Button */

.wa-float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:25%;
    /* bottom:20px; */
	/* right:20px; */
    right:10px;
	background-color:#25d366;
	color:#FFF;
	/* border-radius:50px; */
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
    /* margin-right: -10px; */
}

.my-wa{
	margin-top:10px;
}

/* Responsive */
@media (max-width: 1060px){
    .container{
        width: 90%;
        margin: 0 auto;
    }

    .home-text h1 {
        font-size: 3rem;
    }

    .about-text h1 {
        font-size: 3rem;
    }

    .product-content{
        grid-template-columns: repeat(3, 1fr);
        padding: 40px;
    }
}

@media (max-width: 875px){
    section{
        padding: 2rem 0;
    }

    .home-text h1{
        font-size: 2.5rem;;
    }

    .about-text h1{
        font-size: 2.5rem;;
    }
}

@media (max-width: 770px){
    .home{
        min-height: 500px;
        grid-template-columns: 1fr;
        margin-top: 4.5rem !important;
    }

    .home-text{
        order: 1;
    }

    .about{
        min-height: 500px;
        grid-template-columns: 1fr;
        margin-top: 4.5rem !important;
    }

    .about-text{
        order: 1;
    }

    .heading h2,
    .book-date h2{
        font-size: 1.6rem;
    }

    .product-content{
        grid-template-columns: repeat(2, 1fr);
    }

    .book{
        padding: 20px;
    }

    .book-data{
        margin-top: 3rem;
        max-width: 350px;
        width: 100%;
    }

    .book-data form{
        display: grid;
        padding: 15px;
        border-radius: 10px;
    }

    .input-box{
        border-bottom: 1px solid var(--text-alter-color);
    }

    .footer{
        grid-template-columns: repeat(4, auto);
    }

    .footer-box p{
        font-size: 15px;
    }
}

@media (max-width: 700px){
    header{
        top: 15px;
    }

    .nav{
        padding: 14px 20px;
    }

    .logo{
        font-size: 1.25rem;
    }

    .menu-icon{
        display: flex;
    }

    .navbar{
        position: absolute;
        top: 110%;
        left: 50%;
        transform: translate(-50%);
        width: 90vw;
        background: var(--text-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        border-radius: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1)
    }

    .open-menu{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .nav-link{
        display: block;
        margin: 1rem 0;
    }

    .footer{
        grid-template-columns: repeat(4, auto);
    }

    .footer-box p{
        font-size: 13px;
    }

}

@media (max-width: 500px){
    .heading h2 br{
        display: contents;
    }

    .service-content{
        justify-content: center;
    }

    .client-content{
        justify-content: center;
    }

    .product-content{
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .product-box img {
        margin-top: 1rem;
        width: 140px;
        height: 140px;
    }

    .logo img{
        width: 130px;
        height: 130px;
    }

    .footer{
        grid-template-columns: 1fr;
    }

    .footer .logo-footer img{
        height: 100%;
    }
}

@media (max-width: 380px){
    .home-text h1{
        font-size: 2rem;
    }

    .about-text h1{
        font-size: 2rem;
    }

    .service-content{
        grid-template-columns: repeat(auto-fit, minmax(auto, 140px));
    }

    .service-box img{
        width: 80px;
        height: 80px;
    }

    .client-content{
        grid-template-columns: repeat(auto-fit, minmax(auto, 140px));
    }

    .client-box img{
        width: 80px;
        height: 80px;
    }

    p{
        font-size: 0.9rem;
    }

    .heading h2,
    .book-data h2{
        font-size: 1.4rem;
    }

    .logo img{
        width: 120px;
        height: 120px;
        top: -22px;
    }

    .footer .logo-footer img{
        height: 100%;
    }

}
