/* ============================
   HERO SECTION 5 - HOME & LIVING
============================ */
.dr1049hero5 {
	width: 100%;
	background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
	padding: 60px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.hero5-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	flex-wrap: wrap;
	gap: 30px;
	opacity: 0;
	transform: translateX(50px);
	transition: all 1s ease-out;
}

/* Text Section */
.hero5-text {
	flex: 1;
	min-width: 280px;
}

.hero5-text h1 {
	font-size: 2.4rem;
	color: #00695c;
	font-weight: 900;
	margin-bottom: 15px;
}

.hero5-text p {
	font-size: 1.1rem;
	color: #00796b;
	margin-bottom: 10px;
}

.hero5-text .telugu-text {
	font-family: 'Noto Serif Telugu', serif;
	font-weight: 600;
	color: #004d40;
}

/* Buttons */
.hero5-buttons {
	margin-top: 20px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero5-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: #00695c;
	color: #fff;
}

.btn-call:hover {
	background: #004d40;
}

/* Hero Image */
.hero5-image {
	flex: 1;
	min-width: 280px;
	display: flex;
	justify-content: center;
}

.hero5-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;
}

.hero5-image img:hover {
	transform: scale(1.03);
}

/* RESPONSIVE */
@media ( max-width : 900px) {
	.hero5-content {
		flex-direction: column-reverse;
		text-align: center;
	}
	.hero5-buttons {
		justify-content: center;
	}
}

/* ============================
   FADE-IN ANIMATION ON SCROLL
============================ */
.fade-right-on-scroll.in-view {
	opacity: 1 !important;
	transform: translateX(0) !important;
}