 * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}    
:root {
	--primary: #6366f1;
	--secondary: #f43f5e;
	--dark: #0f172a;
	--light: #f8fafc;
}    
/* Main hero section */
.hero-section {
	position: relative;
	height: 450px;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dark);
}    
/* Animated background */
.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}    
.hero-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 35%, rgba(99, 102, 241, 0.15) 0%, transparent 50%), radial-gradient(circle at 75% 44%, rgba(244, 63, 94, 0.15) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 1) 100%);
	z-index: 2;
}    
/* Animated mesh gradient */
.mesh-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	z-index: 1;
	background: radial-gradient(at 82% 65%, hsla(227, 100%, 70%, 1) 0, transparent 55%), radial-gradient(at 25% 58%, hsla(336, 100%, 76%, 1) 0, transparent 50%), radial-gradient(at 60% 23%, hsla(261, 98%, 69%, 1) 0, transparent 45%), radial-gradient(at 10% 19%, hsla(191, 97%, 77%, 1) 0, transparent 50%);
	filter: blur(30px);
	animation: meshMove 20s ease infinite alternate;
}    
@keyframes meshMove {
	0% {
		transform: translate(0, 0) scale(1);
	}
	100% {
		transform: translate(-5%, 5%) scale(1.1);
	}	
}    
/* Main content */
.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	width: 90%;
	max-width: 1200px;
	padding: 25px;
}    
/* Simplified title */
.title-container {
	margin-bottom: 3rem;
}    
.page-title {
	font-size: 5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: white;
	position: relative;
	font-family: "Roboto Condensed", sans-serif;
	display: inline-block;
	text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
	animation: titlePulse 3s ease-in-out infinite alternate;
}    
@keyframes titlePulse {
	0% {
		text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
	}	
	100% {
		text-shadow: 0 0 30px rgba(244, 63, 94, 0.5);
	}
}    
.page-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	border-radius: 2px;
}		
/* Futuristic custom-bread */
.custom-bread-container {
	position: relative;
	display: inline-block;
	margin-bottom: 2rem;
}    
.custom-bread-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.05);
	z-index: -1;
	overflow: hidden;
}
.custom-bread-bg::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
	animation: bgRotate 10s linear infinite;
}    
@keyframes bgRotate {
	0% {
		transform: rotate(0deg);
	}	
	100% {
		transform: rotate(360deg);
	}
}    
.custom-bread-nav {
	padding: 1rem 2.5rem;
	position: relative;
	z-index: 1;
}    
.custom-bread-list {
	display: flex;
	list-style: none;
	align-items: center;
	padding-left: 0;
	margin-bottom: 0;
}    
.custom-bread-item {
	display: flex;
	align-items: center;
	position: relative;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	font-weight: 400;
}    
.custom-bread-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 400;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	padding: 0.5rem 1rem;
	position: relative;
	overflow: hidden;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}    
.custom-bread-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
	border-radius: 4px;
}    
.custom-bread-link:hover {
	color: white;
}    
.custom-bread-link:hover::before {
	opacity: 0.2;
}    
.custom-bread-separator {
	margin: 0 0.5rem;
	position: relative;
	width: 30px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}    
.custom-bread-separator::before {
	content: '';
	position: absolute;
	top: -3px;
	right: 0;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid var(--secondary);
}
.custom-bread-current {
	color: white;
	font-weight: 500;
	padding: 0.5rem 1rem;
	position: relative;
	overflow: hidden;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}    
.custom-bread-current::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	opacity: 0.2;
	border-radius: 4px;
}    
/* Scroll indicator */
.scroll-indicator {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition: transform 0.3s ease;
}
.scroll-indicator:hover {
	transform: translateX(-50%) translateY(5px);
}    
.scroll-text {
	font-size: 0.9rem;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	opacity: 1;
	font-family: "Roboto Condensed", sans-serif;
	color: #fff;
}    
.scroll-icon {
	width: 30px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	position: relative;
}    
.scroll-icon::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 50%;
	width: 6px;
	height: 6px;
	background: white;
	border-radius: 50%;
	transform: translateX(-50%);
	animation: scrollAnim 2s infinite;
}    
@keyframes scrollAnim {
	0% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateX(-50%) translateY(20px);
	}
}    
/* Responsive styles */
@media (max-width: 1200px) {
	.page-title {
        font-size: 4.5rem;
	}
}    
@media (max-width: 992px) {
	.page-title {
        font-size: 3.5rem;
	}
}
@media (max-width: 768px) {
	.hero-section {
		height: 55vh;
	}
	.hero-content {
		position: relative;
		z-index: 10;
		text-align: center;
		width: 90%;
		max-width: 1200px;
		padding-top: 0px !important;
		padding: 25px;
	}
	.page-title {
		font-size: 3rem;
	}
	.custom-bread-link, .custom-bread-current {
		font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
	}  
	.custom-bread-nav {
		padding: 0.8rem 2rem;
	}  
}    
@media (max-width: 576px) {
	.page-title {
		font-size: 30px;
	}  
	.custom-bread-link, .custom-bread-current {
		font-size: 15px;
        padding: 0.3rem 0.6rem;
	}  
	.custom-bread-nav {
        padding: 0.6rem 1.5rem;
	}
	.custom-bread-separator {
		width: 20px;
	}
}