/* ===== Hero Section - Bilingual (Telugu + English) ===== */
.dr1019hero2 {
	position: relative;
	background: linear-gradient(135deg, #00bcd4, #00796b);
	color: white;
	padding: 100px 20px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	overflow: hidden;
}

.dr1019hero2 .hero2-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.dr1019hero2 .hero2-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
}

.dr1019hero2 .hero2-image img {
	width: 520px;
	max-width: 100%;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transform: translateY(40px);
	opacity: 0;
	transition: transform 1s ease, opacity 1s ease;
}

.dr1019hero2 .hero2-image.fade-in-up.animate img {
	transform: translateY(0);
	opacity: 1;
}

.dr1019hero2 .hero2-text {
	max-width: 600px;
	text-align: left;
}

.dr1019hero2 .hero2-title h2 {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.dr1019hero2 .hero2-title p {
	font-size: 1.3rem;
	color: #d0fefe;
	margin-bottom: 10px;
}

/* ===== Telugu Styling ===== */
.dr1019hero2 .telugu-title {
	font-size: 1.6rem;
	font-weight: 500;
	color: #fff9c4;
	margin-top: 5px;
	font-family: 'Noto Sans Telugu', sans-serif;
	display: block;
}

.dr1019hero2 .telugu-sub {
	font-size: 1rem;
	color: #ffe082;
	font-family: 'Noto Sans Telugu', sans-serif;
	margin-top: -8px;
	margin-bottom: 30px;
}

.dr1019hero2 .hero2-description p {
	font-size: 1.2rem;
	line-height: 1.7;
	margin-bottom: 20px;
	color: #e0f7fa;
}

.dr1019hero2 .telugu-desc {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 30px;
	color: #fce4ec;
	font-family: 'Noto Sans Telugu', sans-serif;
}

/* ===== Button ===== */
.dr1019hero2 .hero2-btn {
	background: #ffffff;
	color: #00796b;
	padding: 14px 28px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	display: inline-block;
	opacity: 0;
	transform: translateY(40px);
	transition: transform 1s ease, opacity 1s ease;
}

.dr1019hero2 .hero2-btn.animate {
	opacity: 1;
	transform: translateY(0);
}

.dr1019hero2 .hero2-btn:hover {
	background: #00acc1;
	color: white;
	transform: scale(1.05);
}

/* ===== Animations ===== */
.dr1019hero2 .fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.dr1019hero2 .fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

/* ===== Responsive Styling ===== */
@media ( max-width : 768px) {
	.dr1019hero2 .hero2-content {
		flex-direction: column;
		text-align: center;
	}
	.dr1019hero2 .hero2-text {
		text-align: center;
	}
	.dr1019hero2 .hero2-title h2 {
		font-size: 2rem;
	}
	.dr1019hero2 .hero2-title p, .hero2-description p {
		font-size: 1rem;
	}
	.dr1019hero2 .telugu-title {
		font-size: 1.3rem;
	}
	.dr1019hero2 .telugu-sub {
		font-size: 0.95rem;
	}
	.dr1019hero2 .telugu-desc {
		font-size: 0.95rem;
	}
	.dr1019hero2 .hero2-image img {
		width: 360px;
	}
	.dr1019hero2 .hero2-btn {
		font-size: 0.95rem;
		padding: 12px 24px;
	}
}