.india-explorer-card {
  width: min(100%, 540px);
  margin-left: auto;
  padding: 24px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(11, 110, 142, 0.14);
  box-shadow: var(--shadow-lg);
}

.india-explorer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.india-explorer-header span {
  color: var(--rivtara-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.india-explorer-header strong {
  color: var(--rivtara-mountain);
  font-size: 1.05rem;
}

.india-map-wrap {
  min-height: clamp(275px, 30vw, 360px);
  display: grid;
  place-items: center;
}

.map-helper {
  margin: -8px 0 0;
  color: rgba(15, 23, 42, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.india-map-wrap svg {
  width: 100%;
  max-width: min(300px, 100%);
  height: auto;
}

.map-state {
  fill: #e5f4f1;
  stroke: rgba(11, 110, 142, 0.34);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  transition: fill 0.25s ease, stroke 0.25s ease, filter 0.25s ease;
}

.state-shape {
  cursor: pointer;
  fill: rgba(11, 110, 142, 0.28);
  stroke: rgba(6, 73, 95, 0.66);
  stroke-width: 1.5;
  outline: none;
}

.state-shape:hover {
  fill: rgba(242, 123, 92, 0.82);
  filter: drop-shadow(0 10px 18px rgba(242, 123, 92, 0.32));
}

.state-shape:focus,
.state-shape:focus-visible {
  outline: none;
  stroke: rgba(242, 123, 92, 0.95);
  filter: drop-shadow(0 10px 20px rgba(242, 123, 92, 0.34));
}

.state-shape.active {
  fill: url("#activeRegion");
  stroke: rgba(126, 54, 35, 0.55);
  filter: drop-shadow(0 12px 22px rgba(242, 123, 92, 0.38));
}

.state-info-card {
  margin-top: 14px;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--rivtara-mountain), var(--rivtara-blue-dark));
  color: white;
}

.map-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.state-info-card h3 {
  color: white;
  margin: 0 0 8px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.state-info-card p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.55;
}

.state-info-card a {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 15px;
  border-radius: 999px;
  background: white;
  color: var(--rivtara-blue-dark);
  font-weight: 900;
}

@media (max-width: 760px) {
  .india-explorer-card {
    padding: 18px;
    border-radius: 26px;
  }

  .india-map-wrap {
    min-height: 245px;
  }

  .india-map-wrap svg {
    max-width: min(245px, 100%);
  }

  .map-helper {
    margin-top: 0;
  }

  .state-info-card {
    border-radius: 20px;
    padding: 18px;
  }
}
