.dr1028hero7 {
	background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
	padding: 90px 20px;
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
	color: #1b5e20;
	border-radius: 16px;
	box-shadow: 0 12px 35px rgba(56, 142, 60, 0.3);
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.hero7-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
	background: rgba(255, 255, 255, 0.4);
	padding: 40px;
	border-radius: 30px;
	backdrop-filter: blur(5px);
	box-sizing: border-box;
}

.hero7-content.animate {
	opacity: 1;
	transform: translateY(0);
}

.hero7-text {
	flex: 1 1 48%;
	text-align: left;
}

.hero7-text h1 {
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1.4;
	color: #2e7d32;
	text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4);
}

.hero7-subtitle {
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
	color: #388e3c;
	margin-top: 10px;
}

.hero7-text p {
	margin-top: 20px;
	font-size: 1.2rem;
	color: #33691e;
	line-height: 1.6;
}

.hero7-text .telugu-desc {
	display: block;
	font-size: 1.1rem;
	margin-top: 8px;
	color: #558b2f;
	font-weight: 500;
}

.hero7-whatsapp-button {
	display: inline-block;
	margin-top: 30px;
	padding: 14px 32px;
	background-color: #66bb6a;
	color: #fff;
	font-weight: bold;
	font-size: 1.1rem;
	border-radius: 40px;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease;
	box-shadow: 0 8px 25px rgba(102, 187, 106, 0.3);
	font-family: 'Noto Serif Telugu', serif;
}

.hero7-whatsapp-button:hover {
	background-color: #43a047;
	transform: translateY(-2px);
}

.hero7-image-wrapper {
	flex: 1 1 48%;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}

.hero7-image {
	max-width: 100%;
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
	object-fit: cover;
}

/* Responsive Styles */
@media ( max-width : 992px) {
	.hero7-content {
		flex-direction: column;
		text-align: center;
		padding: 30px 20px;
		gap: 20px;
	}
	.hero7-text {
		text-align: center;
	}
	.hero7-text h1 {
		font-size: 2.3rem;
	}
	.hero7-subtitle {
		font-size: 1.3rem;
	}
	.hero7-text p {
		font-size: 1.1rem;
	}
	.hero7-whatsapp-button {
		padding: 12px 28px;
		font-size: 1rem;
		margin: 20px auto 0 auto;
	}
	.hero7-image {
		max-width: 350px;
	}
}

@media ( max-width : 480px) {
	.dr1028hero7 {
		padding: 60px 15px;
	}
	.hero7-content {
		padding: 25px 15px;
	}
	.hero7-text h1 {
		font-size: 2rem;
	}
	.hero7-subtitle {
		font-size: 1.2rem;
	}
	.hero7-text p {
		font-size: 1rem;
	}
	.hero7-image {
		width: 100%;
		max-width: 100%;
	}
}