/* Hero Container - Clean, Responsive */
.dr1016hero2 {
	width: 100%;
	background: linear-gradient(135deg, #f1fdfb, #e0f7fa);
	color: #004d40;
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
	text-align: center;
	overflow-x: hidden; /* prevent horizontal scroll */
	box-sizing: border-box;
}

.dr1016hero2 .hero {
	display: flex;
	justify-content: center;
	align-items: center;
}

.dr1016hero2 .hero-content {
	max-width: 900px;
	width: 100%;
	padding: 20px;
	margin: 0 auto;
	box-sizing: border-box;
}

.dr1016hero2 .hero-content h1 {
	font-size: 2.8rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #00695c;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dr1016hero2 .hero-content p {
	font-size: 1.2rem;
	margin-bottom: 20px;
	color: #00796b;
	line-height: 1.6;
}

.dr1016hero2 .hero-btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 30px;
	background: linear-gradient(to right, #00bfa5, #009688);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	font-size: 1rem;
	box-shadow: 0 6px 15px rgba(0, 150, 136, 0.3);
	transition: background 0.3s ease, transform 0.3s ease;
}

.dr1016hero2 .hero-btn:hover {
	background: linear-gradient(to right, #009688, #00796b);
	transform: translateY(-3px);
}

/* Scroll Animation */
.fade-in-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive Tweaks */
@media ( max-width : 768px) {
	.dr1016hero2 .hero-content h1 {
		font-size: 2rem;
	}
	.dr1016hero2 .hero-content p {
		font-size: 1rem;
	}
	.dr1016hero2 .hero-btn {
		font-size: 0.95rem;
		padding: 12px 24px;
	}
}

@media ( max-width : 480px) {
	.dr1016hero2 {
		padding: 40px 15px;
	}
	.dr1016hero2 .hero-content h1 {
		font-size: 1.6rem;
	}
	.dr1016hero2 .hero-content p {
		font-size: 0.95rem;
	}
}