.pricing-section {
    background: linear-gradient(to bottom right, #f6f8fc, #ffffff);
    padding: 80px 20px;
  }
  
  .pricing-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--btncolor);
    margin-bottom: 10px;
  }
  
  .pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--txtcolor);
    margin-bottom: 40px;
  }
  
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .pricing-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    border-top: 5px solid var(--btncolor);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .highlighted {
    border-top-color: #0080ff;
    background: linear-gradient(to bottom right, #e6f2f7, #fafcfd);
  }
  
  .pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--btncolor);
  }
  
  .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
  }
  
  .tagline {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #555;
  }
  
  .pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
  }
  
  .pricing-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--txtcolor);
  }
  
  .btn-select {
    background-color: var(--btncolor);
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn-select:hover {
    background-color: #005bb5;
  }
  
  .btn-select.outline {
    background: transparent;
    border: 2px solid var(--btncolor);
    color: var(--btncolor);
  }
  
  .btn-select.outline:hover {
    background-color: var(--btncolor);
    color: white;
  }
  
 
  @media (max-width: 980px) {
    .pricing-title {
      font-size: 2rem;
    }
  
    .price {
      font-size: 1.6rem;
    }
  }
  