body {
    font-family: 'Poppins', sans-serif;
}
.hero-bg-swoop {
    background-color: #f0fdfa;
    /*background-image: radial-gradient(at 47% 33%, hsl(162.00, 77%, 40%) 0, transparent 59%), radial-gradient(at 82% 65%, hsl(218.00, 39%, 11%) 0, transparent 55%);*/
    background-image: radial-gradient(at 47% 33%, #b9d7ff 0, transparent 59%), radial-gradient(at 82% 65%, hsl(339.61deg 100% 94.25%) 0, transparent 55%);
}
.swiper-button-next, .swiper-button-prev {
    color: #1f2937;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background-color 0.2s;
    top:26% !important;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: #ffffff;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}
/* Style for Plyr.io player inside the accordion to ensure it's responsive */
.faq-content .plyr {
    border-radius: 0.5rem;
    overflow: hidden;
}
/* Style for the embedded video iframes */
.vocal-video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 0.5rem;
}
.vocal-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* end of pricing */
.video-title{
    position: absolute;
    z-index: 99;
    left: 20px;
    top: 10px;
    color: white;
    text-shadow: 1px 1px 3px black;
    font-family: sans-serif;
}












@media (min-width: 1000px) and (max-width: 1310px) {
    .price-display {
      font-size: 2.5rem !important; /* smaller than text-6xl */
    }
      .price-display-text {
        font-size:12px;
    }
  }
  @media (min-width: 980px) and (max-width: 1000px) {
    .price-display {
      font-size: 2rem !important; /* smaller than text-6xl */
    }
        .price-display-text {
      font-size: 9px;
      font-weight: bold;
    }
  }
  @media (min-width: 768px) and (max-width: 980px) {
    .price-display {
      font-size: 1.5rem !important; /* smaller than text-6xl */
    }
    .price-display-text {
        font-size:12px;
    }
  }
  @media (max-width: 767px) {
    #monthly-label,#yearly-label {
        font-size:1rem !important;
    }
  }
  /* start of pricing */
    #pricing-component-wrapper-holder{
        font-family: 'Inter', sans-serif;
        background-color: #f7fafc;
        /* Subtle noise background texture */
        background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
    }
    /* Scoped custom styles to avoid conflicts */
    .tag-shape {
      clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
    }
    #pricing-component-wrapper .hidden {
      display: none;
    }
    /* end of pricing */

  /* Question mark tooltip button */
  button.question-mark{
    border: 1px solid #d1d5db;
    transform: scale(.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    font-weight: bold;
    background-color: gold;
  }

  /* Pricing card base styles */
  .pricing-card {
    position: relative;
    overflow: visible;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .pricing-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }

  #start-trial-btn {
    position: relative;
    overflow: visible;
    border: 1px solid black;
    padding: 1rem 2rem;
    background-color: #3b82f6;
    color: white;
    font-weight: bold;
    border-radius: 9999px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.5, 2.5, .7, .7),
                box-shadow 0.3s cubic-bezier(.5, 2.5, .7, .7);
    transform: translateY(0);
  }

  /* Hover lift */
  #start-trial-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 1px black;
  }

  /* Micro shake animation on hover (optional) */
  #start-trial-btn:hover::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; /* ensures shadow layer doesn't block hover */
    animation: shake 0.3s ease-in-out;
  }

  @keyframes shake {
    0%   { transform: translateY(-4px); }
    80%  { transform: translateY(-3px); }
    100% { transform: translateY(-4px); }
  }

  /* Most Popular Badge */
  .most-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    z-index: 50;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    width: 200px;
    text-align: center;
  }

  /* Tooltip styles */
  .tooltip {
    position: absolute;
    top: unset;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 16rem;
    padding: 0.5rem;
    background-color: white;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-size: 0.875rem;
    color: #374151; /* Tailwind gray-700 */
    margin-top: 0.25rem;
    z-index: 50;
  }

  /* Extra minutes banner */
.extra-minutes{
    background-color: #ffffff;
    color: #767676;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    font-size:13px;
}

.itemsLi{
}
  /* Table styles */
  table th {
    background-color: #bfdbfe; /* Tailwind blue-200 */
  }
  .pInfoBox{
    min-height:300px;
  }
  
  /* --- SWIPER STYLES START --- */
  body {
      overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .swiper-container2 .swiper-wrapper .swiper-slide {
    height: auto; /* Allow slides to grow with content */
  }
  
  @media (max-width: 767px) {
    .swiper-container2 .swiper-wrapper .swiper-slide {
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
      transform: scale(0.9);
      transition: transform 0.3s ease-in-out;
      opacity: 0.7;
    }
    .swiper-container2 .swiper-wrapper .swiper-slide-active {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Hide navigation buttons on larger screens */
  @media (min-width: 768px) {
    .swiper-container2 .swiper-wrapper .swiper-button-next,
    .swiper-container2 .swiper-wrapper .swiper-button-prev {
          display: none !important;
      }
  }

  /* Reset styles for larger screens */
  @media (min-width: 768px) {
    .swiper-container2 .swiper-wrapper .swiper-slide {
          max-width: none !important;
          margin-right: 0 !important;
      }
      .swiper-container2 .swiper-wrapper {
          /* This will be handled by the grid class on the wrapper */
          display: grid !important;
      }
  }
  /* --- SWIPER STYLES END --- */