:root {
	--primary: #2563eb;
	--primary-dark: #1d4ed8;
	--secondary: #64748b;
	--accent: #f97316;
	--background: #f8fafc;
	--text: #1e293b;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
	background-color: var(--background);
	color: var(--text);
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Header */
header {
	background-color: white;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	display: flex;
	align-items: center;
	padding: 0;
}

.logo-img {
	height: 40px;
	width: auto;
	object-fit: contain;
}

@media (max-width: 768px) {
	.logo-img {
		height: 35px;
	}
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

	.nav-links a {
		text-decoration: none;
		color: var(--text);
		font-weight: 500;
		transition: color 0.3s;
	}

/*		.nav-links a:hover {
			color: #717ff5;
		}*/

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text);
	cursor: pointer;
}

.btn {
	padding: 0.75rem 1.5rem;
	border-radius: 26px;
	font-weight: 600;
	transition: all 0.3s;
	text-decoration: none;
}

.btn-primary {
	background-color: var(--primary);
	color: white;
}

	.btn-primary:hover {
		background-color: var(--primary-dark);
	}

/* Hero Section */
.hero {
	padding: 8rem 0 4rem;
	background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-text h1 {
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(to right, var(--primary), var(--accent));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-text p {
	font-size: 1.25rem;
	color: var(--secondary);
	margin-bottom: 2rem;
}

.hero-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
	padding: 6rem 0;
}

.section-title {
	text-align: center;
	margin-bottom: 4rem;
}

	.section-title h2 {
		font-size: 2.5rem;
		color: var(--text);
		margin-bottom: 1rem;
	}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

	.service-card:hover {
		transform: translateY(-5px);
	}

	.service-card i {
		font-size: 2.5rem;
		color: var(--primary);
		margin-bottom: 1.5rem;
	}

/* Contact Section */
.contact {
	background: white;
	padding: 6rem 0;
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	padding: 2rem;
	background: var(--background);
	border-radius: 16px;
}

.form-group {
	margin-bottom: 1.5rem;
}

	.form-group input,
	.form-group textarea {
		width: 100%;
		padding: 0.75rem;
		border: 2px solid #e2e8f0;
		border-radius: 8px;
		transition: border-color 0.3s;
	}

		.form-group input:focus,
		.form-group textarea:focus {
			outline: none;
			border-color: var(--primary);
		}

/* Footer */
footer {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	color: #f8fafc;
	padding: 4rem 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h4 {
	color: white;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	position: relative;
}

	.footer-section h4::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: -0.5rem;
		width: 2rem;
		height: 2px;
		background: var(--primary);
	}

.footer-section p {
	color: #cbd5e1;
	margin-bottom: 1rem;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

	.social-links a {
		background: rgba(255, 255, 255, 0.1);
		color: white;
		width: 2.5rem;
		height: 2.5rem;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s;
	}

		.social-links a:hover {
			background: var(--primary);
			transform: translateY(-3px);
		}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: #94a3b8;
}

.footer-bottom-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 1rem;
}

	.footer-bottom-links a {
		color: #94a3b8;
		text-decoration: none;
		transition: color 0.3s;
	}

		.footer-bottom-links a:hover {
			color: white;
		}

/* Mobile Styles */
@media (max-width: 768px) {
	.mobile-menu-btn {
		display: block;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		padding: 1rem;
		flex-direction: column;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}

		.nav-links.active {
			display: flex;
		}

		.nav-links a {
			width: 100%;
			padding: 0.5rem 0;
		}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-section h4::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.social-links {
		justify-content: center;
	}

	.footer-bottom-links {
		flex-direction: column;
		gap: 1rem;
	}
}

.carousel {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-item {
	height: 400px;
}

	.carousel-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.carousel-control-prev,
.carousel-control-next {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
}

.carousel-control-prev {
	left: 20px;
}

.carousel-control-next {
	right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 20px;
	height: 20px;
}

.carousel-indicators {
	margin-bottom: 1rem;
}

	.carousel-indicators [data-bs-target] {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		margin: 0 4px;
	}




/* Product Preview Section */
.products-preview {
	padding: 6rem 0;
	background-color: #f8f9fa; /* Light background color */
}

	.products-preview .section-title {
		text-align: center;
		margin-bottom: 4rem;
	}

		.products-preview .section-title h2 {
			font-size: 2.5rem;
			-webkit-background-clip: text;
			color: var(--text);
			margin-bottom: 1rem;
		}

		.products-preview .section-title p {
			font-size: 1.1rem;
			color: #6c757d;
		}

.products-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.product-preview-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}

	.product-preview-card:hover {
		transform: translateY(-10px);
	}

.product-preview-image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio:4/3;
	overflow:hidden
}

	.product-preview-image-wrapper img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 10px;
		transition: transform 0.3s ease-in-out;
	}

	.product-preview-image-wrapper:hover img {
		transform: scale(1.05);
	}

.product-preview-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.product-preview-image-wrapper:hover .product-preview-hover {
	opacity: 1;
}

.hover-content {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
}

	.hover-content h3 {
		margin-bottom: 5px;
	}

	.hover-content p {
		font-size: 1rem;
		margin: 0;
	}


.product-catalog {
	padding: 7rem 0rem;
	margin-bottom: 2rem;
}

.category {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 15px;
}

	.category button {
		color: rgb(74, 74, 74);
		font-size: 14px;
		border: none;
		padding: 5px 10px;
		background-color: transparent;
		box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
		margin: 5px;
		border-radius: 5px;
	}

		.category button:hover {
			background-color: #dffffc;
		}

	.category .activeCtgBtn {
		background-color: #dffffc;
	}

/* Style for product gallery */
.product-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.5rem;
}

.product-gallery-item {
	position: relative;
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

	.product-gallery-item img {
		width: 100%;
		height: 150px;
		object-fit: contain;
		transition: transform 0.3s ease;
	}

	.product-gallery-item:hover {
		transform: translateY(-5px);
	}


@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.product-gallery-item {
	opacity: 0;
	animation: slideIn 0.3s forwards;
}
