/* Section Wrapper */
.hero-section-4502ece5 {
	position: relative;
	width: 100%;
	overflow: visible;
	padding: 80px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Inner Container */
.hero-container-4502ece5 {
	position: relative;
	z-index: 2; /* Increased z-index to overlap images */
	max-width: 700px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
}

/* Label */
.hero-label-4502ece5 {
	border: 1px solid #ccc;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
	background: #fff;
	color: #333;
}

/* Heading */
.hero-heading-4502ece5 {
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 24px;
	color: #111;
	transition: opacity 0.8s ease, transform 0.8s ease;
    width: 100%;
    position: relative; /* Context for z-index */
    z-index: 3; /* Ensure it stays above images */
}

.hero-heading-4502ece5.reveal-enabled {
	opacity: 0;
	transform: translateY(20px);
}

.hero-heading-4502ece5.reveal-enabled.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.hero-heading-4502ece5 span {
	color: #777;
    display: inline-block;
}

/* Subtitle */
.hero-subtitle-4502ece5 {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
    width: 100%;
    position: relative;
    z-index: 3;
}

/* Button */
.hero-button-4502ece5 {
	display: inline-flex;
	align-items: center;
	background: #000;
	color: #fff;
	padding: 12px 24px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.3s ease;
    position: relative;
    z-index: 3;
}

.hero-button-4502ece5:hover {
	opacity: 0.8;
	color: #fff;
}

.hero-btn-icon-4502ece5 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.hero-btn-icon-4502ece5.pos-left {
	margin-right: 8px;
}

.hero-btn-icon-4502ece5.pos-right {
	margin-left: 8px;
}

.hero-btn-icon-4502ece5 svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* Floating Images */
.hero-image-left-4502ece5,
.hero-image-right-4502ece5 {
	position: absolute;
	top: 50%;
	width: 25%;
	z-index: 1; /* Keep images below the text */
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-image-left-4502ece5 {
	left: 0;
	transform: translateY(-50%) rotate(-3deg);
}

.hero-image-right-4502ece5 {
	right: 0;
	transform: translateY(-50%) rotate(3deg);
}

.hero-image-left-4502ece5.slide-enabled {
	opacity: 0;
	transform: translate(0, 50px) rotate(-3deg);
}

.hero-image-right-4502ece5.slide-enabled {
	opacity: 0;
	transform: translate(0, 50px) rotate(3deg);
}

.hero-image-left-4502ece5.slide-enabled.is-slid {
	opacity: 1;
	transform: translateY(-50%) rotate(-3deg);
}

.hero-image-right-4502ece5.slide-enabled.is-slid {
	opacity: 1;
	transform: translateY(-50%) rotate(3deg);
}

.hero-image-left-4502ece5 img,
.hero-image-right-4502ece5 img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 767px) {
	.hero-heading-4502ece5 {
		font-size: 2rem;
	}
}