html {
	scroll-behavior: smooth;
}

body {
	padding: 0;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
}

/* Scroll margin for hash navigation */
section[id] {
	scroll-margin-top: 100px;
}

img {
	width: 100%;
	height: 100%;
}

.header {
	height: 0.472rem;
	min-height: 37px;
	max-height: 120px;
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #ffffff;
	z-index: 999;
}

/* Header Navigation */
.header-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0 0.4rem;
	position: relative;
}

.header-logo {
	max-height: 82.5px;
	min-height: 30px;
	min-width: 70px;
}

.nav-menu {
	display: flex;
	gap: 0.25rem;
}

.nav-link {
	color: #888;
	font-weight: 500;
	text-decoration: none;
	font-size: 0.079rem;
	cursor: pointer;
	transition: color 0.3s ease;
}
.nav-link-footer {
	color: #32251c99;
	font-weight: 400;
	text-decoration: none;
	font-size: 0.063rem;
	cursor: pointer;
	transition: color 0.3s ease;
}

.nav-link.active {
	color: #fe7928;
	font-weight: 600;
}

.lang-select {
	border: none;
	background: white;
	color: #fe7928;
	padding: 0.01rem;
	border-radius: 0.25rem;
	font-weight: 500;
	font-size: 0.079rem;
	cursor: pointer;
	outline: none;
	appearance: none; /* Remove default arrow (Chrome, Safari, Edge) */
	-webkit-appearance: none; /* Safari */
	-moz-appearance: none; /* Firefox */
}
.lang-select-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border: 3px solid #ff7f50;
	border-radius: 0.079rem;
	width: 0.496rem;
	gap: 0.05rem;
	position: relative;
}

.lang-options {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 0.079rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	display: none; /* Hidden by default */
	z-index: 10;
	width: 0.496rem;
}

.lang-option {
	padding: 0.05rem;
	color: #fe7928;
	font-size: 0.079rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-align: center;
}

.lang-option:hover {
	background-color: #f0f0f0;
}

.lang-options.show {
	display: block;
}
.lang-selected {
	display: flex;
	font-size: 0.079rem;
	color: #fe7928;
}

/* Mobile Language Icon Button */
.mobile-lang-icon-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 7px 5px;
	border-radius: 8px;
	transition: background-color 0.3s ease;
	margin-left: 5rem;
	border: 1px solid #fe7928;
	margin-left: auto;
	width: .64rem;
    justify-content: center;
}

.mobile-lang-icon-btn:hover {
	background-color: rgba(254, 121, 40, 0.1);
}

.mobile-lang-icon-btn .lang-icon {
	width: 0.094rem;
	height: 0.094rem;
	min-width: 13.3px;
	min-height: 13.3px;
}

/* Mobile Language Overlay */
.mobile-lang-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #000000;
	backdrop-filter: blur(4px);
	z-index: 1002;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.3s ease, opacity 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mobile-lang-overlay.active {
	visibility: visible;
	opacity: 1;
}

.mobile-lang-nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	gap: 0.2rem;
	padding: 0.2rem;
}

.mobile-lang-option {
	font-size: 0.079rem;
	font-weight: 600;
	color: #ffffff;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	border-radius: 0.079rem;
	text-align: center;
}

.mobile-lang-option:hover {
	background-color: rgba(254, 121, 40, 0.2);
	border-color: #fe7928;
	color: #fe7928;
}

.mobile-lang-option.selected {
	background-color: #fe7928;
	width: 60px;
}

/* Burger Menu */
.burger-menu {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	transition: transform 0.3s ease;
	margin-right: 0.1rem;
	gap: 1px;
}

.burger-line {
	background-color: #fe7928;
	transition: all 0.3s ease;
	transform-origin: center;
	margin: 1px 0;
	height: 2px;
	width: 12px;
	border-radius: .05rem;
}
.burger-menu.active {
	visibility: hidden;
}

.close-icon {
	height: 0.094rem;
	width: 0.094rem;
	min-height: 30px;
	min-width: 30px;
	cursor: pointer;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #000000;
	backdrop-filter: blur(4px);
	z-index: 1000;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.3s ease, opacity 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mobile-nav-overlay.active {
	visibility: visible;
	opacity: 1;
}

.mobile-nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	gap: 0.2rem;
	padding: 0.2rem;
}

.mobile-nav-link {
	font-size: 0.079rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
	color: #ffffff;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
	color: #fe7928;
}

.mobile-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #fe7928;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
	width: 100%;
}

.mobile-nav-footer {
	display: flex;
}

.mobile-lang-select {
	border: none;
	background: white;
	color: #fe7928;
	padding: 0.01rem;
	border-radius: 0.25rem;
	font-weight: 500;
	font-size: 0.079rem;
	cursor: pointer;
	outline: none;
	appearance: none; /* Remove default arrow (Chrome, Safari, Edge) */
	-webkit-appearance: none; /* Safari */
	-moz-appearance: none; /* Firefox */
}

/* Hero Section */
.hero-section {
	display: flex;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.hero-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.hero-content {
	width: 561px;
	display: flex;
	flex-direction: column;
	padding: 0.5rem 0 1rem;
}

.hero-title {
	font-size: 0.157rem;
	font-weight: 400;
}

.hero-title span, .hero-title[class*="text-"] {
	font-weight: 700;
}

.hero-subtitle {
	font-size: 0.157rem;
	font-weight: 700;
}

.hero-description {
	font-size: 0.094rem;
	font-weight: 400;
	max-width: 44.16%;
}

.hero-buttons {
	display: flex;
	gap: 10px;
	margin-top: 0.1rem;
}

/* About Section */
.about-section-bg {
	width: 34%;
	position: absolute;
	top: 0;
	left: 0;
}

.about-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.2rem;
}

.about-content {
	display: flex;
	flex-direction: column;
	margin: 0.8rem 0;
	max-width: 500px;
}

.about-content-text {
	font-size: 0.063rem;
	font-weight: 400;
}

.about-description {
	font-size: 0.079rem;
	font-weight: 500;
	margin: 0.1rem 0;
	color: #32251c99;
}

.about-cards {
	display: grid;
	gap: 0.2rem;
}

.about-card {
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
	border: 1px solid #00000014;
	box-shadow: 4px 4px 4px 0px #94b8ff59;
	padding: 0.1rem;
	position: relative;
}

.about-card--offset {
	margin-left: 0.2rem;
}

.about-card-number {
	background-color: #25577a;
	color: white;
	border-radius: 50%;
	position: absolute;
	top: -0.1rem;
	left: -0.08rem;
	width: 0.197rem;
	height: 0.197rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.104rem;
}

.about-card-title {
	font-weight: 700;
	font-size: 0.063rem;
}

/* Why Choose Us Section */
.why-choose-us-section {
	background-color: #f7f8ff;
}

.why-choose-us-container-mobile {
	display: none;
	justify-content: space-between;
	align-items: center;
}

.why-choose-us-container-web {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.why-choose-us-content {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	width: 100%;
}

.why-choose-us-subtitle {
	color: #32251c99;
	font-size: 0.079rem;
}

.why-choose-us-features {
	display: flex;
	gap: 0.1rem;
}

.why-choose-us-features-container {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	white-space: nowrap;
}

.why-choose-us-features-container-wrapper {
	display: flex;
	gap: 0.1rem;
}

.why-choose-us-feature-icon {
	width: 0.11rem;
	max-width: 30px;
}

.why-choose-us-feature-text {
	font-size: 0.079rem;
	font-weight: 600;
}

.why-choose-us-image {
	display: flex;
	margin: 0 auto;
}

.why-choose-us-img {
	border-radius: 0.05rem;
	width: 2.205rem;
}

/* What We Do Section */
.what-we-do-section {
	position: relative;
}

.what-we-do-bg-top {
	position: absolute;
	top: 0;
	right: 0;
	width: 2.591rem;
	height: 2.551rem;
}

.what-we-do-bg-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1.276rem;
	height: 1.276rem;
}

.what-we-do-container {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	text-align: center;
}

.what-we-do-description {
	font-size: 0.079rem;
	font-weight: 400;
	color: #32251c99;
}

.what-we-do-services {
	display: flex;
	gap: 0.1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.service-card {
	width: 1rem;
	border: 1px solid #00000014;
	box-shadow: 4px 4px 4px 0px #94b8ff59;
	padding: 0.236rem 0.079rem;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	gap: 20px;
	align-items: center;
}

.service-card-icon {
	width: 0.315rem;
	height: 0.315rem;
}

.service-card-title {
	font-size: 0.079rem;
	font-weight: 600;
}

/* Industries We Serve Section */

.industries-section {
	background-color: #f7f8ff;
}

.industries-container-mobile {
	gap: 0.35rem;
	display: none;
}

.industries-container-web {
	display: flex;
	gap: 0.35rem;
}

.industries-image-wrapper {
	display: flex;
	justify-content: center;
}

.industries-image {
	width: 2.205rem;
	height: 1.969rem;
}

.industries-content {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.industries-description {
	font-size: 0.079rem;
	font-weight: 500;
	color: #32251c99;
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.1rem;
	margin-top: 0.1rem;
}

.industries-item {
	display: flex;
	gap: 0.1rem;
}

.industries-item-icon {
	width: 0.11rem;
}

.industries-item-text {
	font-size: 0.079rem;
	font-weight: 600;
	white-space: nowrap;
}

/* Explore Our Services Section */
.explore-services-section {
	position: relative;
}

.explore-services-bg-left {
	position: absolute;
	top: 0;
	left: 0;
	width: 2.232rem;
	height: 2.244rem;
}

.explore-services-bg-right {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 1.276rem;
	height: 1.276rem;
}

.explore-services-container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 0.1rem;
}

.explore-services-title {
	text-align: center;
	font-size: 0.157rem;
}
.explore-services-title span {
	font-weight: 700;
}

.explore-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.1rem;
	text-align: center;
	margin-top: 0.1rem;
}

.explore-services-grid-bottom {
	display: flex;
	gap: 0.1rem;
	justify-content: center;
	margin-top: 0.1rem;
}

.explore-service-item {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	justify-content: center;
	align-items: center;
}

.explore-service-number {
	width: 0.315rem;
	height: 0.315rem;
	background-color: #fe7928;
	border-radius: 0.315rem;
	font-size: 0.076rem;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

.explore-service-title {
	font-size: 0.079rem;
	font-weight: 700;
	text-align: center;
}

.explore-service-description {
	font-size: 0.063rem;
	font-weight: 500;
	color: #32251c99;
	text-align: center;
}

/* Contact Section */
.contact-section {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.6rem 0;
	gap: 0.25rem;
	background-color: #f7f8ff;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	width: 49%;
}

.contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	width: 33.22%;
}

.contact-info {
	display: grid;
	gap: 0.1rem;
	justify-content: center;
	margin-top: 10px;
}

.contact-info-item {
	display: flex;
	gap: 0.1rem;
}

.contact-info-icon {
	width: 0.315rem;
	height: 0.315rem;
}

.contact-info-details {
	display: flex;
	flex-direction: column;
	gap: 0.08rem;
}

.contact-info-label {
	font-size: 0.079rem;
	font-weight: 500;
}

.contact-info-value {
	font-size: 0.079rem;
	font-weight: 500;
	color: #32251c99;
}

/* Typography */
.contact-us-title {
	font-size: 0.157rem;
	font-weight: 700;
}

.contact-us-description {
	color: #32251c99;
	font-size: 0.079rem;
	font-weight: 500;
}

.text-base {
	font-size: 0.063rem;
	font-weight: 400;
}

.text-copyright {
	font-size: 0.063rem;
	font-weight: 400;
	font-family: monserat;
}

.text-blue {
	color: #44b1fd !important;
}

.text-orange {
	color: #ff8337 !important;
}

/* Form Elements */
.form-input {
	border: 1.33px solid #00000014;
	border-radius: 16px;
	padding: 0.094rem 0.079rem;
	font-size: 0.063rem;
	color: #32251c80;
}
.form-input::placeholder {
	color: #32251c80;
}

.form-textarea {
	border: 1.33px solid #00000014;
	border-radius: 16px;
	padding: 0.094rem 0.079rem;
	font-size: 0.063rem;
}
.form-textarea::placeholder {
	color: #32251c80;
}

/* Buttons */
.btn {
	font-weight: 600;
	border-radius: 0.25rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
	font-size: 0.079rem;
	padding: 0.05rem;
	width: 0.835rem;
	height: 0.252rem;
}

.btn-filled {
	background-color: #fe7928;
	color: white;
	border-color: #fe7928;
}

.btn-outline {
	background-color: white;
	color: #fe7928;
	border-color: #fe7928;
}

.btn-filled:hover {
	background-color: #e86614;
}

.btn-outline:hover {
	background-color: #fe7928;
	color: white;
}

/* Footer */
footer {
	position: relative;
	display: block;
	overflow: hidden;
}

.footer-nav {
	display: flex;
	gap: 0.25rem;
	justify-content: center;
	align-items: center;
	margin-top: 0.1rem;
}

.footer-nav a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: #fe7928;
}

.footer-copyright {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 26px;
	margin: 0.1rem 0;
}

.container {
	max-width: 1200px;
	margin: 0.3rem auto;
	width: 62.5%;
	gap: 0.1rem;
}

/* Privacy Policy Section Styles */
.privacy-policy-section {
	background-color: #f7f8ff;
	display: flex;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding-top: 0.472rem;
}

.privacy-policy-header {
	text-align: center;
	margin-bottom: 2rem;
	padding: 2rem 0;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-policy-title {
	font-size: 0.157rem;
	font-weight: 700;
	color: #25577a;
	margin-bottom: 0.5rem;
}

.privacy-policy-subtitle {
	font-size: 0.079rem;
	color: #666;
	margin-bottom: 1rem;
	font-weight: 500;
}

.privacy-policy-intro {
	font-size: 0.079rem;
	color: #333;
	max-width: 800px;
	margin: 0 auto;
}

.privacy-policy-content {
	background-color: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
}

.privacy-section {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #eee;
}

.privacy-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.privacy-section-title {
	font-size: 0.126rem;
	font-weight: 700;
	color: #25577a;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #fe7928;
	display: inline-block;
}

.privacy-section-content h3 {
	font-size: 0.094rem;
	font-weight: 600;
	color: #333;
	margin: 1.5rem 0 1rem 0;
}

.privacy-section-content p {
	font-size: 0.063rem;
	color: #555;
	margin-bottom: 1rem;
}

.privacy-section-content ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

.privacy-section-content li {
	font-size: 0.063rem;
	color: #555;
	margin-bottom: 0.5rem;
}

.privacy-section-content strong {
	color: #333;
	font-weight: 600;
}

.contact-details {
	background-color: #f7f8ff;
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1.5rem 0;
	border-left: 4px solid #fe7928;
}

.contact-item {
	margin-bottom: 1rem;
	font-size: 0.063rem;
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-item a {
	color: #fe7928;
	text-decoration: none;
	font-weight: 500;
}

.contact-item a:hover {
	text-decoration: underline;
}

.privacy-policy-footer {
	text-align: center;
	padding: 2rem;
	background-color: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-policy-footer p {
	font-size: 0.063rem;
	color: #666;
	margin-bottom: 0.5rem;
}

.privacy-policy-footer p:last-child {
	margin-bottom: 0;
	font-style: italic;
	color: #888;
}

.privacy-policy-bg-white {
	background-color: #ffffff;
}

.policy-container {
	display: grid;
	gap: 0.315rem;
}

.policy-content {
	display: grid;
	gap: 0.157rem;
}

.policy-stack {
	display: flex;
	flex-direction: column;
	gap: 0.079rem;
}

.policy-title {
	font-size: 0.157rem;
	font-weight: 700;
}

.policy-subtitle {
	font-size: 0.079rem;
	font-weight: bold;
	color: #32251ccc;
}

.policy-text {
	font-size: 0.079rem;
	font-weight: 400;
	color: #32251ccc;
}

.policy-list {
	font-size: 0.079rem;
	font-weight: 400;
	color: #32251ccc;
	padding-left: 0.079rem;
}

.policy-link {
	color: inherit;
	text-decoration: underline;
}

.form-group {
	display: flex;
	flex-direction: column;
}
.form-group:not(:first-child) {
	margin-top: .08rem;
}

.form-input.error,
.form-textarea.error {
	border-color: #e74c3c;
	box-shadow: 0 0 0 0.016rem rgba(231, 76, 60, 0.2);
}

.error-message {
	display: block;
	color: #e74c3c;
	font-size: 0.056rem;
	margin-top: 0.024rem;
	min-height: 0.079rem;
	font-weight: 400;
}

.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.btn.loading {
	pointer-events: none;
}

#toast {
	visibility: hidden; /* hidden by default */
	min-width: 200px;
	background-color: #ff7f50; /* orange background */
	color: white;
	text-align: center;
	border-radius: 8px;
	padding: 12px 16px;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	font-size: 14px;

	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.5s, transform 0.5s;
}

#toast.show {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.lang-icon {
	width: 0.079rem;
}

.form-button-container {
	display: flex;
}

.hidden {
	display: none;
}

.cursor-pointer {
	cursor: pointer;
}

.flex {
	display: flex;
}

.feature-icon-container {
	display: flex;
	justify-content: center;
}

.contact-icon-container {
	display: flex;
	justify-content: center;
}

.contact-form-container {
	display: flex;
	flex-direction: column;
}

.divider {
	width: 100%;
	height: 1px;
	background-color: #32251c66;
	margin-top: 0.1rem;
}

/* Single Page Navigation - Hide/Show Logic */
body:not(.show-privacy-policy) .privacy-policy-section {
	display: none;
}

/* Hide ALL other sections when privacy policy is active */
body.show-privacy-policy .hero-section,
body.show-privacy-policy .why-choose-us-section,
body.show-privacy-policy .what-we-do-section,
body.show-privacy-policy .industries-section,
body.show-privacy-policy .explore-services-section,
body.show-privacy-policy .contact-section {
	display: none !important;
}

/* Alternative approach - hide everything except privacy policy and header/footer */
body.show-privacy-policy section:not(.privacy-policy-section) {
	display: none !important;
}

/* Disable smooth scrolling when privacy policy is active to simulate page change */
body.show-privacy-policy {
	scroll-behavior: auto !important;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-0.079rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 1300px) {
	.explore-services-grid {
		grid-template-columns: 1fr;
	}

	.explore-services-grid-bottom {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 1200px) {
	.header-logo {
		width: 10.27%;
		height: 6.875%;
	}
}

@media (max-width: 768px) {
	body {
		padding-top: 1.12rem;
	}
	.header {
		height: 1.12rem;
	}
	.header-logo {
		width: 1.6314rem;
		height: .72rem;
	}
	.explore-service-description {
		font-size: 11px;
		width: 70%;
	}
	.about-cards {
		gap: 16px;
	}
	.container {
		width: 90%;
	}
	.policy-list {
		font-size: 11px;
	}
	.privacy-policy-section {
		padding: 1rem 0;
	}
	.mobile-lang-option,
	.policy-text,
	.policy-subtitle,
	.industries-item-text,
	.about-description,
	.explore-service-title,
	.explore-service-description,
	.error-message,
	.what-we-do-description,
	.why-choose-us-subtitle,
	.why-choose-us-feature-text,
	.service-card-title,
	.contact-info-value,
	.contact-info-label li {
		font-size: 12px;
	}
	.contact-us-description {
		font-size: 11px;
		font-weight: 400;
		text-align: center;
	}
	.policy-subtitle {
		padding-top: 12px;
	}
	.policy-list {
		padding-left: 26px;
	}
	.policy-title {
		font-size: 18px;
	}
	.industries-description {
		font-size: 11px;
		font-weight: 400;
	}

	.industries-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.industries-item {
		gap: .2rem;
	}
	.industries-item-icon {
		width: 18px;
		height: 18px;
	}
	.hero-title {
		font-size: 24px;
	}
	#home .hero-title {
		font-size: 28px;
	}
	.hero-description {
		font-size: 13px;
		max-width: 100%;
	}
	.hero-content {
		display: flex;
		justify-content: center;
		text-align: center;
		width: 100%;
		padding: 1rem;
	}
	.btn {
		font-size: 11px;
		width: 50%;
		min-width: 128px;
		min-height: 39px;
		height: 100%;
	}
	.text-base {
		font-size: 11px;
		text-align: center;
	}

	.about-card-number {
		font-size: 11px;
		left: 50%;
		top: -15px;
		width: 30px;
		height: 30px;
		text-align: center;
		transform: translateX(-50%);
	}
	.about-card--offset {
		margin: 10px 0;
	}
	.about-card-title {
		font-size: 11px;
		text-align: center;
		padding: 8px;
		font-weight: 700;
	}
	.about-card-description {
		font-size: 11px;
	}
	.about-section-bg {
		height: 176.37px;
	}
	.about-content-text {
		font-size: 11px;
		margin: 0 33px 20px;
		text-align: center;
		color: #32251C99;
	}

	.why-choose-us-image {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.why-choose-us-feature-icon {
		width: 18px;
		transform: rotate(90deg);
	}

	.explore-services-title {
		font-size: 25px;
	}
	.explore-service-number {
		font-size: 12px;
		font-weight: 700;
		height: 40px;
		width: 40px;
		border-radius: 20px;
		margin-bottom: .1rem;
	}
	.contact-us-title {
		font-size: 24px;
		font-weight: 700;
		text-align: center;
	}
	.contact-form {
		width: 80%;
		margin-bottom: .5rem;
	}
	.form-input {
		font-size: 11px;
		padding: 12px;
		border-radius: 12px;
	}
	.form-textarea {
		font-size: 10px;
		padding: 12px;
	}
	.form-button-container {
		display: flex;
		justify-content: center;
		margin-top: .3rem;
	}
	.hero-section {
		padding: 20px 0;
	}
	.hero-section#home {
		height: 6.7rem;
	}
	.why-choose-us-features {
		flex-direction: column;
		text-align: center;
		padding: .1rem;
	}
	.what-we-do-services {
		display: flex;
		flex-direction: row;
		gap: 10px;
		padding: .1rem 0;
	}
	.service-card-icon {
		height: 35px;
		width: 35px;
	}
	.service-card {
		width: calc(50% - 26px);
		box-shadow: 1.64px 1.64px 12.99px 0px #94b8ff59;
		border-radius: 12px;
	}

	.contact-info-icon {
		width: 40px;
		height: 40px;
	}
	.contact-info-label {
		font-size: 12px;
	}
	.contact-info-details {
		margin-top: 12px;
	}
	.contact-info {
		gap: 16px;
	}
	.nav-link-footer {
		font-size: 10px;
	}
	.text-copyright {
		font-size: 10px;
	}

	.footer-nav {
		gap: 16px;
	}
	.contact-info-item {
		display: block;
	}
	.contact-info-details {
		text-align: center;
	}
	.why-choose-us-features-container-wrapper {
		display: flex;
		flex-direction: column-reverse;
		gap: 16px;
		margin-top: 12px;
	}
	.why-choose-us-container-web {
		display: none;
	}
	.why-choose-us-container-mobile {
		display: flex;
	}
	.industries-container-web {
		display: none;
	}
	.industries-content {
		text-align: center;
	}
	.divider {
		display: none;
	}
	.mobile-nav {
		gap: 16px;
	}
	.mobile-nav-link {
		font-size: 11px;
	}
	.nav-menu {
		display: none;
	}

	.lang-select-wrapper {
		display: none;
	}

	.mobile-lang-icon-btn {
		display: flex;
	}

	.burger-menu {
		display: flex !important;
		width: .4rem;
		height: .4rem;
		align-self: center;
		margin-right: .24rem;
	}
	.burger-line {
		width: .4rem;
		height: .05rem;
	}

	.container {
		margin: 0.2rem auto;
	}

	.about-container {
		flex-direction: column;
		gap: 0.1rem;
	}

	.about-content {
		margin: 0.2rem 0 .5rem;
		max-width: 100%;
		text-align: center;
	}
	.about-card {
		padding: .36rem .1rem .1rem;
	}

	.why-choose-us-content {
		align-items: center;
	}

	.industries-container-mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: .3rem;
	}

	.industries-container-web {
		flex-direction: row;
		gap: 0.2rem;
	}

	.contact-section {
		flex-direction: column;
	}

	.contact-sidebar {
		width: 100%;
		display: flex;
		align-items: center;
	}
	.contact-us-logo {
		width: 4.8rem;
		border-radius: 12px;
	}
	.explore-services-grid, .explore-services-grid-bottom {
		gap: 20px;
		margin-top: 12px;
	}
	.explore-services-bg-left {
		width: 2.8rem;
		height: auto;
		left: -.5rem;
		top: 1rem;
	}
	.explore-services-bg-right {
		width: 3.4rem;
        height: auto;
        right: -1.1rem;
		bottom: 1rem;
	}
	footer {
		color: #32251C99;
		padding: .1rem;
	}
	.footer-nav {
		gap: 10px;
        width: fit-content;
        margin: 0 auto;
        padding: .1rem .4rem;
        align-items: center;
        justify-content: center;
        border-bottom: .5px solid #32251C66;
	}
	.footer-copyright {
		margin: 0;
		
	}
}

@media (max-width: 375px) {
	.industries-image {
		width: 4.205rem;
		height: 2.969rem;
	}
	.why-choose-us-img {
		width: 4.205rem;
		height: 2.969rem;
	}
}
