.dr1048map {
	padding: 60px 20px;
	background: linear-gradient(to bottom, #F0F4F4, #DDE3E1);
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
	box-sizing: border-box;
}

.map-section {
	max-width: 1100px;
	margin: auto;
	text-align: center;
}

.map-label {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 16px;
	background: linear-gradient(to right, #154C79, #21A179);
	/* Deep blue to teal */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

.map-label::after {
	content: "";
	display: block;
	width: 90px;
	height: 4px;
	background-color: #21A179;
	margin: 14px auto 0;
	border-radius: 10px;
	box-shadow: 0 0 12px rgba(33, 161, 121, 0.4);
}

.telugu-sub {
	display: block;
	font-size: 1.15rem;
	color: #3A5A40;
	margin-top: 8px;
	font-family: 'Noto Sans Telugu', sans-serif;
}

.map-container {
	margin-top: 30px;
	border: 3px solid #B5C9C3; /* Light architectural border */
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 10px 32px rgba(33, 161, 121, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.map-container::before {
	content: "";
	position: absolute;
	top: -18px;
	right: -18px;
	width: 60px;
	height: 60px;
	background: url('https://cdn-icons-png.flaticon.com/512/684/684908.png')
		no-repeat center;
	background-size: contain;
	opacity: 0.04;
}

.map-container:hover {
	transform: scale(1.01);
	box-shadow: 0 16px 42px rgba(33, 161, 121, 0.2);
}

.map-frame {
	width: 100%;
	height: 450px;
	border: none;
	display: block;
}

.fade-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

@media ( max-width : 768px) {
	.map-label {
		font-size: 1.6rem;
	}
	.map-frame {
		height: 350px;
	}
}

@media ( max-width : 480px) {
	.dr1048map {
		padding: 40px 10px;
	}
	.map-frame {
		height: 250px;
	}
}