/* #region markup content */

body {
	background-color: #f3f3f3;
}

main {
	min-height: calc(100vh - (var(--header-height) + var(--top-header-height) + 14rem));
}

.career-modal-heading {
	font-size: 2rem;
}

.markup-content,
.markup-content * {
	all: revert;
}

.hero-head-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem 2rem;
}

.hero-head-title,
.hero-head-desc {
	flex: 0 0 50%;
	max-width: 50%;
}

@media (max-width: 991px) {
	.hero-head-row {
		flex-direction: column;
	}

	.hero-head-title,
	.hero-head-desc {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* #endregion markup content */

/* #region services */

.service-page-banner {
	margin-bottom: var(--section-gap);
	border-radius: 1rem;
	overflow: hidden;
}

.service-page-banner::before {
	padding-top: 25%;
}

.service-page-header-row {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.service-page-header-img {
	flex: 1 1 45%;
}

.service-page-header-img img {
	border-radius: 0.5rem;
}

.service-page-header-content {
	/* padding-block: 1rem; */
	flex: 1 1 55%;
}

.service-page-header-title {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: var(--theme-primary);
	font-weight: 300;
}

.service-page-header-desc {
	font-size: 1.1rem;
	max-width: 75%;
}

.service-page-header-link {
	margin-top: 1.5rem;
}

.service-page-gallery {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	padding: 2rem 0;
	/* Horizontal scroll carousel */
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scroll-padding-left: 25%;
	scroll-padding-right: 25%;
	/* Hide scrollbar */
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.center-header {
	max-width: 896px;
}

.section-desc p {
	margin-bottom: 1rem;
}

.home-whyus-card {
	padding: 1.25rem;
}

.home-whyus-img {
	padding: 1.125rem;
}

.home-whyus-title {
	font-size: 1.25rem;
	color: #000;
	font-weight: 600;
}

:root {
	--pole-width: 4px;
	--center-gap: 48px;
	/* space for circle/pole column */
	--circle-size: 18px;
	--max-width: 900px;
}

.milestones {
	position: relative;
}

.milestones .pole {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: 1px;
	height: 100%;
	background-color: rgb(226, 228, 233);
}

.milestone {
	display: grid;
	grid-template-columns: 1fr var(--center-gap) 1fr;
	align-items: center;
	column-gap: 4rem;
	position: relative;
	z-index: 1;
	transition: 0.3s ease-in-out;
}

.milestone:hover {
	border-color: rgba(228, 78, 68, 0.3);
}

.milestone .content {
	transition: 0.3s ease-in-out;
}

.milestone:hover .content {
	box-shadow:
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(54, 61, 73, 0.06) 0px 4px 20px 0px;
}

.milestone::before {
	/* content: ''; */
	position: absolute;
	max-width: 16px;
	max-height: 16px;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--theme-primary);
	z-index: 1;
	right: 50%;
	transform: translateX(8px);
}

/* circle sits in the middle column and is centered both axes by grid */
.milestone .circle {
	grid-column: 2 / 3;
	justify-self: center;
	align-self: flex-start;
	border-radius: 5rem;
	background: #fff;
	padding: 0.5rem 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 700;
	background-color: rgb(243, 244, 246);
	color: rgb(41, 48, 61);
	font-family: var(--font-family-alt);
}

.milestone .circle.active {
	background-color: var(--theme-primary);
	color: #fff;
}

.milestones .pole .countinue {
	position: absolute;
	bottom: -2rem;
	left: 50%;
	transform: translate(-50%, 100%);
	border-radius: 5rem;
	background-color: var(--theme-primary);
	color: #fff;
	padding: 1rem 2rem;
	text-wrap: nowrap;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 700;
}

/* Left content placed in left column */
.milestone.left .content {
	grid-column: 1 / 2;
	justify-self: end;
	/* hugs toward the center/pole */
	text-align: right;
	max-width: 42rem;
	width: 100%;
	border: 1px solid rgba(228, 78, 68, 0.2);
	padding: 2rem;
	border-radius: 1rem;
}

/* Right content placed in right column */
.milestone.right .content {
	grid-column: 3 / 4;
	justify-self: start;
	/* hugs toward the center/pole */
	text-align: left;
	max-width: 42rem;
	width: 100%;
	border: 1px solid rgba(228, 78, 68, 0.2);
	padding: 2rem;
	border-radius: 1rem;
}

/* Content card look */

.milestone .content .title {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 600;
	color: rgb(41, 48, 61);
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	font-family: var(--font-family-alt);
	margin-bottom: 0.75rem;
}

.milestone .content .desc {
	color: rgb(103, 111, 126);
	font-size: 1rem;
	line-height: 1.625rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
	color: rgb(103, 111, 126);
}

.milestone .content .key-milestone {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgb(226, 228, 233);
	color: var(--theme-primary);
	text-transform: uppercase;
}

.awardCard {
	background-color: #fff;
	border-radius: 0.5rem;
	padding: 1rem;
}

.awardCard figure {
	max-width: 40px;
	width: 100%;
	margin: 0 auto 1.5rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.awardCard figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.awardCard .title {
	font-size: 1rem;
	line-height: 1.5rem;
	text-align: center;
	margin: 0;
}

.good-tabs {
	justify-content: center;
}

.good-tabs .nav-link {
	max-width: max-content;
	font-size: 0.875rem;
	line-height: 1.5rem;
	border-radius: 0.35rem;
	color: #000;
	font-weight: 500;
}

.good-tabs .nav-link.active {
	background: linear-gradient(135deg, rgb(17, 126, 57) 0%, rgb(20, 41, 82) 100%);
}

.service-page-gallery-item {
	background-color: #fff;
	box-shadow: 1px 1px 0.8rem rgba(0, 0, 0, 0.1);
	border-radius: 0.5rem;
	overflow: hidden;
	/* Carousel sizing - 66.67vw makes items take up viewport properly */
	flex: 0 0 calc(100vw - 200px);
	max-width: calc(100vw - 200px);
	min-width: calc(100vw - 200px);
	/* Scroll snap alignment */
	scroll-snap-align: center;
	scroll-snap-stop: always;
	/* Transition for scaling effect */
	transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
	transform: scale(1);
	/* Add minimal padding to create space for 25% peek */
	margin: 0 auto;
}

.service-page-gallery::-webkit-scrollbar {
	display: none;
}

.service-page-gallery-img::before {
	padding-top: 65%;
}

.service-page-gallery-content {
	padding: 0.5rem;
	text-align: center;
	font-size: 1.3rem;
	line-height: 1.3;
	font-weight: 600;
}

/* Scaled state for items during scroll interaction */
.service-page-gallery-item.scaled {
	transform: scale(0.85);
	opacity: 0.7;
}

/* Center content alignment */
.service-page-gallery-item.active {
	transform: scale(1);
	opacity: 1;
}

/* Responsive carousel sizing */
@media (max-width: 1200px) {
	.service-page-gallery-item {
		flex: 0 0 calc(100vw - 150px);
		max-width: calc(100vw - 150px);
		min-width: calc(100vw - 150px);
	}
}

@media (max-width: 768px) {
	.service-page-gallery {
		scroll-padding-left: 20%;
		scroll-padding-right: 20%;
	}

	.service-page-gallery-item {
		flex: 0 0 calc(100vw - 100px);
		max-width: calc(100vw - 100px);
		min-width: calc(100vw - 100px);
	}

	.service-page-gallery-item.scaled {
		transform: scale(0.8);
		opacity: 0.6;
	}
}

@media (max-width: 480px) {
	.service-page-gallery {
		scroll-padding-left: 15%;
		scroll-padding-right: 15%;
		gap: 0.5rem;
		padding: 1rem 0;
	}

	.service-page-gallery-item {
		flex: 0 0 calc(100vw - 50px);
		max-width: calc(100vw - 50px);
		min-width: calc(100vw - 50px);
	}

	.service-page-gallery-content {
		font-size: 1rem;
	}
}

.service-page-gallery-content:empty {
	display: none;
}

.service-page-sections-row {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 1rem;
	border-radius: 1.5rem;
	background-color: #fff;
	box-shadow: 1px 1px 0.8rem rgba(0, 0, 0, 0.1);
}

.service-page-section-img {
	flex: 1 1 35%;
}

.service-page-section-img img {
	border-radius: 0.5rem;
}

.service-page-section-content {
	flex: 1 1 65%;
}

.service-page-section-title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.service-page-section-desc {
	line-height: 1.5;
}

.service-page-sections-row + .service-page-sections-row {
	margin-top: 2rem;
}

.service-page-contact-form {
	margin-top: 2rem;
}

.service-page-contact-form .home-contact-form-field {
	margin-bottom: 0;
}

.service-page-contact-form .contact-form-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
	gap: 1rem 2rem;
}

.service-page-contact-form .field-lg,
.home-contact-form-action {
	grid-column: 1 / -1;
}

.home-contact-form-action {
	text-align: center;
}

@media (min-width: 761px) {
	.service-page-sections-row:nth-child(even) {
		/* flex-direction: row-reverse; */
	}
}

@media (max-width: 768px) {
	.service-page-header-row {
		flex-wrap: wrap;
	}

	.service-page-header-desc {
		max-width: 100%;
	}
}

/* #endregion services */

/* #region careers */

.careers-page-grid {
	display: grid;
	grid-template-columns: 15rem 1fr;
	align-items: start;
	gap: 1.5rem;
}

.career-categories-col {
	/* background-color: #f3f3f3; */
	background-color: #fff;
	border-radius: 0.7rem;
	position: sticky;
	top: calc(var(--header-height) + 2rem);
	/* box-shadow: 0.2rem 0.2rem 0.8rem rgb(0 0 0 / 15%); */
	border: 1px solid #eaeaea;
	overflow: hidden;
}

.career-category-header {
	padding: 0.8rem;
	font-size: 1.2rem;
	font-weight: normal;
	background-color: #dadada;
}

.career-category-form {
	/* display: contents; */
	border-top: 1px solid #eaeaea;
}

.career-category-items {
	padding: 0.8rem;
	display: grid;
	gap: 1rem;
}

.career-category {
	display: grid;
	grid-template-columns: 1.5rem auto;
	gap: 0.5rem;
	position: relative;
	align-items: center;
}

.career-category-checkbox {
	opacity: 0;
	height: 1.5rem;
}

.career-category-label {
	line-height: 1.2;
	user-select: none;
	cursor: pointer;
}

.career-category-label::before,
.career-category-label::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 1.3rem;
	height: 1.3rem;
	border-radius: 0.3rem;
}

.career-category-label::before {
	content: "";
	transition: ease 0.3s;
	border: 1px solid #c5c5c5;
}

.career-category-label::after {
	content: "\2713";
	text-align: center;
	font-weight: 600;
	color: transparent;
	display: grid;
	place-content: center;
	font-size: 1.2rem;
	font-family: monospace;
	pointer-events: none;
}

.career-category-checkbox:checked + .career-category-label::before {
	background-color: var(--theme-primary);
	border-color: var(--theme-primary);
}

.career-category-checkbox:checked + .career-category-label::after {
	color: var(--theme-primary-alt);
}

.career-categories-actions {
	border-top: 1px solid #eaeaea;
	padding: 0.5rem;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.career-category-btn {
	padding: 0.4rem 1rem;
	border-radius: 0.3rem;
	/* border: 2px solid; */
	transition: ease 0.3s;
	font-weight: 400;
}

.career-category-submit-btn {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-color: var(--theme-primary);
}

.career-category-submit-btn:hover {
	background-color: var(--theme-primary-dark);
	/* color: var(--theme-primary); */
}

.career-category-clear-btn {
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	border-color: var(--theme-secondary);
}

.career-category-clear-btn:hover {
	background-color: var(--theme-secondary-dark);
	/* color: var(--theme-secondary); */
}

.career-listings {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.career-option {
	padding: 1rem;
	/* box-shadow: 0.2rem 0.2rem 0.8rem rgb(0 0 0 / 15%); */
	border: 1px solid #eaeaea;
	border-radius: 0.5rem;
	background-color: #fff;
}

.career-option-title {
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 500;
	/* margin-bottom: 0.5rem; */
}

.career-option-subtitle {
	font-size: 1.1rem;
	font-weight: 300;
	margin-top: 0.5rem;
}

.career-option-category {
	margin-top: 0.3rem;
	font-weight: 600;
	color: var(--theme-primary);
}

.career-option-desc {
	line-height: 1.5;
	font-weight: 300;
}

.career-option-actions {
	margin-top: 1rem;
}

.career-select-btn {
	--content-width: 6.5rem;
}

.career-modal .career-modal-body {
	width: 60rem;
	height: 40rem;
	display: flex;
	flex-direction: column;
}

.career-modal-header {
	margin-bottom: 1rem;
}

.career-modal-container {
	display: flex;
	gap: 1.5rem;
	height: 100%;
	flex: 1 1 0%;
	height: 0;
}

.career-modal-info {
	padding-right: 1.5rem;
}

.career-modal-title {
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.contact-form-wide-col {
	grid-column: 1 / -1;
}

.contact-form-label {
	font-weight: 500;
	font-size: 0.9rem;
}

.contact-form-input {
	border: 1px solid #dadada;
	border-radius: 0.3rem;
	padding: 0.4rem 0.8rem;
}

textarea.contact-form-input {
	resize: vertical;
}

.contact-form-btn {
	--content-width: 4rem;
}

@media (max-width: 768px) {
	.careers-page-grid {
		grid-template-columns: 1fr;
	}

	.career-modal-container {
		flex-direction: column;
		overflow: auto;
	}

	.career-modal .career-modal-body {
		height: 100%;
	}

	.career-modal-info,
	.career-modal-form {
		width: 100%;
		height: auto;
	}

	.contact-form-row {
		grid-template-columns: 1fr;
	}

	.career-categories-col {
		box-shadow: 0.2rem 0.2rem 0.8rem rgb(0 0 0 / 5%);
	}

	.career-category-form {
		display: none;
	}

	.career-category-header {
		position: relative;
		z-index: 1;
	}

	.career-category-header::after {
		content: "\f107";
		font: var(--icon-font);
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(-50%, -50%);
	}
}

/* #endregion careers */

/* #region blogs list page */

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-block: 2rem;
}

.blog-grid-item {
	/* box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2); */
	/* border-radius: 0.5rem; */
	overflow: hidden;
	background-color: #fff;
}

.blog-grid-img {
	position: relative;
	display: block;
	overflow: hidden;
	max-width: 100%;
	width: 100%;
	aspect-ratio: 2.5 / 1;
}

.blog-grid-item:hover .blog-grid-img img {
	transform: scale(1.05);
}

.blog-grid-img img {	
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.blog-grid-content {
	padding: 1rem;
}

.blog-grid-title {
	font-size: 1.3rem;
	margin-bottom: 0.3em;
	line-height: 1.3;
	font-family: var(--font-family-alt);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	height: 2lh;
	max-height: 2lh;
	text-overflow: ellipsis;
	overflow: hidden;
}

.blog-grid-title a:hover {
	color: var(--theme-primary);
}

.blog-grid-meta {
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
	color: #555;
	font-weight: 500;
}

.blog-grid-desc {
	line-height: 1.3;
	font-size: 0.95rem;
}

/* #endregion blogs list page */

/* #region blog view page */

.blog-page {
	display: flex;
	gap: 2rem;
	line-height: 1.3;
	margin-block: 2rem;
}

.blog-main {
	position: relative;
	width: 70%;
}

.blog-main .blog-content::before {
	content: none;
}

.blog-extra {
	width: 30%;
	position: sticky;
	top: calc(var(--header-height) + 1rem);
	height: 100%;
}

.blog-tags {
	font-size: 0.9rem;
	color: var(--theme-secondary);
	margin-bottom: 0.5rem;
}

.blog-meta {
	color: var(--theme-secondary);
	font-weight: 500;
}

.blog-content {
	margin-top: 1.3rem;
	position: relative;
	padding: 1.2rem;
	box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
	border-radius: 0.5rem;
}

.blog-content::after {
	content: "";
	display: block;
	clear: both;
}

.blog-main-img {
	/* width: 40%; */
	/* width: 500px; */
	/* float: left; */
	/* margin-right: 1.7rem; */
	margin-bottom: 1.5rem;
	min-width: 50%;
	max-width: 100%;
}

.blog-main-img img {
	width: 100%;
}

.blog-share-title {
	font-weight: 500;
	font-size: 1.4rem;
}

.blog-share-list {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	margin-top: 0.5rem;
}

.blog-share-link {
	width: 2.2rem;
	height: 2.2rem;
	display: grid;
	place-items: center;
	background-color: var(--theme-primary);
	color: #fff;
	border-radius: 5rem;
	border: 2px solid var(--theme-primary);
	font-size: 1.3rem;
}

.blog-share-link:hover {
	background-color: #fff;
	color: var(--theme-primary);
}

.blog-list-banner-title {
	/* text-align: center; */
	font-weight: 500;
	font-size: 1.6rem;
	margin-bottom: 0.7rem;
}

.blog-list {
	display: grid;
	/* grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); */
	gap: 1.2rem;
	/* margin-bottom: 2rem; */
	padding: 1.2rem;
	box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
	border-radius: 0.5rem;
}

.blog-list .blog-grid-item {
	display: flex;
}

.blog-list .blog-grid-img {
	flex: 0 0 30%;
}

.blog-list .blog-grid-content {
	flex: 1;
	padding: 0.5rem 0.75rem;
}

.blog-list .blog-grid-title {
	font-size: 1rem;
	/* line-clamp: 2; */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-list .blog-grid-meta {
	margin-bottom: 0;
}

@media (max-width: 760px) {
	.blog-page {
		flex-direction: column;
	}

	.blog-main,
	.blog-extra {
		width: 100%;
	}
}

@media print {
	.blog-content {
		padding: 0;
		box-shadow: none;
	}

	.blog-extra,
	.header-banner,
	.brand-header,
	.main-header {
		display: none !important;
	}
}

.header-banner {
	position: relative;
	background: none;
}

.header-banner .title {
	overflow: hidden;
}

.header-banner .title span {
	display: block;
	overflow: hidden;
	font-size: 4.5rem;
	line-height: 5rem;
	font-weight: 400;
	color: #000;
	text-transform: uppercase;
	/* display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	text-overflow: hidden; */
}
/* #endregion blog view page */

/* #region about */
.about-card .title {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 1.5rem;
}

.about-card .desc {
	color: var(--gray);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
}

.about-card .desc p {
	margin-bottom: 1rem;
}

.about-card .desc p:last-child {
	margin-bottom: 1.5rem;
}

.vismis-card {
	padding: 1.25rem;
	backdrop-filter: blur(24px);
	background-color: rgba(246, 247, 248, 0.5);
	border: 1px solid rgba(246, 247, 248, 0.5);
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
	border-radius: 0.75rem;
}

.vismis-card .heading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.vismis-card figure {
	max-width: 1.5rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	padding: 0.25rem;
}

.vismis-card figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(60%) sepia(72%) saturate(401%) hue-rotate(47deg) brightness(87%) contrast(92%);
}

.vismis-card .heading .title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 0;
}

.vismis-card .content {
	font-family: var(--font-family-alt);
	color: var(--gray);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
}

.about-points {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1rem;
}

.about-points .point {
	padding: 1.25rem;
	border: 1px solid rgba(246, 247, 248, 0.5);
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	color: var(--black);
	border-radius: 0.75rem;
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
	text-align: center;
	transition: 0.3s ease-in-out;
}

.about-points .point:hover {
	border-color: rgba(41, 163, 86, 0.4);
}

.about-points .point .icon {
	max-width: 3rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-inline: auto;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--theme-primary);
	background-color: rgba(41, 163, 86, 0.2);
	border-radius: 0.75rem;
}

.about-points .point .title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 0.25rem;
}

.about-points .point .desc {
	color: var(--gray);
	font-size: 0.75rem;
	line-height: 1rem;
	font-family: var(--font-family-alt);
}

.dot {
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--theme-primary);
	transition: 0.3s ease-in-out;
	margin-right: 0.5rem;
}

.blink {
	animation: blink 2s infinite;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.about-header-banner .section-header .section-subtitle {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: transparent;
}

#purpose,
#chairman-message,
#leadership-team,
#group-values,
#manufacturing-excellence,
#manufacturing-locations,
#milestones {
	scroll-margin-top: -4rem;
}

.purpose-card {
	background-color: rgb(22, 50, 90);
	padding: 3rem;
	border-radius: 1rem;
	height: 100%;
}

.purpose-card .icon {
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	max-width: 4rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	color: #fff;
	font-size: 1.75rem;
	line-height: 1;
	transition: 0.3s ease-in-out;
}

.purpose-card .subtitle {
	color: var(--theme-primary);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.7px;
}

.purpose-card .title {
	color: #fff;
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
	font-family: var(--font-family-alt);
	letter-spacing: -0.75px;
	margin-bottom: 1.5rem;
}

.purpose-card .desc {
	font-size: 1.125rem;
	line-height: 1.875rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
}

.purpose-card:hover .icon {
	transform: scale(1.1);
}

.mission-card {
	background-color: #fff;
	border: 1px solid rgb(226, 228, 233);
}

.mission-card:hover {
	border-color: var(--theme-primary);
}

.mission-card .icon {
	background-color: rgba(228, 78, 68, 0.1);
	color: var(--theme-primary);
}

.mission-card:hover .icon {
	transform: scale(1);
	background-color: rgba(228, 78, 68, 0.2);
}

.mission-card .title {
	color: rgb(41, 48, 61);
}

.mission-card .desc {
	color: rgb(103, 111, 126);
}

.purpose-card.main {
	background-color: rgb(243, 244, 246);
	display: flex;
	align-items: center;
	gap: 3rem;
}

.purpose-card.main .icon {
	max-width: 3.5rem;
	font-size: 1.5rem;
	line-height: 1;
	background-color: rgba(54, 61, 73, 0.1);
	color: rgb(54, 61, 73);
	margin-bottom: 0;
}

.purpose-card.main .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: rgb(41, 48, 61);
	margin-bottom: 0.5rem;
	letter-spacing: -0.5px;
}

.purpose-card.main .desc {
	color: rgb(103, 111, 126);
	margin-bottom: 0;
}

.md-message-grid {
	display: grid;
	grid-template-columns: 450px 1fr;
	gap: 5rem;
}

.md-message-grid figure {
	max-width: 450px;
	width: 100%;
	aspect-ratio: 1 / 1.125;
	border-radius: 1rem;
	position: relative;
	overflow: visible;
	margin-bottom: 3rem;
}

.md-message-grid figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem;
	position: relative;
	z-index: 1;
}

.md-message-grid figure .quote-box {
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-25%, -25%);
	background-color: var(--theme-primary);
	color: #fff;
	max-width: 4rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	z-index: 2;
}

.md-message-grid figure .border-box {
	border: 4px solid var(--theme-primary);
	width: 70%;
	height: 70%;
	border-radius: 1rem;
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translate(1.5rem, 1.5rem);
	z-index: 0;
}

.md-message-grid .md-info-details {
	background-color: #fff;
	padding: 1.5rem;
	border-radius: 0.75rem;
	border: 1px solid rgb(226, 228, 233);
	max-width: 450px;
}

.md-message-grid .md-info-details .name {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	font-family: var(--font-family-alt);
	color: rgb(41, 48, 61);
	margin-bottom: 0.25rem;
}

.md-message-grid .md-info-details .position {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	color: var(--theme-primary);
	margin-bottom: 1rem;
}

.md-message-grid .md-info-details .desc {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
	color: rgb(103, 111, 126);
}

.md-message .subtitle {
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 600;
	color: var(--theme-primary);
	text-transform: uppercase;
	letter-spacing: 2.4px;
}

.md-message .title {
	font-size: 3rem;
	line-height: 1;
	font-weight: 700;
	font-family: var(--font-family-alt);
	margin-bottom: 2rem;
}

.md-message q {
	padding-left: 1.5rem;
	border-left: 4px solid var(--theme-primary);
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 500;
	font-family: var(--font-family-alt);
	display: block;
	margin-bottom: 1.5rem;
}

.md-message .description {
	font-size: 1.125rem;
	line-height: 1.875rem;
	font-weight: 400;
	color: rgb(41, 48, 61);
	margin-bottom: 1rem;
}

.md-message .description p {
	margin-bottom: 1.5rem;
}

.md-message .description p.what {
	color: rgb(103, 111, 126);
}

.md-message .action {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.meet-btn {
	color: #fff;
	background-color: rgb(22, 50, 90);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-family: var(--font-family-alt);
	transition: 0.3s ease-in-out;
}

.meet-btn:hover {
	background-color: rgba(22, 50, 90, 0.9);
}

.simple-btn {
	color: rgb(41, 48, 61);
	border: 2px solid rgb(226, 228, 233);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-family: var(--font-family-alt);
}

.simple-btn:hover {
	color: var(--theme-primary);
	border-color: var(--theme-primary);
}

.why-choose-desc {
	text-align: center;
}

.why-choose-list {
	display: flex;
	gap: 1rem 2rem;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	justify-content: center;
}

.why-choose-list li {
	list-style-type: none;
	padding: 0.5rem 2.5rem;
	border-radius: 5rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

.explore-now-btn {
	color: var(--theme-primary);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	transition: 0.3s ease-in-out;
}

.explore-now-btn i {
	font-size: 0.875rem;
	line-height: 1;
	margin-left: 0.5rem;
	transition: 0.3s ease-in-out;
}

.explore-now-btn:hover i {
	margin-left: 0.75rem;
}

.why-choose-list i {
	font-size: 3em;
	line-height: 1.2;
}

.why-choose-list p {
	margin-bottom: 0.5rem;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.teamCard {
	border: 1px solid rgb(226, 228, 233);
	border-radius: 0.75rem;
	overflow: hidden;
	transition: 0.3s ease-in-out;
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
}

.teamCard figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1.25 / 1;
	overflow: hidden;
	background-image: linear-gradient(to right bottom, rgb(243, 244, 246), rgba(243, 244, 246, 0.5));
	position: relative;
}

.teamCard figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.teamCard figure .overlay {
	background-image: linear-gradient(to top, rgb(255, 255, 255), rgba(0, 0, 0, 0));
	z-index: 10;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.teamCard figure .initials {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 6rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
	color: rgba(22, 50, 90, 0.4);
	background-color: rgba(22, 50, 90, 0.1);
	z-index: 0;
}

.teamCard article {
	padding: 1.5rem;
}

.teamCard article .name {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 0;
	transition: 0.3s ease-in-out;
}

.teamCard article .designation {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
	color: var(--theme-primary);
	font-family: var(--font-family-alt);
}

.teamCard article .description {
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 400;
	color: rgb(103, 111, 126);
	font-family: var(--font-family-alt);
	display: -webkit-box;
	text-overflow: ellipsis;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	overflow: hidden;
	-webkit-box-orient: vertical;
}

.certification-box {
	background-color: rgba(246, 247, 248, 0.5);
	border: 1px solid rgba(220, 223, 229, 0.5);
	backdrop-filter: blur(24px);
	padding: 1.5rem;
	text-align: center;
	border-radius: 0.75rem;
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
}

.certification-box .icon {
	max-width: 4rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-inline: auto;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	line-height: 1;
	background-color: rgba(41, 163, 86, 0.2);
	color: var(--theme-primary);
	border-radius: 0.75rem;
}

.certification-box .title {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 0.25rem;
}

.certification-box .desc {
	color: var(--gray);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
}

.dark-background {
	background-color: rgb(22, 50, 90);
	position: relative;
}

.dark-background .shade {
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	filter: blur(64px);
	opacity: 0.05;
}

.dark-background .section-header .section-title {
	color: #fff;
	font-family: var(--font-family-alt);
}

.dark-background .section-header .section-desc {
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--font-family-alt);
}

.our-values {
	overflow: hidden;
}

.valueCrd {
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 2rem;
	backdrop-filter: blur(4px);
	position: relative;
	transition: 0.3s ease-in-out;
	height: 100%;
}

.valueCrd .cover {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 0;
}

.valueCrd:hover .cover {
	opacity: 1;
}

.valueCrd .cover-1 {
	background-image: linear-gradient(to right bottom, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
}

.valueCrd .cover-2 {
	background-image: linear-gradient(to right bottom, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
}

.valueCrd .cover-3 {
	background-image: linear-gradient(to right bottom, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.2));
}

.valueCrd .cover-4 {
	background-image: linear-gradient(to right bottom, rgba(6, 182, 212, 0.2), rgba(20, 184, 166, 0.2));
}

.valueCrd .cover-5 {
	background-image: linear-gradient(to right bottom, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
}

.valueCrd .cover-6 {
	background-image: linear-gradient(to right bottom, rgba(244, 63, 94, 0.2), rgba(236, 72, 153, 0.2));
}

.valueCrd .icon {
	max-width: 3.5rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.75rem;
	background-color: rgba(228, 78, 68, 0.2);
	color: var(--theme-primary);
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 1.5rem;
	transition: 0.3s ease-in-out;
}

.valueCrd .number {
	position: absolute;
	right: 2rem;
	top: 2rem;
	font-size: 3rem;
	line-height: 3rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.1);
	font-family: var(--font-family-alt);
}

.valueCrd .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: #fff;
	font-family: var(--font-family-alt);
	margin-bottom: 0.75rem;
}

.valueCrd .desc {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	line-height: 400;
	line-height: 1.625rem;
	font-family: var(--font-family-alt);
}

.valueCrd:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.valueCrd:hover .icon {
	transform: scale(1.05);
}

.numberCard {
	padding: 2rem;
	border: 1px solid rgb(226, 228, 233);
	border-radius: 1rem;
	background-color: #fff;
	text-align: center;
	transition: 0.3s ease-in-out;
}

.numberCard .icon {
	color: rgba(228, 78, 68, 0.5);
	font-size: 2rem;
	line-height: 1;
	margin-bottom: 1rem;
	transition: 0.3s ease-in-out;
}

.numberCard .number {
	font-size: 3rem;
	line-height: 1;
	font-weight: 700;
	color: rgb(22, 50, 90);
	margin-bottom: 0.5rem;
	font-family: var(--font-family-alt);
}

.numberCard .title {
	color: rgb(103, 111, 126);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	font-family: var(--font-family-alt);
	text-transform: uppercase;
	letter-spacing: 0.7px;
}

.numberCard:hover {
	box-shadow:
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(54, 61, 73, 0.06) 0px 4px 20px 0px;
	border-color: rgba(228, 78, 68, 0.3);
}

.numberCard:hover .icon {
	color: var(--theme-primary);
}

.manufacturing-video-section {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1.33 / 1;
	overflow: hidden;
	border-radius: 1.5rem;
}

.manufacturing-video-section iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.statInfoCard {
	background-color: rgba(243, 244, 246, 0.5);
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 2rem;
	border-radius: 1rem;
	transition: 0.3s ease-in-out;
}

.statInfoCard:hover {
	background-color: rgb(243, 244, 246);
}

.statInfoCard .icon {
	max-width: 3.5rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--theme-primary);
	background-color: rgba(228, 78, 68, 0.1);
	border-radius: 0.5rem;
	font-size: 1.5rem;
	transition: 0.3s ease-in-out;
}

.statInfoCard:hover .icon {
	background-color: rgba(228, 78, 68, 0.2);
}

.statInfoCard .content .title {
	color: rgb(41, 48, 61);
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	font-family: var(--font-family-alt);
}

.statInfoCard .content .desc {
	color: rgb(103, 111, 126);
	font-size: 1rem;
	line-height: 1.625rem;
	font-weight: 400;
}

.cerifications {
	border: 1px solid rgb(226, 228, 233);
	border-radius: 1rem;
	padding: 3rem;
}

.cerifications .heading-content {
	max-width: 350px;
}

.cerifications .heading-content .icon {
	max-width: 4rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.75rem;
	background-color: rgba(228, 78, 68, 0.1);
	color: var(--theme-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.75rem;
}

.cerifications .heading-content .title {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
	color: rgb(41, 48, 61);
	margin-bottom: 0.75rem;
	font-family: var(--font-family-alt);
}

.cerifications .heading-content .desc {
	color: rgb(103, 111, 126);
	font-family: var(--font-family-alt);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
}

.stats-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
}

.stats-grid .statBox {
	background-color: rgb(243, 244, 246);
	border-radius: 0.75rem;
	text-align: center;
	padding: 1rem;
}

.stats-grid .statBox .title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: rgb(41, 48, 61);
	font-family: var(--font-family-alt);
	margin-bottom: 0.25rem;
}

.stats-grid .statBox .desc {
	font-size: 0.75rem;
	line-height: 1;
	font-weight: 400;
	color: rgb(103, 111, 126);
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.points {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.points .dot {
	width: 0.75rem;
	height: 0.75rem;
}

.points .point {
	color: rgb(103, 111, 126);
}

.points .hq {
	background-color: var(--theme-primary);
}

.points .others {
	background-color: rgba(22, 50, 90, 0.5);
}

.locationBox {
	background-color: #fff;
	border: 2px solid rgb(226, 228, 233);
	border-radius: 1rem;
	padding: 2rem;
	height: 100%;
	position: relative;
	font-family: var(--font-family-alt);
	transition: 0.3s ease-in-out;
}

.locationBox:hover {
	box-shadow:
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(0, 0, 0, 0) 0px 0px 0px 0px,
		rgba(54, 61, 73, 0.12) 0px 12px 40px 0px;
	border-color: rgba(228, 78, 68, 0.3);
}

.locationBox .label {
	position: absolute;
	right: 1rem;
	top: 1rem;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	color: #fff;
	background-color: rgba(22, 50, 90, 0.5);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 600;
}

.locationBox .label.hq {
	background-color: var(--theme-primary);
}

.locationBox .icon {
	max-width: 3rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.75rem;
	background-color: rgba(228, 78, 68, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--theme-primary);
	font-size: 1.5rem;
}

.locationBox .content .title {
	color: rgb(41, 48, 61);
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	font-family: var(--font-family-alt);
	margin-bottom: 0;
	transition: 0.3s ease-in-out;
}

.locationBox:hover .content .title {
	color: var(--theme-primary);
}

.locationBox .content .location {
	color: rgb(103, 111, 126);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
}

.locationBox .desc {
	color: rgb(22, 50, 90);
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	font-family: var(--font-family-alt);
	margin-bottom: 1.25rem;
}

.locationBox .setups > * {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	color: rgb(103, 111, 126);
	margin-bottom: 0.5rem;
}

.locationBox .setups i {
	text-align: center;
	width: 1rem;
	font-size: 1rem;
	line-height: 1;
	color: rgba(228, 78, 68, 0.5);
}

.map-area {
	border: 1px solid rgb(226, 228, 233);
	border-radius: 1rem;
	overflow: hidden;
}

.map-area .heading {
	padding: 2rem;
	background-color: #fff;
	border-bottom: 1px solid rgb(226, 228, 233);
}

.map-area .heading .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: rgb(41, 48, 61);
	font-family: var(--font-family-alt);
	margin-bottom: 0.25rem;
}

.map-area .heading .desc {
	color: rgb(103, 111, 126);
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
}

.map-area .content {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 2.25 / 1;
	overflow: hidden;
}

.map-area .content iframe {
	display: block;
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
	.about-mission .about-mission-row:nth-child(odd) {
		flex-direction: row-reverse;
	}
}

@media (max-width: 768px) {
	.about-mission-row {
		flex-direction: column;
		grid-template-columns: repeat(1, 1fr) !important;
	}
}

/* #endregion about */
.scroll-bottom {
	max-width: 2.5rem;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(0, 0, 0, 0.7);
	margin-inline: auto;
	border: 1px solid rgba(0, 0, 0, 0.3);
	margin-top: 1rem;
}

.scroll-bottom i {
	animation: updownmove 2s linear infinite;
}

@keyframes updownmove {
	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(0, 15%);
	}
}

/* #region form */

.contact-form-container {
	padding: 2.5rem;
	background-color: #fff;
	border-radius: 1rem;
	/* box-shadow: 0.2rem 0.3rem 1rem rgb(0 0 0 / 10%); */
	border: 1px solid #dadada;
	margin-top: 1rem;
}

.home-contact-form-field {
	margin-bottom: 1.5rem;
	position: relative;
}

.home-contact-form-input {
	padding-block: 1rem 0.3rem;
	border-bottom: 1px solid #eaeaea;
	font-size: 1rem;
	transition: ease 0.25s;
	transition-property: color, border-color;
}

.home-contact-form-input::placeholder {
	color: transparent;
	opacity: 0;
}

.home-contact-form-label {
	position: absolute;
	top: 1rem;
	left: 0.75rem;
	font-size: 0.9rem;
	/* pointer-events: none; */
	transition: ease 0.25s;
	transform-origin: left;
	opacity: 0.8;
	font-weight: 500;
}

.home-services-swiper .swiper-wrapper {
	padding: 1.5rem 0 0;
}

.service-card {
	display: flex;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

/* Image Logic */
.services-stack-page {
	--services-stack-top: var(--header-height);
}

.services-stack {
	position: relative;
	display: grid;
	gap: 0;
}

.service-stack-card {
	position: sticky;
	top: var(--services-stack-top);
	padding-bottom: 2.75rem;
}

.service-stack-card:last-child {
	padding-bottom: 0;
}

.service-stack-mobile-trigger {
	display: none;
}

.service-stack-mobile-panel {
	display: block;
}

.service-stack-card-inner {
	background: rgb(249, 249, 249);
	box-shadow: rgba(20, 24, 31, 0.12) 0px 14px 48px -20px;
	padding: 3rem;
	min-height: calc(100dvh - var(--header-height));
	display: grid;
	grid-template-columns: minmax(0, 56%) minmax(0, 44%);
	gap: clamp(1rem, 2vw, 2rem);
	align-items: stretch;
	filter: drop-shadow(rgba(0, 0, 0, 0.05) 0px -30px 15px);
}

.service-stack-left {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
}

.service-stack-count {
	display: inline-flex;
	align-items: baseline;
	gap: 0.375rem;
	font-family: var(--font-family-alt);
	font-weight: 700;
	line-height: 1;
	width: max-content;
	color: rgba(22, 50, 90, 0.6);
}

.service-stack-count .current {
	font-size: 0.75rem;
	line-height: 1rem;
	color: var(--theme-primary);
}

.service-stack-count .divider {
	font-size: 1rem;
}

.service-stack-count .total {
	font-size: 0.75rem;
	line-height: 1rem;
	padding-top: 0.5rem;
}

.service-stack-title {
	font-size: 2rem;
	line-height: 2.75rem;
	font-weight: 400;
	color: #000;
	font-family: var(--font-family-alt);
	margin: 0;
}

.service-stack-image {
	max-width: 550px;
	width: 100%;
	aspect-ratio: 1.75 / 1;
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid rgba(220, 223, 229, 0.7);
}

.service-stack-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-stack-right {
	padding: 4rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 1.35rem;
	background-color: #fff;
}

.service-stack-desc {
	font-family: var(--font-family-alt);
	color: rgba(0, 0, 0, 0.7);
	font-size: 1.5rem;
	line-height: 2rem;
}

.service-stack-subservices-window {
	height: 220px;
	overflow: auto;
	padding-right: 0.25rem;
}

.service-stack-subservices-window .subservices-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.6rem;
}

.service-stack-subservices-window .subservice-item {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 400;
	color: var(--black);
	font-family: var(--font-family-alt);
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	background-color: rgba(232, 234, 238, 0.3);
	border-radius: 0.75rem;
	margin-bottom: 0;
	transition: 0.3s ease-in-out;
}

.service-stack-subservices-window .subservice-item:hover {
	background-color: rgba(232, 234, 238, 0.5);
}

.service-stack-subservices-window .subservice-item i {
	font-size: 0.75rem;
	width: 1rem;
	height: 1rem;
	text-align: center;
	vertical-align: middle;
	transition: 0.3s ease-in-out;
	color: var(--theme-primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-stack-subservices-window .subservice-item:hover i {
	transform: translateX(0.25rem);
}

/* Responsive */
@media (max-width: 768px) {
	.header-banner .title span {
		font-size: 1.75rem;
		line-height: 1;
	}

	.service-stack-card {
		position: relative;
		top: unset;
		padding-bottom: 1.25rem;
	}

	.service-stack-mobile-trigger {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		padding: 1rem 1.2rem;
		border: 1px solid rgba(220, 223, 229, 0.7);
		background: rgba(246, 247, 248, 0.9);
		border-radius: 0.8rem;
		color: #000;
		font-family: var(--font-family-alt);
		font-size: 1.05rem;
		line-height: 1.35;
		font-weight: 500;
		text-align: left;
	}

	.service-stack-mobile-trigger .icon {
		width: 1.75rem;
		height: 1.75rem;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: rgba(41, 163, 86, 0.12);
		color: var(--theme-primary);
	}

	.service-stack-mobile-trigger .icon i {
		transition: 0.3s ease-in-out;
	}

	.service-stack-card.is-open .service-stack-mobile-trigger .icon i {
		transform: rotate(180deg);
	}

	.service-stack-mobile-panel {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}

	.service-stack-desc {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}

	.service-stack-card-inner {
		min-height: auto;
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.5rem;
		border-top: none;
	}

	.service-stack-right {
		border-left: none;
		padding: 1rem;
	}

	.service-stack-title {
		max-width: none;
	}

	.service-stack-count,
	.service-stack-title {
		display: none;
	}

	.service-stack-image {
		max-width: 100%;
	}

	.service-stack-subservices-window {
		height: 180px;
	}
}
.custom-need-container {
	max-width: 100%;
	padding-inline: 3rem;
}
.custom-need {
	border-radius: 0.75rem;
}

.custom-need .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.custom-need .title {
	font-size: 1.25rem;
	line-height: 1.5rem;
	font-weight: 200;
	text-transform: uppercase;
	padding-bottom: 4rem;
	margin-bottom: 2rem;
	color: var(--black);
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.custom-need .desc {
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 300;
	color: #000;
	font-family: var(--font-family-alt);
	max-width: 992px;
}

.home-contact-form-input:focus,
.home-contact-form-input[required]:valid,
.home-contact-form-input:not([required]):not(:placeholder-shown) {
	border-color: var(--theme-primary);
}

.home-contact-form-input:invalid:not(:placeholder-shown):not(:focus) {
	border-color: red;
}

.home-contact-form-input:focus ~ .home-contact-form-label,
.home-contact-form-input:not(:placeholder-shown) ~ .home-contact-form-label {
	transform: translateY(-1rem) scale(0.8);
	opacity: 1;
}

/* Container & Overlay */
#svc-enq-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	/* Controlled by JS */
	justify-content: center;
	align-items: center;
	z-index: 10000;
	backdrop-filter: blur(4px);
}

.svc-enq-modal-window {
	background: #ffffff;
	width: 100%;
	max-width: 500px;
	border-radius: 16px;
	padding: 35px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	max-height: 94dvh;
	overflow-y: auto;
	scrollbar-width: thin;
}

.svc-enq-modal-window form {
	padding: 0;
	border: none;
	box-shadow: none;
}

/* Header */
.svc-enq-header-flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 25px;
}

.svc-enq-main-heading {
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--black);
}

.svc-enq-sub-text {
	color: var(--gray);
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
}

.svc-enq-sub-text span {
	color: var(--theme-primary);
}

.svc-enq-close-trigger {
	background: none;
	border: none;
	font-size: 28px;
	color: #999;
	cursor: pointer;
	padding: 0;
}

/* Form Layouts */
.svc-enq-row {
	margin-bottom: 18px;
}

.svc-enq-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.svc-enq-input,
.svc-enq-textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	box-sizing: border-box;
}

.svc-enq-input:focus {
	border-color: #007bff;
	outline: none;
}

/* Errors */
.svc-enq-error-label {
	color: #e63946;
	font-size: 11px;
	margin-top: 4px;
	display: block;
	height: 12px;
}

/* Button */
.svc-enq-primary-btn {
	width: 100%;
	padding: 14px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s;
}

.svc-enq-primary-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

@media (max-width: 768px) {
	.custom-need .content {
		align-items: flex-start;
		flex-direction: column;
		gap: 1rem;
	}
	.custom-need .desc {
		font-size: 1.125rem;
		line-height: 1.5rem;
		margin-bottom: 1rem;
	}
	.custom-need-container {
		padding-inline: 1.5rem;
	}
	.services-stack {
		padding: 1rem;
	}
}

/* #endregion form */
/* #region Sectors  */

.sectors {
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	border-radius: 0.75rem;
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
	padding: 2rem;
}

.sectors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1.5rem;
}

.sectors-grid .sectorCard {
	text-align: center;
}

.sectors-grid .sectorCard .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 3rem;
	margin-inline: auto;
	margin-bottom: 0.75rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.75rem;
	background-color: rgba(41, 163, 86, 0.2);
	color: var(--theme-primary);
	font-size: 1.5rem;
	line-height: 1;
}

.sectors-grid .sectorCard .title {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 700;
	color: var(--theme-primary);
	margin-bottom: 0.25rem;
	font-family: var(--font-family-alt);
}

.sectors-grid .sectorCard .title span {
	font-size: 1.125rem;
	line-height: 1.875rem;
	font-weight: 700;
}

.sectors-grid .sectorCard .desc {
	font-family: var(--font-family-alt);
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 400;
	color: var(--gray);
}

.sectors-details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 4rem;
}

.sectors-details-grid .sectorDetailCard {
	text-align: center;
	padding: 1.5rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(220, 223, 229, 0.5);
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
	transition: 0.3s ease-in-out;
	transform-origin: bottom;
}

.sectors-details-grid .sectorDetailCard:hover {
	border-color: rgba(41, 163, 86, 0.5);
	transform: scale(1.05);
}

.sectorDetailCard .icon {
	width: 100%;
	max-width: 3rem;
	margin-inline: auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--theme-primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.sectorDetailCard .title {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--black);
}

.sectorDetailCard .desc {
	font-size: 0.75rem;
	line-height: 1.25rem;
	font-weight: 400;
	font-family: var(--font-family-alt);
	color: var(--gray);
}

/* #endregion Sectors */
/* #region gallery */

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
	/* align-items: start; */
	margin-top: var(--section-gap);
}

.gallery-grid-sm {
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 20px;
}

.gallery-card {
	border: 1px solid rgba(220, 223, 229, 0.5);
	box-shadow: 0 0 30px rgb(0 0 0 / 10%);
	transition: 0.3s ease-in-out;
	background-color: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	border-radius: 0.75rem;
	overflow: hidden;
}

.gallery-card:hover {
}

.gallery-card:hover .gallery-caption {
	color: #fff;
}

.gallery-card:hover img,
.gallery-card:hover iframe {
	transform: scale(1.1);
}

.gallery-card-img {
	overflow: hidden;
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1.5 / 1;
	position: relative;
}

.gallery-card-img .overlay {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0));
	display: flex;
	align-items: flex-end;
}

.gallery-card-img .overlay .content {
	padding: 1rem;
}

.gallery-card-img .overlay .content .title {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 700;
	color: var(--theme-primary);
	margin-bottom: 0;
}

.gallery-card-img .overlay .content .meta {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: var(--gray);
}

.gallery-card-img .overlay .content .meta i {
	margin-right: 0.25rem;
}

.gallery-media-caption {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	color: #fff;
	font-size: 1rem;
	line-height: 1.25rem;
}

.gallery-album-title {
	border-bottom: 1px solid rgba(220, 223, 229, 0.5);
	padding: 1.5rem;
}

.gallery-media-img {
	/* margin-bottom: 0; */
}

/* ==================== GALLERY MODAL (Album Popup) ==================== */
.gallery-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.4s ease,
		visibility 0.4s ease,
		background 0.4s ease;
	backdrop-filter: blur(0px);
}

.gallery-modal.active {
	opacity: 1;
	visibility: visible;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
}

.gallery-modal-content {
	max-width: 100%;
	width: 90%;
	max-height: 85vh;
	background: rgba(246, 247, 248, 0.5);
	backdrop-filter: blur(24px);
	border: 1px solid rgba(220, 223, 229, 0.5);
	border-radius: 0.75rem;
	position: relative;
	overflow-y: auto;
	transform: scale(0.8) translateY(-50px);
	opacity: 0;
	transition:
		transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
		opacity 0.4s ease;
	box-shadow: rgba(20, 24, 31, 0.08) 0px 4px 30px 0px;
}

.gallery-modal.active .gallery-modal-content {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.gallery-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
	backdrop-filter: blur(10px);
}

.gallery-modal-close:hover {
	background: #ff4444;
	border-color: #ff4444;
	transform: rotate(90deg) scale(1.1);
}

.gallery-media-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 1.5rem;
	padding: 1.5rem;
}

.gallery-media-item {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 1;
	animation: slideIn 0.5s ease forwards;
	opacity: 0;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.gallery-media-item:nth-child(1) {
	animation-delay: 0.05s;
}

.gallery-media-item:nth-child(2) {
	animation-delay: 0.1s;
}

.gallery-media-item:nth-child(3) {
	animation-delay: 0.15s;
}

.gallery-media-item:nth-child(4) {
	animation-delay: 0.2s;
}

.gallery-media-item:nth-child(5) {
	animation-delay: 0.25s;
}

.gallery-media-item:nth-child(6) {
	animation-delay: 0.3s;
}

.gallery-media-item:nth-child(n + 7) {
	animation-delay: 0.35s;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.gallery-media-item:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
	z-index: 5;
}

.gallery-media-item img,
.gallery-media-item iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

.gallery-media-item::after {
	content: "\f002";
	font: 900 1rem "Font Awesome 5 Free";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.gallery-media-item.video-item::after {
	content: "▶️";
}

.gallery-media-item:hover::after {
	opacity: 1;
}

/* ==================== LIGHTBOX (Full Image View) ==================== */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.4s ease,
		visibility 0.4s ease,
		background 0.4s ease;
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
	background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
	max-width: 95vw;
	max-height: 95vh;
	position: relative;
	animation: none;
}

.lightbox.active .lightbox-content {
	animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
	from {
		transform: scale(0.5);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.lightbox-content img,
.lightbox-content iframe {
	max-width: 100%;
	max-height: 95vh;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-content iframe {
	width: 90vw;
	height: 80vh;
	max-width: 1200px;
}

.lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 32px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.lightbox-close:hover {
	background: #ff4444;
	border-color: #ff4444;
	transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

.lightbox-counter {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 14px;
	backdrop-filter: blur(10px);
}

/* Scrollbar styling for modal */
.gallery-modal-content::-webkit-scrollbar {
	width: 8px;
}

.gallery-modal-content::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
}

.gallery-modal-content::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 10px;
}

.gallery-modal-content::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}

/* Prevent body scroll when modals are open */
body.modal-open {
	overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 16px;
	}

	.gallery-media-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 12px;
	}

	.gallery-modal-content {
		width: 95%;
		padding: 20px;
	}

	.lightbox-nav {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.lightbox-prev {
		left: 10px;
	}

	.lightbox-next {
		right: 10px;
	}
}

.gallery-card-img img,
.gallery-card-img iframe {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out;
}

.gallery-caption {
	font-weight: 500;
	text-align: center;
	font-size: 1rem;
	line-height: 1.5;
	/* line clamp 3 */
	margin-top: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gallery-caption:empty {
	display: none;
}

.sl-overlay {
	background-color: #000;
}

.sl-wrapper .sl-close {
	font-size: 2.8em;
	top: 15px;
	right: 15px;
}

.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-counter,
.sl-wrapper .sl-close {
	color: var(--theme-fore-color);
}

.sl-wrapper .sl-image .sl-caption {
	text-align: center;
}

.sl-wrapper .sl-image {
	position: relative;
	transform: translateX(0);
}

@media (max-width: 768px) {
}

/* #endregion gallery */

/* #region infrastructure */

.infrastructure-page {
	background-color: #f9f9f9;
}

.infra-section {
	background-size: cover;
	background-position: bottom center;
}

.infrastructure-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
}

.infrastructure-item {
	position: relative;
	box-shadow: 0 0 0.5rem rgb(0 0 0 / 10%);
	text-align: center;
	background-color: #fff;
}

.infrastructure-img::before {
	padding-top: 65%;
}

.infrastructure-item-content {
	padding: 1rem;
}

.infrastructure-item-title {
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.infrastructure-item-text {
	line-height: 1.3;
}

@media (max-width: 768px) {
	.team-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}

	.md-message .action {
		flex-direction: column;
		align-items: flex-start;
	}

	.header-banner .section-header .section-title {
		font-size: 2rem;
		line-height: 2.25rem;
	}

	#purpose,
	#leadership-team,
	#group-values,
	#manufacturing-excellence,
	#manufacturing-locations,
	#milestones {
		scroll-margin-top: 0rem;
	}

	#chairman-message {
		scroll-margin-top: 2rem;
	}

	.infrastructure-grid {
		grid-template-columns: 1fr;
	}

	.purpose-card.main {
		flex-direction: column;
		align-items: flex-start;
		gap: 2rem;
	}

	.md-message-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 3rem;
	}

	.md-message-grid figure .quote-box,
	.md-message-grid figure .border-box {
		transform: translate(0, 0);
	}

	.md-message .title {
		font-size: 2.5rem;
	}

	.cerifications {
		padding: 2rem;
	}

	.milestones .pole {
		display: none;
	}

	.milestone {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.milestone.left .content,
	.milestone.left .circle,
	.milestone.right .content,
	.milestone.right .circle {
		grid-column: 1;
	}

	.md-message-grid figure {
		padding: 2rem;
	}

	.milestone.left .circle,
	.milestone.right .circle {
		order: 1;
		justify-self: flex-start;
	}

	.milestone.left .content,
	.milestone.right .content {
		order: 2;
		text-align: left;
	}

	.infrastructure-item-title {
		font-size: 1.1rem;
		font-weight: 600;
	}

	.infrastructure-item-text {
		font-size: 0.9rem;
	}
}

/* #endregion infrastructure */

.products-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.product-card {
	position: relative;
	display: block;
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 0.5rem;
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-img {
	width: 100%;
	aspect-ratio: 1.75 / 1;
	overflow: hidden;
	border-radius: 0.5rem;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
	transform: scale(1.1);
}

.product-content {
	padding: 1rem;
}

.product-title {
	font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: 600;
	color: var(--theme-primary);
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	min-height: 2lh;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.product-page .product-title {
	font-size: 2rem;
	line-height: 2.3rem;
	display: block;
	min-height: unset;
	text-overflow: initial;
	margin-bottom: 1rem;
}

.product-desc {
	font-size: 1rem;
	line-height: 1.3rem;
	color: #666;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	min-height: 3lh;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.gallery-figure {
	width: 100%;
	aspect-ratio: 1.25 / 1;
	overflow: hidden;
	position: relative;
	box-shadow: 0px 0px 88px 16px rgba(0, 0, 0, 0.08);
	background-color: #fff;
	border-radius: 0.5rem;
}

.gallery-figure figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #077c1194;
	color: #fff;
	text-align: center;
	font-size: 1.3rem;
	line-height: 1.5rem;
	text-overflow: ellipsis;
	overflow: hidden;
	text-transform: capitalize;
}

.gallery-figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.enquiry-form {
	padding: 2rem;
	border: 1px solid #dadada;
	border-radius: 0.5rem;
	background-color: #fff;
}

.product-page .product-desc {
	font-size: 1.2rem;
	line-height: 1.5rem;
	display: block;
	min-height: unset;
	text-overflow: initial;
	margin-bottom: 1rem;
}

.volunteer-content {
	padding: 10px 15px;
}

.volunteer-content .title {
	font-size: 1rem;
	text-transform: capitalize;
	text-align: center;
}

.service-portfolio-title {
	margin: 15px 0px 5px;
}

.portfolio-figure {
	aspect-ratio: 2 / 1;
}

@keyframes splash-loaded {
	to {
		opacity: 0;
	}
}

.splash-img {
	position: absolute;
	top: 50%;
	left: 50%;
	height: auto;
	max-height: 180px;
	max-width: 100%;
	padding: 2rem;
	animation: splash 0.6s forwards;
}

@keyframes splash {
	from {
		opacity: 0;
		transform: translate(-50%, -30%);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.loaded .splash-img {
	animation: splash-img-loaded 0.6s forwards;
}

@keyframes splash-img-loaded {
	from {
		opacity: 1;
		transform: translate(-50%, -50%);
	}

	to {
		opacity: 0;
		transform: translate(-50%, -30%);
	}
}

#slider-nav .swiper-button-prev {
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 2;
	overflow: hidden;
	border-radius: 0 0.5rem 0.5rem 0;
	left: 0;
	padding: 0;
}

#slider-nav .swiper-button-next {
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 2;
	overflow: hidden;
	border-radius: 0.5rem 0 0 0.5rem;
	right: 0;
	padding: 0;
}

.other-products-section {
	position: relative;
}

.infoCard {
	text-align: center;
}

.infoCard .icon {
	background: linear-gradient(135deg, rgb(17, 126, 57) 0%, rgb(20, 41, 82) 100%);
	aspect-ratio: 1 / 1;
	max-width: 4rem;
	margin: 0 auto 1rem;
	width: 100%;
	padding: 1.25rem;
	color: #fff;
	font-size: 1.5rem;
	overflow: hidden;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.infoCard .title {
	font-size: 1.125rem;
	line-height: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.infoCard .description {
	font-size: 0.825rem;
	line-height: 1.25rem;
	color: rgb(108, 121, 147);
}

.pagesWorkSection {
	position: relative;
	background: linear-gradient(120deg, hsl(243 92% 15%) 0%, hsl(243 80% 25%) 50%, hsl(130 89% 25%) 100%);
}

.pagesWorkSection::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #ffffff0a 1px, transparent 1px), linear-gradient(to bottom, #ffffff0a 1px, transparent 1px);
	background-size: 24px 24px;
	z-index: -1;
}

.map {
	max-width: 100%;
	width: 100%;
	height: 100%;
}

.map iframe {
	width: 100%;
	height: 100%;
	border-radius: 0.5rem;
}

/* .other-products-section::before,
.other-products-section::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
}

.other-products-section::before {
	background-image: url('../images/bg/twirl.png');
	background-size: 100px 100px;
	background-position: right 100px top 50px;
}

.other-products-section::after {
	background-image: url('../images/bg/arrows.png');
	background-size: 100px 100px;
	background-position: left 100px bottom 50px;
} */

/* @media only screen and (min-width:320px) and (max-width:768px) {
	.other-products-section::before {
		background-image: url(../images/bg/twirl.png);
		background-size: 50px 50px;
		background-position: right 20px top 20px;
	}
} */

.blog-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.4s ease,
		visibility 0.4s ease,
		background 0.4s ease;
	backdrop-filter: blur(0px);
	overflow-y: auto;
	padding: 40px 20px;
}

.blog-modal-overlay.active {
	opacity: 1;
	visibility: visible;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
}

.blog-modal-container {
	position: relative;
	width: 100%;
	max-width: 900px;
	margin: auto;
}

.blog-modal-content {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	transform: scale(0.8) translateY(-50px);
	opacity: 0;
	transition:
		transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
		opacity 0.4s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.blog-modal-overlay.active .blog-modal-content {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.blog-modal-close {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 32px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
	backdrop-filter: blur(10px);
}

.blog-modal-close:hover {
	background: #ff4444;
	border-color: #ff4444;
	transform: rotate(90deg) scale(1.1);
}

.blog-modal-image {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	display: block;
}
.blog-modal-head,
.blog-modal-body {
	padding: 2.5rem;
}

.blog-modal-title {
	margin: 0 0 20px 0;
	font-size: 4.5rem;
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.3;
	font-family: var(--font-family-alt);
}

.blog-modal-meta {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 2px solid #f0f0f0;
	flex-wrap: wrap;
}

.blog-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #666;
}

.blog-meta-icon {
	width: 18px;
	height: 18px;
	opacity: 0.7;
}

.blog-meta-author {
	font-weight: 600;
	color: #0066cc;
}

.blog-modal-content-html {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.blog-modal-content-html h1,
.blog-modal-content-html h2,
.blog-modal-content-html h3,
.blog-modal-content-html h4,
.blog-modal-content-html h5,
.blog-modal-content-html h6 {
	margin: 30px 0 15px 0;
	color: #1a1a1a;
	font-weight: 700;
	line-height: 1.3;
}

.blog-modal-content-html h2 {
	font-size: 28px;
}

.blog-modal-content-html h3 {
	font-size: 24px;
}

.blog-modal-content-html h4 {
	font-size: 20px;
}

.blog-modal-content-html p {
	margin: 0 0 20px 0;
}

.blog-modal-content-html img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 25px 0;
}

.blog-modal-content-html ul,
.blog-modal-content-html ol {
	margin: 0 0 20px 0;
	padding-left: 25px;
}

.blog-modal-content-html li {
	margin-bottom: 10px;
}

.blog-modal-content-html blockquote {
	margin: 25px 0;
	padding: 20px 25px;
	background: #f8f9fa;
	border-left: 4px solid #0066cc;
	border-radius: 8px;
	font-style: italic;
	color: #555;
}

.blog-modal-content-html a {
	color: #0066cc;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.blog-modal-content-html a:hover {
	color: #004499;
}

.blog-modal-content-html code {
	background: #f5f5f5;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: "Courier New", monospace;
	font-size: 14px;
}

.blog-modal-content-html pre {
	background: #1a1a1a;
	color: #fff;
	padding: 20px;
	border-radius: 8px;
	overflow-x: auto;
	margin: 20px 0;
}

.blog-modal-content-html pre code {
	background: none;
	padding: 0;
	color: #fff;
}

.blog-modal-content-html table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
}

.blog-modal-content-html table th,
.blog-modal-content-html table td {
	padding: 12px;
	border: 1px solid #ddd;
	text-align: left;
}

.blog-modal-content-html table th {
	background: #f8f9fa;
	font-weight: 600;
}

/* Prevent body scroll when modal is open */
body.modal-open {
	overflow: hidden;
}

/* Pagination Styling */
.pagination-wrapper {
	margin-top: 50px;
}

.page-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}

.page-pagination li a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	color: #333;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.page-pagination li a:hover {
	background: #0066cc;
	border-color: #0066cc;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* Scrollbar styling for modal */
.blog-modal-overlay::-webkit-scrollbar {
	width: 10px;
}

.blog-modal-overlay::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
}

.blog-modal-overlay::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 5px;
}

.blog-modal-overlay::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.blog-modal-head,
	.blog-modal-body {
		padding: 1.5rem;
	}

	.blog-modal-title {
		font-size: 2.5rem;
	}

	.blog-modal-content-html h2 {
		font-size: 22px;
	}

	.blog-modal-content-html h3 {
		font-size: 20px;
	}

	.blog-modal-close {
		top: 10px;
		right: 10px;
		width: 45px;
		height: 45px;
		font-size: 28px;
	}

	.blog-modal-meta {
		gap: 15px;
	}
}

/* Empty State */
.blog-list-banner {
	text-align: center;
	padding: 80px 20px;
	grid-column: 1 / -1;
}

.blog-list-banner-title {
	font-size: 24px;
	color: #999;
	font-weight: 600;
}

/* #region introduction-section */
.section-introduction {
	height: 100dvh;
	position: relative;
	display: flex;
	overflow: hidden;
}

.section-introduction .content .title {
	font-size: 1.25rem;
	line-height: 2rem;
	font-weight: 500;
	margin-bottom: 1.25rem;
	color: rgb(17, 17, 17);
}

.section-introduction .content .subtitle {
	color: rgb(17, 17, 17);
	font-size: 7rem;
	line-height: 8.25rem;
	font-weight: 600;
}

.section-introduction figure {
	max-width: 440px;
	width: 100%;
	aspect-ratio: 1 / 1.4;
	overflow: hidden;
}

.section-introduction figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-introduction .watermark {
	text-wrap: nowrap;
	font-size: calc(20vw);
	line-height: 1;
	color: rgb(233, 232, 229);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-45%, -25%);
	width: 100%;
	height: 100%;
	z-index: -1;
	font-weight: 900;
	font-family: var(--font-family-alt);
}

.about-introduction .container {
	display: flex;
	align-items: center;
}

.about-intro-row {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.about-introduction .content {
	flex: 1 1 45%;
	min-width: 0;
}

.about-introduction .content .subtitle {
	text-wrap: balance;
	white-space: normal;
	overflow-wrap: anywhere;
}

.about-intro-media {
	flex: 0 0 min(440px, 42%);
	margin: 0;
}

.about-page {
	overflow-x: clip;
}

/* #endregion */

/* #region Howdi Section */
.howdi-section .section-header .section-title {
	font-size: 4rem;
	line-height: 5rem;
	color: rgb(17, 17, 17);
}

.howdi-section .section-header .section-desc {
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-weight: 400;
	color: rgb(51, 51, 51);
	max-width: 900px;
	font-family: var(--font-family);
}

.howdi-section .section-header .section-desc p {
	margin-bottom: 2rem;
}

.howdi-section .section-header .section-desc p:last-child {
	margin-bottom: 0;
}

.image-section {
	overflow: hidden;
}

.image-section #about-image-swiper {
	overflow: visible;
	max-width: 800px;
	margin-inline: auto;
}

.image-section #about-image-swiper .swiper-slide {
	height: auto;
	opacity: 0.85;
	transition: opacity 0.6s ease;
}

.image-section #about-image-swiper .swiper-slide-active {
	opacity: 1;
}

.image-section .image {
	max-width: none;
	margin-inline: 0;
	width: 100%;
	aspect-ratio: 1.75 / 1;
	overflow: hidden;
	border-radius: 0.5rem;
	/* transform: scale(0.92); */
	transition: transform 0.7s ease;
}

.image-section #about-image-swiper .swiper-slide-active .image {
	transform: scale(1);
}

.image-section #about-image-swiper.is-sliding .image {
	transform: scale(0.95);
}

.image-section .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-section #career-image-swiper .image {
	aspect-ratio: 2 / 1;
}

.image-section #career-image-swiper .image img {
	object-fit: contain;
}

.about-services .services-accordion-grid {
	grid-template-columns: repeat(1, 1fr);
	gap: 2rem;
}

.about-services .services-accordion-desc {
	font-size: 1.625rem;
	line-height: 2.25rem;
	max-width: 500px;
}

.about-services .services-accordion-desc.bold {
	font-weight: 300;
	margin-bottom: 1rem;
}

.about-services .services-accordion-desc.small {
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: #777;
}

/* #endregion */
/* #region Testimonials */
.testimonials-section {
	background-color: rgba(0, 0, 0, 0.03);
}

.testimonials-section .section-header {
	max-width: 500px;
}

.testimonials-section #testimonials-swiper {
	max-width: 768px;
	padding-bottom: 4rem;
}

.testimonial-card .testimonial-text {
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-weight: 300;
	color: rgb(51, 51, 51);
	font-style: italic;
}

.testimonial-card .author {
	margin-top: 2rem;
	color: rgb(153, 153, 153);
	font-size: 1.25rem;
	line-height: 1.875rem;
	font-weight: 300;
}

.service-container {
	max-width: 100%;
}

/* #endregion */

/* #region clients */
.clients-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1px;
	overflow: hidden;
}

.clients-grid .grid-item {
	background-color: #f3f3f3;
	margin-left: -2px;
	margin-bottom: -1px;
	border-width: 0 0 1px 1px;
	border-style: solid;
	border-color: rgb(155 155 155 / 20%);
	padding: 2rem;
}

.clients-grid figure {
	max-width: 100%;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.clients-grid figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.3s ease-in-out;
}

/* #endregion clients */

/* #region Image Scroll Section */
.parallax-wrapper {
	position: relative;
	height: 600px;
	/* Fixed height of your section */
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.parallax-image {
	position: absolute;
	top: -10%;
	left: 0;
	width: 100%;
	height: 120%;
	background-size: cover;
	background-position: center;
	z-index: -1;
	will-change: transform;
}

/* #endregion */
@media only screen and (min-width: 320px) and (max-width: 768px) {
	.clients-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	}
	.testimonial-card .testimonial-text {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	#productTabs {
		flex-direction: row !important;
	}

	#productTabs .nav-link {
		width: max-content;
		white-space: nowrap;
	}

	.awardCard {
		padding: 1rem 0.5rem;
	}

	.good-tabs {
		justify-content: flex-start;
	}

	.testimonials-section #testimonials-swiper {
		max-width: 100%;
		padding-bottom: 2rem;
	}

	.section-introduction .content .subtitle {
		font-size: 4.5rem;
		line-height: 5rem;
	}

	.section-introduction .content .title {
		font-size: 1rem;
		line-height: 1.5rem;
	}

	.section-introduction .content .subtitle {
		font-size: 2rem;
		line-height: 2.5rem;
		text-wrap: balance;
		white-space: normal;
	}

	.section-introduction {
		height: 70dvh;
	}

	.about-introduction {
		height: auto;
		min-height: 70dvh;
		padding: calc(var(--header-height) + 1.5rem) 0 2.5rem;
	}

	.about-intro-row {
		height: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.about-intro-media {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
		aspect-ratio: 1 / 1.1;
	}

	.about-introduction .watermark {
		font-size: 28vw;
		transform: translate(-50%, -15%);
		opacity: 0.9;
	}

	.howdi-section .section-header .section-title {
		font-size: 2rem;
		line-height: 2.5rem;
	}

	.howdi-section .section-header .section-desc {
		font-size: 1.25rem;
		line-height: 2rem;
	}
}
