.dr1048hero9 {
	background: linear-gradient(to right, #fdfcfb, #e2d1c3);
	background-image: url('https://www.transparenttextures.com/patterns/purty-wood.png');
	background-size: auto;
	color: #3e2f2f;
	padding: 100px 20px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	border-radius: 24px;
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	position: relative;
}

.hero9-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(6px);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero9-text {
	flex: 1 1 50%;
	text-align: left;
}

.hero9-text h1 {
	font-size: 2.6rem;
	font-weight: 800;
	color: #5b3d29;
	text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
	line-height: 1.3;
	margin-bottom: 20px;
}

.telugu-subtitle {
	display: block;
	font-size: 1.3rem;
	color: #875e3b;
	font-family: 'Noto Serif Telugu', serif;
	margin-top: 8px;
	font-weight: 600;
}

.hero9-text p {
	font-size: 1.1rem;
	margin-bottom: 24px;
	color: #4a3c2c;
	line-height: 1.6;
}

.telugu-desc {
	display: block;
	font-size: 1rem;
	color: #5c4033;
	font-family: 'Noto Serif Telugu', serif;
	margin-top: 8px;
}

.hero9-whatsapp-button {
	background: linear-gradient(to right, #f7c58d, #e4a76c);
	color: #4a2f1b;
	font-weight: 700;
	padding: 14px 36px;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(205, 133, 63, 0.3);
	transition: background 0.3s ease, transform 0.2s ease;
	display: inline-block;
	font-size: 1.05rem;
}

.hero9-whatsapp-button:hover {
	background: linear-gradient(to right, #fff2d5, #f0c999);
	transform: translateY(-2px);
}

.hero9-image-wrapper {
	flex: 1 1 45%;
	text-align: center;
}

.hero9-image {
	max-width: 500px;
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
	object-fit: cover;
	animation: float 6s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Responsive */
@media (max-width: 992px) {
	.hero9-content {
		flex-direction: column;
		text-align: center;
	}

	.hero9-text {
		text-align: center;
	}

	.hero9-text h1 {
		font-size: 2.2rem;
	}

	.telugu-subtitle {
		font-size: 1.2rem;
	}

	.hero9-text p {
		font-size: 1rem;
	}

	.hero9-whatsapp-button {
		padding: 12px 28px;
		font-size: 0.95rem;
	}

	.hero9-image {
		max-width: 350px;
	}
}