/* Hero Banner Elementor - Styles */

/* Reset & Base */
.hbe-hero-banner {
	display: flex;
	width: 100%;
	overflow: hidden;
	font-family: 'Inter', sans-serif;
}

/* ── LEFT CONTENT SIDE ── */
.hbe-content-side {
	flex: 0 0 50%;
	max-width: 50%;
	background-color: #0a0a0a;
	display: flex;
	align-items: center;
	position: relative;
}

.hbe-content-inner {
	padding: 60px;
	width: 100%;
}

/* Heading */
.hbe-heading {
	font-family: 'Oswald', sans-serif;
	font-size: 72px;
	font-weight: 700;
	line-height: 1.05;
	margin: 0 0 35px 0;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: -1px;
}

.hbe-heading-line {
	display: block;
}

.hbe-heading-outline {
	color: transparent;
	-webkit-text-stroke: 2px #ffffff;
	text-stroke: 2px #ffffff;
}

/* Description */
.hbe-description {
	color: #cccccc;
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 25px 0;
	max-width: 420px;
}

.hbe-description.hbe-desc-bordered {
	border-left: 3px solid #00e5ff;
	padding-left: 20px;
}

/* Sub Text */
.hbe-sub-text {
	color: #888888;
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 35px 0;
	max-width: 400px;
}

/* Buttons */
.hbe-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hbe-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	text-transform: none;
	border: 2px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: 0.5px;
	   font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

.hbe-btn-filled {
	background-color: #00e5ff;
	border-color: #00e5ff;
	color: #000000;
}

.hbe-btn-filled:hover {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #000000;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

.hbe-btn-outlined {
	background-color: transparent;
	border-color: #ffffff;
	color: #ffffff;
}

.hbe-btn-outlined:hover {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #000000;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* ── RIGHT IMAGE SIDE ── */
.hbe-image-side {
	flex: 0 0 50%;
	max-width: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.hbe-image-side::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
	opacity: 0.3;
	pointer-events: none;
	z-index: 1;
}

/* ── INFO BAR ── */
.hbe-info-bar {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	gap: 0;
	padding: 25px 35px;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.hbe-info-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0 30px;
	border-left: 1px solid rgba(255,255,255,0.15);
}

.hbe-info-item:first-child {
	padding-left: 0;
	border-left: none;
}

.hbe-info-icon {
	margin-bottom: 2px;
}

.hbe-info-icon i,
.hbe-info-icon svg {
	color: #00e5ff;
	fill: #00e5ff;
	font-size: 14px;
	width: 14px;
	height: 14px;
}

.hbe-info-label {
    font-size: .75rem;
    line-height: 1.2;
    letter-spacing: .02em;
    font-weight: 300;
       font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

.hbe-info-value {
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: .03em;
    font-weight: 600;
     font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
	 
}

/* ── RESPONSIVE ── */
@media screen and (max-width: 1024px) {
	.hbe-heading {
		font-size: 54px;
	}
	.hbe-content-inner {
		padding: 40px;
	}
	.hbe-info-value {
		font-size: 15px;
	}
	.hbe-info-item {
		padding: 0 20px;
	}
}

@media screen and (max-width: 767px) {
	.hbe-hero-banner {
		flex-direction: column;
	}
	.hbe-content-side,
	.hbe-image-side {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.hbe-image-side {
		min-height: 350px;
	}
	.hbe-heading {
		font-size: 42px;
	}
	.hbe-content-inner {
		padding: 35px 25px;
	}
	.hbe-info-bar {
		flex-wrap: wrap;
		gap: 15px;
		padding: 20px 25px;
	}
	.hbe-info-item {
		padding: 0;
		border-left: none;
	}
	.hbe-btn {
		padding: 12px 24px;
		font-size: 13px;
	}
}
