:root {
	--primary-color: #2563eb;
	--secondary-color: #059669;
	--accent-color: #f59e0b;
	--dark-color: #1f2937;
	--light-color: #f8fafc;
	--gradient-bg: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--dark-color);
}

.navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: var(--primary-color) !important;
	font-size: 1.5rem;
}

.navbar-brand img {
	height: 40px;
	width: auto;
}

.nav-link {
	font-weight: 500;
	color: var(--dark-color) !important;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: var(--primary-color) !important;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::after {
	width: 80%;
}

.hero-section {
	background: var(--gradient-bg);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('./images/1.png') center/cover;
	opacity: 0.1;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	color: white;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	max-width: 600px;
}

.btn-custom {
	background: var(--accent-color);
	color: white;
	border: none;
	padding: 15px 40px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-custom:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
	color: white;
}

.section-padding {
	padding: 80px 0;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 1rem;
}

.section-subtitle {
	color: #64748b;
	font-size: 1.1rem;
	margin-bottom: 3rem;
}

.feature-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
	height: 100%;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: white;
	font-size: 2rem;
}

.product-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
	height: 200px;
	background: var(--gradient-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 3rem;
}

.stats-section {
	background: var(--gradient-bg);
	color: white;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	display: block;
}

.stat-label {
	font-size: 1.1rem;
	opacity: 0.9;
}

.about-image {
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.contact-section {
	background: var(--light-color);
}

.contact-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.contact-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
}

.footer {
	background: var(--dark-color);
	color: white;
	padding: 2rem 0;
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0);
}

.hero-main-image {
	height: 500px;
	width: 100%;
	object-fit: cover;
	object-position: center center;
	border-radius: 1.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

	.section-title {
		font-size: 2rem;
	}

	.hero-main-image {
		height: 300px;
		margin-top: 2rem;
	}
}
