.dr1027map {
	padding: 60px 20px;
	background: linear-gradient(to bottom, #F4F7FA, #ffffff);
	/* Soft Blue-Gray to White */
	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;
	letter-spacing: 0.5px;
	position: relative;
	line-height: 1.4;
}

.map-label::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background-color: #FF7043; /* Soft Coral */
	margin: 12px auto 0;
	border-radius: 4px;
}

.telugu-sub {
	display: block;
	font-size: 1.1rem;
	color: #6FCF97; /* Fresh Green */
	margin-top: 6px;
	font-family: 'Noto Sans Telugu', sans-serif;
}

.map-container {
	border: 2px solid #e0f2f1;
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(46, 58, 89, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
	transform: scale(1.01);
	box-shadow: 0 16px 40px rgba(255, 112, 67, 0.2);
}

.map-frame {
	width: 100%;
	height: 450px;
	border: none;
	display: block;
}

/* Fade-in on scroll (global support assumed) */
.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);
}

/* Tablet */
@media ( max-width : 768px) {
	.map-frame {
		height: 350px;
	}
}

/* Mobile */
@media ( max-width : 480px) {
	.dr1027map {
		padding: 40px 10px;
	}
	.map-label {
		font-size: 1.6rem;
	}
	.map-frame {
		height: 250px;
	}
}