/* ================= MAP SECTION ================= */
.dr1050map {
	padding: 90px 20px;
	background: linear-gradient(135deg, #f5f8ff, #e8efff);
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	color: #1a1a1a;
}

/* Wrapper */
.dr1050map .map-section {
	max-width: 1100px;
	margin: auto;
	text-align: center;
}

/* Heading */
.dr1050map .map-title {
	font-size: 2.6rem;
	font-weight: 800;
	color: #0a3cff;
	line-height: 1.3;
	margin-bottom: 12px;
}

.dr1050map .english-heading {
	display: block;
	font-size: 1.05rem;
	font-weight: 600;
	color: #355cff;
	margin-top: 6px;
}

.dr1050map .telugu-sub {
	display: block;
	font-size: 1.15rem;
	color: #444;
	margin-top: 6px;
}

/* Intro */
.dr1050map .map-intro {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #333;
	margin: 24px auto 50px;
	max-width: 800px;
}

.dr1050map .english-desc {
	display: block;
	font-size: 0.95rem;
	color: #555;
	margin-top: 6px;
}

/* Map Card */
.dr1050map .map-card {
	background: #ffffff;
	border-radius: 22px;
	padding: 10px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	position: relative;
	overflow: hidden;
}

.dr1050map .map-card::after {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(10, 60, 255, 0.15), transparent);
	border-radius: 50%;
}

.dr1050map .map-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 55px rgba(0, 0, 0, 0.18);
}

.dr1050map .map-card iframe {
	width: 100%;
	height: 450px;
	border: none;
	border-radius: 18px;
	display: block;
}

/* Buttons */
.dr1050map .map-actions {
	margin-top: 36px;
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.dr1050map .btn {
	padding: 14px 32px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	color: #ffffff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.dr1050map .map-btn {
	background: linear-gradient(135deg, #0a3cff, #0032a8);
}

.dr1050map .call-btn {
	background: #ff9800;
}

.dr1050map .btn:hover {
	transform: scale(1.07);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 768px) {
	.dr1050map .map-title {
		font-size: 2rem;
	}
	.dr1050map .map-intro {
		font-size: 1.05rem;
	}
	.dr1050map .map-card iframe {
		height: 350px;
	}
}

@media ( max-width : 480px) {
	.dr1050map {
		padding: 70px 14px;
	}
	.dr1050map .map-title {
		font-size: 1.7rem;
	}
	.dr1050map .map-card iframe {
		height: 260px;
	}
}