/* ============================
   HERO SECTION
============================ */
.dr1049hero {
	width: 100%;
	background: linear-gradient(135deg, #ffe9d1, #fff0f5);
	padding: 60px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	flex-wrap: wrap;
	gap: 30px;
}

/* Text Section */
.hero-text {
	flex: 1;
	min-width: 280px;
}

.hero-text h1 {
	font-size: 2.4rem;
	color: #b71c1c;
	font-weight: 900;
	margin-bottom: 15px;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.hero-text p {
	font-size: 1.1rem;
	color: #3e2723;
	margin-bottom: 10px;
}

.hero-text .telugu-text {
	font-family: 'Noto Serif Telugu', serif;
	font-weight: 600;
	color: #5d0f1f;
}

/* Buttons */
.hero-buttons {
	margin-top: 20px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-buttons a {
	padding: 12px 22px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all .3s ease;
}

.btn-whatsapp {
	background: #25d366;
	color: #fff;
}

.btn-whatsapp:hover {
	background: #1da851;
}

.btn-call {
	background: #b71c1c;
	color: #fff;
}

.btn-call:hover {
	background: #8d0f12;
}

/* Hero Image */
.hero-image {
	flex: 1;
	min-width: 280px;
	display: flex;
	justify-content: center;
}

.hero-image img {
	width: 100%;
	max-width: 600px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	transition: transform .3s ease;
}

.hero-image img:hover {
	transform: scale(1.03);
}

/* RESPONSIVE */
@media ( max-width : 900px) {
	.hero-content {
		flex-direction: column-reverse;
		text-align: center;
	}
	.hero-buttons {
		justify-content: center;
	}
}