.dr1028map {
	padding: 60px 20px;
	background: linear-gradient(to bottom, #eafaf1, #ffffff);
	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;
	color: #2E3A59; /* Indigo Slate */
	margin-bottom: 16px;
	line-height: 1.4;
	position: relative;
	background: linear-gradient(to right, #6FCF97, #2E3A59);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.map-label::after {
	content: "";
	display: block;
	width: 100px;
	height: 5px;
	background-color: #6FCF97;
	margin: 14px auto 0;
	border-radius: 10px;
	box-shadow: 0 0 12px rgba(111, 207, 151, 0.6);
}

.telugu-sub {
	display: block;
	font-size: 1.15rem;
	color: #43a047;
	margin-top: 8px;
	font-family: 'Noto Sans Telugu', sans-serif;
}

.map-container {
	margin-top: 30px;
	border: 3px solid #c8e6c9;
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(67, 160, 71, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.map-container::before {
	content: "";
	position: absolute;
	top: -20px;
	right: -20px;
	width: 60px;
	height: 60px;
	background:
		url('https://cdn-icons-png.flaticon.com/512/2909/2909762.png')
		no-repeat center;
	background-size: contain;
	opacity: 0.1;
}

.map-container:hover {
	transform: scale(1.01);
	box-shadow: 0 16px 40px rgba(111, 207, 151, 0.3);
}

.map-frame {
	width: 100%;
	height: 450px;
	border: none;
	display: block;
}

/* Fade-in scroll animation (assumes .visible class added by JS) */
.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);
}

/* Responsive Design */
@media ( max-width : 768px) {
	.map-label {
		font-size: 1.6rem;
	}
	.map-frame {
		height: 350px;
	}
}

@media ( max-width : 480px) {
	.dr1028map {
		padding: 40px 10px;
	}
	.map-frame {
		height: 250px;
	}
}