/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100..900;1,100..900&display=swap');

body {
	padding: 0px;
	margin: 0px;
	background: url(../images/bg_prod.jpg);
	font-family: 'Raleway', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 0px 1px 1px #ccc;
	color: #222;
}

p.datatext {
	font-family: 'Raleway', sans-serif;
	color: #000;
	padding: 5px 0px;
	font-size: 15px;
}

p.datatext a {
	color: #693;
	font-size: 13px;
	padding: 5px;
	display: block;
	background-color: #FFF;
	margin: 10px 0px;
	width: 100px;
	text-align: center;
	text-decoration: none;
}

#wrapper {
	width: 100%;
}

#header {
	width: 100%;
	position: fixed;
	background: #fff;
	z-index: 1000;
	height: 100px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
}

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

#header .logo img {
	max-height: 60px;
	width: auto;
}

/* Desktop Navigation Styles */
#nav {
	display: flex;
	align-items: center;
}

#nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
	align-items: center;
}

#nav ul li {
	position: relative;
}

#nav ul li a {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #693;
	text-decoration: none;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 15px 0;
	transition: all 0.3s ease;
	position: relative;
}

#nav ul li a:hover {
	color: #000;
}

#nav ul li a.active {
	color: #000;
	font-weight: 700;
}

/* Desktop Dropdown Styles */
.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 200px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 1px solid #ddd;
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	z-index: 1001;
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
	display: flex;
	flex-direction: column;
	gap: 0 !important;
}

.submenu.show {
	opacity: 1;
	visibility: visible;
	display: block;

}

.submenu li {
	margin: 0;
	padding: 0;
	display: block;
	width: 100%;
}

.submenu li a {
	color: #693;
	padding: 12px 20px;
	font-size: 13px;
	text-decoration: none;
	display: block;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.2s ease;
	text-indent: 15px;
	/* Adjust as needed */
}

.submenu li:last-child a {
	border-bottom: none;
}

.submenu li a:hover {
	background-color: #f5f5f5;
	color: #693;
}

.product-link {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
}

.product-link i {
	font-size: 10px;
	transition: transform 0.2s ease;
}

.product-link:hover i {
	transform: rotate(180deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: #693;
	cursor: pointer;
	z-index: 1002;
	transition: all 0.3s ease;
	padding: 10px;
	border-radius: 5px;
	position: relative;
	pointer-events: auto;
}

.mobile-menu-btn:hover {
	color: #000;
	background-color: #f8f9fa;
}

.mobile-menu-btn i {
	pointer-events: none;
	display: inline-block;
	width: 100%;
	height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
	#nav ul {
		gap: 20px;
	}

	#nav ul li a {
		font-size: 13px;
		padding: 12px 0;
	}
}

@media (max-width: 768px) {
	#header {
		height: 80px;
	}

	#header .container {
		padding: 0 15px;
	}

	#header .logo img {
		max-height: 50px;
	}

	.mobile-menu-btn {
		display: block;
		position: relative;
		z-index: 1003 !important;
		color: #693 !important;
		background: rgba(255, 255, 255, 0.9);
		padding: 8px 12px;
		border-radius: 5px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		pointer-events: auto !important;
		width: 44px;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mobile-menu-btn:hover {
		color: #5a7a3f !important;
		background: rgba(255, 255, 255, 1);
		transform: scale(1.05);
	}

	.mobile-menu-btn:active {
		transform: scale(0.95);
	}

	.mobile-menu-btn i {
		pointer-events: none;
		font-size: 20px;
		display: block;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#nav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, #693 0%, #5a7a3f 100%);
		z-index: 1001;
		width: 100%;
		height: 100vh;
		margin: 0;
		padding: 0;
		overflow-y: auto;
		align-items: center;
		justify-content: center;
	}

	#nav.active {
		display: flex !important;
	}

	#nav ul {
		flex-direction: column;
		padding: 0;
		margin: 0;
		width: 100%;
		max-width: 300px;
		text-align: center;
		gap: 0;
	}

	#nav ul li {
		width: 100%;
		opacity: 0;
		transform: translateY(20px);
		animation: slideInUp 0.5s ease forwards;
	}

	#nav ul li:nth-child(1) {
		animation-delay: 0.1s;
	}

	#nav ul li:nth-child(2) {
		animation-delay: 0.2s;
	}

	#nav ul li:nth-child(3) {
		animation-delay: 0.3s;
	}

	#nav ul li:nth-child(4) {
		animation-delay: 0.4s;
	}

	#nav ul li:nth-child(5) {
		animation-delay: 0.5s;
	}

	@keyframes slideInUp {
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	#nav ul li a {
		color: #fff !important;
		padding: 15px 30px !important;
		font-size: 18px !important;
		font-weight: 600;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		transition: all 0.3s ease;
		text-shadow: none;
		justify-content: center;
		text-align: center;
	}

	#nav ul li a:hover {
		background-color: rgba(255, 255, 255, 0.1) !important;
		color: #5a7a3f !important;
		transform: scale(1.05);
	}

	.product-link {
		justify-content: center;
		gap: 10px;
	}

	.product-link i {
		font-size: 12px;
	}

	/* Mobile Dropdown Styles */
	.submenu {
		position: static !important;
		width: 100% !important;
		background: rgba(255, 255, 255, 0.1);
		border: none;
		box-shadow: none;
		margin-top: 0;
		padding: 0;
		opacity: 1;
		visibility: visible;
		display: none;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		border-radius: 0;
	}

	.submenu.show {
		display: block !important;
		max-height: 200px;
	}

	.submenu li {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.submenu li a {
		color: #fff !important;
		padding: 15px 30px 15px 50px !important;
		font-size: 16px !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		background-color: rgba(255, 255, 255, 0.05);
		text-align: left;
		justify-content: flex-start;
	}

	.submenu li:last-child a {
		border-bottom: none;
	}

	.submenu li a:hover {
		background-color: rgba(255, 255, 255, 0.15) !important;
	}
}

@media (max-width: 480px) {
	#header {
		height: 70px;
	}

	#header .container {
		padding: 0 10px;
	}

	#header .logo img {
		max-height: 40px;
	}

	.mobile-menu-btn {
		font-size: 20px;
		padding: 6px 10px;
		z-index: 1003 !important;
		width: 40px;
		height: 40px;
	}

	.mobile-menu-btn i {
		font-size: 18px;
	}

	#nav ul li a {
		padding: 18px 20px !important;
		font-size: 16px !important;
	}

	.submenu li a {
		color: #fff !important;
		padding: 12px 20px 12px 40px !important;
		font-size: 14px !important;
	}
}

/* Home Page Intro Image */
#intro-container {
	padding-top: 50px;
	width: 100%;
	background: url(../images/herocover.png) center center / contain no-repeat;
	height: 500px;
}

@media only screen and (max-width: 768px) {
	#intro-container {
		padding-top: 10px;
		height: 300px;
	}
}

/* About Page Intro Image */
#intro-container-about {
	padding-top: 50px;
	width: 100%;
	background: url(../images/aboutintro.png) center center / contain no-repeat;
	height: 500px;
}

@media only screen and (max-width: 768px) {
	#intro-container-about {
		padding-top: 10px;
		height: 300px;
	}
}

/* Services Page Intro Image */
#intro-container-services {
	padding-top: 50px;
	width: 100%;
	background: url(../images/servicesintro.png) center center / contain no-repeat;
	height: 500px;
}

@media only screen and (max-width: 768px) {
	#intro-container-services {
		padding-top: 10px;
		height: 300px;
	}
}

#services {
	width: 100%;
	background: url(../images/banner_services.jpg) center top repeat-x, url(../images/bg_cont_services.jpg) center no-repeat;
}

#services .content {
	width: 80%;
	padding-top: 120px;
	margin: 0px auto;
}

#services .content .banner {
	padding: 30px 0px;
	height: 158px;
}

#services .content .data {
	padding: 30px 0px;
}

#services .content .data .steps {
	padding: 10px 20px;
	background-color: #FFF;
	border-bottom: dashed 1px #EEEEEE;
}

#products {
	width: 100%;
	background: url(../images/bg_prod.jpg);
}

#products .content {
	width: 80%;
	margin: 0px auto;
	padding-top: 150px;
}

#products .row {
	padding: 20px 0px;
}

#products .row .image {
	margin-right: 30px;
	float: left;
}

#products .row .text {
	width: 100%;
	float: left;
}

#contact {
	width: 100%;
	background: url(../images/banner_contact.jpg) repeat-x;
}

#contact .content {
	height: 300px;
	padding-top: 130px;
	width: 80%;
	margin: 0px auto;
}

#footer {
	background-image: url(../images/bg_darkgrayhatch.jpg);
	padding: 40px 20px;
	color: #fff;
	font-family: 'Poppins', sans-serif;
}

#footer .content {
	width: 80%;
	padding: 30px 0px 50px 0px;
	margin: 0px auto;
	clear: both;
}

/* support */
.clear {
	clear: both;
}