/* ========================================
   COMPANY STORY
======================================== */

#company-story {
	width: 100%;
	background: #fff;
	padding: 88px 0;
	overflow: visible;
	position: relative;
}

.story-grid {
	width: 100%;
	display: flex;
	align-items: stretch;
}

.story-vis {
	position: relative;
	flex: 0 0 50%;
	width: 50%;
	overflow: hidden;
	line-height: 0;
	display: flex;
	background: #f7f9fc;
}

.story-vis img {
	width: 100%;
	height: auto;
	flex: 1 1 auto;
	min-height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	transition: transform .8s ease;
}

.story-vis:hover img {
	transform: scale(1.05);
}

.story-vis::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, .35),
		rgba(0, 0, 0, 0)
	);
}

.story-badge {
	position: absolute;
	left: 40px;
	bottom: 40px;
	z-index: 2;
	background: var(--navy);
	padding: 22px 26px;
}

.story-badge-num {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 52px;
	font-weight: 800;
	line-height: 1;
	color: #fff;
}

.story-badge-num span {
	color: var(--blue);
}

.story-badge-label {
	margin-top: 6px;
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
}

.story-copy {
	flex: 0 0 50%;
	width: 50%;
	background: #f7f9fc;
	padding: 100px 8%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.story-copy .s-tag {
	position: relative;
	padding-left: 24px;
}

.story-copy .s-tag::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 14px;
	height: 2px;
	background: #00a8ff;
	transform: translateY(-50%);
}

.story-copy p,
.story-copy .story-desc p {
	font-size: 14px;
	line-height: 1.95;
	color: var(--gray);
	margin-bottom: 18px;
}

.story-copy p:last-of-type,
.story-copy .story-desc p:last-child {
	margin-bottom: 40px;
}

.story-stats {
	position: relative;
	z-index: 10;
	margin-top: 60px;
}

.story-stats-inner {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: #08192f;
	border-radius: 22px;
	overflow: hidden;
	box-shadow:
		0 20px 50px rgba(0, 0, 0, .08),
		0 8px 20px rgba(0, 0, 0, .05);
}

.story-stat {
	position: relative;
	padding: 56px 40px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, .08);
	transition: .35s ease;
}

.story-stat:last-child {
	border-right: none;
}

.story-stat:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, .03);
}

.story-stat::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 60px;
	height: 3px;
	transform: translateX(-50%);
	background: #00a8ff;
}

.story-stat-num {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 72px;
	font-weight: 800;
	line-height: 1;
	color: #fff;
}

.story-stat-num sup {
	font-size: 32px;
	color: #00a8ff;
}

.story-stat-label {
	margin-top: 14px;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .55);
}

@media (max-width: 991px) {
	.story-grid {
		flex-direction: column;
	}

	.story-vis,
	.story-copy {
		flex: 0 0 auto;
		width: 100%;
	}

	.story-copy {
		padding: 60px 36px;
	}

	.story-stats {
		margin-top: 40px;
		padding: 0 20px;
	}

	.story-stats-inner {
		grid-template-columns: 1fr 1fr;
	}

	.story-stat {
		padding: 40px 20px;
	}

	.story-stat-num {
		font-size: 56px;
	}
}

@media (max-width: 640px) {
	#company-story {
		padding: 60px 0;
	}

	.story-stats-inner {
		grid-template-columns: 1fr;
	}

	.story-stat {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
	}

	.story-stat:last-child {
		border-bottom: none;
	}

	.story-copy {
		padding: 50px 24px;
	}
}

/* ========================================
   WHY CHOOSE US
======================================== */

#why-us {
	position: relative;
	padding: 90px 0;
	overflow: hidden;
	background: center center / cover no-repeat fixed;
}

@media (max-width: 991px) {
	#why-us {
		background-attachment: scroll;
	}
}

#why-us::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(13, 43, 85, .6);
	z-index: 0;
}

.why-inner {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 64px;
}

#why-us .s-tag {
	color: #fff;
}

#why-us .s-tag::before {
	background: #fff;
}

#why-us .s-title {
	color: #fff;
}

#why-us .s-title b {
	color: var(--blue);
}

.why-head {
	text-align: center;
	margin-bottom: 56px;
}

.why-head .s-tag {
	justify-content: center;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid rgba(255, 255, 255, .1);
	background: rgba(255, 255, 255, .06);
	gap: 1px;
}

.why-item {
	background: rgba(255, 255, 255, .92);
	padding: 42px 32px;
	position: relative;
	transition: background .3s;
	cursor: default;
}

.why-item:hover {
	background: var(--navy);
}

.why-item:hover .why-title,
.why-item:hover .why-desc {
	color: #fff;
}

.why-item:hover .why-icon-wrap {
	background: var(--blue);
	border-color: var(--blue);
}

.why-item:hover .why-ghost {
	color: rgba(255, 255, 255, .04);
}

.why-ghost {
	position: absolute;
	top: 16px;
	right: 18px;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 60px;
	color: rgba(13, 43, 85, .05);
	letter-spacing: 1px;
	transition: color .3s;
	line-height: 1;
}

.why-icon-wrap {
	width: 52px;
	height: 52px;
	border: 1.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all .3s;
	overflow: hidden;
}

.why-icon-wrap img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	display: block;
}

.why-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: var(--navy);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
	transition: color .3s;
}

.why-desc {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.8;
	transition: color .3s;
}

@media (max-width: 991px) {
	.why-grid {
		grid-template-columns: 1fr 1fr;
	}

	.why-inner {
		padding: 0 28px;
	}
}

@media (max-width: 640px) {
	.why-grid {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   CERTIFICATIONS
======================================== */

#certifications {
	position: relative;
	padding: 88px 0;
	overflow: hidden;
}

#certifications::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--cert-bg, none) center / cover no-repeat;
	z-index: 0;
}

#certifications::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.88);
	z-index: 1;
}

#certifications .inner {
	position: relative;
	z-index: 2;
}

.cert-head {
	text-align: center;
	margin-bottom: 60px;
}

.cert-head .s-tag {
	justify-content: center;
}

.cert-slider-wrap {
	position: relative;
	max-width: 1400px;
	margin: auto;
	padding: 0 70px;
}

.cert-slider {
	overflow: hidden;
}

.cert-track {
	display: flex;
	transition: transform .5s ease;
}

.cert-card {
	flex: 0 0 25%;
	padding: 0 18px;
	text-align: center;
	box-sizing: border-box;
}

.cert-card-inner {
	padding: 25px;
	transition: all .35s ease;
	border-radius: 12px;
}

.cert-card-inner:hover {
	transform: translateY(-6px);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, .08),
		0 8px 20px rgba(0, 0, 0, .05);
}

.cert-card img {
	width: 100%;
	height: 280px;
	object-fit: contain;
	display: block;
}

.cert-card-name {
	margin-top: 20px;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.cert-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	border: none;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
	border-radius: 50%;
	cursor: pointer;
	font-size: 22px;
	color: var(--navy);
	transition: .3s;
}

.cert-btn:hover {
	background: var(--navy);
	color: #fff;
}

.cert-prev {
	left: 0;
}

.cert-next {
	right: 0;
}

@media (max-width: 991px) {
	.cert-card {
		flex: 0 0 50%;
	}

	.cert-card img {
		height: 220px;
	}
}

@media (max-width: 640px) {
	.cert-slider-wrap {
		padding: 0 50px;
	}

	.cert-card {
		flex: 0 0 100%;
	}

	.cert-card img {
		height: 200px;
	}
}

/* ========================================
   FACTORY
======================================== */

#factory {
	background: var(--navy);
	padding: 90px 0;
}

#factory .s-tag {
	color: rgba(255, 255, 255, .6);
}

#factory .s-title {
	color: #fff;
}

#factory .s-title b {
	color: var(--blue);
}

.factory-head {
	margin-bottom: 66px;
}

.factory-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3px;
	margin-bottom: 56px;
}

.factory-card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.factory-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}

.factory-card:hover img {
	transform: scale(1.08);
}

.factory-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
	opacity: 0;
	transition: .4s;
}

.factory-card:hover::after {
	opacity: 1;
}

.factory-data {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, .08);
}

.factory-data-item {
	background: rgba(255, 255, 255, .03);
	padding: 32px 28px;
}

.factory-data-item:hover {
	background: rgba(255, 255, 255, .08);
}

.fd-label {
	color: rgba(255, 255, 255, .6);
}

.fd-val {
	color: #fff;
}

/* ========================================
   TRADE SHOWS
======================================== */

#trade-shows {
	background: var(--blue-pale);
	padding: 90px 0;
}

#trade-shows .s-tag {
	color: var(--gray);
}

#trade-shows .s-title {
	color: var(--navy);
}

.shows-head {
	margin-bottom: 66px;
}

.show-slider-wrap {
	position: relative;
	max-width: 1400px;
	margin: auto;
	padding: 0 60px;
}

.show-slider {
	overflow: hidden;
}

.show-track {
	display: flex;
	transition: transform .5s ease;
}

.show-card {
	flex: 0 0 25%;
	padding: 0 6px;
	box-sizing: border-box;
}

.show-card-inner {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.show-card-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}

.show-card-inner:hover img {
	transform: scale(1.08);
}

.show-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 147, 208, .6), transparent);
	opacity: 0;
	transition: .3s;
	display: flex;
	align-items: flex-end;
	padding: 16px;
}

.show-card-inner:hover .show-card-overlay {
	opacity: 1;
}

.show-card-label {
	color: #fff;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 14px;
	letter-spacing: 2px;
}

.show-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	color: var(--navy);
}

.show-btn:hover {
	background: var(--navy);
	color: #fff;
}

.show-prev {
	left: 0;
}

.show-next {
	right: 0;
}

@media (max-width: 991px) {
	.factory-grid {
		grid-template-columns: 1fr 1fr;
	}

	.factory-data {
		grid-template-columns: 1fr 1fr;
	}

	.show-card {
		flex: 0 0 50%;
	}
}

@media (max-width: 640px) {
	.show-card {
		flex: 0 0 100%;
	}
}
