.dr1043map {
  padding: 70px 20px;
  background: linear-gradient(to bottom, #fffaf0, #f0fdfa);
  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: 800;
  line-height: 1.4;
  margin-bottom: 16px;
  background: linear-gradient(to right, #0d9488, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-shadow: 0 2px 6px rgba(13, 148, 136, 0.1);
}

.map-label::after {
  content: "";
  display: block;
  width: 90px;
  height: 3.5px;
  background-color: #f97316;
  margin: 14px auto 0;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.tagline-sub {
  display: block;
  font-size: 1.1rem;
  color: #0f766e;
  margin-top: 6px;
  font-style: italic;
  font-weight: 500;
}

.map-container {
  margin-top: 35px;
  border: 3px solid #99f6e4;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(13, 148, 136, 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, 148, 136, 0.25);
}

.map-frame {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  border-radius: 16px 16px 0 0;
}

.map-button {
  display: inline-block;
  background: linear-gradient(to right, #0d9488, #14b8a6);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.25);
  transition: all 0.3s ease;
}

.map-button:hover {
  background: linear-gradient(to right, #14b8a6, #0d9488);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

/* 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.7rem;
  }
  .map-frame {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .dr1043map {
    padding: 40px 10px;
  }
  .map-frame {
    height: 250px;
  }
  .map-button {
    font-size: 0.85rem;
    padding: 10px 18px;
  }
}