/* General Styling ****
body {
	font-family: Roboto,sans-serif!important;
	background-color: #f8f9fa;
}

/* Section Title */
.section-title {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	color: #194569;
	margin-bottom: 20px;
}

/* Accordion */
.accordion-button {
	background: linear-gradient(135deg, #194569, #0f3a52);
	color: white;
	font-size: 1.1rem;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease-in-out;
	border: none;
	border-radius: 5px;
}

.accordion-button:hover {
	background: linear-gradient(135deg, #0f3a52, #0c2e3f);
	color: white;
}

.accordion-icon {
	font-size: 1.5rem;
	margin-left: auto;
	transition: transform 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) .accordion-icon {
	transform: rotate(180deg);
	content: "-";
}

.accordion-body {
	background: white;
	padding: 20px;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 5px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-title {
	font-size: 1.2rem;
	font-weight: bold;
}

/* Apply Button */
.btn-apply {
	background: linear-gradient(135deg, #194569, #0f3a52);
	color: white;
	padding: 10px 20px;
	font-size: 1rem;
	border-radius: 5px;
	transition: all 0.3s ease-in-out;
	border: none;
	margin-top: 10px;
}

.btn-apply:hover {
	background: linear-gradient(135deg, #0f3a52, #0c2e3f);
	transform: scale(1.05);
}

/* Base color */
:root {
	--base-color: #194569;
	--hover-color: #136bbd;
}

/* Button Styling */
.custom-btn {
	background: var(--base-color);
	color: #fff;
	font-size: 18px;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	transition: all 0.4s ease-in-out;
	position: relative;
	overflow: hidden;
}

.custom-btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300%;
	height: 300%;
	background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 10%);
	transition: all 0.6s ease-in-out;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
}

.custom-btn:hover::before {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.custom-btn:hover {
	background: var(--hover-color);
	box-shadow: 0px 4px 15px rgba(25, 69, 105, 0.4);
}

/* Full-width Banner */
.container-fluid img {
	width: 100%;
	height: auto;
	display: block;
}

/* Responsive */
@media (max-width: 768px) {
	.custom-btn {
		font-size: 16px;
		padding: 10px 20px;
	}
}

.banner-overlay {
	background: rgba(25, 69, 105, 0.75);
	color: white;
	padding: 20px 20px;
	text-align: center;
	width: 100%;
}

.banner-overlay h2 {
	font-size: 2.5rem;
	font-weight: bold;
}

.banner-overlay p {
	font-size: 1.2rem;
	margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
	.hero_banner {
		height: 200px;
	}
	.banner-overlay h2 {
		font-size: 24px;
	}
}

