
*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    scroll-padding-top: 2rem;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    
}

:root{
    --main-color:#cf7207;
    --second-color:#1e3932;
}


section{
    padding:50px 10%;
}

*::selection{
    color: #fff;
    background-color: var(--main-color);
}


.whatsapp_float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}
.whatsapp-icon {
	margin-top: 16px;
}

/* for mobile */
@media screen and (max-width: 767px){
	.whatsapp-icon {
		margin-top: 10px;
	}
	.whatsapp_float {
		width: 40px;
		height: 40px;
		bottom: 20px;
		right: 10px;
		font-size: 22px;
	}
}

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-color: #fff;
    box-shadow:  0 4px 41px rgb(14 55 54 / 14%);
    padding: 15px 10%;
    transition: 0.2s;
}
.logo{
    display: flex;
    align-items: center;

}
.logo img{
    width: 150px;
    border-radius: 50%;
}

.navbar{
    display: flex;
    
    
}
.navbar a{
    font-size: 1rem;
    padding: 10px 20px ;
    color: var(--second-color);
    font-weight: 600;
    text-transform: uppercase;
}

.navbar a:hover {
    color: var(--main-color);
}

#menu-icon{
    font-size: 24px ;
    cursor: pointer;
    z-index: 1001;
    display: none;
}

/* home  */

.home{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* background:#ff8397; */
    gap: 1rem;

}
.home-text{
    flex: 2 3 18rem;
   } 
.home-text p{
    font-size: 16px;
    color: var(--second-color);
}



.home-img{
    flex: 1 1 19rem;
    

}
/* for animation  */
.home-img img{
    animation: animate 3s linear infinite;
    border-radius: 50%;
}
@keyframes animate{
    0%{

        transform:translate(-11px,0);
    }
    50%{
        transform: translate(-0px,-11px);
    }
    100%{
        transform: translate(-11px,0);
    }
}

.home-text span{
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--second-color);

}
.home-text h1{
    font-size: 4rem;
    color: var(--main-color);
    font-weight: bolder;

}
.home-text h2{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--second-color);
    text-transform: uppercase;
    margin: 0.5rem 0 1.4rem;
}
/* button  */
.btn {
    padding: 7px 16px;
    border: 2px solid var(--second-color);
    border-radius: 20px;
    color: black;
    font-weight: 500;
    background-color: var(--second-color);
    text-align: center;
}
.btn a{
    color: #fff;
}
.btn:hover{
    /* color: black; */
    background: var(--main-color);
}
 


.product-section h1{
    color: var(--main-color);
    font-size: 30px;
}
.product-section {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
}

.product-card h2 {
    font-size: 1.5em;
    margin: 10px 0;
    color: var(--main-color);
}

.product-card p {
    color: #666;
}

.price {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #de7878;
}
.delivery
{
    padding: 10px;
    color: var(--main-color);
    font-size: 24px;
}
/* Start About Us */
#about-us h1{
    color: var(--main-color);
    font-size: 28px;
}
#about-us .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
  }
  #about-us .container .about-content{
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }
  #about-us .container .about-content h1{
    font-family: "Forum" , sans-serif;
    font-size: 30px;
  }
  #about-us .container .about-content p{
    font-size: 18px;
    line-height: 1.7;
    /* text-justify:auto; */}
    .about-image{
        border-radius: 50%;
        border-radius: 2px solid red;
    }
      
  











.contact{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  
    background-size: cover;
}
.contact .content{
    max-width: 800px;
    text-align: center;
}
.contact .content h2{
    font-size: 36px;
    font-weight: bolder;
    color: var(--main-color);
    margin-bottom: 20px;
}
.contact .content p{
    font-weight: 300;
    color:var(--second-color);
    font-size: 18px;
}
.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.container .contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.container .contactInfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.container .contactInfo .box .icon{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}
.container .contactInfo .box .text h3{
    display: flex;
    margin-left: 20px;
    font-size: 18px;
    color: var(--main-color);
    /* flex-direction: column; */
    font-weight: bold;
}
.container .contactInfo .box .text p{
    display: flex;
    margin-left: 20px;
    font-size: 14px;
    
    color: var(--second-color);
    /* flex-direction: column; */
    font-weight: 300;
}
.contactForm{
    width: 40%;
    padding: 40px;
    background: #fff;
}
.contactForm h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}
.contactForm .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.contactForm .inputBox input,
.contactForm .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}
.contactForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span{
    color: #ff0000;
    font-size: 12px;
    transform: translateY(-20px);
}
.contactForm .inputBox input[type="submit"]{
    width: 100px;
    background: var(--main-color);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}





/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 41px rgb(14 55 54 / 14%);
    }

    .navbar a {
        display: block;
        text-align: center;
        padding: 10px 0;
        font-size: 1.2rem;
    }

    #menu-icon {
        display: none;
    }

    .home {
        flex-direction: column;
    }

    .home-text h1 {
        font-size: 2.5rem;
    }

    .home-text span {
        font-size: 2rem;
    }

    .home-text h2 {
        font-size: 1.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .container {
        flex-direction: column;
    }

    .contactForm {
        width: 90%;
    }#menu-icon {
    display: block;
}

.navbar.active {
    display: flex;
} 
.contactInfo{
    align-items: flex-end;
}

.container {
    flex-direction: column;
    padding: 0 20px; /* Add padding to container for small screens */
}

.contactInfo {
    align-items: center; /* Center-align the contact info */
    width: 100%; /* Set full width for smaller screens */
}

.contactInfo .box {
    padding: 20px 10px; /* Reduce padding to fit better on small screens */
}

.contactInfo .box .text p {
    margin-left: 0; /* Remove left margin */
    text-align: center; /* Center-align text */
}

.contactInfo .box .text h3 {
    margin-left: 0; /* Remove left margin */
    text-align: center; /* Center-align heading */
}

}


