/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	--brand-color-navy: #011b2a;
	--brand-color-light-navy: #389cbc;
	--brand-color-white: #fff;
	--brand-primary-font-family: 'Anton', sans-serif;
	--brand-primary-font-weight: 400;
	--brand-secondary-font-family: 'Poppins';
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--brand-secondary-font-family);
	line-height: 1.6;
	color: #333;
	background-color: var(--brand-color-white);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.header {
	background: var(--brand-color-white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.navbar {
	padding: 1rem 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--brand-primary-font-family);
}

.nav-logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-logo .logo-img {
	width: 55px;
	margin-right: 10px;
}

.nav-logo h2 {
	color: var(--brand-color-navy);
	font-weight: 600;
	font-size: 1.5rem;
	text-shadow: #011b2a;
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 2rem;
	font-family: var(--brand-secondary-font-family);
}

.nav-link {
	color: var(--brand-color-navy);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
	color: #389cbc;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #389cbc;
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

/* Dropdown Styles */
.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 160px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-link {
	display: block;
	padding: 12px 20px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.dropdown-link:hover {
	background: #f8f9fa;
	color: #4a7c23;
}

/* Mobile Menu Toggle */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger .bar {
	width: 25px;
	height: 3px;
	background: var(--brand-color-navy);
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assests/banner.jpg');
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	min-height: 600px;
	max-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-overlay {
	text-align: center;
	color: #fff;
	max-width: 800px;
	padding: 0 20px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	font-weight: 300;
}

.cta-button {
	display: inline-block;
	background: var(--brand-color-light-navy);
	color: #fff;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(244, 210, 198, 0.3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(138, 214, 255, 0.4);
}

.cta-button.secondary {
	background: transparent;
	border: 2px solid var(--brand-color-navy);
	color: var(--brand-color-navy);
}

.cta-button.secondary:hover {
	background: var(--brand-color-navy);
	color: #fff;
}

/* Section Styles */
section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-header h2 {
	font-size: 2.5rem;
	color: var(--brand-color-navy);
	font-weight: 600;
}

.section-header p {
	font-size: 1.1rem;
	color: #242424;
	max-width: 600px;
	margin: 0 auto;
}

/* About Preview Section */
.about-preview {
	background: linear-gradient(135deg, #dcf4fa 0%, #ffffff 100%);
}

.about-content {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 85vw;
	max-width: 1000px;
}

.about-text p {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 20px;
	max-width: 850px;
}

.about-image img {
	width: 15vw;
	min-width: 200px;
	margin-right: 50px;
}

/* Product Preview Section */
.product-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.product-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-info h3 {
	font-size: 2rem;
	color: var(--brand-color-navy);
	margin-bottom: 1rem;
	font-weight: 600;
}

.product-info p {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 2rem;
	line-height: 1.8;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 2rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 10px;
	background: #f8f9fa;
	border-radius: 8px;
}

.feature-item i {
	color: var(--brand-color-light-navy);
	font-size: 1.2rem;
}

.feature-item span {
	font-weight: 500;
	color: #333;
}

.product-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.why-choose-us {
	background: linear-gradient(135deg, #ffffff 0%, #dcf4fa 100%);
}

.features-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.feature-card {
	background: #fff;
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: var(--brand-color-light-navy);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.feature-icon i {
	font-size: 2rem;
	color: #fff;
}

.feature-card h3 {
	font-size: 1.3rem;
	color: var(--brand-color-navy);
	margin-bottom: 15px;
	font-weight: 600;
}

.feature-card p {
	color: #666;
	line-height: 1.6;
}

/* Footer Styles */
.footer {
	background: linear-gradient(135deg, #121356 0%, var(--brand-color-navy) 100%);
	color: #fff;
	padding: 50px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 20px;
	color: var(--brand-color-light-navy);
}

.footer-section h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

.footer-section h4 {
	font-size: 1.2rem;
	font-weight: 500;
}

.company-info img {
	width: 450px;
	margin-left: -30px;
	margin-bottom: 15px;
}

.company-info h3 {
	font-family: var(--brand-primary-font-family);
}

.company-info p {
	margin-bottom: 20px;
	line-height: 1.6;
	opacity: 0.9;
}

.certifications {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cert-badge {
	background: rgba(255, 255, 255, 0.1);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-links ul {
	list-style: none;
}

.quick-links li {
	margin-bottom: 10px;
}

.quick-links a {
	color: #fff;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.quick-links a:hover {
	opacity: 1;
	color: #ffd700;
	padding-left: 5px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.contact-item i {
	color: var(--brand-color-light-navy);
	width: 20px;
}

.footer-bottom {
	text-align: center;
	margin-top: 80px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		height: 100vh;
		flex-direction: column;
		background: #ffffff;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
		gap: 1rem;
		font-size: 1.5rem;
	}

	.nav-menu.active {
		left: 0;
	}

	.hamburger {
		display: flex;
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.dropdown-menu {
		position: static;
		box-shadow: none;
		background: rgba(0, 0, 0, 0.1);
		margin: 10px 0;
		border-radius: 5px;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.about-content {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		max-width: none;
		width: 90vw;
	}

	.about-image img {
		width: 75vw;
		margin-bottom: 30px;
		margin-right: 0;
	}

	.product-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.product-content .product-image {
		order: -1;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.product-actions {
		justify-content: center;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.company-info img {
		width: 350px;
		margin-left: 0px;
		margin-bottom: 15px;
	}

	.certifications {
		justify-content: center;
	}

	.contact-item {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.cta-button {
		padding: 12px 25px;
		font-size: 0.9rem;
	}

	.feature-card {
		padding: 30px 20px;
	}
}

/* Smooth animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content {
	animation: fadeInUp 1s ease-out;
}

/* Scroll-triggered animations would be added with JavaScript */
