/* Hero2 Section */
.dr1021hero2 {
	background: linear-gradient(to right, #0077b6, #00b4d8);
	color: #fff;
	padding: 100px 20px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dr1021hero2 .hero2-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 40px;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.dr1021hero2 .hero2-content.visible {
	opacity: 1;
	transform: translateY(0);
}

.dr1021hero2 .hero2-text {
	flex: 1 1 48%;
	text-align: left;
	margin: 0;
}

.dr1021hero2 .hero2-title {
	font-size: 2.8rem;
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 20px;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

.dr1021hero2 .telugu-line {
	display: block;
	font-family: 'Noto Serif Telugu', serif;
	font-size: 1.6rem;
	color: #ffd700;
	font-weight: 600;
	margin-top: 10px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.dr1021hero2 .hero2-subtitle {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 15px;
	max-width: 600px;
	color: #f0f0f0;
}

.dr1021hero2 .telugu-subtitle {
	display: block;
	font-family: 'Noto Serif Telugu', serif;
	font-size: 1.1rem;
	color: #ffe066;
	font-weight: 500;
	margin-top: 8px;
	opacity: 0.9;
}

/* Image styling */
.dr1021hero2 .hero2-image-wrapper {
	flex: 1 1 48%;
	display: flex;
	justify-content: center;
	margin: 0;
}

.dr1021hero2 .hero2-image {
	width: 100%;
	max-width: 480px;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media ( max-width : 992px) {
	.dr1021hero2 .hero2-content {
		flex-direction: column;
		text-align: center;
	}
	.dr1021hero2 .hero2-text {
		text-align: center;
	}
	.dr1021hero2 .hero2-title {
		font-size: 2.2rem;
	}
	.dr1021hero2 .telugu-line {
		font-size: 1.3rem;
	}
	.dr1021hero2 .hero2-subtitle, .dr1021hero2 .telugu-subtitle {
		font-size: 1rem;
	}
}