/*
Theme Name: AKB
Theme URI: https://yourdomain.com/
Author: Abdul Khalek Bhuiy
Author URI: https://yourdomain.com/
Description: A WordPress theme inspired by torongodigital.com with animated sections and Elementor support.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: torongo-inspired
Tags: custom-background, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/.pricing-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
}

.pricing-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.pricing-card {
  background: #f9f9f9;
  padding: 30px 25px;
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.pricing-card.featured {
  background: #ff004c;
  color: white;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

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

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.pricing-card ul li {
  margin: 10px 0;
  font-size: 16px;
}

.pricing-card ul li .fa-check-circle {
  color: green;
  margin-right: 8px;
}

.pricing-card ul li .fa-times-circle {
  color: red;
  margin-right: 8px;
}

.unavailable {
  color: #aaa;
  text-decoration: line-through;
}

.pricing-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
}

.pricing-btn:hover {
  background: #ff004c;
}

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

