
/* Pricing Section */
.pricing-heading{
    margin-top: 100px;
}
.pricing-toggle{
    position: relative;
}
.pricing-toggle::after{
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 40px;
    background-image: url("../images/pricing-arrow.svg");
    z-index: 99;
    background-repeat: no-repeat;
    background-position: center;
    width: 200px;
    height: 100px;
}
.custom-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
    font-weight: bold;
}
.custom-toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
}
.custom-toggle-switch input {
    display: none;
}
.custom-slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    width: 50px;
    height: 100%;
    border-radius: 20px;
    transition: 0.4s;
}
.custom-slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007c65;
    top: 2.5px;
    left: 3px;
    transition: 0.4s;
}
input:checked + .custom-slider {
    background-color: var(--primary);
}
input:checked + .custom-slider::before {
    transform: translateX(25px);
    background-color: white;
}
.custom-highlight {
    color: var(--primary);
}


/* section  */
.pricing-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 0;
  }
  
  /* Pricing Container */
  .pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  
  /* Pricing Card */
  .pricing-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  /* Half Bubble Animations */
  .pricing-card-bubble {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(61, 220, 151, 0.3);
    border-radius: 100px 100px 0 0; /* Half-circle effect */
    animation: pricing-bubble-move 6s infinite alternate ease-in-out;
    /* z-index: -1; */
    opacity: 0.7;
    transition: all 0.4s ease-in-out;
  }
  
  /* Bubble Positions (Half bubble at corners by default) */
  .pricing-bubble1 {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
  }
  
  .pricing-bubble2 {
    bottom: 0;
    right: 0;
    background: rgba(155, 89, 182, 0.3);
    transform: translate(50%, 50%);
    animation-delay: 2s;
  }
  
  /* Default Bubble Animation */
  /* @keyframes pricing-bubble-move {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
    }
  } */
  
  /* Hover Effect: Enlarge & Highlight Bubbles */
  .pricing-card:hover .pricing-bubble1 {
    transform: translate(-60%, -60%) scale(1.2);
    opacity: 1;
  }
  
  .pricing-card:hover .pricing-bubble2 {
    transform: translate(60%, 60%) scale(1.2);
    opacity: 1;
  }
  
  /* Hover Effect: Transform Card */
  .pricing-card:hover {
    transform: translateY(-5px);
  }
  
  /* Heading */
  .pricing-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  /* Price */
  .price {
    font-size: 35px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .price sup {
    font-size: 16px;
  }
  
  .price span {
    font-size: 14px;
    color: gray;
  }
  
  /* CTA Button */
  .pricing-cta-btn {
    background-color: #009f81;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease, transform 0.3s ease-in-out;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  /* Hover Effect: Change CTA Button */
  .pricing-card:hover .pricing-cta-btn {
    background-color: #007c65;
    transform: scale(1.1);
  }
  
  
  
  .pricing-box {
    display: block;
  }
  
  .pricing-chack {
    color: #009f81;
    margin-right: 5px;
  }
  .pricing-section .subscribe a {
    color: var(--primary);
    text-decoration: none;
  }
  
  .price-content-1 h4 {
    margin-bottom: 8px;
    color: #191b23;
    font-weight: 500;
    font-size: 18px;
  }
  .price-content-1 li {
    margin-top: 15px;
    color: #191b23;
    list-style: none;
  }
  .price-content-2,
  .price-content-1 {
    margin-top: 25px;
  }
  .price-content-2 h4 {
    margin-bottom: 8px;
    color: #191b23;
    font-weight: 500;
    font-size: 18px;
  }
  .price-content-2 p {
    margin-top: 15px;
    color: #6c6e79;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 1024px) {
    .pricing-container {
      flex-direction: column;
      align-items: center;
    }
  
    .pricing-card {
      width: 100%;
    }
  
    .pricing-card-bubble {
      width: 100px;
      height: 100px;
    }
    .pricing-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .pricing-box > div {
      width: 100%;
      overflow: hidden;
    }
    .pricing-cta-btn {
      margin-top: 20px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .custom-pricing-toggle {
        justify-content: space-between;
        padding: 0 30px;
        gap: 10px;
    }
    .pricing-card {
      width: 90%;
    }
  
    .pricing-card-bubble {
      width: 80px;
      height: 80px;
    }
    .pricing-section {
      padding: 80px 0px;
    }
    .pricing-box {
      display: block;
    }
    .pricing-cta-btn {
      margin-top: 10px;
    }
  }

  @media screen and (max-width: 500px) {
    
    .custom-pricing-toggle {
        font-size: 14px;
    }
  }
  