.dr1048hero2 {
	background: linear-gradient(to right, #f7f0e8, #fffaf3);
	color: #2c1b0f;
	padding: 100px 20px;
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	border-radius: 24px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
	background-image: linear-gradient(rgba(255, 255, 255, 0.9),
		rgba(255, 255, 255, 0.9)),
		url('https://www.transparenttextures.com/patterns/gold-scale.png');
	background-size: cover;
}

.hero2-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
	gap: 40px;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
	background: rgba(255, 255, 255, 0.85);
	padding: 50px;
	border-radius: 24px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(4px);
}

.hero2-content.visible {
	opacity: 1;
	transform: translateY(0);
}

.hero2-text {
	flex: 1 1 48%;
	text-align: left;
}

.hero2-title {
	font-size: 2.8rem;
	font-weight: 800;
	color: #4e342e;
	text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.telugu-line {
	display: block;
	font-size: 1.5rem;
	color: #795548;
	font-weight: 700;
	margin-top: 10px;
	font-family: 'Noto Serif Telugu', serif;
}

.hero2-subtitle {
	font-size: 1.2rem;
	margin: 24px 0 16px;
	color: #5d4037;
}

.telugu-subtitle {
	display: block;
	font-size: 1.05rem;
	color: #6d4c41;
	font-weight: 500;
	font-family: 'Noto Serif Telugu', serif;
}

.jewellery-whatsapp-button {
	display: inline-block;
	padding: 14px 36px;
	background: linear-gradient(to right, #ffd700, #fbc02d);
	color: #4e342e;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(255, 213, 79, 0.4);
	transition: background 0.3s ease, transform 0.2s ease;
}

.jewellery-whatsapp-button:hover {
	background: linear-gradient(to right, #fff176, #fdd835);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(255, 213, 79, 0.5);
}

.hero2-image-wrapper {
	flex: 1 1 48%;
	display: flex;
	justify-content: center;
}

.hero2-image {
	width: 100%;
	max-width: 460px;
	border-radius: 20px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

@media ( max-width : 992px) {
	.hero2-content {
		flex-direction: column;
		text-align: center;
		padding: 30px;
	}
	.hero2-text {
		text-align: center;
	}
	.hero2-title {
		font-size: 2.3rem;
	}
	.telugu-line {
		font-size: 1.4rem;
	}
	.hero2-subtitle, .telugu-subtitle {
		font-size: 1rem;
	}
	.jewellery-whatsapp-button {
		padding: 12px 26px;
		font-size: 1rem;
	}
}