
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("image/music.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
}

    
.pricing-section {
  padding: 40px 20px;
  text-align: center;
}

.main-heading {
  background-color: #d946ef; /* pink banner */
  color: #111;
  display: inline-block;
  padding: 20px 40px;
  border-radius: 30px;
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 600;
  animation: main-heading 2s ease-in-out infinite;
}
.main-heading:hover {
      background-color: #c026d3; /* darker pink on hover */
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      transform: translateY(-5px);
    }
  @keyframes main-heading {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08); /* only a slight growth */
  }
}  
.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
 
}

.card {
  background-color: #111;
  color: white;
  padding: 30px 20px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.plan-name {
  font-size: 20px;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  background-color: #222;
  text-align: left;
}

.features i {
  margin-right: 8px;
  font-size: 15px;
  vertical-align: middle;
}

.enabled i {
  color: #d946ef; /* purple check icon */
}

.disabled i {
  color: #999; /* grey circle */
}
.enabled {
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border-radius: 8px;
  padding: 8px;
}

.enabled:hover {
  background-color: #333;
  transform: scale(1.05);
}
.disabled {
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border-radius: 8px;
  padding: 8px;
}

.disabled:hover {
  background-color: #333;
  transform: scale(1.05);
}



