.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;

  min-height: 500px;
  background: #080808;
  padding: 4rem;
  /* background: #0f0f0f; */
}

.pricing-card {
  background: rgba(48, 48, 48, 0.034); /* Transparent white */
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.103);
  padding: 30px;
  max-width: 300px;
  width: 100%;
  /* text-align: center; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border: 1px solid #4595eb;
}

.featured {
  border: 1px solid #3692f591;
}

.plan-title {
  font-size: 1.3rem;

  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #f3f3f3;
  text-align: center;
}
.line {
  width: 50%;
  margin: 0 auto 1.5rem;
  border-bottom: 1px solid #60adff80;
}
.sub-plan-title {
  font-size: 0.8rem;
  color: #69b2ff;
  font-weight: 300;
  margin-bottom: 0.8rem;
  text-align: center;
  font-style: italic;
}
.month-text {
  font-size: 1.2rem;
  color: #f3f3f3d0;
  font-weight: 300;
}

.price {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #5e9bdb;
  text-align: center;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
  color: #555;
}

.features li {
  margin: 10px 0;
  color: #f0f0f0;
  font-weight: 300;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 10px;
}
.features i {
  color: #3697ff; /* or any accent color you want */
  font-size: 1rem;
}
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  background: transparent;
  color: #f0f0f0;
  text-decoration: none;
  transition: background 0.3s ease;
  border: 1px solid #f0f0f0be;
}

.btn:hover {
  background: #0056b3;
  border-color: transparent;
}

.bottom-text {
    background-color: #080808;
    padding: 1rem 2rem 4rem;
}
.bottom-text p {
    color: #f0f0f0;
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
}
