
/*top hero section start*/
.hero-split {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	max-height: 600px;
	overflow: hidden;
	position: relative;
}

/* Left side image */
.hero-split__image {
	flex: 1;
	min-height: 600px; /* ensure height in desktop */
}
.hero-split__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
	object-position: center;
	display: block;
}

/* Right side content */
.hero-split__content {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
	color: #000000;
	background: #fff; /* added background so text never overlaps image */
	z-index: 2;
	position: relative;
}
.hero-split__inner {
	text-align: left;
}
.hero-split__inner h1 {
	font-size: 2.4rem;
	margin-bottom: 20px;
}
.hero-split__inner p {
	font-size: 1.1rem;
	line-height: 1.5;
	margin-bottom: 25px;
}
.hero-split__btn {
	display: inline-block;
	padding: 14px 30px;
	background: #fff;
	color: #45b8ff;
	font-weight: bold;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 2px solid #45b8ff;
	/* background: linear-gradient(180deg, #45B8FF 0%, #1AA7FF 100%); */
}
.hero-split__btn:hover {
	color: #fff;
	/* background: #124463; */
	background: linear-gradient(180deg, #45b8ff 0%, #1aa7ff 100%);
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
	.hero-split {
		flex-direction: column;
		max-height: unset; /* remove fixed height */
	}

	.hero-split__image {
		/* min-height: 250px; give fixed safe height for mobile */
		min-height: unset;
		max-height: 300px;
	}

	.hero-split__image img {
		clip-path: none; /* remove slant */
		object-position: center;
	}

	.hero-split__content {
		padding: 30px 20px;
		text-align: center;
		background: #fff; /* ensure white background always */
	}

	.hero-split__inner h1 {
		font-size: 1.8rem;
	}

	.hero-split__inner p {
		font-size: 1rem;
	}
}

/*top hero section end*/




.services-hero-btn {
	width: 50%;
	height: 56px;
	border: 2px solid #ffeb38;
	border-radius: 10px;
	font-size: 25px;
	font-weight: 500;
	color: #000;
	cursor: pointer;
	background: linear-gradient(180deg, #ffeb38, #ffc738);
	transition: all 0.3s ease;
}

.services-hero-btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

@media (max-width: 992px) {
	.services-hero-btn {
		height: 54px;
		border-radius: 8px;
		font-size: 16px;
		border-width: 1.5px;
	}
}
@media (max-width: 600px) {
	.services-hero-btn {
		height: 52px;
		font-size: 16px;
	}
}

