   /* pricing section css  */
.pricingSectionOne {
    height: auto;
    width: 100%;
    padding: 50px 0;
    background-repeat: no-repeat;
    background-image: url("../../assets/img/pricing-section-bg.png");
    background-size: cover;
    background-position: bottom;
    background-position-x: right;
  }
  
  .pricingSectionOne h2 {
    text-align: center;
    color: #fff;
    /* font-size: 48px; */
    font-weight: 600;
    margin-bottom: 50px;
  }
  
  .priceTagNew {
    background-color: #fff;
    padding: 18px;
    border-radius: 16px;
    height: 630px;
    box-shadow: 0px 6px 7.6px 0px #0000000F;
  }
  
  p.microcopy {
    margin-bottom: 0px;
    padding-bottom: 0px !important;
  }
  
  
  .priceTopPart {
    text-align: center;
    padding-bottom: 10px;
    
  }
  
  .diamond {
    color: #DB631A;
  }
  
  .diamondPlus {
    color: #485EB0;
  }
  
  .platinum {
    color: #06B181;
  }
  
  .priceTagNew img {
    width: 132px;
  }
  
  .priceTopPart h3 {
    font-weight: 600;
    margin: 10px 0;
  }
  
  .priceTopPart p {
    color: #667085;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 0;
  }
  
  .priceNewBtn {
    height: auto;
    width: 100%;
    padding: 10px 0;
    margin: 15px 0;
    border-radius: 100px;
    text-align: center;
    background-color: #4C3CCE;
    color: #fff;
    font-weight: 600;
  }
  
  hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
  }
  
  .priceTagBottomPart h5 {
    font-weight: 600;
    font-size: 20px;
  }
  ul {
    padding-left: 0px;
  }
  
  .priceTagBottomPart ul li {
    padding: 10px 0;
    list-style: none;
  }
  
  .priceTagBottomPart ul li img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
  
  
  @media screen and (max-width: 767px) {
    .priceTagNew {
        margin-top: 20px;
    }
  }
    /* pricing section css  */



    /* new price section  */

    body {
        background-color: #f0f0f0;
        /* padding: 20px; */
    }
    
    .pricing-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 0px
    }
    
    .pricing-card {
        background-color: white;
        border-radius: 12px;
        padding: 20px;
        width: 100%;
        max-width: 350px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .plan-title {
        text-align: center;
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: bold;
    }
    
    .crown-icon {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .select-button {
        display: block;
        background-color: #5e43ec;
        color: white;
        text-align: center;
        padding: 15px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 300;
        margin: 20px 0;
    }

    .select-button:hover {
        display: block;
        background-color: #5e43ec;
        color: white;
        text-align: center;
        padding: 15px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 300;
        margin: 20px 0;
    }
    
    .divider {
        height: 1px;
        background-color: black;
        margin: 20px 0;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .feature-list {
        list-style: none;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .check-icon {
        color: #52b788;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .feature-text {
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        width: 100%;
       
    }
    
    /* Card background colors */
/* Basic Plan - Light mint */
.basic-plan {
    background: linear-gradient(to bottom right, #dfeee9, #c7ede8);
  }
  
  /* Basic Pro - Soft yellow */
  .basic-pro {
    background: linear-gradient(to bottom right, #fff6cf, #f8e59e);
  }
  
  /* Basic Master - Light blue */
  .basic-master {
    background: linear-gradient(to bottom right, #d6edf5, #b8e0f2);
  }
  
  /* Basic Prime - Light coral */
  .basic-prime {
    background: linear-gradient(to bottom right, #ffe0dd, #ffd0cc);
  }
  
  /* Silver Plan - Pale blue */
  .silver-plan {
    background: linear-gradient(to bottom right, #e3f2fd, #d0e8fa);
  }
  
  /* Silver Pro - Soft lavender */
  .silver-pro {
    background: linear-gradient(to bottom right, #ede7f6, #d6cfea);
  }
  
  /* Silver Master - Sage green */
  .silver-master {
    background: linear-gradient(to bottom right, #dbe9db, #c5d8c5);
  }
  
  /* Silver Prime - Light slate */
  .silver-prime {
    background: linear-gradient(to bottom right, #e0e6ed, #cfd8e3);
  }
  
  /* Gold Plan - Pale gold */
  .gold-plan {
    background: linear-gradient(to bottom right, #fef3d1, #feeab2);
  }
  
    
    /* For cards with dark backgrounds
    .basic-master .plan-title, .basic-master .feature-text,
    .basic-prime .plan-title, .basic-prime .feature-text,
    .silver-master .plan-title, .silver-master .feature-text,
    .silver-prime .plan-title, .silver-prime .feature-text {
        color: white;
    }
    
    .basic-master .check-icon, .basic-prime .check-icon,
    .silver-master .check-icon, .silver-prime .check-icon {
        color: #a3f7bf;
    }
    
    .basic-master .divider, .basic-prime .divider,
    .silver-master .divider, .silver-prime .divider {
        background-color: rgba(255, 255, 255, 0.2);
    } */
    
    @media (max-width: 768px) {
        .pricing-card {
            max-width: 100%;
            margin: 20px;
        }
    }
    /* new price section  */

  