.dr1027hero3 {
	background: linear-gradient(to right, #e0f7fa, #b2ebf2); /* soft baby-friendly teal */
	color: #004d40;
	padding: 100px 20px;
	font-family: 'Noto Sans Telugu', 'Segoe UI', sans-serif;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hero3-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
	background: rgba(255, 255, 255, 0.4);
	padding: 40px;
	border-radius: 24px;
	backdrop-filter: blur(6px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero3-content.visible {
	opacity: 1;
	transform: translateY(0);
}

.hero3-text {
	flex: 1 1 50%;
	text-align: left;
}

.hero3-title {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: #00695c;
	line-height: 1.3;
	text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.3);
}

.telugu-line {
	display: block;
	font-size: 1.6rem;
	color: #00796b;
	font-weight: 600;
	margin-top: 10px;
	font-family: 'Noto Serif Telugu', serif;
	text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
}

.hero3-subtitle {
	font-size: 1.2rem;
	margin-bottom: 25px;
	color: #004d40;
}

.telugu-subtitle {
	display: block;
	font-size: 1.1rem;
	color: #00695c;
	font-family: 'Noto Serif Telugu', serif;
	margin-top: 10px;
	opacity: 0.9;
}

/* Button Styling */
.hero3-button {
	display: inline-block;
	background: #4db6ac;
	color: white;
	padding: 14px 36px;
	border-radius: 50px;
	font-size: 1.05rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
	transition: background 0.3s ease, transform 0.2s ease;
}

.hero3-button:hover {
	background: #00897b;
	color: #e0f2f1;
	transform: translateY(-2px);
}

/* Image Styling */
.hero3-image-wrapper {
	flex: 1 1 40%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero3-image {
	width: 100%;
	max-width: 520px;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
	.hero3-content {
		flex-direction: column;
		text-align: center;
	}
	.hero3-text {
		text-align: center;
	}
	.hero3-title {
		font-size: 2.2rem;
	}
	.telugu-line {
		font-size: 1.3rem;
	}
	.hero3-subtitle,
	.telugu-subtitle {
		font-size: 1rem;
	}
	.hero3-button {
		padding: 12px 28px;
		font-size: 0.95rem;
	}
	.hero3-image {
		max-width: 380px;
	}
}