@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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&family=Rajdhani:wght@300;400;500;600;700&display=swap');
*{
     font-family: 'poppins' ,sans-serif;
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     list-style: none;
     text-decoration: none;
     scroll-padding-top: 2rem;
     scroll-behavior: smooth;
}
  :root{
     --green-color:#3cb815;
     --light-green-color:#c0eb7b;
  --orange-color:#ff7e00;
     --light-orange-color:#f75f1d;
     --text-color:#1a2428;
     --bg-color:#fff;
}
/* Custom scroll bar */
::-webkit-scrollbar {
    width: 0.5rem;
    background: var(--light-green-color);
}
::-webkit-slider-thumb{
    width: 0.5rem;
    background:  var(--green-color);
    border-radius: 5rem;
}
section{
     padding: 4.5rem 1.5rem ;
}

.img{
     width: 100%;
}
header{
     position: fixed;
     width: 100%;
     top: 0;
     right: 0;
     z-index: 1000;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: var(--bg-color);
     box-shadow: 0px 8px 11px rgb(12 55 54 / 15%);
     padding: 20px 100px;
     transition: 0.5s;
}
.profile{
     display: flex;
     align-items: center;
     column-gap: 0.5rem;
     cursor: pointer;
}
.profile img{
     width: 40px;
     height: 40px;
     object-fit: cover;
     object-position: center;
     border-radius: 50%;
}
.profile span{
     font-size: 13px;
     font-weight: 500;
}
.logo{
     display: flex;
     align-items: center;
     font-size: 1.1rem;
     font-weight: 600;
     color: var(--text-color);
     column-gap: 0.5rem;
}
.logo .bx{
     font-size: 24px;
     color: var(--orange-color);
}
.navbar{
     display: flex;
     column-gap: 0.5rem;
}
.navbar a{
     font-size: 1rem;
     font-weight: 500;
     color: var(--text-color);
     padding: 0.5rem 1rem;
}
.navbar a:hover , .navbar a.active{
     background:var(--green-color);
     border-radius: 5rem;
     color: var(--bg-color);
     transition: 0.5;
}
#menu-icon{
     font-size: 24px;
     cursor: pointer;
     z-index: 10001;
     display: none;
}
.container{
     position: relative;
     width: 100%;
     min-height: 640px;
     display: flex;
     align-items: center;
     background: url(img/background.png);
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center;
}
.container img{
     width: 400px;
     position: absolute;
     bottom: -500px;
     right: 200px;
}

 .container .home-text{
     padding: 0 150px;
     position: relative;
     top: 250px;

}
.home-text span{
     font-weight: 400;
     text-transform: uppercase;
     color: var(--green-color);
}
 .home-text h1{
     font-size: 2.4rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }
 .btn{
     padding: 0.6rem;
     background-color: var(--green-color);
     color: var(--bg-color);
     font-weight: 400;
     border-radius: 5rem;
     align-items: center;
     justify-content: space-between;
     column-gap: 00.5rem;
     max-width: 160px;
 }
 .btn .bx{
     padding: 5px;
     position: relative;
     top: 2px;
     background-color: var(--bg-color);
     color: var(--text-color);
     border-radius: 1rem;
     font-size: 18px;
     margin: auto;
 }
 .btn:hover{
     background: var(--light-orange-color);
     transition:  0.2s ease;
 } 

 .swiper-button-next{
     background: url(img/right-arrow.png);
     background-repeat: no-repeat;
     background-size: 100% auto;
     background-position: center;
     margin-right: 20px;
 }
 .swiper-button-next::after{
     display: none;
 }
 .swiper-button-prev{
     background: url(img/left-arrow.png);
     background-repeat: no-repeat;
     background-size: 100% auto;
     background-position: center;
     margin-left: 20px;
 }
 .swiper-button-prev::after{
     display: none;
 }

 .heading{
     display: flex;
     justify-content: space-between;
     align-items: center;
 }
 .heading h1{
     font-size: 1.6rem;
     font-weight: 600;

 }
 .heading span{
     color: var(--green-color);
 }
 .Categoreies{
     max-width: 986px;
     margin-left: auto;
     margin-right: auto;
 }

 .Categoreies-container{
     display: grid;
      grid-template-columns: repeat( auto-fit,minmax(100px,auto));
      gap: 1rem;
      margin-top: 2rem;
 }
 .Categoreies-container .box{
     position: relative;
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 20px;
     border-radius: 0.5rem;
 }
 .Categoreies-container .box img{
     width: 100%;
     height: 100px;
     object-fit: contain;
     object-position: center;
 }

 .Categoreies-container .box h2{
     font-size: 1rem;
     font-weight: 600;
 }
 .Categoreies-container .box span{
     font-size: 0.8rem;
     font-weight: 400;
     margin-bottom: 1rem;
 }

 .Categoreies-container .box .bx{
     padding: 10px;
     background: var(--green-color);
     color: var(--bg-color);
     border-radius: 5rem;
     margin-top: 2rem;
     position: absolute;
     bottom: -8px;
     display: none;
 }

 .Categoreies-container .box .bx:hover{
     background-color: var(--light-orange-color);
     transition: 0.2s all linear;
 }
 .Categoreies-container .box:hover .bx{
     display: block;
     transition: 0.2s all linear;
 }
 .box1{
     background:#fef4ea ;
 }
 .box2{
     background:#e9f4e3 ;
 }
 .box3{
     background:#faeaea;
 }
 .box4{
     background: #eeeef9;
 }
 .box5{
     background: #f7f6d7 ;
 }

 .Products{
     max-width: 968px;
     margin-left: auto;
     margin-right: auto;
 }
.Products-container{
     display: grid;
     grid-template-columns: repeat( auto-fit,minmax(260px,auto));
     gap: 1.5rem;
     margin-top: 2rem;
}

.Products-container .box{
     padding: 20px;
     box-shadow: 1px 2px 11px 4px rgb(14 55 54 /15%);
     border-radius: 0.5rem;
     position: relative;
}
.Products-container .box img{
     width: 100%;
     height: 200px;
     object-fit: contain;
     object-position: center;
}
.Products-container .box span{
    font-weight: 500;
    font-size: 13px;
}
.Products-container .box .h2{
    font-size: 1.2rem;
    font-weight: 600;
}
.Products-container .box .price{
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--light-orange-color);
}
.Products-container .box .price span{
    color: var(--text-color);
}
.Products-container .box  .bx-cart-alt{
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px;
    color: var(--bg-color);
    background: var(--green-color);
    font-size: 20px;
    border-radius: 0.5rem 0 0.5rem 0; 
}
.Products-container .box  .bx-cart-alt:hover{
    background: var(--orange-color);
    transition:0.2s all linear ;
}
.Products-container .box  .bx-heart{
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 20px;
    color: var(--light-orange-color);
}
.Products-container .box  .discount{
    position: absolute;
    top: 1rem;
    left: 0;
    background-color: var(--light-orange-color);
    color: var(--bg-color);
    padding: 4px 18px;
    clip-path: polygon(25% 25%, 75% 25%, 65.75% 50%, 75% 75%, 25% 75%);
}

.about{
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat( auto-fit,minmax(21rem,auto));
    align-items: center;
    gap: 1.5rem;
}

.about-text span{
    font-weight: 600;
    text-transform: uppercase;
    color: var(--green-color);

}
.about-text p{
    margin: 0.5rem 0 1rem;
}

.Customers{
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
}
.Customers h2{
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
}
.Customers-containers{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,auto));
    gap: 1.5rem;
    margin-top: 2rem;
    
}
.Customers-containers .box{
    padding: 20px;
    box-shadow: 1px 2px 11px 4px rgb(12 55 54 / 15%);
    border-radius: 0.5rem;
    border-bottom: 7px solid var(--green-color);
}

.Customers-containers .box:hover{
    transform: translate(10px);
    transition: 0.2s all linear;

}
.Customers-containers .box .bx{
    font-size: 24px;
    color: var(--green-color);
}
.Customers-containers .box .stars .bx{
    font-size: 1rem;
    color: var(--light-orange-color);
}
.Customers-containers .box p{
    font-size: 0.938rem;
}
.review-profile{
    display: flex;
    align-items: center;
    margin-top: 1rem;
    column-gap: 0.5rem;
}
.review-profile img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.review-profile h3{
    font-size: 1rem;
    font-weight: 600;
}

.footer{
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat( auto-fit,minmax(200px,auto));
    gap: 1.5rem;
    margin-top: 2rem;
    background: #fef4ea;
    border-radius: 0.5rem;
    padding: 20px;
} 
.footer-box{
    display: flex;
    flex-direction: column;
}
.footer-box p{
    font-size: 0.938rem;
    margin:  0.5rem 0 1rem;
}

.social{
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}
.social .bx{
    padding: 10px;
    background:var(--bg-color);
    color: var(--green-color);
    border-radius: 5rem;
    font-size: 20px;
}
.social .bx:hover{
    background: var(--green-color);
    color: var(--bg-color);
    transition: 0.2s all linear;
}
.footer-box h2{
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-box a{
    color: #868a92;
    margin-bottom: 1rem;
}
.footer-box a:hover{
    color: var(--light-orange-color);
}
.footer-box form{
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    padding: 10px;
    border-bottom: 1px solid var(--text-color);
}
.footer-box form input{
    background: transparent;
    border: none;
    outline: none;
}
.footer-box form .bx{
    font-size: 20px;
    color: var(--light-orange-color);
    cursor: pointer;
}
.footer-box form .bxs-envelope{
    color: var(--green-color);
}
.copyright{
    text-align: center;
    padding: 20px;
}
