
body {
  background: linear-gradient(135deg, #f9fbff, #eef3ff);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,123,255,0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

body::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,123,0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.plan-icon {
  width: 34px;
  height: 34px;
  color: #007bff;  
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  padding: 16px;
  color: #fff;
}

.pricing-header i {
  font-size: 28px;
  display: block;
}

.pricing-header.free {
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.pricing-header.medium {
  background: linear-gradient(90deg, #36d1dc, #5b86e5);
}

.pricing-header.advance {
  background: linear-gradient(90deg, #ff758c, #ff7eb3);
}
.pricing-header h2 {
    font-size: 24px;
    font-weight: 600;
}
.pricing-body {
  padding: 25px;
  text-align: left;
}

.pricing-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  text-align: center;
}

.pricing-body h2 span {
  font-size: 18px;
  color: #555;
  font-weight: 400;
}

.capacity {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
.capacity-label {
  color: #424141;   
  font-weight: 600;
}

.capacity-value {
  color: #28a745; 
  font-weight: 600;
}
.pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-body ul li {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #333;
}

.pricing-body ul i {
  color: #2ecc71;
  margin-right: 8px;
}

.btn {
  display: block;
  text-align: center;
  background-image: linear-gradient(to right, #2563eb, #9333ea);
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background-image: linear-gradient(to right, #1d4ed8, #7e22ce);
}


@media (max-width: 992px) {
  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-body h2 {
    font-size: 24px;
  }
  .section-title {
    font-size: 28px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 20px 15px;
  }
  .pricing-body h2 {
    font-size: 22px;
  }
  .section-title {
    font-size: 22px;
    flex-direction: column;
    gap: 6px;
  }
}