.breadcrumb-custom {
	background-color: #2c3e50;
	background-image: url('../images/img/bread/bread-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 300px;
	display: flex;
	align-items: center;
	position: relative;
}
.breadcrumb-custom .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}
.breadcrumb-custom-content-inner {
	text-align: center;
	padding: 0px 0;
}
.breadcrumb-custom-heading-title {
	margin-bottom: 0px;
}
.breadcrumb-custom-title {
	font-size: 40px;
	letter-spacing: 1px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	line-height: 1.2;
	animation: fadeInUp 1s ease-out;
}
.breadcrumb-custom-content {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 1.1rem;
	font-weight: 500;
	animation: fadeInUp 1s ease-out 0.3s both;
}
.breadcrumb-custom-content li {
	position: relative;
	font-size: 20px;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
.breadcrumb-custom-content li:not(:last-child)::after {
	content: '→';
	margin-left: 15px;
	color: #ff0019;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
.breadcrumb-custom-content-home {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	padding: 8px 16px;
	border-radius: 25px;
	background: rgb(192 30 46 / 55%);
	border: 1px solid rgb(192 30 46);
}
.breadcrumb-custom-content-home:hover {
	color: #ffffff;
	background: rgba(255, 215, 0, 0.25);
	border-color: rgba(255, 215, 0, 0.7);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Responsive Design */
@media (max-width: 1024px) {
	.breadcrumb-custom-title {
		font-size: 3rem;
	}
}
@media (max-width: 768px) {
	.breadcrumb-custom-title {
		font-size: 2.5rem;
	}        
	.breadcrumb-custom-content-inner {
		padding: 40px 0;
	}        
	.breadcrumb-custom {
		min-height: 150px;
	}        
	.breadcrumb-custom-content {
		gap: 10px;
	}        
	.breadcrumb-custom-content li:not(:last-child)::after {
		margin-left: 10px;
	}
}
@media (max-width: 480px) {
	.breadcrumb-custom-title {
		font-size: 30px;
	}        
	.breadcrumb-custom-content {
		gap: 8px;
	}        
	.breadcrumb-custom-content li:not(:last-child)::after {
		content: '→';
		margin-left: 10px;
		margin-top: 5px;
	}
	.breadcrumb-custom-content-home {
		padding: 6px 12px;
		font-size: 20px;
	}
}