/* Global Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f9f9f9;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 15px;
	color: #222;
}

p {
	margin-bottom: 20px;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: #006937;
	transition: all 0.3s ease;
}

a:hover {
	color: #008f4c;
}

section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-header h2 {
	font-size: 36px;
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	color: #006937;
}

.section-header h2:after {
	content: '';
	position: absolute;
	width: 50px;
	height: 3px;
	background-color: #008f4c;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.section-header p {
	font-size: 18px;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.btn {
	display: inline-block;
	padding: 12px 25px;
	border-radius: 4px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.primary-btn {
	background-color: #006937;
	color: #fff;
}

.primary-btn:hover {
	background-color: #008f4c;
	color: #fff;
}

.secondary-btn {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.secondary-btn:hover {
	background-color: #fff;
	color: #006937;
}

.text-btn {
	color: #006937;
	padding: 0;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
}

.text-btn i {
	margin-left: 5px;
	transition: all 0.3s ease;
}

.text-btn:hover i {
	transform: translateX(5px);
}

.view-all {
	text-align: center;
	margin-top: 40px;
}

/* Header Section */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	height: 60px;
}

.menu {
	display: flex;
	list-style: none;
}

.menu li {
	margin-left: 30px;
}

.menu li a {
	color: #222;
	font-weight: 500;
	padding: 8px 0;
	position: relative;
}

.menu li a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background-color: #006937;
	bottom: 0;
	left: 0;
	transition: width 0.3s ease;
}

.menu li a:hover:after,
.menu li a.active:after {
	width: 100%;
}

.menu li a.active {
	color: #006937;
}

.menu-toggle {
	display: none;
	cursor: pointer;
	font-size: 24px;
	color: #006937;
}

/* Hero Section */
.hero {
	height: 600px;
	background: url('../images/hero-bg.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 90px;
}

.hero .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
	position: relative;
	z-index: 10;
	color: #fff;
	max-width: 600px;
}

.hero-content h1 {
	font-size: 48px;
	margin-bottom: 20px;
	color: #fff;
}

.hero-content p {
	font-size: 20px;
	margin-bottom: 30px;
}

.hero-buttons {
	display: flex;
	gap: 15px;
}

/* Page Banner */
.page-banner {
	height: 300px;
	background: url('../images/about-banner-bg.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 90px;
	text-align: center;
}

.page-banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

.page-banner h1 {
	position: relative;
	z-index: 10;
	color: #fff;
	font-size: 48px;
	margin-bottom: 10px;
}

.breadcrumb {
	position: relative;
	z-index: 10;
	color: #fff;
	font-size: 16px;
}

.breadcrumb a {
	color: #fff;
}

.breadcrumb a:hover {
	color: #008f4c;
}

/* About Preview Section */
.about-preview {
	background-color: #fff;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-text {
	flex: 1;
}

.about-text h2 {
	color: #006937;
	font-size: 36px;
	margin-bottom: 25px;
}

.about-image {
	flex: 1;
}

.about-image img {
	border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* About Main Section */
.about-main {
	background-color: #fff;
}

.about-grid {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-grid .about-image {
	flex: 1;
}

.about-grid .about-content {
	flex: 1;
	display: block;
}

.about-grid .about-content h2 {
	color: #006937;
	font-size: 36px;
	margin-bottom: 25px;
}

/* Mission & Vision Section */
.mission-vision {
	background-color: #f5f5f5;
}

.mission-vision-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.mission-box,
.vision-box,
.values-box {
	background-color: #fff;
	padding: 40px 30px;
	border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover,
.values-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-box .icon,
.vision-box .icon,
.values-box .icon {
	width: 70px;
	height: 70px;
	background-color: rgba(0, 105, 55, 0.1);
	color: #006937;
	font-size: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.mission-box h3,
.vision-box h3,
.values-box h3 {
	font-size: 24px;
	margin-bottom: 15px;
}

/* Why Choose Us Section */
.why-choose-us {
	background-color: #fff;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.feature-card {
	background-color: #f9f9f9;
	padding: 30px;
	border-radius: 5px;
	transition: all 0.3s ease;
	border: 1px solid #eee;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-color: transparent;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(0, 105, 55, 0.1);
	color: #006937;
	font-size: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

/* Team Section */
.team {
	background-color: #f5f5f5;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.team-member {
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
	height: 250px;
	overflow: hidden;
}

.member-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.team-member:hover .member-photo img {
	transform: scale(1.1);
}

.member-info {
	padding: 20px;
	text-align: center;
}

.member-info h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.position {
	display: block;
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
}

.member-info p {
	font-size: 14px;
	margin-bottom: 15px;
}

.member-info .social-icons {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.member-info .social-icons a {
	width: 32px;
	height: 32px;
	background-color: #f5f5f5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	transition: all 0.3s ease;
}

.member-info .social-icons a:hover {
	background-color: #006937;
	color: #fff;
}

/* Achievements Section */
.achievements {
	background-color: #fff;
}

.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.timeline:before {
	content: '';
	position: absolute;
	width: 2px;
	background-color: #006937;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -1px;
}

.timeline-item {
	padding: 20px 40px;
	position: relative;
	width: 50%;
	box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
	left: 0;
	text-align: right;
}

.timeline-item:nth-child(even) {
	left: 50%;
}

.timeline-item:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	right: -10px;
	background-color: #fff;
	border: 4px solid #006937;
	top: 22px;
	border-radius: 50%;
	z-index: 1;
}

.timeline-item:nth-child(even):after {
	left: -10px;
}

.year {
	font-size: 24px;
	font-weight: 700;
	color: #006937;
	margin-bottom: 10px;
}

.timeline-item .content {
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-item .content h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.timeline-item .content p {
	margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
	background-color: #f5f5f5;
}

.testimonials-slider {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	padding: 20px 0;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
	display: none;
}

.testimonial {
	background-color: #fff;
	border-radius: 5px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	flex: 0 0 calc(33.333% - 20px);
	min-width: 300px;
}

.quote {
	position: relative;
	margin-bottom: 20px;
}

.quote .fa-quote-left {
	position: absolute;
	top: 0;
	left: 0;
	color: rgba(0, 105, 55, 0.2);
	font-size: 20px;
}

.quote .fa-quote-right {
	position: absolute;
	bottom: 0;
	right: 0;
	color: rgba(0, 105, 55, 0.2);
	font-size: 20px;
}

.quote p {
	padding: 0 25px;
	margin-bottom: 0;
}

.client {
	display: flex;
	align-items: center;
}

.client img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
}

.client-info h4 {
	font-size: 18px;
	margin-bottom: 5px;
}

.client-info span {
	font-size: 14px;
	color: #666;
}

/* Partners Section */
.partners {
	background-color: #fff;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 30px;
	align-items: center;
}

.partner {
	text-align: center;
	padding: 20px;
}

.partner img {
	max-height: 80px;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease;
}

.partner:hover img {
	filter: grayscale(0);
	opacity: 1;
}

/* Services Section */
.services {
	background-color: #f5f5f5;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.service-card {
	background-color: #fff;
	padding: 40px 30px;
	border-radius: 5px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	width: 80px;
	height: 80px;
	background-color: rgba(0, 105, 55, 0.1);
	color: #006937;
	font-size: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
}

.service-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

/* Products Preview Section */
.products-preview {
	background-color: #fff;
}

.products-slider {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	padding: 20px 0;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.products-slider::-webkit-scrollbar {
	display: none;
}

.product-card {
	background-color: #f9f9f9;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	flex: 0 0 calc(25% - 22.5px);
	min-width: 250px;
	transition: all 0.3s ease;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.product-card h3,
.product-card p {
	padding: 0 20px;
}

.product-card h3 {
	font-size: 18px;
	margin: 20px 0 5px;
}

.product-card p {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}

/* Blog Preview Section */
.blog-preview {
	background-color: #f5f5f5;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-card {
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
	height: 200px;
	overflow: hidden;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
	transform: scale(1.1);
}

.blog-content {
	padding: 20px;
}

.blog-date {
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
}

.blog-content h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.blog-content p {
	font-size: 14px;
	margin-bottom: 15px;
}

.no-posts {
	grid-column: 1 / -1;
	text-align: center;
	padding: 30px;
	background-color: #fff;
	border-radius: 5px;
}

/* Call to Action Section */
.cta {
	background: url('../images/cta-bg.jpg') no-repeat center center;
	background-size: cover;
	position: relative;
	padding: 100px 0;
}

.cta:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 105, 55, 0.8);
}

.cta-content {
	position: relative;
	text-align: center;
	color: #fff;
}

.cta-content h2 {
	font-size: 36px;
	color: #fff;
	margin-bottom: 15px;
}

.cta-content p {
	font-size: 18px;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Footer Section */
footer {
	background-color: #222;
	color: #fff;
	padding: 80px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 30px;
	margin-bottom: 50px;
}

.footer-about .footer-logo {
	height: 50px;
	margin-bottom: 20px;
}

.footer-about p {
	color: #ccc;
	margin-bottom: 25px;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icons a {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all 0.3s ease;
}

.social-icons a:hover {
	background-color: #006937;
}

footer h3 {
	color: #fff;
	font-size: 20px;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

footer h3:after {
	content: '';
	position: absolute;
	width: 30px;
	height: 2px;
	background-color: #006937;
	bottom: 0;
	left: 0;
}

footer ul {
	list-style: none;
}

footer ul li {
	margin-bottom: 12px;
}

footer ul li a {
	color: #ccc;
	transition: all 0.3s ease;
}

footer ul li a:hover {
	color: #fff;
	padding-left: 5px;
}

.footer-contact ul li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	color: #ccc;
}

.footer-contact ul li i {
	color: #006937;
	font-size: 16px;
	margin-top: 4px;
}

.footer-bottom {
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
	color: #ccc;
	margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.features-grid,
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.partners-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	section {
		padding: 60px 0;
	}

	header {
		padding: 15px 0;
	}

	.menu {
		position: fixed;
		top: 90px;
		left: -100%;
		flex-direction: column;
		background-color: #fff;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
		padding: 20px 0;
		height: calc(100vh - 90px);
		overflow-y: auto;
	}

	.menu.active {
		left: 0;
	}

	.menu li {
		margin: 15px 0;
	}

	.menu-toggle {
		display: block;
	}

	.hero {
		height: 500px;
	}

	.hero-content h1 {
		font-size: 36px;
	}

	.hero-content p {
		font-size: 16px;
	}

	.about-content {
		flex-direction: column;
		gap: 30px;
	}

	.about-grid {
		flex-direction: column;
		gap: 30px;
	}

	.mission-vision-grid {
		grid-template-columns: 1fr;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}

	.timeline:before {
		left: 40px;
	}

	.timeline-item {
		width: 100%;
		padding-left: 80px;
		padding-right: 0;
	}

	.timeline-item:nth-child(odd) {
		text-align: left;
	}

	.timeline-item:nth-child(even) {
		left: 0;
	}

	.timeline-item:after {
		left: 30px;
		right: auto;
	}

	.timeline-item:nth-child(even):after {
		left: 30px;
	}
}

@media (max-width: 576px) {
	.features-grid,
	.team-grid,
	.partners-grid,
	.services-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-content h1 {
		font-size: 28px;
	}

	.section-header h2 {
		font-size: 28px;
	}

	.page-banner h1 {
		font-size: 32px;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 10px;
	}

	.cta-content h2 {
		font-size: 28px;
	}
}







/* Services Page Specific Styles */

/* Services Introduction */
.services-intro {
	background-color: #fff;
}

.intro-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.intro-text {
	flex: 1;
}

.intro-text h2 {
	color: #006937;
	font-size: 36px;
	margin-bottom: 25px;
}

.intro-image {
	flex: 1;
}

.intro-image img {
	border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	width: 100%;
}

/* Main Services Section */
.services-main {
	background-color: #f5f5f5;
}

.service-item {
	display: flex;
	align-items: center;
	gap: 50px;
	background-color: #fff;
	padding: 50px;
	border-radius: 5px;
	margin-bottom: 40px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-item.reverse {
	flex-direction: row-reverse;
}

.service-image {
	flex: 1;
	max-width: 45%;
}

.service-image img {
	border-radius: 5px;
	width: 100%;
	height: auto;
}

.service-content {
	flex: 1;
}

.service-content .service-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(0, 105, 55, 0.1);
	color: #006937;
	font-size: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.service-content h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #006937;
}

.service-content ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

.service-content ul li {
	margin-bottom: 10px;
	position: relative;
}

/* Additional Services */
.additional-services {
	background-color: #fff;
}

/* Export Process */
.export-process {
	background-color: #f5f5f5;
}

.process-timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.process-timeline:before {
	content: '';
	position: absolute;
	width: 2px;
	background-color: #006937;
	top: 0;
	bottom: 0;
	left: 35px;
}

.process-step {
	position: relative;
	padding-left: 80px;
	margin-bottom: 50px;
}

.process-step:last-child {
	margin-bottom: 0;
}

.step-number {
	position: absolute;
	left: 0;
	width: 70px;
	height: 70px;
	background-color: #006937;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	z-index: 1;
}

.step-content {
	background-color: #fff;
	padding: 30px;
	border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
	color: #006937;
	margin-bottom: 10px;
}

.step-content p {
	margin-bottom: 0;
}

/* FAQ Section */
.faq {
	background-color: #fff;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
}

.faq-question {
	padding: 20px;
	background-color: #f9f9f9;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question h3 {
	margin-bottom: 0;
	font-size: 18px;
	flex: 1;
}

.toggle-icon {
	width: 24px;
	height: 24px;
	background-color: #006937;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-answer p {
	padding: 20px 0;
	margin-bottom: 0;
}

.faq-item.active .faq-answer {
	max-height: 1000px;
}

/* Responsive Styles for Services Page */
@media (max-width: 1024px) {
	.service-item,
	.service-item.reverse {
		flex-direction: column;
		padding: 30px;
	}

	.service-image {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.intro-content {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.process-timeline:before {
		left: 30px;
	}

	.step-number {
		width: 60px;
		height: 60px;
		font-size: 20px;
	}

	.process-step {
		padding-left: 70px;
	}
}

@media (max-width: 576px) {
	.faq-question h3 {
		font-size: 16px;
	}
}


















/* Blog Main Section */
.blog-main {
	background-color: #f5f5f5;
	padding: 80px 0;
}

.blog-container {
	display: flex;
	gap: 40px;
}

.blog-sidebar {
	flex: 0 0 300px;
}

.blog-content {
	flex: 1;
}

.sidebar-widget {
	background-color: #fff;
	padding: 30px;
	border-radius: 5px;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
	font-size: 20px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	color: #006937;
}

.category-list {
	list-style: none;
}

.category-list li {
	margin-bottom: 10px;
}

.category-list li a {
	display: block;
	padding: 8px 0;
	color: #666;
	border-bottom: 1px dashed #eee;
	transition: all 0.3s ease;
}

.category-list li a:hover,
.category-list li a.active {
	color: #006937;
	padding-left: 5px;
}

.search-form {
	display: flex;
	position: relative;
}

.search-form input {
	width: 100%;
	padding: 12px 50px 12px 15px;
	border: 1px solid #eee;
	border-radius: 4px;
	font-size: 14px;
}

.search-form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50px;
	background-color: #006937;
	color: #fff;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-form button:hover {
	background-color: #008f4c;
}

/* Blog Grid and Cards */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.blog-card {
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
	height: 220px;
	overflow: hidden;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
	transform: scale(1.1);
}

.blog-post-content {
	padding: 25px;
}

.blog-date {
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
}

.blog-post-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.blog-post-content h3:hover {
	color: #006937;
}

.blog-author {
	font-size: 14px;
	color: #666;
	font-style: italic;
	margin-bottom: 15px;
}

.blog-post-content p {
	margin-bottom: 20px;
	font-size: 15px;
}

.no-posts {
	grid-column: 1 / -1;
	background-color: #fff;
	padding: 30px;
	text-align: center;
	border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.pagination-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 4px;
	color: #333;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pagination-link:hover {
	background-color: #006937;
	color: #fff;
}

.pagination-link.active {
	background-color: #006937;
	color: #fff;
}

.pagination-dots {
	margin: 0 5px;
}

/* Blog Single Page */
.blog-single {
	background-color: #fff;
	padding: 50px;
	border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.blog-header {
	margin-bottom: 30px;
}

.blog-header h1 {
	font-size: 32px;
	margin-bottom: 15px;
	color: #006937;
}

.blog-meta {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	color: #666;
	font-size: 14px;
}

.blog-meta div {
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.blog-meta i {
	margin-right: 5px;
	color: #006937;
}

.featured-image {
	margin-bottom: 30px;
	border-radius: 5px;
	overflow: hidden;
}

.featured-image img {
	width: 100%;
	height: auto;
}

.blog-content-text {
	font-size: 16px;
	line-height: 1.8;
}

.blog-content-text p {
	margin-bottom: 20px;
}

.blog-content-text h2,
.blog-content-text h3 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: #006937;
}

.blog-content-text ul,
.blog-content-text ol {
	margin-bottom: 20px;
	padding-left: 20px;
}

.blog-content-text li {
	margin-bottom: 10px;
}

.blog-content-text img {
	max-width: 100%;
	height: auto;
	margin: 20px 0;
	border-radius: 5px;
}

.blog-share {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.blog-share h3 {
	font-size: 18px;
	margin-bottom: 15px;
}

.share-buttons {
	display: flex;
	gap: 10px;
}

.share-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #f5f5f5;
	border-radius: 50%;
	color: #666;
	transition: all 0.3s ease;
}

.share-button:hover {
	background-color: #006937;
	color: #fff;
}

/* Related Posts */
.related-posts {
	margin-top: 50px;
}

.related-posts h2 {
	font-size: 24px;
	margin-bottom: 30px;
	color: #006937;
}

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* Product Showcase Styles */
.product-showcase {
	background-color: #f5f5f5;
	padding: 80px 0;
}

.product-categories {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 10px;
}

.category-filter {
	padding: 10px 20px;
	background-color: #fff;
	border-radius: 30px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-filter:hover {
	background-color: rgba(0, 105, 55, 0.1);
	color: #006937;
}

.category-filter.active {
	background-color: #006937;
	color: #fff;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.product-item {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.product-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
	height: 250px;
	overflow: hidden;
	position: relative;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}

.product-item:hover .product-image img {
	transform: scale(1.1);
}

.product-category {
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: #006937;
	color: #fff;
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.product-details {
	padding: 25px;
}

.product-details h3 {
	font-size: 20px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.product-details h3:hover {
	color: #006937;
}

.product-details p {
	margin-bottom: 20px;
	color: #666;
}

.product-btn {
	display: flex;
	justify-content: space-between;
}

/* Single Product Page */
.product-single {
	background-color: #fff;
	padding: 80px 0;
}

.product-info {
	display: flex;
	gap: 50px;
	margin-bottom: 50px;
}

.product-gallery {
	flex: 0 0 50%;
}

.main-image {
	height: 400px;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 20px;
}

.main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumbnail-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.thumbnail {
	height: 80px;
	overflow: hidden;
	border-radius: 4px;
	cursor: pointer;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
	opacity: 1;
}

.thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-summary {
	flex: 1;
}

.product-summary h1 {
	font-size: 32px;
	margin-bottom: 15px;
	color: #006937;
}

.product-summary p {
	margin-bottom: 20px;
	line-height: 1.8;
}

.product-features {
	margin-top: 30px;
}

.product-features h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #006937;
}

.features-list {
	padding-left: 20px;
}

.features-list li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 15px;
}

.features-list li:before {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	background-color: #006937;
	border-radius: 50%;
	left: 0;
	top: 8px;
}

.related-products {
	margin-top: 80px;
}

.related-products h2 {
	text-align: center;
	margin-bottom: 40px;
	color: #006937;
	font-size: 28px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.blog-container {
		flex-direction: column;
	}

	.blog-sidebar {
		flex: 0 0 100%;
		order: 2;
	}

	.blog-content {
		order: 1;
		margin-bottom: 40px;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-info {
		flex-direction: column;
	}

	.product-gallery {
		flex: 0 0 100%;
	}
}

@media (max-width: 768px) {
	.blog-grid,
	.related-posts-grid {
		grid-template-columns: 1fr;
	}

	.product-categories {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 10px;
		margin-left: -15px;
		margin-right: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.category-filter {
		flex: 0 0 auto;
	}

	.blog-single {
		padding: 30px;
	}
}

@media (max-width: 576px) {
	.products-grid {
		grid-template-columns: 1fr;
	}

	.thumbnail-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}





/* Product Detail Page Styles */
.product-detail {
	padding: 40px 0 80px;
	background: #f8f9fa;
}

.product-detail .breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
	font-size: 0.9rem;
}

.product-detail .breadcrumb a {
	color: #2c5530;
	text-decoration: none;
	transition: color 0.3s ease;
}

.product-detail .breadcrumb a:hover {
	color: #1e3a21;
}

.product-detail .breadcrumb span {
	color: #666;
}

.product-detail-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-images .main-image {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-images .main-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-images .main-image:hover img {
	transform: scale(1.05);
}

.product-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.product-category {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #e8f5e8;
	color: #2c5530;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: fit-content;
}

.product-info h1 {
	font-size: 2.5rem;
	color: #333;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.product-description {
	color: #666;
	font-size: 1rem;
	line-height: 1.7;
	white-space: pre-line;
}

.product-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.product-actions .btn {
	flex: 1;
	text-align: center;
	padding: 12px 20px;
	font-weight: 600;
}

.outline-btn {
	background: transparent;
	color: #2c5530;
	border: 2px solid #2c5530;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.outline-btn:hover {
	background: #2c5530;
	color: white;
}

.product-meta {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	border-left: 4px solid #2c5530;
}

.meta-item {
	margin-bottom: 0.75rem;
	color: #666;
	font-size: 0.95rem;
}

.meta-item:last-child {
	margin-bottom: 0;
}

.meta-item strong {
	color: #333;
}

.featured-badge {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #333;
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

/* Related Products Section */
.related-products {
	padding: 80px 0;
	background: white;
}

.related-products .section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.related-products .section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.related-products .section-header p {
	color: #666;
	font-size: 1.1rem;
}

.related-products .products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
	.product-detail-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 1.5rem;
	}

	.product-info h1 {
		font-size: 2rem;
	}

	.product-actions {
		flex-direction: column;
	}

	.product-actions .btn {
		width: 100%;
	}

	.product-images .main-image img {
		height: 300px;
	}

	.related-products .products-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.product-detail {
		padding: 20px 0 60px;
	}

	.product-detail .breadcrumb {
		font-size: 0.8rem;
		margin-bottom: 1.5rem;
	}

	.product-info h1 {
		font-size: 1.75rem;
	}

	.product-category {
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
	}

	.product-meta {
		padding: 1rem;
	}

	.meta-item {
		font-size: 0.9rem;
	}
}

/* Additional improvements for the products page layout */
.products-page .container {
	max-width: 1200px;
}

.products-filter {
	margin-bottom: 2rem;
}

.filter-row {
	align-items: stretch;
}

.search-box form {
	height: 100%;
}

.search-box input,
.category-filter select {
	height: 48px;
}

/* Improve product card spacing and hover effects */
.product-card {
	margin-bottom: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.product-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-actions {
	margin-top: auto;
	padding-top: 1rem;
}

/* Better responsive grid */
@media (max-width: 1024px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.products-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.filter-row {
		flex-direction: column;
		align-items: stretch;
		gap: 1.5rem;
	}

	.search-box {
		max-width: 100%;
	}

	.search-box input {
		font-size: 16px; /* Prevents zoom on iOS */
	}

	.category-filter select {
		width: 100%;
		min-width: 100%;
		font-size: 16px; /* Prevents zoom on iOS */
	}

	.products-filter {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}

	.results-info {
		text-align: center;
		margin-top: 1rem;
	}
}/* Products Hero Section */
.products-hero {
	background: linear-gradient(135deg, rgba(44, 85, 48, 0.9), rgba(74, 124, 89, 0.9)),
	url('../images/about-image.jpg') center/cover no-repeat;
	min-height: 60vh;
	display: flex;
	align-items: center;
	color: white;
	text-align: center;
	position: relative;
}

.products-hero .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.products-hero .hero-content {
	position: relative;
	z-index: 2;
}

.products-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.products-hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.products-hero .breadcrumb {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.1rem;
	margin-top: 1rem;
}

.products-hero .breadcrumb a {
	color: white;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.products-hero .breadcrumb a:hover {
	opacity: 1;
}

.products-hero .breadcrumb span {
	opacity: 0.7;
	font-weight: 500;
}

/* Products Page Section */
.products-page {
	padding: 80px 0;
	background: #f8f9fa;
}

/* Filter Section */
.products-filter {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-bottom: 3rem;
}

.filter-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	margin-bottom: 1rem;
}

.search-box {
	flex: 1;
	max-width: 400px;
}

.search-box form {
	display: flex;
	position: relative;
	background: white;
	border: 2px solid #e1e5e9;
	border-radius: 10px;
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-box form:focus-within {
	border-color: #2c5530;
	box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.search-box input {
	width: 100%;
	padding: 14px 60px 14px 20px;
	border: none;
	outline: none;
	font-size: 1rem;
	color: #333;
	background: transparent;
}

.search-box input::placeholder {
	color: #999;
	font-style: italic;
}

.search-box button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0 18px;
	background: #2c5530;
	color: white;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-box button:hover {
	background: #1e3a21;
}

.search-box button i {
	font-size: 1.1rem;
}

.category-filter {
	position: relative;
}

.category-filter select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 14px 50px 14px 20px;
	border: 2px solid #e1e5e9;
	border-radius: 10px;
	font-size: 1rem;
	background: white;
	color: #333;
	min-width: 200px;
	cursor: pointer;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23666" d="M6 8L0 2h12z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 12px;
}

.category-filter select:focus {
	outline: none;
	border-color: #2c5530;
	box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.category-filter select:hover {
	border-color: #2c5530;
}

.category-filter select option {
	padding: 10px;
	background: white;
	color: #333;
}

.results-info {
	color: #666;
	font-size: 0.95rem;
	font-weight: 500;
	padding: 0.5rem 0;
}

.results-info strong {
	color: #2c5530;
	font-weight: 600;
}

/* Products Grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.product-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(44, 85, 48, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
	opacity: 1;
}

.product-info {
	padding: 1.5rem;
}

.product-category {
	color: #2c5530;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.product-info h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: #333;
	font-weight: 600;
}

.product-info p {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.product-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2c5530;
	margin-bottom: 1rem;
}

.product-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.product-actions .text-btn {
	flex: 1;
}

.product-actions .secondary-btn {
	padding: 8px 16px;
	font-size: 0.9rem;
}

/* No Products State */
.no-products {
	grid-column: 1 / -1;
	text-align: center;
	padding: 4rem 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.no-products i {
	font-size: 4rem;
	color: #e1e5e9;
	margin-bottom: 1.5rem;
}

.no-products h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.no-products p {
	color: #666;
	margin-bottom: 2rem;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 3rem;
}

.page-btn {
	padding: 10px 20px;
	background: white;
	color: #2c5530;
	text-decoration: none;
	border-radius: 8px;
	border: 2px solid #2c5530;
	font-weight: 500;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.page-btn:hover {
	background: #2c5530;
	color: white;
}

.page-numbers {
	display: flex;
	gap: 0.5rem;
}

.page-number {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	color: #2c5530;
	text-decoration: none;
	border-radius: 8px;
	border: 2px solid #e1e5e9;
	font-weight: 500;
	transition: all 0.3s ease;
}

.page-number:hover,
.page-number.active {
	background: #2c5530;
	color: white;
	border-color: #2c5530;
}

/* Responsive Design */
@media (max-width: 768px) {
	.products-hero {
		min-height: 50vh;
	}

	.products-hero h1 {
		font-size: 2.5rem;
	}

	.products-hero p {
		font-size: 1.1rem;
	}

	.products-hero .breadcrumb {
		font-size: 1rem;
	}

	.filter-row {
		flex-direction: column;
		gap: 1rem;
	}

	.search-box {
		max-width: 100%;
	}

	.category-filter select {
		min-width: 100%;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.product-actions {
		flex-direction: column;
		gap: 0.75rem;
	}

	.product-actions .text-btn,
	.product-actions .secondary-btn {
		width: 100%;
		text-align: center;
	}

	.pagination {
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.page-btn {
		padding: 8px 16px;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.products-hero {
		min-height: 40vh;
	}

	.products-hero h1 {
		font-size: 2rem;
	}

	.products-hero p {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.products-hero .breadcrumb {
		font-size: 0.9rem;
	}

	.products-page {
		padding: 60px 0;
	}

	.products-filter {
		padding: 1.5rem;
	}

	.page-numbers {
		flex-wrap: wrap;
	}

	.page-number {
		width: 35px;
		height: 35px;
		font-size: 0.9rem;
	}
}


/* Contact Page Styles */
.contact-hero {
	background: linear-gradient(135deg, rgba(44, 85, 48, 0.9), rgba(74, 124, 89, 0.9)),
	url('../images/about-image.jpg') center/cover no-repeat;
	min-height: 60vh;
	display: flex;
	align-items: center;
	color: white;
	text-align: center;
	position: relative;
}

.contact-hero .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.contact-hero .hero-content {
	position: relative;
	z-index: 2;
}

.contact-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-hero .breadcrumb {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.1rem;
	margin-top: 1rem;
}

.contact-hero .breadcrumb a {
	color: white;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.contact-hero .breadcrumb a:hover {
	opacity: 1;
}

.contact-hero .breadcrumb span {
	opacity: 0.7;
	font-weight: 500;
}

/* Contact Section */
.contact-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
}

/* Contact Info */
.contact-info h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
	font-weight: 700;
}

.contact-info > p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
	background: #2c5530;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.contact-text h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #333;
	font-weight: 600;
}

.contact-text p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

.contact-text a {
	color: #2c5530;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-text a:hover {
	color: #1e3a21;
	text-decoration: underline;
}

/* Contact Form */
.contact-form {
	background: white;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	height: fit-content;
}

.contact-form h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #333;
	font-weight: 700;
}

/* Alert Messages */
.alert {
	padding: 1rem 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
}

.alert-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.alert-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Form Styles */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
	font-size: 1rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e1e5e9;
	border-radius: 8px;
	font-size: 1rem;
	color: #333;
	background: #fff;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2c5530;
	box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
	font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #999;
}

/* Submit Button */
.contact-form .btn {
	width: 100%;
	padding: 16px 24px;
	font-size: 1.1rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.contact-form .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(44, 85, 48, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-hero {
		min-height: 50vh;
	}

	.contact-hero h1 {
		font-size: 2.5rem;
	}

	.contact-hero p {
		font-size: 1.1rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.contact-form {
		padding: 2rem;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-info h2,
	.contact-form h2 {
		font-size: 2rem;
	}

	.contact-item {
		padding: 1.25rem;
	}
}

@media (max-width: 480px) {
	.contact-hero {
		min-height: 40vh;
	}

	.contact-hero h1 {
		font-size: 2rem;
	}

	.contact-hero p {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.contact-section {
		padding: 60px 0;
	}

	.contact-form {
		padding: 1.5rem;
	}

	.contact-info h2,
	.contact-form h2 {
		font-size: 1.75rem;
	}

	.contact-item {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem;
	}

	.contact-icon {
		margin: 0 auto 1rem;
	}

	.form-group input,
	.form-group textarea {
		font-size: 16px; /* Prevents zoom on iOS */
	}
}


/* Simple Blog Post Page */
.blog-post-page {
	padding: 60px 0;
	background: #f8f9fa;
}

.blog-post {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Back Link */
.back-link {
	padding: 20px 30px 0;
}

.back-link a {
	color: #2c5530;
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
}

.back-link a:hover {
	color: #1e3a21;
}

/* Post Image */
.post-image {
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Post Info */
.post-info {
	padding: 30px 30px 20px;
}

.post-date {
	color: #666;
	font-size: 14px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.post-date i {
	color: #2c5530;
}

.post-info h1 {
	font-size: 2rem;
	color: #333;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

/* Post Content */
.post-content {
	padding: 0 30px 30px;
	font-size: 16px;
	line-height: 1.7;
	color: #444;
}

.post-content p {
	margin-bottom: 20px;
}

/* Post Actions */
.post-actions {
	padding: 20px 30px 30px;
	border-top: 1px solid #eee;
	display: flex;
	gap: 15px;
	justify-content: center;
}

.post-actions .btn {
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

/* Related Posts Simple */
.related-posts-simple {
	padding: 60px 0;
	background: white;
}

.related-posts-simple h2 {
	text-align: center;
	font-size: 2rem;
	color: #333;
	margin-bottom: 40px;
	font-weight: 700;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.related-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.related-card:hover {
	transform: translateY(-5px);
}

.related-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.related-content {
	padding: 20px;
}

.related-content h3 {
	margin: 0 0 10px 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.related-content h3 a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.related-content h3 a:hover {
	color: #2c5530;
}

.related-content p {
	color: #666;
	font-size: 14px;
	margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.blog-post-page {
		padding: 40px 0;
	}

	.back-link {
		padding: 15px 20px 0;
	}

	.post-image {
		height: 200px;
	}

	.post-info {
		padding: 20px 20px 15px;
	}

	.post-info h1 {
		font-size: 1.5rem;
	}

	.post-content {
		padding: 0 20px 20px;
		font-size: 15px;
	}

	.post-actions {
		padding: 15px 20px 20px;
		flex-direction: column;
		align-items: center;
	}

	.post-actions .btn {
		width: 100%;
		max-width: 250px;
		justify-content: center;
	}

	.related-posts-simple {
		padding: 40px 0;
	}

	.related-posts-simple h2 {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}

	.related-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.post-info h1 {
		font-size: 1.3rem;
	}

	.post-content {
		font-size: 14px;
	}

	.related-content {
		padding: 15px;
	}
}