.dr1027hero6 {
	background: linear-gradient(135deg, #f3e5f5, #e1bee7);
	/* Soft fertility gradient */
	padding: 90px 20px;
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
	color: #4a148c;
	border-radius: 16px;
	box-shadow: 0 12px 35px rgba(186, 104, 200, 0.25);
	overflow-x: hidden; /* Prevent horizontal scroll */
}

.hero6-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
	background: rgba(255, 255, 255, 0.4);
	padding: 40px;
	border-radius: 30px;
	backdrop-filter: blur(6px);
	box-sizing: border-box;
}

.hero6-content.animate {
	opacity: 1;
	transform: translateY(0);
}

.hero6-text {
	flex: 1 1 48%;
	text-align: left;
	box-sizing: border-box;
}

.hero6-text h1 {
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 1.4;
	color: #6a1b9a;
	text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.4);
	margin: 0;
}

.hero6-subtitle {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	color: #8e24aa;
	margin-top: 10px;
	font-family: 'Noto Serif Telugu', serif;
}

.hero6-text p {
	margin-top: 20px;
	font-size: 1.2rem;
	color: #5e35b1;
	line-height: 1.6;
	font-family: 'Noto Serif Telugu', serif;
}

.hero6-text .telugu-desc {
	display: block;
	font-size: 1.1rem;
	margin-top: 8px;
	color: #7b1fa2;
	font-weight: 500;
}

.hero6-whatsapp-button {
	display: inline-block;
	margin-top: 30px;
	padding: 14px 32px;
	background-color: #ab47bc;
	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(171, 71, 188, 0.3);
	font-family: 'Noto Serif Telugu', serif;
}

.hero6-whatsapp-button:hover {
	background-color: #8e24aa;
	transform: translateY(-2px);
}

.hero6-image-wrapper {
	flex: 1 1 48%;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}

.hero6-image {
	width: 100%;
	max-width: 380px;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	object-fit: cover;
}

/* Responsive */
@media ( max-width : 992px) {
	.hero6-content {
		flex-direction: column;
		text-align: center;
		padding: 30px 20px;
	}
	.hero6-text {
		text-align: center;
	}
	.hero6-text h1 {
		font-size: 2.2rem;
	}
	.hero6-subtitle {
		font-size: 1.3rem;
	}
	.hero6-text p {
		font-size: 1.1rem;
	}
	.hero6-whatsapp-button {
		padding: 12px 28px;
		font-size: 1rem;
		margin: 20px auto 0 auto;
	}
	.hero6-image {
		max-width: 300px;
	}
}

@media ( max-width : 480px) {
	.hero6-text h1 {
		font-size: 1.8rem;
	}
	.hero6-subtitle {
		font-size: 1.1rem;
	}
	.hero6-text p {
		font-size: 1rem;
	}
	.hero6-text .telugu-desc {
		font-size: 1rem;
	}
	.hero6-whatsapp-button {
		width: 90%;
		padding: 12px;
		font-size: 1rem;
	}
}