/* Careers Page Styles */

.careers-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
	color: #fff;
	overflow: hidden;
}

.careers-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)), url('https://shmos.pro/wp-content/uploads/2025/06/%D9%85%D9%82%D8%A7%D9%88%D9%84%D8%A7%D8%AA-%D9%85%D8%B9%D9%85%D8%A7%D8%B1%D9%8A%D8%A9.jpg') center/cover no-repeat;
	transform: scale(1.05);
	filter: saturate(1.1);
	z-index: 0;
}

.careers-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.careers-hero h1 {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-weight: 800;
	font-size: 44px;
	margin-bottom: 12px;
}

.careers-hero p {
	font-size: 18px;
	max-width: 900px;
	margin: 0 auto;
	line-height: 1.7;
}

.careers-jobs {
	padding: 60px 16px;
	background: #f7f8fa;
}

.careers-jobs .section-title {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 28px;
}

.jobs-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.job-card {
	background: #fff;
	border: 1px solid #edf0f5;
	border-radius: 14px;
	padding: 20px;
	box-shadow: 0 8px 22px rgba(0,0,0,0.05);
	transition: transform .2s ease, box-shadow .2s ease;
}

.job-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.job-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.job-header h3 {
	font-size: 20px;
	margin: 0;
	font-weight: 700;
}

.job-location {
	font-size: 14px;
	color: #6b7280;
}

.job-summary {
	font-size: 15px;
	color: #374151;
	line-height: 1.6;
	margin: 10px 0 14px;
}

.job-meta {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	display: flex;
	gap: 14px;
	color: #4b5563;
	font-size: 14px;
}

.job-meta i { color: #0e7490; }

.job-actions { display: flex; gap: 10px; }

.btn-apply {
	display: inline-block;
	padding: 10px 16px;
    background: linear-gradient(135deg, #F2C94C, #BFD8E5);
	color: #fff;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	transition: background .2s ease;
}

.btn-apply:hover {  background: linear-gradient(135deg, #F2C94C, #BFD8E5); }

/* Contact CTA reuse */

/* Responsive */
@media (max-width: 992px) {
	.jobs-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.careers-hero { padding: 70px 16px; min-height:97vh; }
	.careers-hero h1 { font-size: 34px; }
	.jobs-list { grid-template-columns: 1fr; }
}


