@charset "utf-8";
/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

/* Popup Content */
.popup-content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: fadeSlideIn 0.8s ease forwards;
  transform: translateY(-60px);
  transition: all 0.6s ease;
}

/* Background Image Section */
.popup-bg {
  background-image: url( "../images/pop-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 30px;
  color: #fff;
  text-align: center;
  position: relative;
}

.popup-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(0px);
}

.popup-bg h1,
.popup-bg h2,
.popup-bg h3,
.popup-bg p,
.popup-bg button {
  position: relative;
  z-index: 2;
}

.popup-bg h1 {
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 700;
}
.popup-bg h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}
.popup-bg h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

.popup-bg p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Fade + Slide Animation */
@keyframes fadeSlideIn {
  0% { opacity: 0; transform: translateY(-80px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 26px;
  cursor: pointer;
  color: #000;
  z-index: 3;
}

/* Action Button */
.popup-action {
  background: linear-gradient(45deg, #ff6600, #ff9900);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.popup-action:hover {
  background: linear-gradient(45deg, #ff9900, #ff6600);
  transform: scale(1.05);
}

/* Active State */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 480px) {
  .popup-content {
    max-width: 90%;
  }
  .popup-bg {
    padding: 40px 20px;
  }
  .popup-bg h1 {
    font-size: 1.5rem;
  }
.popup-bg h2 {
    font-size: 1.3rem;
  }
.popup-bg h3 {
    font-size: 1.3rem;
  }
  .popup-bg p {
    font-size: 1rem;
  }
}


