
html {
    scroll-behavior: smooth;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 50;
}

.modal:target {
  display: flex;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  text-align: left;
}

.close {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.modal-content p {
  font-size: 0.9rem; 
  line-height: 1.6;   
}

.modal-content h2 {
  text-transform: none; 
}


.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

    .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: blur(4px);
      transform: scale(1.05); /* fix edge blur */
      z-index: 1;
    }

        .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 2;
    }