.dr1027hero15 {
	background: linear-gradient(135deg, #0097a7, #80deea);
	/* Calm medical cyan tones */
	padding: 80px 20px;
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
	color: #fff;
	border-radius: 15px;
	box-shadow: 0 12px 35px rgba(0, 151, 167, 0.3);
}

.hero15-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;
}

.hero15-content.animate {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.hero15-text {
	flex: 1 1 48%;
	text-align: left;
}

.hero15-text h1 {
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 1.4;
	color: #e0f7fa;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.hero15-subtitle {
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
	color: #b2ebf2;
	margin-top: 10px;
}

.hero15-text p {
	margin-top: 20px;
	font-size: 1.15rem;
	color: #e0f2f1;
	line-height: 1.6;
}

.hero15-whatsapp-button {
	display: inline-block;
	margin-top: 30px;
	padding: 14px 32px;
	background-color: #006064;
	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, 96, 100, 0.4);
}

.hero15-whatsapp-button:hover {
	background-color: #004d40;
}

.hero15-image-wrapper {
	flex: 1 1 48%;
	display: flex;
	justify-content: center;
}

.hero15-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) {
	.hero15-content {
		flex-direction: column;
		text-align: center;
	}
	.hero15-text {
		text-align: center;
	}
	.hero15-text h1 {
		font-size: 2.2rem;
	}
	.hero15-subtitle {
		font-size: 1.3rem;
	}
	.hero15-text p {
		font-size: 1.05rem;
	}
	.hero15-whatsapp-button {
		padding: 12px 28px;
		font-size: 1rem;
	}
}