.apply-header{
	position: sticky;
	top: 0;
	z-index: 5;
	width: 100%;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid #e5e7eb;
}
.apply-nav{
	width: min(1180px, 100%);
	min-height: 76px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo,
.bck_button{
	display: flex;
	align-items: center;
}
.bck_button a{
	text-decoration: none;
}
.bck_button a button{
	min-height: 42px;
	padding: 10px 16px;
	border: 1px solid #bfdbfe;
	border-radius: 8px;
	color: #2563eb;
	background: #fff;
	cursor: pointer;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: 0.2s ease background, 0.2s ease transform;
}
.bck_button a button:hover{
	background: #eff6ff;
	transform: translateY(-1px);
}
.apply-hero{
	padding: 76px 20px 118px;
	background-image: linear-gradient(115deg, rgba(8, 20, 43, 0.92), rgba(20, 94, 144, 0.72)), url('../source/Images/for_background/typing_g_blue_overlay.png');
	background-size: cover;
	background-position: center;
	text-align: center;
}
.apply-hero-content{
	width: min(880px, 100%);
	margin: 0 auto;
	color: #fff;
}
.apply-eyebrow{
	color: #bfdbfe;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-bottom: 12px;
}
.apply-hero h1{
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.08;
	margin-bottom: 18px;
}
.apply-hero p:last-child{
	max-width: 690px;
	margin: 0 auto;
	color: rgba(255,255,255,.82);
	font-size: clamp(16px, 2vw, 19px);
}
.apply_form_area{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 0 20px 70px;
	margin-top: -64px;
	position: relative;
	z-index: 2;
}
.apply_form{
	width: min(1120px, 100%);
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
	padding: clamp(24px, 4vw, 42px);
}
.form_heading{
	margin-bottom: 22px;
}
.form_heading h1{
	color: #0f172a;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
}
.form_heading p,
.form-footer p{
	color: #64748b;
}
.form_section{
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.clm_form{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
.form_cell{
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.form_cell label{
	color: #0f172a;
	font-size: 14px;
	font-weight: 700;
}
input,
select,
textarea{
	width: 100%;
	min-height: 46px;
	padding: 11px 13px;
	border: 1px solid #dbe3ef;
	border-radius: 8px;
	background: #fff;
	color: #1f2937;
	font-size: 14px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}
textarea{
	min-height: 116px;
	resize: vertical;
}
input:focus,
select:focus,
textarea:focus{
	border-color: #2563eb;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}
.contact-details{
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid #eef2f7;
}
.full-width-cell{
	margin-top: 16px;
}
.form-footer{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid #eef2f7;
}
.submit-application{
	min-height: 48px;
	padding: 12px 22px;
	border: 1px solid #2563eb;
	border-radius: 8px;
	background: #2563eb;
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	transition: 0.2s ease background, 0.2s ease transform;
}
.submit-application:hover{
	background: #1d4ed8;
	transform: translateY(-1px);
}
@media screen and (max-width: 820px){
	.clm_form{
		grid-template-columns: 1fr;
	}
	.apply_form_area{
		margin-top: -42px;
	}
	.form-footer{
		align-items: flex-start;
		flex-direction: column;
	}
}
@media screen and (max-width: 550px){
	.bck_button span{
		display: none;
	}
	.apply-nav{
		padding: 0 18px;
	}
}
