/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1000;
}

/* Popup Box */
.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 1001;
  display: none;
  transition: all 0.3s ease-in-out;
}

/* Dark Card Style */
.popup-card {
  background-color: #12143a; /* Dark blue background */
  color: white;
  width: 90%;
  max-width: 600px;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
  text-align: center;
}
.popup-body, .popup-header{
  text-align: left;
}
.popup-button{
  text-align: center;
}
.popup-card h2 {
  font-size: 24px;
  margin-bottom: 1.5rem;
  font-family:sans-serif;
  font-weight: lighter;
}
.popup-card h3 {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 18px;
  margin-bottom: 1rem;
  font-family:sans-serif;
  font-weight: 100;
  color: #ffffffcc;
  >img{
    transform: rotate(-10deg);
  }
}
.popup-card p {
  font-size: 18px;
  font-family: sans-serif;
  font-weight: 200;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: #ffffffcc;
}

.popup-card .popup-button {
  display: inline-block;
  padding: 20px 30px;
  background-color: white; /* White background for the button */
  color: #12143a; /* Dark blue color for text */
  text-decoration: none;
  font-weight: bolder;
  border-radius: 8px;
  transition: 0.3s;
  margin-top: 1rem;
}
.popup-button {
  width: 100%;
  box-sizing: border-box;
}


.popup-card .popup-button:hover {
  background-color: #ffffffe9; /* Dark blue background on hover */
  color: rgb(0, 0, 0); /* White text on hover */
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}
/* Responsive Design */
@media (max-width: 768px) {
  .popup-card {
    padding: 1.5rem;
    width: 100%;
  }

  .popup-card h2 {
    font-size: 20px;
  }
  
  .popup-card p {
    font-size: 16px;
  }

  .popup-card .popup-button {
    font-size: 14px;
    /* padding: 10px 18px; */
  }
  .popup-box {
    position: fixed;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 1001;
    width: 70%;
    display: none;
    transition: all 0.3s ease-in-out;
  }
}
