.dr1056heroaboutus {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Poppins', sans-serif;
}

/* =========================
   BACKGROUND IMAGE (LIGHTLY TREATED)
========================= */
.dr1056heroaboutus .hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;

	transform: scale(1.05);

	/* 🔥 reduce harshness instead of overlay */
	filter: brightness(0.75) contrast(1.05) saturate(1.05);

	transition: transform 0.6s ease;
}

/* =========================
   CONTENT WRAPPER
========================= */
.dr1056heroaboutus .hero-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 20px;
}

/* =========================
   CONTENT
========================= */
.dr1056heroaboutus .hero-content {
	max-width: 900px;
	color: #fff;

	opacity: 0;
	transform: translateY(40px);
	animation: heroFadeUp 1.2s ease forwards;
}

/* =========================
   TITLE (CLEAN PREMIUM)
========================= */
.dr1056heroaboutus .hero-content h1 {
	font-size: 58px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 20px;

	/* 🔥 clean white (no gold gradient) */
	color: #ffffff;

	/* subtle readability */
	text-shadow: 0 6px 25px rgba(0,0,0,0.5);
}

/* =========================
   SUBTEXT
========================= */
.dr1056heroaboutus .hero-content p {
	font-size: 20px;
	color: rgba(255,255,255,0.85);
	margin-bottom: 35px;
	line-height: 1.7;

	text-shadow: 0 4px 18px rgba(0,0,0,0.4);
}

/* =========================
   BUTTON (CLEAN GOLD ACCENT)
========================= */
.dr1056heroaboutus .hero-btn {
	display: inline-block;
	padding: 16px 42px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-decoration: none;

	background: #ffffff;
	color: #000;

	transition: all 0.3s ease;
}

/* hover */
.dr1056heroaboutus .hero-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* =========================
   ANIMATION
========================= */
@keyframes heroFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {

	.dr1056heroaboutus .hero-content h1 {
		font-size: 44px;
	}

	.dr1056heroaboutus .hero-content p {
		font-size: 18px;
	}
}

@media (max-width: 768px) {

	.dr1056heroaboutus {
		height: 90vh;
	}

	.dr1056heroaboutus .hero-content h1 {
		font-size: 32px;
	}

	.dr1056heroaboutus .hero-content p {
		font-size: 15px;
	}

	.dr1056heroaboutus .hero-btn {
		padding: 14px 28px;
		font-size: 14px;
	}
}