.dr1041map {
	padding: 70px 20px;
	background: linear-gradient(to bottom, #fffaf3, #eef7f5);
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	box-sizing: border-box;
}

.map-section {
	max-width: 1100px;
	margin: auto;
	text-align: center;
}

.map-label {
	font-size: 2.3rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 16px;
	background: linear-gradient(to right, #0d47a1, #00796b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

.map-label::after {
	content: "";
	display: block;
	width: 80px;
	height: 3.5px;
	background-color: #ff9800;
	margin: 14px auto 0;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
}

.tagline-sub {
	display: block;
	font-size: 1.1rem;
	color: #00796b;
	margin-top: 6px;
	font-style: italic;
}

.map-container {
	margin-top: 30px;
	border: 3px solid #b2dfdb;
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(0, 121, 107, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	padding-bottom: 50px;
}

.map-container:hover {
	transform: scale(1.01);
	box-shadow: 0 16px 40px rgba(13, 71, 161, 0.2);
}

.map-frame {
	width: 100%;
	height: 450px;
	border: none;
	display: block;
	border-radius: 12px 12px 0 0;
}

.map-button {
	display: inline-block;
	background: linear-gradient(to right, #00796b, #0d47a1);
	color: #fff;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 6px 16px rgba(0, 121, 107, 0.25);
	transition: all 0.3s ease;
}

.map-button:hover {
	background: linear-gradient(to right, #0d47a1, #00796b);
	transform: translateX(-50%) translateY(-2px);
}

/* Fade-in animation */
.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 */
@media ( max-width : 768px) {
	.map-label {
		font-size: 1.6rem;
	}
	.map-frame {
		height: 350px;
	}
}

@media ( max-width : 480px) {
	.dr1041map {
		padding: 40px 10px;
	}
	.map-frame {
		height: 250px;
	}
	.map-button {
		font-size: 0.85rem;
		padding: 10px 16px;
	}
}