.popup {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.6);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    .popup-content {
      background: #fff;
      padding: 60px 40px;
      border-radius: 10px;
      max-width: 600px;
      width: 90%;
      text-align: center;
      box-shadow: 0 15px 40px rgba(0,0,0,0.3);
      position: relative;
      animation: fadeIn 0.4s ease-in-out;
    }

    .close-btn {
      position: absolute;
      top: 10px; right: 15px;
      font-size: 24px;
      color: #e7b168;
      cursor: pointer;
    }

    .popup-button {
      background: #e7b168;
      color: #fff;
      border: none;
      padding: 10px 20px;
      margin-top: 15px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
    }

   
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    .popup-content h2 {
     color: #333;
    animation: slideInTop 1.5s ease-in-out;
  }

  .popup-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    animation: fadeIn 1.5s ease-in-out;
  }

  .popup-button {
    animation: fadeIn 1.5s ease-in-out;
  }

  @keyframes slideInTop {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @media (max-width: 768px) {
	.header_s .ownavigation {
    background-color: rgb(0 0 0);
}
@media (max-width: 480px) {
  .popup-content {
    padding: 30px 20px;
    width: 95%;
  }

  .popup-button {
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
  }

  .close-btn {
    font-size: 20px;
    top: 8px;
    right: 10px;
  }

  .popup-content h2 {
    font-size: 20px;
  }

  .popup-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}
}