.dr1048hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Background image */
.hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	filter: brightness(0.55);
}

/* Hero content */
.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem;
	color: #fff8e1;
	text-shadow: 1px 1px 4px #000;
	max-width: 900px;
}

/* Heading */
.hero-content h1 {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
}

.hero-content h1 .telugu {
	font-size: 1.8rem;
	color: #ffe082;
	display: block;
	font-family: 'Noto Serif Telugu', serif;
}

/* Description */
.hero-content p {
	font-size: 1.05rem;
	margin-bottom: 0.8rem;
	line-height: 1.6;
}

.hero-content .location {
	font-weight: 600;
	margin-bottom: 1.4rem;
	font-size: 1rem;
}

/* Button group */
.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

/* Button base */
.hero-button {
	padding: 10px 20px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
	display: inline-block;
	color: #fff;
	text-shadow: 1px 1px 2px #000;
	min-width: 140px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-button:hover {
	opacity: 0.9;
	transform: scale(1.05);
}

/* WhatsApp */
.whatsapp-button {
	background: #25d366;
}

/* Call */
.call-button {
	background: #ff9800;
}

/* Mobile Responsive */
@media ( max-width : 768px) {
	.hero-content {
		padding: 1rem;
	}
	.hero-content h1 {
		font-size: 2rem;
	}
	.hero-content h1 .telugu {
		font-size: 1.3rem;
	}
	.hero-content p {
		font-size: 0.95rem;
	}
	.hero-buttons {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	.hero-button {
		width: 75%;
		max-width: 200px;
		padding: 10px 14px;
		font-size: 0.85rem;
	}
}