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

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
	line-height: 1.6;
	background-color: #eff4f9;
}

/* Header */
header {
	/* background: white; */
	padding: 20px 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
	position: relative;
	z-index: 100;
}

.logo {
	font-size: 32px;
	font-weight: bold;
	color: #6b1938;
	line-height: 1;
}

.logo-sub {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: 2px;
}

nav {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	color: #6b1938;
	cursor: pointer;
}

nav a {
	color: #660033;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}

.phone {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #660033;
	font-weight: 600;
	font-size: 14px;
}

.phone .img-holder {
	width: 16px;
	height: 16px;
}
/* Hero Slider */
.hero-slider {
	position: relative;
	min-height: 600px;
	overflow: hidden;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	background-size: cover;
	background-position: center;
}

.slide.active {
	opacity: 1;
}

.slide-1 {
	background: linear-gradient(rgba(96, 32, 24, 0), rgba(70, 15, 9, 1)),
		url("/assets/hero_image.png");
	background-repeat: no-repeat; /* Prevents the image from repeating */
	background-size: cover; /* Scales the image to fit within the content box while maintaining its aspect ratio */
	background-position: top;
}

.slide-2 {
	background: linear-gradient(rgba(96, 32, 24, 0), rgba(70, 15, 9, 1)),
		url("/assets/hero_image.png");
	background-repeat: no-repeat; /* Prevents the image from repeating */
	background-size: cover; /* Scales the image to fit within the content box while maintaining its aspect ratio */
	background-position: top;
}

.slide-3 {
	background: linear-gradient(rgba(96, 32, 24, 0), rgba(70, 15, 9, 1)),
		url("/assets/hero_image.png");
	background-repeat: no-repeat; /* Prevents the image from repeating */
	background-size: cover; /* Scales the image to fit within the content box while maintaining its aspect ratio */
	background-position: top;
}

.hero-content-wrapper {
	position: relative;
	min-height: 550px;
	display: flex;
	align-items: flex-end;
	gap: 60px;
	padding: 5% 5% 0%;
	color: white;
}

.hero-content {
	max-width: 600px;
	position: relative;
	z-index: 2;
}

.hero h1 {
	/* font-size: 48px; */
	/* font-size: 3em; */
	font-size: 48px;
	margin-bottom: 10px;
	line-height: 1.2;
}

.hero-info {
	/* position: absolute; */
	/* right: 5%; */
	/* left: 450px; */
	/* top: 50%; */
	/* transform: translateY(-50%); */
	/* background: rgba(0, 0, 0, 0.3); */
	/* padding: 30px; */
	/* max-width: 400px; */
	/* backdrop-filter: blur(5px); */
	max-width: 65%;
	z-index: 2;
}

.hero-info p {
	margin-bottom: 15px;
	font-size: 24px;
	/* font-size: 1em; 24px */
}

.btn-link {
	color: #eaad18;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px;
}

.btn-link::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background-color: #eaad18; /* Your color */

	mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M16 0L13.17 2.83L24.34 14H0V18H24.34L13.17 29.17L16 32L32 16L16 0Z" fill="black"/></svg>')
		center / contain no-repeat;
}

/* Slider Controls */
.slider-dots {
	position: absolute;
	bottom: 30px;
	left: 5%;
	display: flex;
	display: none;
	gap: 10px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s;
}

.dot.active {
	background: white;
}

.slider-arrow {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
	transition: background 0.3s;
}

.slider-arrow:hover {
	background: rgba(255, 255, 255, 0.3);
}

.slider-arrow.prev {
	left: 20px;
}

.slider-arrow.next {
	right: 20px;
}

/* Product Cards */
.products {
	padding: 0 5%;
	margin: 10px 0px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 10px;
}

.product-card {
	background: #602018;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
	width: auto;
	height: 260px;
	background: url(./worker.png);
	background-size: cover;
	background-position: top;
}

.product-content {
	/* background: linear-gradient(135deg, #6b1938 0%, #8b2348 100%); */
	padding: 30px;

	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-card h3 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 15px;
	line-height: 1.3;
}

.product-card p {
	font-size: 20px;
	line-height: 1.6;
	/* margin-bottom: 20px; */
	color: #d9d9d9;
	opacity: 0.95;
}

.product-arrow {
	color: #f5b947;
	font-size: 32px;
	font-weight: 300;
	width: 24px;
	height: 24px;
	display: flex;
}

/* Company Section */
.company-section {
	padding: 0px 5%;
}

.company-content {
	display: grid;
	grid-template-columns: 2fr 1.5fr;
	gap: 20px;
	align-items: center;
	background-color: #fff;
}

.company-text {
	padding: 30px;
}

.company-text h2 {
	font-size: 18px;
	color: rgba(12, 12, 12, 0.7);
	margin-bottom: 20px;
	font-weight: 600;
}

.company-text h3 {
	font-size: 24px;
	color: rgba(102, 0, 51, 1);
	margin-bottom: 30px;
	line-height: 1.4;
}

/* .company-text h3 span {
	color: #6b1938;
} */

.company-text p {
	color: rgba(116, 127, 138, 1);
	font-size: 18px;
	line-height: 1.8;
}

.company-image {
	background: url("./wood_image.png");
	background-size: cover;
	background-repeat: no-repeat;
	height: 400px;
	/* border-radius: 5px; */
}

/* Excellence Section */
.excellence {
	background: url("./stripe_image.svg");
	background-repeat: no-repeat;
	background-position: 95%;
	padding: 80px 5%;
	position: relative;
	overflow: hidden;
	display: flex;
}

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

.year {
	font-size: 120px;
	font-weight: bold;
	color: #f5b947;
	line-height: 1;
	margin-bottom: 10px;
}

.excellence h3 {
	font-size: 32px;
	color: #333;
	margin-bottom: 30px;
}

.year-title {
	font-family: "Spectral", serif;
	font-size: 12rem; /* Make it very large */
	font-weight: 300;
	color: #eaad18; /* Using the gold color from our last chat */
	line-height: 1; /* Tighten the line height */
	margin: 0; /* Remove default h1 margin */
	position: relative;
}

.year-subtitle {
	font-family: "Montserrat", sans-serif;
	font-size: 1.3rem;
	font-weight: 300;
	letter-spacing: 1px;
	color: rgba(0, 0, 0, 0.7);
	position: absolute;
	bottom: 2.8rem;
	left: 15rem;
}

.excellence p {
	max-width: 500px;
	color: #747f8a;
	font-size: 15px;
	line-height: 1.8;
}

/* .diagonal-lines {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background: repeating-linear-gradient(
		45deg,
		#f5b947,
		#f5b947 40px,
		transparent 40px,
		transparent 80px,
		#f5b947 80px,
		#f5b947 120px,
		transparent 120px,
		transparent 160px
	);
	opacity: 0.8;
}

.diagonal-stripes-background {
	width: 100%;
	height: 300px;

	background-image: linear-gradient(
			-45deg,
			transparent 0%,
			transparent 30%,
			#eaad18 30%,
			#eaad18 40%,
			transparent 40%,
			transparent 100%
		),
		linear-gradient(
			-45deg,
			transparent 0%,
			transparent 60%,
			#f5ddab 60%,
			#f5ddab 70%,
			transparent 70%,
			transparent 100%
		);

	background-size: 150px 100%;
	background-repeat: repeat-x;
}

.diagonal-stripes {
	position: relative;
	width: 100%;
	height: 400px;
	background-color: #f0f0f0;
	overflow: hidden;
}

.stripe {
	position: absolute;
	top: -50px;
	height: 150%;
	transform: skewX(-20deg);
}

.stripe-1 {
	left: 15%;
	width: 80px;
	background: linear-gradient(
		to right,
		#f4b840 0%,
		#f4b840 40%,
		#f5d699 40%,
		#f5d699 100%
	);
}

.stripe-2 {
	left: 25%;
	width: 80px;
	background: linear-gradient(
		to right,
		#f4b840 0%,
		#f4b840 40%,
		#f5d699 40%,
		#f5d699 100%
	);
} */

/* Footer */
footer {
	background: #6b1938;
	color: white;
	padding: 60px 5% 30px;
}

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

.footer-logo {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-tagline {
	font-size: 24px;
	line-height: 1.3;
	opacity: 0.9;
}

.footer h4 {
	font-size: 18px;
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
}

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

.footer-links a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.8;
}

.footer-links a:hover {
	opacity: 1;
}

.contact-info p {
	font-size: 13px;
	margin-bottom: 8px;
	opacity: 0.8;
	line-height: 1.6;
}

.copyright {
	text-align: left;
	padding-top: 30px;
	/* border-top: 1px solid rgba(255, 255, 255, 0.2); */
	font-size: 13px;
	opacity: 0.7;
}

.phone-white {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 5px;
	color: white;
	font-weight: 600;
	font-size: 14px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
	.hero h1 {
		font-size: 40px;
	}

	.hero-info {
		max-width: 350px;
		padding: 25px;
	}

	.company-content {
		gap: 40px;
	}

	.year {
		font-size: 100px;
	}

	.products-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}
}

/* Mobile Styles */
@media (max-width: 768px) {
	header {
		padding: 15px 4%;
	}

	.logo {
		font-size: 26px;
	}

	.logo-sub {
		font-size: 12px;
	}

	nav {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 5%;
		gap: 20px;
		transition: left 0.3s ease;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	}

	nav.active {
		left: 0;
	}

	.nav-toggle {
		display: block;
	}

	nav a,
	.phone {
		font-size: 16px;
	}

	.hero-slider {
		min-height: 400px;
	}

	.hero-content-wrapper {
		min-height: 400px;
		flex-direction: column;
		padding: 30px 4%;
	}

	.hero h1 {
		font-size: 28px;
	}

	.hero-info {
		position: static;
		transform: none;
		max-width: 100%;
		margin-top: 30px;
		padding: 20px;
	}

	.hero-info p {
		font-size: 14px;
	}

	.slider-arrow {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.slider-arrow.prev {
		left: 10px;
	}

	.slider-arrow.next {
		right: 10px;
	}

	.slider-dots {
		left: 50%;
		transform: translateX(-50%);
	}

	.products {
		padding: 0 4%;
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.product-image {
		height: 200px;
	}

	.product-content {
		padding: 25px;
		min-height: 180px;
	}

	.product-card h3 {
		font-size: 20px;
	}

	.company-section {
		padding: 10px 4%;
	}

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

	.company-text h2 {
		font-size: 16px;
	}

	.company-text h3 {
		font-size: 24px;
	}

	.company-text p {
		font-size: 14px;
	}

	.company-image {
		height: 300px;
	}

	.excellence {
		padding: 50px 4%;
	}

	.year {
		font-size: 70px;
	}

	.excellence h3 {
		font-size: 24px;
	}

	.excellence p {
		font-size: 14px;
	}

	.diagonal-lines {
		width: 100%;
		opacity: 0.4;
	}

	footer {
		padding: 40px 4% 20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.footer-logo {
		font-size: 30px;
	}

	.footer-tagline {
		font-size: 20px;
	}

	.footer h4 {
		font-size: 16px;
	}

	.excellence {
		background-size: 40%;
	}
}

/* Small Mobile Styles */
@media (max-width: 480px) {
	.logo {
		font-size: 22px;
	}

	.hero h1 {
		font-size: 24px;
	}

	.hero-info {
		padding: 15px;
	}

	.year {
		font-size: 60px;
	}

	.excellence h3 {
		font-size: 20px;
	}

	.company-text h3 {
		font-size: 20px;
	}

	.product-card h3 {
		font-size: 18px;
	}

	.product-content {
		padding: 20px;
	}

	.excellence {
		background: none;
	}

	.year-title {
		font-size: 8rem;
		line-height: 0.5;
	}

	.year-span {
		display: block;
		text-align: center;
	}

	.year-subtitle {
		font-size: 1rem;
		position: relative;
		left: auto;
		display: inline-block;
		text-align: center;
		width: 100%;
	}
}

/* Hero Product Section */
.product-hero {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	min-height: 260px;
	margin: 0 5%;
	background: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.product-hero-image {
	/* background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 400"><rect fill="%23d4a574" width="500" height="400"/><rect fill="%23c89960" x="50" y="100" width="150" height="250" opacity="0.6"/><circle fill="%23b8956a" cx="350" cy="200" r="80" opacity="0.5"/></svg>'); */

	width: auto;
	height: 260px;
	background: url(./worker.png);
	background-size: cover;
	background-position: center;
}

.product-hero-content {
	background: linear-gradient(135deg, #6b1938 0%, #8b2348 100%);
	color: white;
	padding: 60px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-hero-content h1 {
	font-size: 36px;
	margin-bottom: 20px;
	font-weight: 600;
}

.product-hero-content p {
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.95;
}

/* Company Snapshot Section */
.company-snapshot {
	background: white;
	margin: 0 5% 40px;
	padding: 60px 5%;
}

.snapshot-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.snapshot-text h2 {
	font-size: 18px;
	color: #999;
	margin-bottom: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.snapshot-text h3 {
	font-size: 28px;
	color: #333;
	margin-bottom: 30px;
	line-height: 1.4;
}

.snapshot-text h3 span {
	color: #6b1938;
}

.snapshot-text p {
	color: #666;
	font-size: 15px;
	line-height: 1.8;
}

.snapshot-image {
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><rect fill="%23228B22" width="600" height="400"/><rect fill="%23FF6347" x="150" y="120" width="300" height="80" rx="10"/><rect fill="%238B4513" x="200" y="200" width="80" height="150" rx="40"/><rect fill="%23A0522D" x="320" y="200" width="80" height="150" rx="40"/></svg>');
	background-size: cover;
	background-position: center;
	height: 350px;
	border-radius: 5px;
}

/* Why Choose Us Section */
.why-choose {
	background: white;
	margin: 10px 5% 40px;
	padding: 30px;
}

.why-choose h2 {
	font-size: 32px;
	color: #6b1938;
	margin-bottom: 40px;
}

.benefits-list {
	/* list-style: none; */
}

.benefits-list li {
	/* margin-bottom: 25px; */
	font-size: 15px;
	line-height: 1.8;
	color: #747f8a;
}

.benefits-list strong {
	color: #747f8a;
	font-weight: 600;
}

.benefits-list .highlight {
	color: #747f8a;
	font-weight: 600;
}

/* Gallery Section */
.gallery {
	background: white;
	margin: 0 5% 40px;
	padding: 40px 5%;
}

.gallery-grid {
	margin-top: 35px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.gallery-item {
	/* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><rect fill="%23228B22" width="600" height="400"/><rect fill="%23FF6347" x="150" y="120" width="300" height="80" rx="10"/><rect fill="%238B4513" x="200" y="200" width="80" height="150" rx="40"/><rect fill="%23A0522D" x="320" y="200" width="80" height="150" rx="40"/></svg>'); */
	background: url("wood_image.png");
	background-size: cover;
	background-position: center;
	height: 300px;
	transition: transform 0.3s;
}

.gallery-item:hover {
	transform: scale(1.02);
}

@media (max-width: 968px) {
	.product-hero {
		grid-template-columns: 1fr;
	}

	.product-hero-image {
		min-height: 300px;
	}

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

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

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

@media (max-width: 768px) {
	nav {
		flex-wrap: wrap;
		gap: 15px;
	}

	.product-hero-content {
		padding: 40px 30px;
	}

	.product-hero-content h1 {
		font-size: 28px;
	}

	.why-choose h2 {
		font-size: 24px;
	}
}

/* Floating WhatsApp Icon Styles */
@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	border-radius: 50%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	animation: pulse 2.5s infinite;
}
.whatsapp-float:hover {
	transform: scale(1.1);
	animation: none;
}

.w-50{
	width: 50%;
}

.text-white{
	color: white;
}