.dr1030hero5 {
	background: linear-gradient(135deg, #ede7f6, #fff8e1);
	/* Spiritual lavender to cream */
	padding: 90px 20px;
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
	color: #4e342e;
	border-radius: 20px;
	box-shadow: 0 12px 35px rgba(103, 58, 183, 0.2);
	overflow: hidden;
	background-image:
		url('https://www.transparenttextures.com/patterns/arches.png');
}

.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.6);
	padding: 40px;
	border-radius: 30px;
	backdrop-filter: blur(6px);
	box-sizing: border-box;
}

.hero5-content.animate {
	opacity: 1;
	transform: translateY(0);
}

.hero5-text {
	flex: 1 1 48%;
	text-align: left;
	min-width: 280px;
}

.hero5-text h1 {
	font-size: 2.8rem;
	font-weight: 900;
	color: #6a1b9a;
	text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
}

.hero5-subtitle {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	color: #8e24aa;
	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;
	font-family: 'Noto Serif Telugu', serif;
}

.hero5-text .telugu-desc {
	display: block;
	font-size: 1.1rem;
	margin-top: 8px;
	color: #7b1fa2;
	font-weight: 500;
}

.hero5-whatsapp-button {
	display: inline-block;
	margin-top: 30px;
	padding: 14px 32px;
	background-color: #7b1fa2;
	color: #fff;
	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 8px 25px rgba(123, 31, 162, 0.3);
	font-family: 'Noto Serif Telugu', serif;
}

.hero5-whatsapp-button:hover {
	background-color: #6a1b9a;
	transform: translateY(-2px);
}

.hero5-image-wrapper {
	flex: 1 1 48%;
	display: flex;
	justify-content: center;
}

.hero5-image {
	max-width: 100%;
	width: 100%;
	border-radius: 24px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
	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;
	}
	.hero5-subtitle {
		font-size: 1.3rem;
	}
	.hero5-text p {
		font-size: 1.1rem;
	}
	.hero5-whatsapp-button {
		padding: 12px 28px;
		font-size: 1rem;
		margin: 20px auto 0 auto;
	}
	.hero5-image-wrapper {
		flex: 1 1 100%;
	}
	.hero5-image {
		max-width: 100%;
		width: 100%;
	}
}