@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,500,500i,600,600i,700,700i,800|Open+Sans:400,400i,600,600i,700,700i,800&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');
/* Popup Styles */
.popup-container {
    font-family: 'Montserrat', sans-serif;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensure popup is on top of other content */
  }
  
  .popup-content {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    position: relative;
    max-width: 550px;
    width: 100%;
  }
  
  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    text-decoration: none;
    color: #333;
    background-color: #ffb600; /* Add background color */
    border-radius: 50%; /* Make it circular */
    padding: 5px 10px; /* Adjust padding for spacing */
  }
  .popup-close:hover {
    background-color: rgb(246, 64, 64); /* Change background color on hover */
    color: white; /* Change text color on hover */
  }

  .popup-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .popup-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .popup-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .popup-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffb600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .popup-btn:hover {
    background-color: #111;
  }
  