/* ===== HERO4 SECTION ===== */
.dr1042hero4 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	padding: 60px 10%;
	background: linear-gradient(135deg, #f3f6f9, #e0f7fa);
	font-family: 'Poppins', sans-serif;
	overflow: hidden;
}

/* Hero Image */
.dr1042hero4 .hero-image {
	text-align: center;
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}

.dr1042hero4 .hero-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transform: translateX(50px);
	opacity: 0;
	transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Hero Content Animation */
.dr1042hero4 .hero-content {
	text-align: center;
	transform: translateX(50px);
	opacity: 0;
	transition: transform 0.8s ease, opacity 0.8s ease;
}

.dr1042hero4.active .hero-image img, .dr1042hero4.active .hero-content {
	transform: translateX(0);
	opacity: 1;
}

/* Headline */
.dr1042hero4 h1 {
	font-size: 3rem;
	font-weight: 800;
	color: #1a73e8;
	background: linear-gradient(135deg, #ff4b2b, #ff416c, #00c6ff, #8e2de2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0;
}

/* Tagline & Intro */
.dr1042hero4 .tagline {
	font-size: 1.4rem;
	font-weight: 600;
	color: #0b4f6c;
	margin: 10px 0;
}

.dr1042hero4 .intro {
	font-size: 1rem;
	color: #333;
	margin: 12px 0;
	line-height: 1.5;
}

/* Hero Buttons */
.hero-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.hero-btn {
	padding: 12px 25px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	color: #fff;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn.hire {
	background: linear-gradient(145deg, #1a73e8, #0b4f6c);
}

.hero-btn.hire:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.hero-btn.apply {
	background: linear-gradient(145deg, #25d366, #128c7e);
}

.hero-btn.apply:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* ===== Mobile ===== */
@media ( max-width : 768px) {
	.dr1042hero4 h1 {
		font-size: 2.4rem;
	}
	.dr1042hero4 .tagline {
		font-size: 1.2rem;
	}
	.dr1042hero4 .intro {
		font-size: 1rem;
	}
	.hero-buttons {
		justify-content: center;
	}
	.hero-btn {
		min-width: 140px;
		text-align: center;
	}
	.dr1042hero4 .hero-image {
		max-width: 100%;
	}
}