.package-card {
  background: #fff;
  border: 2px solid #a78bfa;
  border-radius: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  max-width: 320px;
  margin: 20px auto;
  padding: 24px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  transition: transform 0.3s ease;
}
body.dark-mode .package-card{
    background:#1e1e1e;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.package-header i {
  font-size: 2.5rem;
  color: #facc15; /* Gold-like color */
  margin-bottom: 10px;
}
body.dark-mode .package-header i{
    color:#facc15;
}

.package-header h3 {
  font-size: 1.6rem;
  color: #7f00ff;
  margin: 0;
}

.package-header .price {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 5px;
}

.package-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.package-body ul li {
  font-size: 0.95rem;
  padding: 8px 0;
}

.package-btn {
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.package-btn:hover {
  background: linear-gradient(to right, #7f00ff, #00c6ff);
  color:#fff;
}
