.about-page-main {
	direction: rtl;
	text-align: right;
}

.about-hero-wrapper .about-hero-card {
	min-height: 620px;
}

.about-hero-wrapper .services-hero-overlay {
	background:
		radial-gradient(circle at 8% 12%, rgba(199, 154, 60, 0.34), transparent 36%),
		linear-gradient(135deg, rgba(16, 43, 70, 0.94) 0%, rgba(15, 79, 172, 0.82) 100%);
}

.about-hero-content {
	max-width: 980px;
}

.about-hero-content .services-hero-title {
	margin-bottom: 24px;
}

.about-hero-content .services-hero-desc {
	max-width: 940px;
	font-size: 1.08rem;
	line-height: 2;
}

.about-hero-strip .strip-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-story-section {
	padding-bottom: 64px;
}

.about-story-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: 42px;
	align-items: stretch;
}

.about-story-copy {
	display: grid;
	align-content: center;
	gap: 22px;
	padding-inline-start: 28px;
	border-inline-start: 4px solid var(--gold);
}

.about-story-copy p {
	margin: 0;
	color: var(--blue-dark);
	font-size: 1.08rem;
	font-weight: 600;
	line-height: 2.05;
}

.about-story-media {
	position: relative;
	min-height: 420px;
	overflow: hidden;
	border-radius: 28px;
	box-shadow: var(--shadow-soft);
	background: var(--blue-dark);
}

.about-story-media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 43, 70, 0.04), rgba(16, 43, 70, 0.34));
	content: "";
}

.about-story-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-values-section {
	padding-top: 48px;
}

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.about-value-card {
	position: relative;
	overflow: hidden;
	min-height: 290px;
	padding: 32px;
	border: 1px solid rgba(37, 111, 220, 0.12);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: var(--shadow-soft);
}

.about-value-card::before {
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: linear-gradient(90deg, var(--gold), var(--blue));
	content: "";
}

.about-value-card h2 {
	margin: 0 0 18px;
	color: var(--blue-dark);
	font-size: 1.55rem;
	font-weight: 900;
	line-height: 1.35;
}

.about-value-card p {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.95;
}

@media (max-width: 1024px) {
	.about-story-layout,
	.about-values-grid {
		grid-template-columns: 1fr;
	}

	.about-story-media {
		min-height: 340px;
	}

	.about-value-card {
		min-height: 0;
	}
}

@media (max-width: 767px) {
	.about-hero-wrapper .about-hero-card {
		min-height: 560px;
	}

	.about-hero-content .services-hero-desc,
	.about-story-copy p {
		font-size: 0.96rem;
		line-height: 1.95;
	}

	.about-hero-strip .strip-grid {
		grid-template-columns: 1fr;
	}

	.about-story-layout {
		gap: 28px;
	}

	.about-story-copy {
		padding-inline-start: 18px;
	}

	.about-story-media {
		min-height: 260px;
		border-radius: 20px;
	}

	.about-value-card {
		padding: 26px;
		border-radius: 16px;
	}
}