@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

 
    /* Scrollbar Styles */
    ::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
      background-color: #000;
      border-radius: 0px;
    }
    ::-webkit-scrollbar {
      width: 5px;
      background-color: #000;
    }
    ::-webkit-scrollbar-thumb {
      border-radius: 10px;
      background: linear-gradient(135deg, #04c874 0%, #044e97 100%);
    }

    /* Pricing Section Background */
    .pricing_bg {
      background-image: url('../images/pricing-bg.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      min-height: 100vh;
      padding: 2rem 0;
    }

    /* Container */
   .pricing_bg .container {
      width: 100%;
      max-width: 1400px;
      padding: 3rem 1.5rem;
      margin: 0 auto;
    }

    /* Row Layout */
    .pricing_bg .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin: 0 -0.5rem;
    }

    .pricing_bg .row > * {
      /* padding: 0 0.5rem; */
    }

    /* Price Content */
    .pricing_bg  .price-ctnt {
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .pricing_bg .price-ctnt h1 {
      font-size: clamp(2rem, 5vw, 2.8rem);
      color: #fff;
      margin: 2rem 0 1rem;
      font-weight: 800;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .pricing_bg .price-ctnt p {
      color: #fff;
      font-size: clamp(1rem, 3vw, 1.2rem);
      opacity: 0.9;
      max-width: 90%;
      margin: 0 auto;
    }

    .pricing_bg del {
      font-size: clamp(0.9rem, 2.5vw, 1rem);
      color: #ccc;
    }

    /* Tabs */
    .pricing_bg .tabs {
      margin-bottom: 2.5rem;
    }

    .pricing_bg .tabs .row {
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .pricing_bg .tab-button {
      padding: 0.75rem 1.5rem;
      cursor: pointer;
      background-color: #fff;
      border: none;
      border-radius: 30px;
      color: #2c3e50;
      font-weight: 700;
      font-family: 'Manrope', sans-serif;
      font-size: clamp(0.9rem, 2.5vw, 1rem);
      transition: all 0.3s ease;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      flex: 1 1 auto;
      min-width: 120px;
    }

    .pricing_bg .tab-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .pricing_bg .tab-button.active {
      background: linear-gradient(180.54deg, #78FFC5 0.46%, #4EA5FF 77.89%);
      color: #fff;
      box-shadow: 0 6px 12px rgba(4, 200, 116, 0.6);
    }

    /* Cards */
    .pricing_bg  .cards .row {
      gap: 1.5rem;
      justify-content: center;
    }

    .pricing_bg  .card {
      background: linear-gradient(269.5deg, rgba(120, 255, 197, 0.2) 0%, rgba(78, 165, 255, 0.2) 97.11%);
      border: 2px solid #25E4A1;
      border-radius: 20px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      width: 100%;
      max-width: 320px;
      padding: 1.5rem;
      text-align: left;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
      overflow: hidden;
      flex: 1 1 auto;
      min-width: 280px;
    }

    .pricing_bg  .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(270deg, #4fa8fe, #74f6cb);
    }

    .pricing_bg .card:hover {
      transform: scale(1.04);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
      border: 2px solid #25E4A1;
      background: linear-gradient(180.54deg, #78FFC5 0.46%, #4EA5FF 77.89%);
    }

    .pricing_bg .card h6 {
      color: #fff;
      font-size: 14px;
      text-align: center;
      margin: 0 0 0.75rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: capitalize;
    }
    .pricing_bg .card:hover h6{
        color: #000;
    }
    .pricing_bg .card h3 {
      color: #fff;
      text-align: center;
      margin: 0 0 0.75rem;
      font-weight: 700;
      text-transform: capitalize;
      font-size: 1.4rem;
    }
    .pricing_bg .card:hover h3{
      color: #000;
    }

    .pricing_bg  .card p.price-old{
      color:#ffffff;
      font-size: 1em;
      margin: 0;
      text-align: center;
      font-weight: 800;
      text-decoration-line: line-through;
    }

    .pricing_bg .card:hover p.price-old{
        color: #000;
    }
    .pricing_bg  .card p.price-new{
      color:#fff;
      font-size: 2em;
      margin: 0;
      text-align: center;
      font-weight: 800;
    }
    .pricing_bg .card:hover p.price-new{
        color: #000;
    }

    .pricing_bg  .card ul {
      list-style: none;
      padding: 0;
      color: #fff;
      max-height: 200px;
      overflow-y: auto;
      margin: 1rem 0;
    }

    .pricing_bg  .card ul li {
      color: #fff;
      font-family: 'Manrope', sans-serif;
      margin-bottom: 0.75rem;
      font-size: 16px;
    }
    .pricing_bg .card:hover ul li{
        color: #000;
    }

    .pricing_bg .card ul li::before {
      content: "✓";
      color: #fff;
      margin-right: 0.75rem;
      font-weight: 600;
    }
    .pricing_bg .card:hover ul li::before{
        color: #000;
    }
    .pricing_bg  .card ul .heading {
      font-size: 20px;
      color: #fff;
      text-transform: capitalize;
      margin-bottom: 0.5rem;
    }
     .pricing_bg  .card:hover ul .heading{
        color: #000;
     }
    .pricing_bg  .card button {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      border: none;
      text-align: center;
      font-size: clamp(0.9rem, 2.5vw, 1.1rem);
      color: #000;
      text-decoration: none;
      transition: all 0.35s;
      background: linear-gradient(180.54deg, #78FFC5 0.46%, #4EA5FF 77.89%);
      width: 100%;
      max-width: 200px;
      margin: 1rem auto;
    }
    .pricing_bg  .card button a{
      text-decoration: none;
      color: #000;
    }
    .pricing_bg .card:hover button {
    background: #fff;
    }


    .pricing_bg  .card p {
      text-align: center;
      margin: 0;
      padding: 0;
    }

    .pricing_bg .card p span {
      color: #fff;
      font-size: 14px;
      line-height: 16px;
    }
    .pricing_bg .card:hover p span{
        color: #000;
    }

    .pricing_bg  .price-contact {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .pricing_bg .price-contact a {
      font-size: 16px;
      color: #fff;
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    .pricing_bg  .card:hover .price-contact a{
        color: #000;
    }

    .pricing_bg .price-contact a i {
      font-size: 16px;
      margin-right: 0.3rem;
      color: #fff;
    }
    .pricing_bg  .card:hover .price-contact a i{
        color: #000;
    }

    .pricing_bg .hidden {
      display: none;
    }

    /* Media Queries */
    @media (max-width: 1200px) {
      .pricing_bg .container {
        padding: 2rem 1rem;
      }
      .pricing_bg .card {
        max-width: 310px;
        min-width: 250px;
      }
      v.tab-button {
        min-width: 100px;
        padding: 0.6rem 1.2rem;
      }
    }

    @media (max-width: 992px) {
      .pricing_bg .card {
        max-width: 310px;
        min-width: 240px;
      }
      .pricing_bg .tabs .row {
        gap: 0.5rem;
      }
      .pricing_bg .price-ctnt h1 {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
      }
     .pricing_bg .price-ctnt p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
      }
    }

    @media (max-width: 768px) {
      .pricing_bg .tabs .row {
        flex-direction: column;
        align-items: center;
      }
      .pricing_bg .tab-button {
        width: 100%;
        max-width: 300px;
        padding: 0.6rem 1rem;
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
      }
     .pricing_bg  .cards .row {
        flex-direction: column;
        align-items: center;
      }
      .pricing_bg .card {
        max-width: 90%;
        min-width: unset;
      }
      .pricing_bg .price-contact {
        flex-direction: column;
        gap: 0.75rem;
      }
    }

    @media (max-width: 576px) {
     .pricing_bg  .container {
        padding: 1.5rem 0.75rem;
      }
     .pricing_bg  .price-ctnt h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
      }
      .pricing_bg .price-ctnt p {
        font-size: clamp(0.85rem, 3vw, 1rem);
      }
      .pricing_bg .tab-button {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        padding: 0.5rem 0.75rem;
      }
      .pricing_bg .card {
        padding: 1rem;
      }
      .pricing_bg .card ul {
        max-height: 150px;
      }
      .pricing_bg .card button {
        padding: 0.6rem 1.5rem;
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        max-width: 180px;
      }
    }

    @media (max-width: 400px) {
      .card {
        padding: 0.75rem;
      }
      .card h3 {
        font-size: clamp(1rem, 3vw, 1.4rem);
      }
      .card p.price-old,
      .card p.price-new {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
      }
      .card ul li {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
      }
      .price-contact a {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
      }
    }