.dr1048hero5 {
	background: linear-gradient(135deg, #fffde7, #ffecb3);
	/* Soft Yellow Theme */
	padding: 90px 20px;
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
	color: #3e2723;
	border-radius: 20px;
	box-shadow: 0 12px 35px rgba(255, 214, 0, 0.2);
	background-image:
		url('https://www.transparenttextures.com/patterns/purty-wood.png');
	/* subtle paint texture */
	overflow: hidden;
}

.hero5-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
	background: rgba(255, 255, 255, 0.75);
	padding: 40px;
	border-radius: 30px;
	backdrop-filter: blur(5px);
}

.hero5-content.animate {
	opacity: 1;
	transform: translateY(0);
}

.hero5-text {
	flex: 1 1 48%;
	text-align: left;
}

.hero5-text h1 {
	font-size: 2.8rem;
	font-weight: 800;
	color: #e65100;
	text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.6);
}

.telugu-subtitle {
	display: block;
	font-size: 1.5rem;
	color: #ff6f00;
	font-weight: 700;
	margin-top: 10px;
	font-family: 'Noto Serif Telugu', serif;
}

.hero5-text p {
	margin-top: 20px;
	font-size: 1.2rem;
	color: #5d4037;
	line-height: 1.6;
}

.telugu-desc {
	display: block;
	font-size: 1.1rem;
	color: #bf360c;
	margin-top: 10px;
	font-weight: 500;
	font-family: 'Noto Serif Telugu', serif;
}

.hero5-whatsapp-button {
	display: inline-block;
	margin-top: 30px;
	padding: 14px 36px;
	background: linear-gradient(to right, #fdd835, #fbc02d);
	color: #3e2723;
	font-weight: bold;
	font-size: 1.1rem;
	border-radius: 40px;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease;
	box-shadow: 0 10px 28px rgba(253, 216, 53, 0.4);
}

.hero5-whatsapp-button:hover {
	background: linear-gradient(to right, #fff176, #ffd600);
	transform: translateY(-2px);
}

.hero5-image-wrapper {
	flex: 1 1 48%;
	display: flex;
	justify-content: center;
}

.hero5-image {
	max-width: 100%;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
	object-fit: cover;
}

/* Responsive */
@media ( max-width : 992px) {
	.hero5-content {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}
	.hero5-text {
		text-align: center;
		flex: 1 1 100%;
	}
	.hero5-text h1 {
		font-size: 2.2rem;
	}
	.telugu-subtitle {
		font-size: 1.3rem;
	}
	.hero5-text p {
		font-size: 1.1rem;
	}
	.hero5-whatsapp-button {
		padding: 12px 28px;
		font-size: 1rem;
	}
	.hero5-image-wrapper {
		flex: 1 1 100%;
	}
}