.dr1027hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	background-color: #2E3A59;
}

.dr1027hero .hero-bg-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: 1;
}

.dr1027hero .hero-overlay {
	position: absolute;
	inset: 0;
	/* background: rgba(46, 58, 89, 0.7); */ /* Overlay removed */
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.dr1027hero .hero-content {
	color: #ffffff;
	text-align: center;
	max-width: 800px;
	z-index: 3;
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.3s;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}

.dr1027hero .hero-content h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #FFFFFF;
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.4s;
}

.dr1027hero .hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	line-height: 1.6;
	color: #f0f4f8;
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.6s;
}

.dr1027hero .hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.8s;
}

.dr1027hero .hero-button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	min-width: 240px;
	height: 50px;
	transition: background 0.3s ease;
	box-sizing: border-box;
	white-space: nowrap;
}

/* ✅ Button Colors */
.dr1027hero .whatsapp-button {
	background-color: #6FCF97; /* Fresh green */
}
.dr1027hero .whatsapp-button:hover {
	background-color: #5ec686;
}

.dr1027hero .call-button {
	background-color: #FF7043; /* Soft coral */
}
.dr1027hero .call-button:hover {
	background-color: #f25b2e;
}

/* ✅ Fade-in Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
	.dr1027hero .hero-content h1 {
		font-size: 1.8rem;
		animation-delay: 0.4s;
	}
	.dr1027hero .hero-content p {
		font-size: 1rem;
		animation-delay: 0.6s;
	}
	.dr1027hero .hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.dr1027hero .hero-button {
		width: 100%;
		max-width: 320px;
	}
}