/* Hero Section Styling */
.hero-section {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.hero-content {
	position: absolute;
	right: 0;
	top: 35%;
	transform: translateY(-50%);
	text-align: right;
	color: white;
	z-index: 2;
	max-width: 800px;
	padding: 0 80px 0 20px;
	margin-right: 40px;
}

.hero-title {
	font-family: "Metropolis", "Josefin Sans", sans-serif;
	font-weight: 700;
	font-size: 40pt;
	margin-bottom: 60px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	letter-spacing: 2px;
	line-height: 1.1;
	white-space: nowrap;
	text-align: right;
	color: #d9ab77;
}

.hero-subtitle {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 700;
	font-size: 26.8pt;
	margin-bottom: 3px;
	line-height: 1.2;
	letter-spacing: 1.5px;
	white-space: nowrap;
	text-align: right;
}

.hero-subtitle-part {
	color: white;
}

.hero-subtitle-part--highlight {
	color: #d9ab77;
}

.hero-description {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	font-size: 16pt;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	letter-spacing: 1px;
	line-height: 1.3;
	white-space: nowrap;
	text-align: right;
}

.hero-button {
	background-color: white;
	color: black;
	border: none;
	padding: 10px 20px;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	font-size: 10pt;
	letter-spacing: 1px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
}

.hero-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(217, 171, 119, 0.4);
}

/* Responsive Hero Section */

@media (max-width: 1200px) {
	.hero-content {
		max-width: 800px;
		padding: 0 60px 0 20px;
		margin-right: 20px;
	}

	.hero-title {
		font-size: 40pt;
	}

	.hero-subtitle {
		font-size: 20pt;
	}

	.hero-description {
		font-size: 16pt;
	}
}

@media (max-width: 768px) {
	.hero-content {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		text-align: right;
		max-width: 100%;
		padding: 0 40px 0 20px;
		margin-right: 0;
	}

	.hero-title,
	.hero-subtitle,
	.hero-description {
		white-space: nowrap;
		text-align: right;
	}
	.hero-button {
		padding: 10px 20px;
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.hero-content {
		padding: 0 20px;
		max-width: 100%;
	}

	.hero-title {
		font-size: 22pt;
		white-space: nowrap;
		max-width: 100%;
	}
	.hero-subtitle {
		font-size: 18pt;
		white-space: nowrap;
		max-width: 100%;
	}
	.hero-description {
		font-size: 10pt;
		white-space: nowrap;
	}
	.hero-subtitle-part,
	.hero-subtitle-part--highlight {
		display: inline-flex;
		margin: 5px 0;
		text-align: right;
	}
	.hero-button {
		padding: 8px 16px; /* smaller padding */
		font-size: 0.75rem; /* smaller font size */
	}
}

/* About Vision Focus Section */

.about-vision {
	padding: 80px 0;
}

.about-vision-office-image {
	width: auto;
	height: 400px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-vision-heading {
	font-family: "Montserrat", sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 30pt;
	color: #d9ab77;
	margin-bottom: 30px;
	text-align: center;
}

.about-vision-description {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 11pt;
	line-height: 1.6;
	color: black;
	text-align: center;
}

@media (max-width: 768px) {
	.about-vision {
		padding: 50px 0;
	}

	.about-vision-heading {
		font-size: 28pt;
	}

	.about-vision-description {
		font-size: 12pt;
	}

	.about-vision-office-image {
		margin-bottom: 30px; /* Add space between image and text on mobile */
	}
}

/* Vision Focus Timeline Section */

.vision-focus-timeline {
	padding: 80px 0;
}

.timeline-text-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	text-align: left;
}

.vision-focus-history-span {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 24pt;
	color: #d9ab77;
	line-height: 1.2;
	white-space: nowrap;
}

.vision-focus-history-span2 {
	font-family: "Montserrat", sans-serif;
	font-style: italic;
	font-weight: 400;
	font-size: 36pt;
	color: #d9ab77;
	line-height: 1.2;
	white-space: nowrap;
}

.timeline-image {
	width: 100%;
	height: auto;
	max-width: 100%;
}

@media (max-width: 768px) {
	.vision-focus-timeline {
		padding: 50px 0;
		text-align: center;
	}

	.timeline-text-container {
		align-items: center;
		text-align: center;
		padding-right: 0;
		margin-bottom: 30px;
	}

	.timeline-image {
		margin-top: 20px;
	}
}
/* Why Choose Us Section */
.why-choose-us {
	padding: 80px 0;
}

.why-choose-heading {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-style: italic;
	font-size: 36pt;
	color: #d9ab77;
	margin-bottom: 20px;
	letter-spacing: 2px;
}

.why-choose-subtitle {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16pt;
	color: #333;
	margin-bottom: 10px;
}

.why-choose-card {
	background-color: white;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	text-align: center;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.why-choose-icon-img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.why-choose-description {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 14pt;
	color: #333;
	line-height: 1.6;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-heading {
		font-size: 30pt;
		font-style: italic;
	}

	.why-choose-subtitle {
		font-size: 14pt;
	}

	.why-choose-solution {
		font-size: 14pt;
	}

	.why-choose-card {
		padding: 30px 20px;
	}

	.why-choose-description {
		font-size: 13pt;
	}
}
/* Brand Collaborator Section */
.brand-collaborator-wrapper {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.brand-collaborator-heading {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16pt;
	color: black;
}

/* Main container for logos - single row with equal spacing */
.brand-collaborator .row.justify-content-center.align-items-center {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: nowrap; /* Keep in single row */
}

.brand-collaborator .col-6.col-sm-3 {
	flex: 1; /* Equal width for each column */
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
	padding: 0 10px;
}

/* Brand Logo Specific Sizes */
.brand-logo-shun-jia-xing {
	width: 152px;
	height: 43px;
	object-fit: fill;
	aspect-ratio: 152 / 43;
}

.brand-logo-emd {
	width: 88px;
	height: 60px;
	object-fit: cover;
	aspect-ratio: 88 / 60;
}

.brand-logo-88 {
	width: 83px;
	height: 83px;
	object-fit: fill;
	aspect-ratio: 83 / 83;
}

.brand-logo-deco-deco {
	width: 167px;
	height: 40px;
	object-fit: cover;
	aspect-ratio: 167 / 40;
}

/* Responsive Design */
@media (max-width: 768px) {
	.brand-collaborator .row.justify-content-center.align-items-center {
		gap: 15px;
	}

	.brand-logo {
		max-width: 100%;
		max-height: 40px;
		height: auto;
		width: auto; /* Allow proportional scaling */
	}
}

@media (max-width: 480px) {
	.brand-collaborator .row.justify-content-center.align-items-center {
		gap: 10px;
	}

	.brand-collaborator .col-6.col-sm-3 {
		padding: 0 5px;
	}

	.brand-logo {
		max-width: 100%;
		max-height: 30px;
		height: auto;
		width: auto; /* Allow proportional scaling */
	}
}
