body {
    background-image: url("../image/BG2.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    }

.navbar {
    background-image: url("../image/BG2.png");
    }
.brand-logo {
    height: auto;
    display: block;
    margin: 0 auto;
    }

.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    }


.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 16px;
    }
.tag {
    background: var(--pill-bg, #f3f3f3);
    color: var(--primary, #0b4b8a);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(11, 75, 138, 0.08);
    border: 1px solid var(--pill-border, #ccc);
    letter-spacing: 0.5px;
    cursor: default;
    }
.tag:hover {
    background: var(--primary, #0b4b8a);
    color: #fff;
    transform: scale(1.07);
    }

.feature-list {
    max-width: 720px;
    padding-left: 1.2rem;
    text-align: left;
    margin-bottom: 1rem;
    }
.feature-list li {
    margin-bottom: 0.5rem;
    list-style: disc;
  }


/* Overlay background */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Show state */
.overlay.show {
  display: flex;
}

/* Modal box */
.overlay-content {
  position: relative;
  width: min(95vw, 1100px);
  height: min(95vh, 800px);
  background: #eef6ff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* iframe fills modal */
.overlay-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Close button */
.overlay-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: #0b5ed7;
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
}



/*<!----- RESPONSIVE ----->*/
@media (max-width: 856px) {
  .brand-logo {
    display: none;
  }
  .map-thumbnails {
      display: grid;
  }
  .map-display {
    display: none;
  }
}

@media (max-width: 486px) {
  .map-thumb {
    min-width: 60px;
    border-radius: 10px;
    aspect-ratio: 5/3;
    width: 100%;
  }
}

@media (max-width: 324px) {
  .map-thumb {
    min-width: 40px;
    border-radius: 8px;
    aspect-ratio: 5/3;
    width: 100%;
  }
}