.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-transform: uppercase;
}

.hero-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: blur(5px) brightness(0.8);
    animation: hero-glitch 1.5s infinite alternate;
}

@keyframes hero-glitch {
    0% { filter: blur(5px) brightness(0.8) hue-rotate(0deg); }
    100% { filter: blur(3px) brightness(1) hue-rotate(10deg); }
}

.hero-content {
    z-index: 10;
    text-shadow: 4px 4px 0px rgba(255, 0, 255, 0.7), -4px -4px 0px rgba(0, 255, 255, 0.7);
    animation: text-flicker 1.2s infinite alternate;
}

@keyframes text-flicker {
    0% { opacity: 0.8; }
    100% { opacity: 1; text-shadow: 5px 5px 15px rgba(255, 0, 255, 0.8), -5px -5px 15px rgba(0, 255, 255, 0.8); }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffea, #0033ff, #8000ff, #ff0084);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-text 3s infinite alternate;
}

@keyframes rainbow-text {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff00ff;
    text-shadow: 2px 2px 10px rgba(0, 255, 255, 0.8);
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffea);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    animation: pulse 1.5s infinite alternate;
}

.hero-cta:hover {
    background: white;
    color: black;
    box-shadow: 0px 0px 30px rgba(255, 255, 255, 1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/*
.progress-circle {
	z-index : 99; 
	position: absolute;
	width :<?php echo $width;?>;
}

.progress-circle svg {
	width: 100%;
	height: 100%;
}

.progress-circle path.segment {
	stroke: <?php echo $color;?>;
	stroke-width: 8;
	fill: none;
	opacity: 0.15;
	transition: opacity 0.3s;
}

.progress-circle path.segment.active {
	opacity: 1;
}

@media (max-width: 1024px) {
	.progress-circle {
		width: 64px;
		height: 64px;
		bottom: 15px;
		right: 15px;
	}
}

@media (max-width: 600px) {
	.progress-circle {
		width: 56px;
		height: 56px;
	}
}*/
