/* banner -start */
.banner-section {
	padding: 215px 0 95px 0;
}

/* banner -end */

/* Company Page Section */
.company-section {
	padding: 80px 0;
	background-color: #ffffff;
	position: relative;
}

/* Background decorative elements */
/* .company-intro-section .company-container {
	position: relative;
	z-index: 1;
} */

/* .company-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
} */

/* Company Introduction Section */
.company-intro-section {
	padding: 100px 0 80px 0;
}

.company-intro-text {
	font-size: 16px;
	font-weight: 400;
	color: #374151;
	line-height: 1.8;
	margin: 0 0 32px 0;
}

.company-intro-text:last-of-type {
	margin-bottom: 0;
}

.company-quote {
	margin: 48px 0;
	padding: 0;
	border: none;
}

.company-quote-text {
	font-size: 27px;
	font-weight: 400;
	font-style: italic;
	color: var(--sec-color);
	line-height: 1.5;
	margin: 0;
	max-width: 900px;
}

/* We Take Our Job Seriously Section */
.company-serious-section {
	padding: 60px 0;
}

.company-section-title {
	font-size: 36px;
	font-weight: 500;
	color: var(--main-color);
	margin: 20px 0;
	line-height: 1.2;
}

.company-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.company-text {
	font-size: 16px;
	font-weight: 400;
	color: #374151;
	line-height: 1.8;
	margin: 0;
}

/* Built for Stability Section */
.company-stability-section {
	padding: 60px 0;
}

.company-feature-list {
	list-style: none;
	margin: 40px 0 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.company-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	font-size: 16px;
	font-weight: 400;
	color: #374151;
	line-height: 1.6;
}

.company-feature-check {
	flex-shrink: 0;
	margin-top: 2px;
}

.company-feature-item span {
	flex: 1;
}

/* We're Very Supportive Section */
.company-supportive-section {
	padding: 80px 0;
	background-color: #F9FAFB;
}

.company-supportive-title {
	text-align: center;
	margin-bottom: 48px;
}

.company-support-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.company-support-box {
	box-shadow: 0 0 50px 0 #b6c7ff;
	border-radius: 15px;
	padding: 18px;
}

.company-support-text {
	font-size: 16px;
	font-weight: 400;
	color: #374151;
	line-height: 1.7;
	margin: 0;
}

/* Meet the Team Section */
.company-meet-the-team-section {
	padding: 100px 0;
	background-color: #1E3A5F;
	position: relative;
}

.meet-the-team-content {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.meet-the-team-title {
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin: 0 0 60px 0;
	line-height: 1.2;
}

.meet-the-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	align-items: stretch;
}

.team-member-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	min-height: 400px;
}

.team-member-graphic {
	width: 100%;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	flex-shrink: 0;
}

.team-geometric-shape {
	width: 100%;
	height: 100%;
	max-width: 200px;
	max-height: 300px;
}

.team-member-info {
	width: 100%;
	text-align: center;
}

.team-member-name {
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	margin: 0;
	line-height: 1.4;
}

.team-member-description {
	opacity: 0;
	visibility: hidden;
	padding: 60px 40px;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	margin-top: 16px;
	position: relative;
	z-index: 3;
}

.team-member-description p {
	font-size: 15px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.7;
	margin: 0;
}

/* Hover effect for desktop (screens > 1368px) */
@media screen and (min-width: 1369px) {
	.team-member-card:not(.team-member-with-text):hover .team-member-description {
		opacity: 1;
		visibility: visible;
	}
}

/* Team Member with Text (Miriam Marcus) */
.team-member-with-text {
	background-color: #2A4A6F;
	border-radius: 8px;
	padding: 32px;
	min-height: auto;
}

.team-member-text-content {
	width: 100%;
	position: relative;
	margin-bottom: 24px;
	background-color: rgba(42, 74, 111, 0.5);
	flex: 1;
}

.team-member-text-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/assets/image/logo-q.png');
	background-size: 80%;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.5;
	z-index: 1;
}

.team-member-text-content:hover::before {
	opacity: 0.2;
}

.team-member-with-text .team-member-description {
	opacity: 1;
	padding: 60px 40px;
	visibility: visible;
	position: relative;
	z-index: 2;
}

.team-member-graphic-watermark {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
	z-index: 1;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-member-graphic-watermark .team-geometric-shape {
	max-width: 150px;
	max-height: 200px;
}

.team-member-with-text .team-member-info {
	margin-top: auto;
}

/* contact section -start */
.contact-form-section {
	padding-bottom: 200px;
}

.contact-img-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-img-wrapper img {
	width: 900px;
	position: relative;
}

.contact-img-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 900px;
	height: 100%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.contact-section-title {
	color: #ffffff;
	font-size: 36px;
	font-weight: 500;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
}

.contact-form-wrapper {
	margin-top: -100px;
	z-index: 2;
	position: relative;
	box-shadow: 0 10px 20px 0 #b6c7FF7D;
}

.contact-tip {
	color: #333333;
	font-size: 14px;
	margin-bottom: 30px;
}

.contact-tip a {
	color: var(--main-color);
	text-decoration: underline;
	cursor: pointer;
}

/* contact section -end */