.card.pricing-card {
  transition: all 0.3s ease;
  border-radius: 17px;
  box-shadow: 0px 8px 11px lightblue !important;
}

.card-header{
    border-radius: inherit !important;
    padding: 1em;
}

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

.list-unstyled li{
    padding: 0.8em;
}

.card .card-body a{
    border-radius: 0.7em;
}


  /* Custom styles to ensure consistency and enhance hover effects */
  body {
      font-family: 'Inter', sans-serif;
      background-color: #f8f9fa; /* light background */
  }
  .ftco-section {
      padding: 5rem 0;
  }
  .heading-section .subheading {
      color: #ab7442; /* Adjust color as per design */
      font-size: 1.1rem;
      font-weight: 600;
  }
  .heading-section h2 {
      color: #333; /* Darker heading color */
      font-size: 2.5rem;
      font-weight: 700;
  }
  .pricing-card {
      border-radius: 0.75rem; /* Rounded corners */
      overflow: hidden;
      transition: all 0.3s ease-in-out;
      display: flex;
      flex-direction: column;
      height: 100%; /* Ensure cards stretch to fill height */
  }
  .pricing-card:hover {
      transform: translateY(-5px); /* Slight lift on hover */
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
  }
  .pricing-card .card-header {
      padding: 1.5rem;
      border-bottom: 1px solid #eee;
  }
  .pricing-card .card-body {
      padding: 1.5rem;
      flex-grow: 1; /* Allow body to grow and push button to bottom */
      display: flex;
      flex-direction: column;
  }
  .pricing-card ul li {
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
  }
  .pricing-card ul li i {
      margin-right: 0.5rem;
      font-size: 1rem;
  }
  .pricing-card .btn {
      border-radius: 0.5rem; /* Rounded button corners */
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      transition: background-color 0.3s ease;
  }
  .pricing-card .btn:hover {
      opacity: 0.9;
  }
  .hidden-features {
      transition: max-height 0.5s ease-out, opacity 0.5s ease-out; /* Smooth transition for height and opacity */
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      will-change: max-height, opacity; /* Optimize for animation */
  }
  .hidden-features.show {
      max-height: 2000px; /* A large enough value to accommodate all content */
      opacity: 1;
  }
  .see-more-toggle {
      cursor: pointer;
      text-align: center;
      font-weight: 600;
      margin-top: 0.5rem;
      margin-bottom: 1rem;
  }