/* General Medicine Section - Vamsadhara Medical Center */
.dr1027hero9 {
	background: linear-gradient(135deg, #00695c, #80cbc4);
	/* Teal gradient */
	padding: 80px 20px;
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
	color: #fff;
	border-radius: 15px;
	box-shadow: 0 12px 35px rgba(0, 105, 92, 0.4);
	overflow: hidden;
}

.hero9-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;
}

.hero9-content.animate {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.hero9-text {
	flex: 1 1 48%;
	text-align: left;
}

.hero9-text h1 {
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 1.4;
	color: #e0f2f1;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.hero9-subtitle {
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
	color: #b2dfdb;
	margin-top: 10px;
}

.hero9-text p {
	margin-top: 20px;
	font-size: 1.15rem;
	color: #e0f2f1;
	line-height: 1.6;
}

.hero9-whatsapp-button {
	display: inline-block;
	margin-top: 30px;
	padding: 14px 32px;
	background-color: #00897b; /* Teal CTA */
	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(0, 137, 123, 0.4);
	white-space: nowrap;
}

.hero9-whatsapp-button:hover {
	background-color: #00695c;
}

.hero9-image-wrapper {
	flex: 1 1 48%;
	display: flex;
	justify-content: center;
}

.hero9-image {
	max-width: 100%;
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	object-fit: cover;
}

/* Responsive Fix */
@media ( max-width : 992px) {
	.hero9-content {
		flex-direction: column;
		text-align: center;
		padding: 0 10px;
		gap: 30px;
	}
	.hero9-text {
		text-align: center;
	}
	.hero9-text h1 {
		font-size: 2.2rem;
	}
	.hero9-subtitle {
		font-size: 1.2rem;
	}
	.hero9-text p {
		font-size: 1.05rem;
	}
	.hero9-whatsapp-button {
		padding: 12px 28px;
		font-size: 1rem;
		margin-top: 20px;
	}
	.hero9-image {
		max-width: 100%;
		width: 100%;
	}
}