/* Customize CSS  come into here */
/* Pricing Section */
.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
}

.pricing-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  border: 2px solid #0d6efd;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
  margin: 20px 0;
}

.price span {
  font-size: 0.9rem;
  color: #666;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  color: #444;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  margin-top: 15px;
  border-radius: 8px;
  padding: 10px 25px;
  font-weight: 500;
}

/* For scrollable side menu */
.scroll-container{
  height:100vh;
  overflow-y:auto;
}