.dr1007map {
	padding: 60px 20px;
	background: linear-gradient(to bottom, #e6f7ff, #f3fcff);
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
}

.map-section {
	max-width: 1100px;
	margin: auto;
	text-align: center;
}

.map-label {
	font-size: 2.2rem;
	font-weight: 700;
	color: #00695c;
	margin-bottom: 24px;
	letter-spacing: 0.5px;
	position: relative;
}

.map-label::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background-color: #80cbc4;
	margin: 12px auto 0;
	border-radius: 4px;
}

.map-container {
	border: 2px solid #b2dfdb;
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(0, 150, 136, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
	transform: scale(1.01);
	box-shadow: 0 16px 40px rgba(0, 150, 136, 0.2);
}

.map-frame {
	width: 100%;
	height: 450px;
	border: none;
	display: block;
}

/* Tablet */
@media ( max-width : 768px) {
	.map-frame {
		height: 350px;
	}
}

/* Mobile */
@media ( max-width : 480px) {
	.dr1007map {
		padding: 40px 10px;
	}
	.map-label {
		font-size: 1.6rem;
	}
	.map-frame {
		height: 250px;
	}
}