.job-container-wrapper {
	display: flex;
	flex-direction: row;
	width: 100%;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;

}

.job-container {

	align-items: center;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	padding: 0px 10px 10px 10px;
	border-radius: 10px;
	background: white;
	margin: 5px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;

}

.job-container.show {
	opacity: 1;
	transform: translateY(0);
}



.job-card {
	border-radius: 15px;
	padding: 20px;
	width: 189px;
	height:240px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	flex-direction: column;
	align-items: center;
	text-align: center;

}



.date-badge {
	background: white;
	border-radius: 15px;
	padding: 8px 12px;
	font-size: 15px;
	font-weight: bold;
}

.bookmark {
	background: white;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	cursor: pointer;
	font-size: 1.2rem;
}

.tags {
	margin-top: auto;
	padding-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tags span {
	background: white;
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: bold;
	display: inline-block;
	max-width: 100px;
	/* Adjust width as needed */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


.details-btn {
	background: black;
	color: white;
	border-radius: 15px;
	padding: 5px 15px;
	font-size: 14px;
	border: none;
	margin-right: 25px;
	position: relative;
	/* Ensures it's above other elements */
	z-index: 10;
	/* Higher than the job container */
	cursor: pointer;
	/* Ensures it's clickable */
}

.job-foot {
	margin-top: 10px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

h5.fw-bold {
	margin-top: 20px;
}





body.no-scroll {
	overflow: hidden;
}


.hero-image-container {
	position: relative;
	width: 100%;
	/* Full width */
	height: 350px;
	/* Adjust as needed */
}

.banner-image-job {
	width: 100%;
	/* Full width of the container */
	height: 100%;
	/* Set height to container's height */
	object-fit: cover;
	/* Ensures the image covers the container without distortion */
}

.hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	/* Text color */
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
}



/* Form styling */
.form-outline {
	text-align: left;
	margin-bottom: 15px;
	position: relative;
}

/* Input fields */
.form-outline input {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	font-size: 15px;
	transition: border-color 0.3s ease-in-out;
	background: rgba(255, 255, 255, 0.9);
	/* Light background for contrast */
	color: #000000;
	/* Black text */
	outline: none;
}

/* Input focus effect */
.form-outline input:focus {
	border-color: #00b4d8;
	background: rgba(255, 255, 255, 0.3);
}

/* Labels */
.form-outline label {
	font-size: 14px;
	color: #f0f0f0;
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
	transition: 0.3s ease-in-out;
	pointer-events: none;
}

/* Floating label effect */
.form-outline input:focus+label,
.form-outline input:not(:placeholder-shown)+label {
	top: 5px;
	font-size: 12px;
	color: #00b4d8;
}

.form-control[type="date"] {
	height: 53px;
}

/* Submit Button */
.btn-primary {
	background: linear-gradient(135deg, #007bff, #00b4d8);
	color: white;
	border: none;
	padding: 7px 18px;
	font-size: 17px;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.3s;
	width: 100%;
	font-weight: bold;
	text-transform: uppercase;
	box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #0056b3, #0096c7);
	box-shadow: 0 6px 15px rgba(0, 180, 216, 0.5);
}

/* Checkbox */
.form-check {
	font-size: 14px;
	color: #e0e0e0;
}

/* Checkbox styling */
.form-check-input {
	accent-color: #00b4d8;
}

/* Fade-in animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive design */
@media (max-width: 500px) {
	.popup-contentsign {
		max-width: 95%;
	}
}