.dr1027hero7 {
	background: linear-gradient(135deg, #b71c1c, #f44336);
	/* Rich red gradient */
	padding: 90px 20px;
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
	color: #fff;
	border-radius: 15px;
	box-shadow: 0 12px 35px rgba(183, 28, 28, 0.4);
	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.05);
	padding: 40px;
	border-radius: 30px;
	backdrop-filter: blur(6px);
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.hero7-content.animate {
	opacity: 1;
	transform: translateY(0);
}

.hero7-text {
	flex: 1 1 48%;
	text-align: left;
	box-sizing: border-box;
}

.hero7-text h1 {
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 1.4;
	color: #ffebee;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

.hero7-subtitle {
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
	color: #ffcdd2;
	margin-top: 10px;
}

.hero7-text p {
	margin-top: 20px;
	font-size: 1.2rem;
	color: #ffebee;
	line-height: 1.6;
}

.hero7-whatsapp-button {
	display: inline-block;
	margin-top: 30px;
	padding: 14px 32px;
	background-color: #c62828;
	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(198, 40, 40, 0.3);
	font-family: 'Noto Serif Telugu', serif;
}

.hero7-whatsapp-button:hover {
	background-color: #b71c1c;
	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.4);
	object-fit: cover;
}

/* Medium Screens */
@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: 380px;
	}
}

/* Small Screens */
@media ( max-width : 480px) {
	.dr1027hero7 {
		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%;
	}
}