.dr1031hero6 {
	background: linear-gradient(to right, #fffaf0, #fbe8d3);
	/* elegant cream gradient */
	color: #4a1c1c; /* deep festive maroon */
	padding: 100px 20px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	background-image:
		url('https://www.transparenttextures.com/patterns/gold-scale.png');
}

.hero6-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.65);
	padding: 40px;
	border-radius: 24px;
	backdrop-filter: blur(6px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hero6-content.visible {
	opacity: 1;
	transform: translateY(0);
}

.hero6-text {
	flex: 1 1 50%;
	text-align: left;
}

.hero6-title {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: #8b0000; /* rich dark red */
	line-height: 1.3;
	text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.5);
}

.telugu-line {
	display: block;
	font-size: 1.5rem;
	color: #d68e00; /* warm gold */
	font-weight: 600;
	margin-top: 10px;
	font-family: 'Noto Serif Telugu', serif;
}

.hero6-subtitle {
	font-size: 1.2rem;
	margin-bottom: 25px;
	color: #5c2e2e; /* slightly lighter maroon */
}

.telugu-subtitle {
	display: block;
	font-size: 1.05rem;
	color: #805a36; /* muted saffron brown */
	font-family: 'Noto Serif Telugu', serif;
	margin-top: 8px;
	opacity: 0.95;
}

.hero6-button {
	display: inline-block;
	background: #b22222; /* firebrick red */
	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;
}

.hero6-button:hover {
	background: #8b1a1a;
	transform: translateY(-2px);
}

.hero6-image-wrapper {
	flex: 1 1 40%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero6-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;
	object-fit: contain;
}

/* Floating Animation */
@
keyframes float { 0%, 100% {
	transform: translateY(0);
}

50
%
{
transform
:
translateY(
-10px
);
}
}

/* Responsive */
@media ( max-width : 992px) {
	.hero6-content {
		flex-direction: column;
		text-align: center;
	}
	.hero6-text {
		text-align: center;
	}
	.hero6-title {
		font-size: 2.2rem;
	}
	.telugu-line {
		font-size: 1.3rem;
	}
	.hero6-subtitle, .telugu-subtitle {
		font-size: 1rem;
	}
	.hero6-button {
		padding: 12px 28px;
		font-size: 0.95rem;
	}
	.hero6-image {
		max-width: 380px;
	}
}