/* General styling */
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #f5f5f5;
	margin: 0;
	padding: 0;
	line-height: 1.7;
}

.container {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	margin-top: 13vh;
	/* background-image: url('../images/bgs.jpg'); */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	h2 {
		font-size: 1.3rem;
		color: #ffffff;
	}
}
.headers {
	text-align: center;
	margin: 15px 0px 27px 2px;
}
.center-text {
	text-align: center;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.6;
	max-width: 700px;
	margin: 20px auto;
	font-family: 'Inter', 'Segoe UI', sans-serif;
}

.headers span {
	font-size: 36px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 81px;
}

.cardList-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-bottom: 80px;
	padding: 0 110px;
	margin-top: 2rem;
}

.cardList {
	background: #262f38;
	border: 1px solid rgba(148, 163, 184, 0.1);
	border-radius: 1rem;
	padding: 3rem;
	backdrop-filter: blur(12px);
	transition:
		transform 0.3s,
		border-color 0.3s;
}

.cardList-image {
	width: 100%;
	height: 280px;
	background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 30px;
}
.cardList-description {
	color: #9fa1a0;
}
.card-image svg {
	width: 100%;
	height: 100%;
}
.section-title {
	text-align: center;
	padding: 50px 0;
	color: #fff;
	font-family: 'Inter', 'Segoe UI', sans-serif;
}

.section-title h2 {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.5px;
}

/* Main line with arrows */
.line-with-arrows {
	position: relative;
	width: 60%;
	max-width: 500px;
	height: 0.05rem;
	background: linear-gradient(to right, #0f3863, #0f3863);
	margin: 0 auto;
	margin-top: 1rem;
}

/* Left arrow */
.line-with-arrows::before {
	content: '';
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	border: 6px solid transparent;
	border-left-color: #0f3863;
}

/* Right arrow */
.line-with-arrows::after {
	content: '';
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	border: 6px solid transparent;
	border-left-color: #0f3863;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.section-title h2 {
		font-size: 1.75rem;
	}
	.line-with-arrows {
		width: 70%;
	}
}

@media (max-width: 768px) {
	.section-title h2 {
		font-size: 1.5rem;
	}
	.line-with-arrows {
		width: 75%;
	}
}

@media (max-width: 480px) {
	.section-title h2 {
		font-size: 1.25rem;
	}
	.line-with-arrows {
		width: 80%;
	}
}

.cardList-content {
	h2 {
		margin: 20px 0px;
	}
}

.card-title {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 400;
	margin-bottom: 30px;
}

.card-description {
	font-size: clamp(15px, 1.5vw, 18px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
}

.footerList {
	text-align: center;
	padding: 46px 20px 10px 20px;
}

.footerList-text {
	font-size: clamp(18px, 3vw, 33px);
	font-weight: 300;
	line-height: 1.5;
	margin: 0 auto;
	padding: 0 158px;
}
.spacer {
	display: block;
	height: 24px;
	content: '';
}

/* Vision & Mission Section */
.vision-mission-section {
	margin: 30px 0;
	padding: 0px 0px;
}

.vision-container {
	margin-bottom: 100px;
}

.section-title {
	font-size: 30px;
	font-weight: 600;
	padding: 15px;
}

.vision-box {
	background: #205278;
	border-radius: 0 80px 80px 0px;
	padding: 20px 40px;
	max-width: 800px;
	margin-top: 20px;
}

.vision-box p {
	font-size: clamp(15px, 2vw, 20px);
	line-height: 1.6;
}

.mission-container {
	text-align: right;
}

.mission-box {
	background: #1c4970;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 80px 0px 0px 80px;
	padding: 20px 40px;
	max-width: 800px;
	margin-left: auto;
	margin-top: 20px;
}

.mission-box p {
	font-size: clamp(15px, 2vw, 20px);
	line-height: 1.6;
}

/* Team Section */
.team-section {
	margin: 10px 0;
	padding: 20px 20px;
}
.gradient-line {
	height: 1px;
	background: gray;
	border-radius: 2px;
	margin: 30px 33px;
}
.team-title {
	text-align: center;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	margin-bottom: 60px;
}

.team-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}
.team-card-one {
	background-color: #1c1c1c;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	padding: 24px;
	display: flex;
	gap: 20px;
	transition:
		transform 0.3s ease,
		border-color 0.3s ease;
	align-items: flex-start;
}
.team-card {
	background-color: #02071c;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	padding: 24px;
	display: flex;
	gap: 20px;
	transition:
		transform 0.3s ease,
		border-color 0.3s ease;
	align-items: flex-start;
}
.team-card-one:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.4);
}
.team-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.4);
}
.team-card-one:nth-child(2),
.team-card-one:nth-child(4) {
	margin-left: auto;
	flex-direction: row-reverse;
}
.team-card:nth-child(2),
.team-card:nth-child(4) {
	margin-left: auto;
	flex-direction: row-reverse;
}

.team-avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #ffffff;
	flex-shrink: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	img {
		height: 120%;
	}
}

.team-info {
	flex: 1;
}

.team-card:nth-child(2) .team-info,
.team-card:nth-child(4) .team-info {
	text-align: right;
}

.features-section {
	padding: 0px 20px;
	display: flex;
	justify-content: center;
}

.features-container {
	border-radius: 261px;
	border: 1px solid #2a2c30;
	padding: 21px 142px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-row-gap: 35px;
	grid-column-gap: 60px;
	align-items: start;
	position: relative;
	color: #fff;
	margin: 0px 20px;
}

/* Divider line between rows */
.feature-divider {
	grid-column: 1 / -1;
	border: none;
	border-top: 0.04rem solid #0f3863;
	margin: 20px 0;
}

/* Each feature box */
.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px !important;
}

.feature-icon {
	width: 50px;
	height: 50px;
	object-fit: contain;
	flex-shrink: 0;
}

.feature-text h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: #ffffff;
}

.feature-text p {
	font-size: 0.95rem;
	color: #c9d1d9;
	line-height: 1.5;
	max-width: 300px;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.features-container {
		grid-template-columns: 1fr 1fr;
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.features-container {
		grid-template-columns: 1fr;
		padding: 30px 20px;
	}
	.feature-divider {
		display: none;
	}
	.feature-item {
		gap: 14px;
	}
	.feature-text p {
		max-width: 100%;
	}
}

.team-name {
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 600;
	margin-bottom: 4px;
}

.team-role {
	font-size: clamp(14px, 1.5vw, 16px);
	color: #ffffff;
	margin-bottom: 12px;
}

.team-bio {
	font-size: clamp(12px, 1.2vw, 14px);
	line-height: 1.6;
	color: #ffffff;
	text-align: justify;
}

.section-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 25px 20px 7px 20px;
	background: transparent;
}

.section-divider .line {
	flex: 1;
	height: 0.06em;
	background: linear-gradient(to right, #2563eb, #2563eb, #2563eb);
	position: relative;
	margin: 0 2em;
}

.section-divider .label {
	display: flex;
	align-items: center;
	background: #0b3b91;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	padding: 6px 28px;
	border-radius: 9999px;
	box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
	position: relative;
	z-index: 1;
}

.section-divider .dot {
	width: 8px;
	height: 8px;
	background-color: #2563eb;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.section-divider .left-dot {
	left: -32px;
}

.section-divider .right-dot {
	right: -32px;
}

.section-divider .text {
	margin: 0 12px;
}

/* ========================= */
/* ✅ Enhanced Responsiveness */
/* ========================= */

@media (min-width: 1600px) {
	.container {
		max-width: 1500px;
	}
	.features-container {
		padding: 40px 200px;
	}
	.footerList-text {
		padding: 0 300px;
	}
}

@media (max-width: 1599px) and (min-width: 1200px) {
	.cardList-container {
		padding: 0 80px;
		gap: 40px;
	}
	.features-container {
		padding: 30px 100px;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	.cardList-container {
		padding: 0 60px;
		gap: 35px;
	}
	.footerList-text {
		padding: 0 100px;
	}
	.features-container {
		grid-template-columns: 1fr 1fr;
		padding: 40px 60px;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	.headers span {
		font-size: 28px;
		padding: 0 40px;
	}
	.center-text {
		font-size: 1rem;
		max-width: 500px;
	}
	.cardList-container {
		padding: 0 40px;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	.features-container {
		grid-template-columns: 1fr 1fr;
		padding: 30px 50px;
	}
	.footerList-text {
		padding: 0 60px;
	}
}

@media (max-width: 767px) {
	.headers span {
		font-size: 24px;
		padding: 0 20px;
	}
	.center-text {
		font-size: 0.95rem;
		max-width: 90%;
	}
	.cardList-container {
		grid-template-columns: 1fr;
		padding: 0 20px;
		gap: 25px;
	}
	.cardList {
		padding: 2rem;
	}
	.features-container {
		grid-template-columns: 1fr;
		border-radius: 40px;
		padding: 30px 25px;
	}
	.feature-item {
		gap: 12px !important;
	}
	.feature-text h3 {
		font-size: 1.1rem;
	}
	.feature-text p {
		font-size: 0.9rem;
	}
	.footerList-text {
		padding: 0 20px;
		font-size: 1rem;
	}
	.section-divider .line {
		margin: 0 30px;
	}
	.section-divider .label {
		padding: 5px 18px;
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.headers span {
		font-size: 20px;
		padding: 0 10px;
	}
	.section-title h2 {
		font-size: 1.2rem;
	}
	.features-container {
		padding: 20px;
		grid-row-gap: 25px;
	}
	.cardList-container {
		padding: 0 15px;
	}
	.cardList {
		padding: 1.5rem;
	}
	.feature-icon {
		width: 40px;
		height: 40px;
	}
	.footerList-text {
		font-size: 0.9rem;
		padding: 0 10px;
	}
	.team-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.team-avatar {
		margin-bottom: 10px;
	}
	.team-info {
		text-align: center;
	}
}

@media (max-width: 360px) {
	.headers span {
		font-size: 18px;
	}
	.feature-text h3 {
		font-size: 1rem;
	}
	.feature-text p {
		font-size: 0.85rem;
	}
}
.who-we-are-section {
	padding: 25px 20px;
	color: #ffffff;
	text-align: center; /* title center */
}

.who-title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
}

.who-container {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	text-align: left; /* reset for content */
}

.who-text {
	flex: 1;
	min-width: 300px;
}

.who-text p {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 18px;
	color: #d7e2ef;
}

.who-image {
	flex: 1;
	min-width: 300px;
	display: flex;
	justify-content: center;
}

.who-image img {
	width: 100%;
	max-width: 520px;
	border-radius: 50px;
	object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
	.who-container {
		flex-direction: column;
		text-align: center;
	}

	.who-text {
		text-align: center;
	}
}
.people-section {
	padding: 70px 20px;
	color: #ffffff;
	text-align: center;
}

.people-title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
}

.people-subtitle {
	font-size: 20px;
	color: #d0d8e4;
	margin-bottom: 50px;
}

.people-grid {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	gap: 50px 30px;
	grid-template-columns: repeat(4, 1fr);
}

.people-item {
	text-align: center;
	padding: 10px;
}

.people-item h3 {
	margin-top: 15px;
	font-size: 22px;
	margin-bottom: 10px;
}

.people-item p {
	color: #d3d9e4;
	font-size: 16px;
	line-height: 1.5;
	max-width: 260px;
	margin: 0 auto;
}

.people-icon {
	width: 70px;
	height: 70px;
	object-fit: contain;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1100px) {
	.people-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.people-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.people-title {
		font-size: 38px;
	}
}

@media (max-width: 480px) {
	.people-grid {
		grid-template-columns: 1fr;
	}

	.people-title {
		font-size: 32px;
	}

	.people-subtitle {
		font-size: 16px;
	}
}
.cta-section {
	padding: 80px 20px;
	text-align: center;
	color: white;
}

.cta-content {
	max-width: 900px;
	margin: 0 auto;
}

.cta-content h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 18px;
	color: #d5dee8;
	margin-bottom: 40px;
}

.cta-btn {
	display: inline-block;
	background: black;
	color: white;
	padding: 8px 26px;
	border-radius: 40px;
	font-size: 18px;
	text-decoration: none;
	font-weight: 500;
	transition: 0.2s ease-in-out;
}

.cta-btn:hover {
	background: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
	.cta-content h2 {
		font-size: 32px;
	}
	.cta-content p {
		font-size: 16px;
	}
	.cta-btn {
		font-size: 16px;
		padding: 12px 26px;
	}
}

@media (max-width: 480px) {
	.cta-content h2 {
		font-size: 26px;
	}
}
