  .pricing-header {
      background-color: #595067;
      color: white;
      padding: 50px 0;
      text-align: center;
      border-radius: 0 0 50px 50px;
  }

  .pricing-card:hover {
      transform: scale(1.05);
  }

  .pricing-btn-custom {
      color: rgb(0, 0, 0);
      font-weight: bold;
      border-radius: 30px;
      border: 1px solid #6a11cb;
      padding: 10px;
  }
  .pricing-btn-custom:hover{
      background-color:#0D6EFD;
      color:#fff;
  }

  .pricing-feature-list {
      list-style: none;
      padding-left: 0;
  }

  .pricing-feature-list li {
      margin-bottom: 10px;
  }


  .pricing-feature {
      font-size: 40px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-weight: bold;
  }

  /* All feature */
  .pricing-card {
      transition: transform 0.3s ease-in-out;
      border-radius: 15px;
  }

  .card:hover {
      transform: scale(1.05);
  }

   .pricing-card {
      border-radius: 30px;
  }

  .pricing-card-icon {
      font-size: 40px;
  }


  /* Slider container */
  .slider-container {
      overflow: hidden;
      white-space: nowrap;
      width: 100%;
      background: transparent;
      padding: 20px 0;
  }

  /* Slider track (moving part) */
  .slider {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: slideLeft 15s linear infinite;
  }

  /* Individual slide */
  .slide {
     
  }

  .slide img {
      width: 100%;
      height: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* Keyframes for continuous right-to-left movement */
  @keyframes slideLeft {
      from {
          transform: translateX(0);
      }

      to {
          transform: translateX(-40%);
      }
  }

  /* Flip effec for slide */
  .flip-card {
      perspective: 1000px;
       display: inline-block;
      width: 400px;
      height: 400px;
  }

  .flip-card-inner {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.5s;
  }

  /* Flip only when hovered */
  .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
  }

  /* Front and back faces */
  .flip-card-front,
  .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }



  .flip-card-back {
      background: #708fa4;
      color: white;
      transform: rotateY(180deg);
  }




  /* all features */
  .page-title {
      font-size: 3rem;
      font-weight: 700;
      color: #212529;
      margin-bottom: 3rem;
  }

  .category-btn {
      text-align: left;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      transition: all 0.2s;
      border: none;
      width: 100%;
  }

  .category-btn.active {
      background-color: #5a2ca0;
      color: white;
  }

  .category-btn:not(.active) {
      background-color: transparent;
      color: #495057;
  }

  .category-btn:not(.active):hover {
      background-color: #f1f3f5;
  }

  .pricing-card {
      border: none;
      background-color: transparent;
  }

  .pricing-header {
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
  }

  .pricing-title {
      font-size: 1.5rem;
      font-weight: 700;
  }

  .pricing-price {
      font-size: 1.5rem;
      font-weight: 700;
  }

  .pricing-period {
      font-size: 0.875rem;
      color: #6c757d;
  }

  .btn-pricing {
      border-radius: 50rem;
      margin-top: 30px;
  }

  .btn-outline-pricing {
      border: 1px solid #dee2e6;
      color: #495057;
  }

  .btn-outline-pricing:hover {
      background-color: #26517d;
  }

  .pro-card {
      background-color: #5a2ca0;
      border-radius: 0.5rem 0.5rem 0 0;
      color: white;
      position: relative;
  }

  .pro-period {
      color: rgba(255, 255, 255, 0.8);
  }

  .trial-badge {
      position: absolute;
      top: 0.5rem;
      left: 0.5rem;
      background-color: #ffc107;
      color: #5a2ca0;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.25rem 0.5rem;
      border-radius: 0.25rem;
  }

  .btn-pro {
      background-color: #fd7e14;
      color: white;
      border: none;
  }

  .btn-pro:hover {
      background-color: #e8710a;
      color: white;
  }

  .feature-row {
      border-top: 1px solid #dee2e6;
  }

  .feature-name {
      display: flex;
      align-items: center;
      color: #495057;
      font-weight: 500;
  }

  .feature-check {
      color: #212529;
      font-size: 1.25rem;
  }

  .feature-x {
      color: #adb5bd;
      font-size: 1.25rem;
  }

  .pro-column {
      background-color: #f3f0ff;
  }

  .pro-check {
      color: #5a2ca0;
  }

  .dropdown-icon {
      margin-right: 0.5rem;
      width: 20px;
      height: 20px;
  }


  /* pricing box circle */

  .rounded-banner {
      background-color: #e6b3e6;
      color: #4a2375;
      font-weight: bold;
      text-align: center;
      padding: 10vw;
      border-radius: 50vw;
      margin-top: 100px;
      /* font-size: clamp(1rem, 3vw, 2rem); */

  }

  /* Adjustments for smaller screens */
  @media (max-width: 768px) {
      .rounded-banner {
          padding: 8vw;
          border-radius: 40vw;
          /* Slightly less rounded on small screens */
      }
  }

  @media (max-width: 480px) {
      .rounded-banner {
          padding: 6vw;
          border-radius: 30vw;
          /* More compact */
          font-size: clamp(0.9rem, 4vw, 1.5rem);
          /* Smaller text on tiny screens */
      }
  }



  /* fearure card */
  .feature-card {
      border-radius: 20px;
      padding: 30px;
      color: #000;
  }

  .card-purple {
      background-color: #EAC0F1;
  }

  .card-yellow {
      background-color: #D6FF4B;
  }

  .card-red {
      background-color: #82002B;
      color: white;
  }

  .btn-outline-dark {
      border: 2px solid black;
      border-radius: 20px;
      padding: 5px 15px;
      font-weight: bold;
  }

  .testimonial-container {
      text-align: center;
      max-width: 800px;
      margin: auto;
      padding: 20px;
  }

  .testimonial-img img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
  }

  h1 {
      font-size: 40px;
      font-weight: bold;
  }

  /* Responsive Text */
  @media (max-width: 768px) {
      h1 {
          font-size: 28px;
      }
  }

  @media (max-width: 480px) {
      h1 {
          font-size: 24px;
      }
  }


