/* holder */
.holder{
	height: 10vh;
}

/* Hero Section with Auto-Scrolling Carousel */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: 1;
}

.hero-carousel {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(1.05);
}

.hero-slide.active {
	opacity: 1;
	z-index: 2;
	transform: scale(1);
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Hero Indicators */
.hero-indicators {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 1rem;
	z-index: 10;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
	background-color: #00bfff;
	width: 30px;
	border-radius: 6px;
	border-color: #00bfff;
	box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.indicator:hover {
	background-color: rgba(255, 255, 255, 0.8);
	transform: scale(1.2);
}

/* Info Section */
.info-section {
	background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
	border-radius: 15px;
	padding: 3rem 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	margin: 3rem auto;
}

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

.info-section .info-11 {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
	max-width: 900px;
	margin: 0 auto;
}

.info-section .info-11 b {
	color: var(--dark);
	font-weight: 600;
}

/* Product Container */
.product-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 1rem;
	gap: 2rem;
	max-width: 100%;
	box-sizing: border-box;
}

.product-container>img{
	width: 100%;
	max-width: 280px;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 1rem;
	border: 2px solid rgba(44, 51, 75, 0.1);
	margin: 0;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	transition: all 0.3s ease;
}

.product-container>img:hover{
	transform: translateY(-5px);
	box-shadow: rgba(50, 50, 93, 0.35) 0px 10px 20px -2px, rgba(0, 0, 0, 0.4) 0px 6px 12px -3px;
	border-color: var(--dark);
}

/* Inquiry Section */
.inquiry-section {
	padding: 1rem 1rem;
	background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
	margin: 2rem 0;
	position: relative;
	overflow: hidden;
}

.inquiry-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, #00bfff, transparent);
}

.inquiry-container {
	max-width: 800px;
	margin: 0 auto;
}

.inquiry-content {
	text-align: center;
}

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

.inquiry-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #00bfff, var(--dark));
	border-radius: 2px;
}

.inquiry-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #666;
	margin: 1rem 0 1.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.inquiry-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.inquiry-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--dark);
	font-weight: 600;
	font-size: 1rem;
}

.inquiry-feature i {
	color: #00bfff;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.inquiry-feature:hover i {
	transform: scale(1.2);
}

/* Inquiry Button */
.set-inquiry-btn{
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, var(--dark) 0%, #1a1f35 100%);
	color: var(--light);
	border-radius: 50px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(44, 51, 75, 0.3);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.set-inquiry-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.set-inquiry-btn:hover::before {
	left: 100%;
}

.set-inquiry-btn:hover{
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(44, 51, 75, 0.4);
	background: linear-gradient(135deg, #1a1f35 0%, var(--dark) 100%);
}

.set-inquiry-btn i {
	transition: transform 0.3s ease;
}

.set-inquiry-btn:hover i {
	transform: translateX(5px);
}

/* All Items Section */
.all-iteminone {
	padding: 1rem 1rem;
	margin: 1rem 0;
	box-sizing: border-box;
}

.all-iteminone img {
	width: 100%;
	max-width: 800px;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: block;
	margin: 0 auto;
}

/* Section 4 - What We Proud Of */
.sec-4 {
	background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
	padding: 1rem 2rem;
	margin: 2rem 0;
	box-sizing: border-box;
}

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

/* Proud Features Grid */
.proud-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1400px;
	margin: 0 auto;
	padding: 1rem;
	box-sizing: border-box;
}

/* Ensure 4 columns on desktop */
@media screen and (min-width: 769px) {
	.proud-features-grid {
		grid-template-columns: repeat(4, 1fr) !important;
	}
}

.feature-card {
	background: transparent;
	border-radius: 20px;
	padding: 1rem 0.5rem;
	box-shadow: none;
	transition: all 0.4s ease;
	border: none;
	text-align: center;
	position: relative;
	overflow: visible;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: none;
	background: transparent;
}

.feature-icon-wrapper {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #4f595d 0%, var(--dark) 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
	transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper i {
	font-size: 1.5rem;
	color: #ffffff;
	transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper i {
	transform: scale(1.1);
}

.feature-title {
	color: var(--dark);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
	color: #00bfff;
}

.feature-description {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
	transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
	color: #555;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
	.hero-section {
		height: 60vh;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.hero-carousel {
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: end;
	}
	
	.hero-image {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
	}
	
	.hero-slide {
		background: #f5f5f5;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}
	/* Ensure header is visible above hero */
	.navigation-section {
		z-index: 1002;
	}
	
	.navigation-bar {
		z-index: 1003;
	}
	
	.info-section {
		padding: 2rem 1.5rem;
	}
	
	.info-section .title-1 {
		font-size: 2rem;
	}
	
	.sec-4 {
		padding: 3rem 1.5rem;
	}
	
	.sec-4 .title-1 {
		font-size: 2rem;
	}
	
	.proud-features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
		padding: 0.5rem;
	}
	
	@media screen and (max-width: 480px) {
		.proud-features-grid {
			grid-template-columns: 1fr;
			gap: 2rem;
		}
	}
}
	
	.feature-card {
		padding: 1.5rem 1rem;
		margin-bottom: 1rem;
	}
	
	.feature-icon-wrapper {
		width: 50px;
		height: 50px;
	}
	
	.feature-icon-wrapper i {
		font-size: 1.3rem;
	}
	
	.feature-title {
		font-size: 1.1rem;
	}
	
	.feature-description {
		font-size: 0.9rem;
	}
	
	.all-iteminone {
		padding: 1rem;
	}
	
	.product-container>img {
		max-width: 100%;
	}
	
	.inquiry-section {
		padding: 3rem 1.5rem;
	}
	
	.inquiry-title {
		font-size: 2rem;
	}
	
	.inquiry-description {
		font-size: 1rem;
		margin: 1.5rem 0 2rem;
	}
	
	.inquiry-features {
		gap: 1.5rem;
		margin-bottom: 2rem;
	}
	
	.inquiry-feature {
		font-size: 0.9rem;
	}
	
	.set-inquiry-btn {
		padding: 0.875rem 2.5rem;
		font-size: 1rem;
	}

