.dr1027hero12 {
	background: linear-gradient(135deg, #2e7d32, #a5d6a7);
	/* Fresh pharmacy green */
	padding: 80px 20px;
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
	color: #fff;
	border-radius: 15px;
	box-shadow: 0 12px 35px rgba(46, 125, 50, 0.3);
}

.hero12-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(30px);
	visibility: hidden;
	transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero12-content.animate {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.hero12-text {
	flex: 1 1 48%;
	text-align: left;
}

.hero12-text h1 {
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 1.4;
	color: #e8f5e9;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.hero12-subtitle {
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
	color: #c8e6c9;
	margin-top: 10px;
}

.hero12-text p {
	margin-top: 20px;
	font-size: 1.15rem;
	color: #f1f8e9;
	line-height: 1.6;
}

.hero12-whatsapp-button {
	display: inline-block;
	margin-top: 30px;
	padding: 14px 32px;
	background-color: #388e3c;
	color: #fff;
	font-weight: bold;
	font-size: 1.1rem;
	border-radius: 40px;
	text-decoration: none;
	transition: background 0.3s ease;
	box-shadow: 0 8px 25px rgba(56, 142, 60, 0.4);
}

.hero12-whatsapp-button:hover {
	background-color: #1b5e20;
}

.hero12-image-wrapper {
	flex: 1 1 48%;
	display: flex;
	justify-content: center;
}

.hero12-image {
	max-width: 100%;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	object-fit: cover;
}

/* Responsive */
@media ( max-width : 992px) {
	.hero12-content {
		flex-direction: column;
		text-align: center;
	}
	.hero12-text {
		text-align: center;
	}
	.hero12-text h1 {
		font-size: 2.2rem;
	}
	.hero12-subtitle {
		font-size: 1.3rem;
	}
	.hero12-text p {
		font-size: 1.05rem;
	}
	.hero12-whatsapp-button {
		padding: 12px 28px;
		font-size: 1rem;
	}
}