*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: poppins, sans-serif;
	background: #f4f4f4;
}
.bg-navbar{
    background: #144c05;
}
.navbar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #144c05;
	padding: 1rem 2rem;
	position: sticky;
	top: 0;
	z-index: 1000;
}
.logo{
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
    cursor: pointer;
}

.nav-links{
	list-style: none;
	display: flex;
	gap: 1.5rem;
    margin-top: 10px;
    font-size: 16px;
}

.nav-links li a{
	text-decoration: none;
	color: white;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links li a:hover{
	color: #fddb00;
}

.hamburger{
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.hamburger span{
	height: 3px;
	width: 25px;
	background: white;
	border-radius: 5px;
}

@media (max-width: 768px){
	.nav-links{
		display: none;
		position: absolute;
		top: 70px; 
		right: 0;
		background: #144c05;
		width: 100%;
		flex-direction: column;
		text-align: center;
		padding: 1rem 0;
        transition: color 0.5s ease;
        margin-top: -20px;
        opacity: 0.9;
        border-radius: 0px 0px 150px 150px;
	}

	.nav-links.active{
		display: flex;
        transition: 1s ease-in;
	}

	.hamburger{
		display: flex;
	}
}


/* Get in touch page */

.title-section{
	text-align: center;
	margin: 2rem 0;
}
.title-section h1{
	font-size: 2.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
}
.title-section p{
	font-size: 1.2rem;
	color: #555;
}
.contact-info p a{
	color: #555;
	text-decoration: none;
}
.contact-info{
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	/* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}
.contact-info h1{
	font-size: 2rem;
	color: #144c05;
	margin-bottom: 1rem;
}
.contact-info p{
	font-size: 1rem;
	color: #555;
	margin-bottom: 1rem;
}
.contact-form{
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.contact-form .form-group{
	margin-bottom: 1.5rem;
}
.contact-form label{
	display: block;
	margin-bottom: 0.5rem;
	color: #333;
}
.contact-form input,
.contact-form textarea{
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
}
.contact-form button{
	background: #144c05;
	color: white;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s ease;
}
.contact-form button:hover{
	background: #fddb00;
	color: #144c05;
}
/* Partners page */
.partner-section{
	/* text-align: center; */
	margin: 2rem 0;
}
.partner-section h1{
	font-size: 2.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
}
.partner-section h2{
	font-size: 1.5rem;
	color: #555;
	margin-bottom: 1rem;
}
.partner-section p{
	font-size: 1rem;
	color: #555;
	margin-bottom: 1.5rem;
}
.partner-section img{
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 1rem;
}
.partners-card{
	background: #fff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-bottom: 1.5rem;
}
.partners-card h3{
	font-size: 1.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
}
.partners-card p{
	font-size: 1rem;
	color: #555;
	margin-bottom: 1rem;
}
.partners-card img{
	width: 100%;
	height: 150px;
	border-radius: 10px;
	margin-bottom: 1rem;
}
/* end of getintouch styling */

/* why choose us */
.why-choose-us{
	text-align: center;
	margin: 2rem 0;
}	
.why-choose-us h1{
	font-size: 2.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
}
.why-choose-us p{
	font-size: 1.2rem;
	color: #555;
	margin-bottom: 1.5rem;
}
.why-choose-us .features{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}
.why-choose-us .feature-item{
	background: #fff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	min-width: 250px;
	margin-top: 12px;
	cursor: pointer;
}
.why-choose-us .feature-item:hover{
	background: #fddb00;
	color: #144c05;
	transition: background 0.3s ease;
}
.why-choose-us .feature-item h3{
	font-size: 1.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
}
.why-choose-us .feature-item p{
	font-size: 1rem;
	color: #555;
	margin-bottom: 1rem;
}
.why-choose-us .feature-item img{
	width: 100%;
	height: 150px;
	border-radius: 10px;
	margin-bottom: 1rem;
}
.call-to-action{
	background: #144c05;
	color: white;
	padding: 2rem;
	text-align: center;
	border-radius: 10px;
	margin: 2rem 0;
}
.call-to-action h2{
	font-size: 2rem;
	margin-bottom: 1rem;
}
.call-to-action p{
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}
.call-to-action button{
	background: #fddb00;
	color: #144c05;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s ease;
}
.call-to-action button:hover{
	background: #144c05;
	color: white;
	border: 1px solid #fff;
}
.call-to-action button a{
	text-decoration: none;
	color: inherit;
}
/* Footer */
.footer{
	background: #144c05;
	color: white;
	padding: 2rem 0;
	text-align: center;
}

/* end of partners styling */

/* Branches styling */
.branches-section{
	text-align: center;
	margin: 2rem 0;
}
.branches-section h1{
	font-size: 2.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
}
.branches-section p{
	font-size: 1.2rem;
	color: #555;
	margin-bottom: 1.5rem;
}
.branches-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}
.branch-card{
	background: #fff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	min-width: 250px;
	margin-top: 12px;
	cursor: pointer;
}
.branch-card:hover{
	background: #fddb00;
	color: #144c05;
	transition: background 0.3s ease;
}
.branch-card h3{
	font-size: 1.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
	font-weight: bold;
}
.branch-card p{
	font-size: 1rem;
	color: #555;
	margin-bottom: 1rem;
}
.branch-card img{
	width: 100%;
	height: 150px;
	border-radius: 10px;
	margin-bottom: 1rem;
}
.head-branch{
	padding: 1.5rem;
	border-radius: 10px;
	margin-bottom: 1.5rem;
}
.head-branch h2{
	font-size: 1.8rem;
	color: #144c05;
	margin-bottom: 0.5rem;
}
/* end of branches  */


/* About Us style */
.about-section{
	text-align: center;
	margin: 2rem 0;
}
.about-section h1{
	font-size: 2.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
}
.about-section p{
	font-size: 1.2rem;
	color: #555;
	margin-bottom: 1.5rem;
}
.about-section img{
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 1rem;
	padding: 30px;
}
.about-section-info h4{
	font-size: 1.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.services{
	text-align: center;
	margin: 2rem 0;
}
.services h2{
	font-size: 2.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
}
.services p{
	font-size: 1.2rem;
	color: #555;
	margin-bottom: 1.5rem;
}
.services .service-item{
	background: #fff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	min-width: 250px;
	margin-top: 12px;
	cursor: pointer;
}
.services .service-item h3{
	font-size: 1.5rem;
	color: #144c05;
	margin-bottom: 0.5rem;
	font-weight: bold;
}
.services .service-item:hover{
	background: #fddb00;
	color: #144c05;
	transition: background 0.3s ease;
}
.services .service-item i{
	font-size: 3.1rem;
	color: #144c05;
	margin-bottom: 1rem;
}


/* Hero section Styling */
.hero-section{
	color: #144c05;
	padding: 5rem 0;
	margin-top: 40px;
	background: linear-gradient(to right, #c07401, #fddb00); ;
}
.hero-section h1{
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #144c05;
	font-weight: bold;
}
.hero-section p{
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}
.hero-section a{
	background: #144c05;
	color: white;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s ease;
	text-decoration: none;
}
.hero-section a:hover{
	background: #fddb00;
	color: #144c05;
	border: 1px solid #fff;
}
.hero-section img{
	width: 70%;
	height: 400px;
	border-radius: 10px;
	margin-top: -20px;
	margin-left: 80px;
}

.hero-image{
	float: right;
	width: 70%;
	border-radius: 10px;
	margin-top: -20px;
	margin-right: 80px;
}

.searchbar-section .search-bar{
	display: flex;
	justify-content: center;
	margin-top: 20px;
	padding: 20px;
}	

.search-bar input{
	width: 700px;
	padding: 0.75rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
	margin-right: 10px;
	outline: none;
	border: 2px solid #144c05;
	border-radius: 30px;
}
.search-bar button{
	background: #144c05;
	color: white;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s ease;
	border-radius: 30px;
}
.search-bar button:hover{
	background: #fddb00;
	color: #144c05;
	border: 1px solid #fff;
}

 .product-card{
	background: #fff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-bottom: 1.5rem;
	text-align: center;
}
 .product-card img{
	width: 100%;
	height: 200px;
	border-radius: 10px;
	margin-bottom: 1rem;
}
.product-card button{
	background: #144c05;
	color: white;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s ease;
}