/* Enhanced Service Cards */
.service-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
	height: 100%;
	min-height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.service-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon img {
	width: 40px;
	height: 40px;
}

.service-content {
	padding: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #4c1864;
	margin-bottom: 15px;
}

.service-content p {
	color: #666;
	margin-bottom: 20px;
	flex-grow: 1;
}

.learn-more {
	color: #F7B205;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.learn-more i {
	margin-left: 5px;
	transition: transform 0.3s;
}

.learn-more:hover {
	color: #4c1864;
}

.learn-more:hover i {
	transform: translateX(5px);
}

/* Section Header */
.heading-bx .title-head {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.heading-bx .title-head span {
	color: #4c1864;
	position: relative;
}

.heading-bx .subtitle {
	font-size: 1.2rem;
	color: #666;
}

.heading-line {
	width: 80px;
	height: 3px;
	background: linear-gradient(to right, #F7B205, #4c1864);
	margin: 20px auto;
}

/* Enhanced Partner Carousel Styles */
#recruitment-partners {
	padding: 80px 0;
	background-color: #f9fafc;
	position: relative;
}

#recruitment-partners .heading-bx .title-head {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
}

#recruitment-partners .heading-bx .title-head span {
	color: #4c1864;
	position: relative;
}

#recruitment-partners .heading-bx .title-head span:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, #4c1864, #F7B205);
}

#recruitment-partners .heading-bx .subtitle {
	font-size: 1.2rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

#recruitment-partners .heading-line {
	width: 80px;
	height: 3px;
	background: linear-gradient(to right, #F7B205, #4c1864);
	margin: 20px auto 30px;
}

/* Partner Card Styles */
.partner-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	background: #fff;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px;
}

.partner-logo {
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
}

.partner-logo img {
	max-height: 80px;
	width: auto;
	filter: contrast(0.8);
	opacity: 0.8;
	transition: all 0.4s ease;
}

.partner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(76, 24, 104, 0.9) 0%, rgba(69, 31, 151, 0.95) 100%);
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
}

.overlay-content {
	transform: translateY(20px);
	transition: all 0.4s ease;
}

.overlay-content h4 {
	color: #fff;
	font-size: 1.3rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.overlay-content p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	margin-bottom: 15px;
}

/* Hover Effects */
.partner-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-card:hover .partner-logo img {
	filter: grayscale(0) contrast(1);
	opacity: 1;
}

.partner-card:hover .partner-overlay {
	opacity: 1;
}

.partner-card:hover .overlay-content {
	transform: translateY(0);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
	#recruitment-partners {
		padding: 60px 0;
	}

	#recruitment-partners .heading-bx .title-head {
		font-size: 2rem;
	}

	.partner-card {
		height: 180px;
	}

	.partner-logo {
		padding: 20px;
	}

	.partner-logo img {
		max-height: 60px;
	}

	.owl-nav {
		top: -70px;
	}
}

/* Responsive Adjustments */
@media (max-width: 992px) {
	.service-img {
		min-height: 200px;
	}
}

@media (max-width: 768px) {
	.service-card {
		max-width: 500px;
		margin: 0 auto;
	}

	.heading-bx .title-head {
		font-size: 2rem;
	}

	.service-content {
		padding: 20px;
	}

	.service-content h3 {
		font-size: 1.3rem;
	}
}