* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
	padding: 6rem 2rem 4rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 300;
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.hero-subtitle {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.8;
}

.cta-button {
	background: #ff6b35;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.cta-button:hover {
	background: #e55a2b;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Main Content */
.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.bg-light {
	background: #f8f9fa;
}

/* Product Categories */
.categories-section {
	padding: 4rem 0;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #ff6b35;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.category-card {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 5px 30px rgba(0,0,0,0.1);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.category-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6b35, #ff8c42);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	margin-bottom: 1.5rem;
}

.category-card h3 {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 1rem;
}

.category-card p {
	color: #666;
	margin-bottom: 1.5rem;
}

.specialties-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
	list-style: none;
}

.specialties-list li {
	padding: 0.3rem 0;
	color: #555;
	position: relative;
	padding-left: 1.5rem;
}

.specialties-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ff6b35;
	font-weight: bold;
}

/* Stats Section */
.stats-section {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
	padding: 4rem 0;
	text-align: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.stat-item {
	padding: 1.5rem;
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	color: #ff6b35;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.1rem;
	opacity: 0.9;
}

/* About Section */
.about-section {
	padding: 5rem 0;
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 4rem;
	align-items: center;
}

.about-text h2 {
	font-size: 2.2rem;
	color: #333;
	margin-bottom: 1.5rem;
}

.about-text p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.about-image {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 20px;
	height: 300px;
	position: relative;
	overflow: hidden;
}

/* Footer */
.footer {
	background: #1a1a1a;
	color: white;
	text-align: center;
	padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.categories-grid {
		grid-template-columns: 1fr;
	}

	.about-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nav-menu {
		display: none;
	}
	.mobile-menu-toggle{
		margin-right:30px;
	}
}