
  
  html, body {
  max-width: 100%;     /* body कभी viewport से बड़ी नहीं होगी */
  overflow-x: hidden;  /* horizontal scroll hide कर देगा */
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* padding/border width में include होगी */
}

    :root {
      --primary-blue: #8659D3FF;
      --secondary-accent: #2196F3;
      --neutral-background: #F9FAFB;
      --text-color: #ffff;
      --highlight-success: #4CAF50;
      --header-background: #0a364b;
      /* New variable for header background */
      --dark-text: #0a364b;
      /* For text on light backgrounds */
      --bg-1: #0C394E;
      --bg-2: #116E91;
      --accent: #86f59a;
      --cta: #ffef81;
      --card-bg: #ffffff;
      --text-dark: #0a364b;
      --muted: #6d7081;
      --radius: 14px;


      --wb-background: #FFFFFFFF;


    }

  *, *::before, *::after {
  box-sizing: border-box;
}



    

    html,
    body {
      height: 100%
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      margin: 0;
      color: var(--text-dark);
      background: #fff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Page load fade */
    body {
      opacity: 0;
      animation: pageFade .6s ease forwards .1s
    }

    @keyframes pageFade {
      to {
        opacity: 1
      }
    }


    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Poppins', sans-serif;
      /* Headings on the main section will be white */
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    /* Custom styles that are not directly replaced by Bootstrap */

    /* Navigation */
    .navbar {
      background: var(--wb-background);
      box-shadow: 0px 0px 1px #171a1f12, 0px 0px 2px #171a1f1F;
      position: fixed;
      border-radius: 0px 0px 0px 0px;
      width: 100%;
      height: 64px;
      top: 0;
      z-index: 1020;
    }

    .nav-logo {
      font-weight: 700;
      font-size: 1.5rem;
      letter-spacing: 2px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary-blue);
      /* Logo color */
    }

    .nav-logo svg {
      width: 32px;
      height: 32px;
      fill: var(--primary-blue);
      /* Logo SVG color */
    }

    /* Menu - Adjustments for Bootstrap integration */
    .navbar-nav .nav-link {
      font-weight: 400;
      font-size: 14px;
    }

    .navbar-nav .nav-link:hover {
      color: var(--primary-blue);
      /* Hover effect for nav links */
    }

    .navbar-nav .dropdown-menu {
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.3);
      /* Darker shadow for dropdown */
      border-radius: 6px;
      padding: 0.5rem 0;
      min-width: 180px;
      z-index: 10;
      background-color: var(--header-background);
      /* Darker background for dropdown */
      border: none;
      /* Remove default border */
    }

    .navbar-nav .dropdown-item {
      padding: 0.5rem 1rem;
      font-weight: 500;
      font-size: 0.9rem;
      white-space: nowrap;
      color: var(--text-color);
      /* Dropdown item text color (white) */
    }

    .navbar-nav .dropdown-item:hover {
      background: rgba(134, 245, 154, 0.2);
      /* Light primary blue for hover */
      color: var(--primary-blue);
      /* Primary blue text on hover */
    }

    /* Dropdown Icon Styling */
    .dropdown-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
      margin-left: 0.25rem;
      transition: transform 0.3s ease;
      fill: var(--text-color);
      /* Ensure dropdown icon is white */
    }

    .dropdown-icon svg {
      width: 100%;
      height: 100%;
      fill: currentColor;
    }

    /* Rotate dropdown icon on hover/active */
    .nav-item.dropdown:hover .dropdown-icon {
      transform: rotate(180deg);
    }

    /* Account Button */
    .account-btn {
      border: 2px solid var(--primary-blue);
      border-radius: 6px;
      padding: 0.4rem 1rem;
      font-weight: 600;
      cursor: pointer;
      background: none;
      transition: background 0.2s, color 0.2s;
      color: var(--primary-blue);
      /* Account button text color */
    }

    .account-btn:hover {
      background: var(--primary-blue);
      color: var(--header-background);
      /* Text color changes to dark on hover */
      border-color: var(--primary-blue);
    }

    /* Language Selector */
    .language-selector {
      display: flex;
      align-items: center;
      gap: 0.4rem;


    }

    .language-selector img {
      width: 20px;
      height: 14px;
      object-fit: cover;
      border-radius: 2px;
    }

    /* Main Section */
    main {
      padding: 3rem 0;
    }

    /* Left Content */
    .discount-text {
      font-weight: 700;
      font-size: 17px;
      text-transform: capitalize;

      margin-bottom: 0.4rem;
      color: var(--text-color);
      /* Keep white for text on the main section's dark background */
    }

    .discount-text strong,
    .discount-text a {
      color: var(--primary-blue);
      /* Links & Hover Effects */
    }

    h1 {
      font-size: 46px;
      margin-bottom: 1rem;
      font-weight: 700;
      color: var(--text-color);
    }

    .features-list {
      list-style-type: none;
      padding-left: 0;
      margin-bottom: 1rem;
    }

    .features-list h3 {
      font-size: 18px;
      line-height: 28px;
      font-weight: 400;
      color: #ffff;
    }

    .features-list h3 img {
      width: 20px;
      height: 20px;
      filter: invert(83%) sepia(13%) saturate(1040%) hue-rotate(73deg) brightness(97%) contrast(94%);


    }




    /* ul.features-list li::before {
      content: '✔';
      color: var(--highlight-success);
      font-weight: 700;
    } */




    .btn-primary {
      --pad-y: .7rem;
      --pad-x: 1.6rem;
      background: linear-gradient(90deg, #8659D3FF, #8659D3FF);
      border: none;
      color: #fff;
      font-weight: 500;
      border-radius: 12px;
      padding: var(--pad-y) var(--pad-x);
      box-shadow: 0 10px 30px rgba(9, 30, 45, .12);
      transition: transform .25s ease, box-shadow .25s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-primary:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 50px rgba(9, 30, 45, .14);
      color: #116E91;

    }

    /* sweep effect */
    .btn-primary::after {
      content: "";
      position: absolute;
      left: -100%;
      top: 0;
      height: 100%;
      width: 60%;
      transform: skewX(-25deg);
      background: rgba(255, 255, 255, 0.25);
      transition: left .7s ease;
    }

    .btn-primary:hover::after {
      left: 120%
    }



    .money-back {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      color: #565D6DFF;
    }

    .money-back svg {
      width: 16px;
      height: 16px;
      fill: var(--text-color);
      /* Shield icon color (white) */
    }

    /* Right Content Cards */
    .image-card,
    .testimonial-card,
    .pagespeed {
      border-radius: 16px;
      padding: 1rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
      max-width: 220px;
      min-height: 140px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      user-select: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .image-card:hover,
    .testimonial-card:hover,
    .pagespeed:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
    }

    .image-card {
      background: var(--neutral-background);
      color: var(--primary-blue);
      font-size: 2rem;
      position: relative;
      max-width: 280px;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .image-card .text-label {
      position: absolute;
      top: 0.8rem;
      left: 0.8rem;
      background: var(--primary-blue);
      color: white;
      font-size: 0.9rem;
      padding: 0.15rem 0.5rem;
      border-radius: 6px;
      font-weight: 600;
      user-select: none;
    }

    .portfolio {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: 1rem;
      width: 100%;
      max-width: 280px;
    }

    .portfolio img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
      height: 90px;
      box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      transition: transform 0.3s;
    }

    .portfolio img:hover {
      transform: scale(1.05);
    }

    .testimonial-card {
      background: linear-gradient(135deg, var(--primary-blue), var(--secondary-accent));
      color: white;
      font-weight: 500;
      padding: 1rem 1.25rem;
      box-shadow: 0 35px 60px -15px rgba(13, 71, 161, 0.5);
      position: relative;
    }

    .testimonial-card:hover {
      box-shadow: 0 40px 70px -20px rgba(13, 71, 161, 0.7);
    }

    .testimonial-card img {
      width: 80px;
      height: 80px;
      border-radius: 16px;
      object-fit: cover;
      margin-bottom: 1rem;
      border: 3px solid white;
    }

    .testimonial-card .client-name {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
    }

    .testimonial-card .client-role {
      font-size: 0.85rem;
      opacity: 0.85;
    }

    .testimonial-card::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 20px;
      height: 20px;
      background: linear-gradient(135deg, var(--primary-blue), var(--secondary-accent));
      border-radius: 4px;
      box-shadow: 0 0 15px rgba(13, 71, 161, 0.3);
    }

    /* PageSpeed */
    .pagespeed {
      background: white;
      padding: 1rem 1rem 1.3rem;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .pagespeed .score {
      font-size: 36px;
      font-weight: 700;
      color: var(--highlight-success);
    }

    .pagespeed .label {
      font-weight: 600;
      margin-top: 0.25rem;
      color: var(--dark-text);
      /* Label text color is dark */
    }

    .dropdown-toggle::after {
      border-top: 0em solid !important;
    }


    .png image,
    .ai image,
    .akexmbackground image,
    .verify image {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards;
    }


    .png image {
      animation-delay: 0.5s;
    }

    .ai image {
      animation-delay: 1.5s;
    }

    .akexmbackground image {
      animation-delay: 2s;
    }

    .verify image {
      animation-delay: 2.5s;
    }

    /*  .fade-seq:nth-child(2) { animation-delay: 1s; }
    .fade-seq:nth-child(3) { animation-delay: 1.5s; }
    .fade-seq:nth-child(4) { animation-delay: 2s; } */

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .main {
      background: url('https://moxiworks.com/wp-content/themes/elxr/dist/images/moxiworks-icon-light-green-angled.svg'), radial-gradient(1200px 600px at 88% 100%, #116E91 0%, #0C394E 100%);
      background-position: left -215px bottom -445px, center;
      background-repeat: no-repeat;
      background-size: 1100px, cover;

    }



    .fixed-top {
      background: linear-gradient(90deg, #F6F3FCFF, #F6F3FCFF) !important;
      box-shadow: 0 8px 30px rgba(4, 15, 20, 0.15) !important;

    }



    .navbar-nav .nav-link,
    .navbar-nav.dropdown-icon,
    .language-selector {
      color: #171A1FFF;
    }



    .navbar-brand {
      font-weight: 700;
      color: #8659D3FF;
      letter-spacing: .6px;
      font-size: 25px;
   
    }


 .navbar-brand img{
     
     width: 219px;
 }
 
 #main-heading, #main-heading span{
     
     color: #72cfa8;
 }

    .dropdown-icon {

      /* filter: brightness(0) invert(1); */
    }

    .fixed-top .btn-account {

      color: #ffff !important;
      border-color: #ffef81;
    }

    .navbar-brand img {
      height: 50px;
      object-fit: contain;
    }

    /* Center nav links */
    .navbar-nav {
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
    }

    .nav-link {
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      padding: 0.5rem 0.75rem;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .nav-link:hover,
    .nav-link:focus {
      color: #86f59a;
      text-decoration: none;
    }

    /* Dropdown arrow icon next to nav links with submenu */
    .nav-link .dropdown-icon {
      width: 14px;
      height: 14px;
      display: inline-block;
      margin-left: 4px;

      /* white color */
    }

    /* btn-account */
    .btn-account {
      width: 136.59375px;
      height: 40px;
      padding: 0 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      line-height: 22px;
      font-weight: 500;
      color: #FFFFFFFF;
      /* white */
      background: #8659D3FF;
      /* primary-500 */
      opacity: 1;
      border: none;
      border-radius: 12px;
      gap: 8px;
    }

    .btn-account .icon {
      width: 16px;
      height: 16px;
      filter: brightness(0) invert(1);
      fill: #FFFFFFFF;
      /* white */
    }

    /* Hover */
    .btn-account:hover {
      color: #FFFFFFFF;
      /* white */
      background: #7644CDFF;
      /* primary-550 */
    }

    /* Pressed */
    .btn-account:hover:active {
      color: #FFFFFFFF;
      /* white */
      background: #6733C1FF;
      /* primary-600 */
    }

    /* Disabled */
    .btn-account:disabled {
      opacity: 0.4;
    }

    .btn-account:hover,
    .btn-account:focus {
      background-color: rgb(217, 198, 255);
      color: #8659D3FF;
      font-weight: 600;
      text-decoration: none;
    }

    /* Language selector */


    /* Remove default Bootstrap dropdown arrow */
    .dropdown-toggle::after {
      display: none;
    }

    /* Mega menu container */
    .dropdown-menu.mega-menu {
      width: 100vw;
      max-width: 1200px;
      left: 50%;
      padding: 1.5rem 2rem;
      background-color: #fff;
      border: none;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }



    /* Mega menu grid */
    .mega-menu .row>div {
      padding: 0 1rem;
    }

    /* Category title */
    .mega-menu h6 {
      color: #6d7081;
      font-weight: 500;
      margin-bottom: 1rem;
      font-size: 14px;

      padding-bottom: 0.25rem;
    }

    /* Product item */
    .mega-menu .product-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      cursor: pointer;
      transition: background-color 0.2s ease;
      border-radius: 6px;
      padding: 0.25rem;
    }

    .mega-menu .product-item:hover {
      background-color: rgba(134, 245, 154, 0.15);
    }

    .mega-menu .product-item img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .mega-menu .product-item span {
      color: #0a364b;
      font-weight: 500;
      font-size: 14px;
    }

    /* Show dropdown on hover for desktop */
    @media (min-width: 992px) {
      .navbar .dropdown:hover>.dropdown-menu {
        display: block;
      }

      .dropdown-menu.mega-menu {
        transform: translateX(-50%);
      }

    }

    /* Mobile menu toggle icon color */
    .navbar-toggler {
      border-color: #0C394E;
    }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 6h22M4 15h22M4 24h22'/%3e%3c/svg%3e");
}



    /* Dropdown submenu styling */
    .dropdown-menu {
      background-color: #0a364b;
      border: none;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .dropdown-item {
      color: #fff;
      font-weight: 600;
      transition: background-color 0.2s ease;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
      background-color: rgba(134, 245, 154, 0.15);
      color: #86f59a;
      text-decoration: none;
    }

    /* Dropdown submenu arrow icon for smaller dropdowns */
    .dropdown-item .dropdown-icon {
      width: 12px;
      height: 12px;
      margin-left: 6px;
      filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    }


    /* Reset and base */
    .pricing-plans {
      text-align: center;
    }


    .pricing-plans h2 {
      font-size: 36px;
      line-height: 40px;
      font-weight: 600;
      color: #171A1FFF;
      margin-top: 20px;
    }



    /* Subtitle */
    .subtitle {
      font-size: 24px;
      line-height: 0px;
      font-weight: 600;
      color: #565D6DFF;
      margin-top: 30px;
    }

    /* Rating badge */
    .rating-badge {
      display: inline-flex;
      align-items: center;
      background: #eee;
      color: #333;
      font-size: 0.85rem;
      padding: 6px 14px;
      /* border-radius: 8px; */
      margin-bottom: 32px;
      box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
      user-select: none;
    }

    .rating-badge svg {
      margin-right: 6px;
      fill: #fbbf24;
      /* Yellow star */
      width: 16px;
      height: 16px;
    }

    /* Toggle switch container */


    .save-30 {
      background: #ffef81;
      color: #111;
      font-weight: 600;
      cursor: default;
      padding: 5px;
      border-radius: 5px;
      font-size: 8px;

    }

    /* Pricing cards grid */
    .cards {
      display: grid;
      text-align: justify;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
      margin-bottom: 100px;
    }

    /* Each card base style */
    .card {
      background-color: #fff;
      border: 1.3px solid #ddd;
      border-radius: 16px;
      padding: 24px 30px 40px 30px;
      box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: box-shadow 0.3s, border-color 0.3s;
    }

    .card:hover {
      box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
      border-color: #bbb;
    }

    /* Highlighted "Standart" card */
    .card.highlight {
      background: #111;
      color: #fff;
      border-color: transparent;
      position: relative;
      box-shadow: 0 12px 30px rgb(255 239 129 / 0.28);
      overflow: hidden;
    }

    .card.highlight::before {
      content: "";
      position: absolute;
      top: 10px;
      right: -40px;
      width: 160px;
      height: 160px;
      background: radial-gradient(circle at center, #ffef81 15%, transparent 60%),
        repeating-linear-gradient(45deg, #ffef81 0 6px, transparent 6px 12px);
      border-radius: 100px;
      opacity: 0.4;
      pointer-events: none;
      filter: blur(10px);
      z-index: 1;
    }

    .card.highlight>* {
      position: relative;
      z-index: 2;
    }

    /* Label tag */
    .label {
      display: inline-block;
      background: #ddd;
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 8px;
      margin-bottom: 22px;
      user-select: none;
    }

    .card.highlight .label {
      background: #555;
      color: #fff;
    }

    /* Price */
    .price {
      font-weight: 900;
      font-size: 3rem;
      margin-bottom: 6px;
      line-height: 1;
    }

    /* Per month text */
    .per-month {
      font-size: 0.9rem;
      color: inherit;
      margin-bottom: 24px;
      font-weight: 400;
    }

    .card.highlight .per-month {
      color: #ffff;
    }

    /* Feature list */
    ul.features {
      list-style: none;
      margin-bottom: 32px;
    }

    ul.features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      color: #111;
      margin-bottom: 16px;
      user-select: none;
    }

    .card.highlight ul.features li {
      color: #ffff;
    }

    ul.features li svg {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      fill: currentColor;
      background: #000;
      border-radius: 50%;
      stroke: currentColor;
      stroke-width: 1.8;
    }

    .card.highlight ul.features li svg {
      background: #222;
      stroke: #ffff;
    }

    /* Feature checkmark icon */
    .checkmark {
      display: inline-block;
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    /* Start button */
    .start-button {
      font-weight: 700;
      font-size: 0.95rem;
      padding: 12px 0;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      transition: background 0.3s;
      box-shadow: 0 2px 5px rgb(0 0 0 / 0.15);
      display: block;
      width: 100%;
      user-select: none;
    }

    .card.highlight .start-button {
      background: #ffef81;
      border: none;
      color: #111;
    }

    .card:not(.highlight) .start-button {
      background: #111;
      color: #fff;
    }

    .start-button:hover {
      filter: brightness(1.1);
    }

    /* Section below pricing cards */


    .bottom-section h2 {
      font-weight: 600;
      font-size: 36px;
      margin-bottom: 12px;
      position: relative;
      line-height: 40px;
      color: #171A1FFF;
    }

    .bottom-section .right p {

      color: #333;
      font-weight: 400;
      font-size: 0.93rem;
      line-height: 40px;
    }

    /* Pricing comparison table */
    table {
      border-collapse: collapse;
      width: 100%;
      margin: 0 auto;
      font-size: 0.95rem;
      box-shadow: 0 4px 22px color-mix(in srgb, #323b3b, transparent 90%);
      overflow: hidden;
    }

    thead tr {
      background-color: #111;
      color: #fff;
    }

    thead th:first-child {
      background-color: #fff;
      color: #000;
    }

    thead th {
      padding: 15px 20px;
      font-weight: 400;
      font-size: 12px;
      text-align: center;
      border-right: 1px solid #444;
    }

    thead th:last-child {
      border-right: none;
    }

    tbody tr:nth-child(odd) {
      background-color: #fafafa;
    }

    tbody td {
      padding: 15px 20px;
      text-align: center;
      border-right: 1px solid #ddd;

    }

    tbody td:last-child {
      border-right: none;
    }

    /* Table header column */
    tbody th.feature-name {

      font-weight: 600;
      background-color: #f5f5f5;
      color: #111;
      font-size: 12px;
      border-right: 1px solid #ddd;
    }

    /* Checkmark icons inside table */
    .table-checkmark {
      color: #0c394e;
      font-size: 1.25rem;
      font-weight: 700;
    }

    /* Responsive tweaks */
    @media (max-width: 900px) {
      .bottom-section {
        flex-direction: column;
        gap: 40px;
      }
    }


  .b2bPkgTable__TD {
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  .fade-out {
    opacity: 0;
  }
  .fade-in {
    opacity: 1;
  }


    .faq-section {
 
      max-width:100% !important;
      padding-top: 80px;
      padding-bottom: 80px;
      font-family: "Segoe UI", sans-serif;
    }

    .faq-container {
      margin-top: 46px;
    }

    .faq-title {
      font-weight: 600;
      font-size: 36px;
      margin-bottom: 12px;
      position: relative;
      line-height: 40px;
      color: #171A1FFF;
    }

    .faq-item {
      border: 1px solid #d5dfff;
      padding: 8px 20px 8px 20px;
      margin-bottom: 8px;
      border-radius: 16px;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      outline: none;
      text-align: left;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
    }

    .faq-question .icon {
      transition: transform 0.3s ease;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 0;
    }

    .faq-answer p {
      margin: 10px 0;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      /* enough for content */
      padding: 10px 0;
    }

    .faq-item.active .faq-question .icon {
      transform: rotate(180deg);
      content: "–";
    }



    .fa-solid,
    .fas {
      font-weight: 900;
    }

    .text-gray-400 {
      --tw-text-opacity: 1;
      color: rgb(156 163 175 / var(--tw-text-opacity, 1));
    }

    .border-gray-200 {
      --tw-border-opacity: 1;
      border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
      border-radius: .75rem;
      box-shadow: inset 0 2px 4px #0000000f !important;
      --tw-text-opacity: 1;
      color: rgb(31 41 55 / var(--tw-text-opacity, 1));
      width: 100%;
      font-weight: 500;
      font-size: 14px;
    }



    .price-month {
      gap: 10px;
      margin-top: 80px;
    }

    .price-month .active {
/* 
      width: 113.375px; */
      height: 40px;
      padding: 0 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      
      line-height: 26px;
      font-weight: 600;
      color: #FFFFFFFF;
      /* white */
      background: #8659D3FF;
      /* primary-500 */
      opacity: 1;
      border: none;
      border-radius: 9px;
      box-shadow: 0px 0px 1px #171a1f12, 0px 0px 2px #171a1f1F
    }

    /* Button */
    .price-month button, .price-month h3 {
      width: auto;

      height: 40px;
      padding: 0 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      line-height: 26px;
      font-weight: 500;
      color: #171A1FFF;
      /* neutral-900 */
      background: #FFFFFFFF;
      /* white */
      opacity: 1;
      border-radius: 9px;
      border-width: 1px;
      border-color: #DEE1E6FF;
      /* neutral-300 */
      border-style: solid;
    }

    /* Hover */
    .price-month button:hover {
      color: #171A1FFF;
      /* neutral-900 */
      background:#F6F3FCFF;
      /* white */
    }

    /* Pressed */
    .price-month button:hover:active {
      color: #171A1FFF;
      /* neutral-900 */
      background: #8659D3FF;
      /* white */
    }


    .price-month .active:hover{
      background: #8659D3FF;
      color: #fff;
    }

    /* Disabled */
    .price-month button button:disabled {
      opacity: 0.4;
    }



    .fa-solid {
      --tw-text-opacity: 1;
      color: rgb(31 41 55 / 28%);
    }


    /*====================
	Footer
====================== */

    /* Main Footer */
    footer .main-footer {
      margin-top: 80px;
      padding: 20px 0;
      background: #252525;
    }

    footer ul {
      padding-left: 0;
      list-style: none;
    }

    /* Copy Right Footer */
    .footer-copyright {
      background: #222;
      padding: 5px 0;
    }

    .footer-copyright .logo {
      display: inherit;
    }

    .footer-copyright nav {
      float: right;
      margin-top: 5px;
    }

    .footer-copyright nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-copyright nav ul li {
      border-left: 1px solid #505050;
      display: inline-block;
      line-height: 12px;
      margin: 0;
      padding: 0 8px;
    }

    .footer-copyright nav ul li a {
      color: #969696;
    }

    .footer-copyright nav ul li:first-child {
      border: medium none;
      padding-left: 0;
    }

    .footer-copyright p {
      color: #969696;
      margin: 2px 0 0;
    }

    /* Footer Top */
    .footer-top {
      background: #252525;
      padding-bottom: 30px;
      margin-bottom: 30px;
      border-bottom: 3px solid #222;
    }

    /* Footer transparent */
    footer.transparent .footer-top,
    footer.transparent .main-footer {
      background: transparent;
    }

    footer.transparent .footer-copyright {
      background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3);
    }

    footer.light .footer-top {
      background: #f9f9f9;
    }

    footer.light .main-footer {
      background: #f9f9f9;
    }

    footer.light .footer-copyright {
      background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3);
    }

    /* Footer 4 */
    .footer- .logo {
      display: inline-block;
    }

    /*====================
	Widgets
====================== */
    footer .widget {
      padding: 20px;
      margin-bottom: 40px;
    }

    footer .widget.widget-last {
      margin-bottom: 0px;
    }

    footer .widget.no-box {
      padding: 0;
      background-color: transparent;
      margin-bottom: 40px;
      box-shadow: none;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      -ms-box-shadow: none;
      -o-box-shadow: none;
    }

    footer .widget.subscribe p {
      margin-bottom: 18px;
    }

    footer .widget li a {
      color: #fff;
    }

    footer .widget li a:hover {
      color: #aaa;
      text-decoration: none;
    }

    footer .widget-title {
      margin-bottom: 20px;
    }

    .widget-title span {
      background: #839fad none repeat scroll 0 0;
      display: block;
      height: 1px;
      margin-top: 25px;
      position: relative;
      width: 20%;
    }

    .widget-title span::after {
      background: inherit;
      content: "";
      height: inherit;
      position: absolute;
      top: -4px;
      width: 50%;
    }

    .widget-title.text-center span,
    .widget-title.text-center span::after {
      margin-left: auto;
      margin-right: auto;
      left: 0;
      right: 0;
    }

    .widget .badge {
      float: right;
      background: #7f7f7f;
    }

    .typo-light h1,
    .typo-light h2,
    .typo-light h3,
    .typo-light h4,
    .typo-light h5,
    .typo-light h6,
    .typo-light p,
    .typo-light div,
    .typo-light span,
    .typo-light small {
      color: #fff;
    }

    footer ul.social-footer2 {
      margin: 0;
      padding: 0;
      width: auto;
    }

    footer ul.social-footer2 li {
      display: inline-block;
      padding: 0;
    }

    footer ul.social-footer2 li a:hover {
      background-color: #ff8d1e;
    }

    footer ul.social-footer2 li a {
      display: block;
      height: 30px;
      width: 30px;
      text-align: center;
    }

    footer .btn {
      background-color: #ff8d1e;
      color: #fff;
    }

    footer .btn:hover,
    footer .btn:focus,
    footer .btn.active {
      background: #4b92dc;
      color: #fff;
      -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      -ms-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      -webkit-transition: all 250ms ease-in-out 0s;
      -moz-transition: all 250ms ease-in-out 0s;
      -ms-transition: all 250ms ease-in-out 0s;
      -o-transition: all 250ms ease-in-out 0s;
      transition: all 250ms ease-in-out 0s;
    }

    footer .fa {
      display: inline-block;
      font: normal normal normal 14px/1 FontAwesome;
      background-color: #3e3e3e;
      color: #fff;
      padding: 9px;
      border-radius: 5px;
    }

    #subscribe-box .emailfield {
      margin: auto;
    }

    footer input[type="text"] {
      background: rgba(255, 255, 255, 0.075);
      padding: 10px 15px;
      color: #aaa;
      border: 3px solid rgba(0, 0, 0, 0.1);
      font-size: 14px;
      margin-bottom: 16px;
      border-radius: 5px;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      transition-delay: 0.2s;
      text-align: center;
      width: 100%;
    }

    footer input.submitbutton.ripplelink {
      background: #e67e22;
      border: 3px solid rgba(0, 0, 0, 0.1);
      color: #fff;
      border-color: #e67e22;
      box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
      transition-delay: 0s;
      width: 100%;
      font-size: 14px;
      /* font-weight: 700; */
      border: 0px solid;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 10px 15px;
      margin-bottom: 16px;
      border-radius: 5px;
    }

    footer .thumb-content ::before {
      content: "\f190";
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      margin-left: 5px;
      color: #ffffff;
    }


    .mw-ban-price {
      gap: 2px;
      color: #fff;
      margin-bottom: 25px;
      font-size: 30px;
      line-height: 1.1;
      gap: 4;
      display: flex;
      align-items: center;
    }


    .plan-container {
      margin: 84px auto 0;
      display: flex;
      flex-flow: row wrap;
      padding: 0 5px;
      justify-content: center;
    }

    .plan-container-4col .plan-col {
      width: calc(93% / 3);
      border-radius: 15px;
      margin: 0 10px 20px;
      padding: 44px 31px 22px;
    }


    .plan-col {
      background: #fafbff;
      position: relative;
      transition: all .3s ease-in-out;
      border: 1px solid #D4D4D8;
      padding: 44px 32px 50px;
    }

    .plan-container-4col .plan-col {
      width: calc(93% / 3);
      border-radius: 15px;
      margin: 0 10px 20px;
      text-align: start;
      padding: 44px 31px 22px;
    }


    .plan-recom-offer-col {
      border: 2px solid #d8ffdc !important;
      border-radius: 0 0 15px 15px !important;
    }


    .plan-p {
      font-size: 14px;
      font-weight: 400;
      padding-top: 8px;
    }

    .plan-best-deal {
      display: block;
      width: 100%;
      top: -46px;
      z-index: -1;
      left: 0;
      text-align: center;
      padding: 7px 0 11px;
      overflow: unset;
    }



    .plan-recom-offer-col,
    .plan-recom-offer-col:before {
      background: #fafbff !important;
    }

    .plan-best-deal {
      padding-top: 8px;
    }


    .plan-best-deal:before {
      background: linear-gradient(90deg, var(--accent), #d8ffdc);
      content: "";
      left: -2px;
      top: -2px;
      right: -2px;
      bottom: -43px;
      z-index: -2;
    }

    .plan-recom-h3 {
      color: var(--bg-2);
      font-size: 16px;
      font-weight: bolder;
      padding-top: 4px;
      text-transform: uppercase;
    }


    .plan-best-deal,
    .plan-best-deal:before {
      position: absolute;
      border-radius: 14px 14px 0 0;
    }

    .plan-h4 {
      font-weight: 700;
      color: #000;
      font-size: 20px;
    }


    .mvh-plan-ttl-box {
      transition: all .3s ease-in-out;
      background: #fafbff;
    }



    .plan-prc-strik {
      font-size: 14px;
      line-height: 1;
      display: inline-block;
      position: relative;
      font-weight: 400;
    }

    .plan-prc-strik:before {
      content: "";
      position: absolute;
      top: 50%;
      left: -4px;
      width: calc(100% + 8px);
      height: 1px;
      background: #61646e;
    }


    .crncy_fas {
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1;
      font-weight: 500;
    }

    .plan-prc-strik div {
      padding-left: 2px;
    }

    .mw-inline-block {
      display: inline-block;
    }



    .plan-save {
      color: #FF6A00;
      background: #FFF4ED;
      padding: 7px 16px;
      font-size: 16px;
      font-weight: var(--fw-bold);
      margin-left: 10px;
      border-radius: 28px;
    }

    .plan-price {
      width: 100%;
      line-height: 1;
      margin-top: 15px;
      display: flex;
      font-size: 22px;
    }

    .plan-price i {
      align-self: flex-start;
    }

    .crncy_fas {
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1;
      font-weight: 500;
    }

    .plan-price div {
      font-size: 48px;
      margin: 0 3px;
      line-height: .8;
      font-weight: 700;
    }

    .plan-price span {
      align-self: flex-end;
    }

    .up_mo {
      font-size: 21px;
      transform: translate(0, -4px);
      font-weight: 500;
    }


    .vps_month_free,
    .vps_month_no_free {
      color: #146EF5;
      font-size: 18px;
      font-weight: 700;
      margin-top: 14px;
      display: inline-block;
    }


    .plan-btn-box {
      margin: 24px 0 16px;
      text-align: center;
    }

    .plan-btn {
      --pad-y: .7rem;
      --pad-x: 1.6rem;
      background: #ffffff00;
      border: 1px solid var(--bg-2);
      color: var(--bg-2);
      font-weight: 800;
      border-radius: 50px;
      padding: var(--pad-y) var(--pad-x);
      box-shadow: 0 10px 30px rgba(9, 30, 45, .12);
      transition: transform .25s ease, box-shadow .25s ease;
      position: relative;
      overflow: hidden;
    }

    .pln-26 {
      padding: 2px 0 30px;
      font-size: 12px;
    }

    .pln-26hr {
      margin-bottom: 34px;
      width: 100%;
      border-color: #4a16163d;
    }


    hr {
      display: block;
      margin-block-start: 0.5em;
      margin-block-end: 0.5em;
      margin-inline-start: auto;
      margin-inline-end: auto;
      color: gray;
      unicode-bidi: isolate;
      overflow: hidden;
      border-style: inset;
      border-width: 1px;
    }

    .plan-list li {

      margin-bottom: 12px;
      display: block;
      padding-left: 25px;
      line-height: 24px;
      color: #3F3F46;
    }

    .plan-list-box li:before {
      content: "";
      position: absolute;
      top: 8px;
      left: 1px;
      width: 15px;
      height: 15px;
      background: url('https://www.milesweb.com/assets/images/common-icons/check-mark.svg') no-repeat;
      background-size: auto;
    }

    .plan-list li,
    .plan-view-btn span {
      flex-flow: row wrap;
      font-size: 14px;
      position: relative;
    }


    .plans-border {
      padding-bottom: 2px;
      text-decoration: underline;
      text-decoration-color: #ABABAB;
      text-decoration-style: dashed;
      text-underline-position: under;
    }

    .plan-recom-offer-col .plan-btn {
      --pad-y: .7rem;
      --pad-x: 1.6rem;
      background: linear-gradient(90deg, var(--accent), #d8ffdc);
      border: none;
      color: var(--bg-2);
      font-weight: 800;
      border-radius: 50px;
      padding: var(--pad-y) var(--pad-x);
      box-shadow: 0 10px 30px rgba(9, 30, 45, .12);
      transition: transform .25s ease, box-shadow .25s ease;
      position: relative;
      overflow: hidden;
    }


    /* New/Modified Styles for Main Section Redesign and Animations */

    /* General smooth transitions for interactive elements */
    .btn-primary,
    .money-back,
    .features-list li {
      transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    }

    /* Hover effect for the main button */
    .btn-primary:hover {
      transform: translateY(-3px);
      /* Slight lift */
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
      /* More pronounced shadow */
    }

    /* Hover effect for feature list items (optional, but adds polish) */
    .features-list li:hover {
      transform: translateX(5px);
      /* Slide slightly to the right */
      color: var(--primary-blue);
      /* Highlight text on hover */
    }

    .features-list li:hover svg {
      fill: var(--primary-blue);
      /* Change checkmark color on hover */
    }

    /* Ensure SVG images have smooth transitions if they change properties */
    .hero-content svg image {
      transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    }

    /* Refine fadeInUp animation for a smoother start */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
        /* Start slightly lower */
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Adjust animation delays for a more natural flow */
    .png image {
      animation-delay: 0.3s;
      /* Start earlier */
    }

    .ai image {
      animation-delay: 0.8s;
      /* Staggered after PNG */
    }

    .akexmbackground image {
      animation-delay: 1.3s;
      /* Staggered after AI */
    }

    .verify image {
      animation-delay: 1.8s;
      /* Staggered after background */
    }

    /* Add a subtle pulse to the pricing text to draw attention */
    .mw-ban-price {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.02);
      }

      100% {
        transform: scale(1);
      }
    }

    /* Adjust main section background for better contrast and depth */
    .main {
      /* Keep your existing background properties */
      background: url('https://moxiworks.com/wp-content/themes/elxr/dist/images/moxiworks-icon-light-green-angled.svg') no-repeat left -215px bottom -445px,
        radial-gradient(1200px 600px at 88% 100%, #116E91 0%, #0C394E 100%);
      background-size: 1100px, cover;
      padding-top: 8rem;
      /* Add more top padding to push content down from fixed navbar */
      padding-bottom: 6rem;
      /* Add more bottom padding */
      min-height: 80vh;
      /* Ensure it takes up a good portion of the viewport height */
      display: flex;
      /* Use flexbox for vertical centering if content is short */
      align-items: center;
      /* Vertically center content */
    }

    /* Refine heading styles for better visual hierarchy */
    h1.display-4 {
      font-size: 2.8rem;
      /* Larger on desktop */
      line-height: 1.2;
    }

   
    /* Ensure checkmark icons are visually distinct */
    .features-list li svg {
      color: var(--highlight-success);
      /* Explicitly set checkmark color */
      flex-shrink: 0;
      /* Prevent shrinking on smaller screens */
    }

    /* Adjust button size for better impact */
    .btn-primary.btn-lg {
      padding: 0.75rem 2rem;
      font-size: 16px;
    }

    /* Ensure the money-back text is clearly visible */
    .money-back {
      font-size: 1.1rem;
      font-weight: 500;
      opacity: 0.9;
      /* Slightly less prominent than main text */
    }

    /* Adjust the SVG container to ensure it scales well */
    #lottie-container {
      max-width: 100%;
      /* Ensure it doesn't overflow */
      height: auto;
      /* Maintain aspect ratio */
      margin-top: 0 !important;
      /* Remove negative margin if not needed with new layout */
    }

    /* Custom styles for responsive pricing plans and animations */
    /* Responsive adjustments for plan columns */
    .plan-container-4col .plan-col {
      width: calc(93% / 3);
      /* Approximately 4 columns with some margin */
      margin: 0 10px 20px;
      text-align: start;
      transition: all 0.3s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease;
    }


 @media (max-width: 768px) {
      h1.display-4 {
        font-size: 2.5rem;
        /* Adjust for smaller screens */
      }

      .main {
        padding-top: 4rem;
        padding-bottom: 4rem;
      }
    }



    /* Adjust for medium screens (e.g., tablets) */
    @media (max-width: 992px) {
      .plan-container-4col .plan-col {
        width: calc(95% / 2);
        /* 2 columns per row */
        margin: 0 10px 20px;
      }
    }

    /* Adjust for small screens (e.g., mobile phones) */
    @media (max-width: 768px) {
      .plan-container-4col .plan-col {
        width: 90%;
        /* 1 column per row */
        margin: 0 auto 20px auto;
        /* Center the single column */
        padding: 30px 20px;
        /* Adjust padding for smaller screens */
      }
    }

    /* Ensure the plan-container itself is flexible */
    .plan-container {
      display: flex;
      flex-flow: row wrap;
      /* Allows items to wrap to the next line */
      justify-content: center;
      /* Centers items when they don't fill a row */
      padding: 0 5px;
      margin: 84px auto 0;
    }

    /* Hover effect for all plan columns */
    .plan-col:hover {
      transform: translateY(-8px) scale(1.02);
      /* Lift and slightly enlarge on hover */
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      /* More pronounced shadow */
      border-color: var(--accent);
      /* Highlight border on hover */
    }

    /* Animation for the "Best deal" label */
    .plan-best-deal {
      position: absolute;
      width: 100%;
      top: -46px;
      left: 0;
      text-align: center;
      padding: 7px 0 11px;
      overflow: hidden;
      z-index: 1;
      /* Ensure it's above the card but below the content */
      animation: pulse-deal 2s infinite ease-in-out;
      /* Add a pulsing animation */
    }

    @keyframes pulse-deal {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.05);
        opacity: 0.9;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Animation for the "Save" badge */
    .plan-save {
      animation: bounceIn 1s ease-out forwards;
      animation-delay: 0.5s;
      /* Stagger the animation */
      opacity: 0;
      /* Start hidden */
    }

    @keyframes bounceIn {
      0% {
        transform: scale(0.3);
        opacity: 0;
      }

      50% {
        transform: scale(1.05);
        opacity: 1;
      }

      70% {
        transform: scale(0.9);
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Add a subtle animation to the plan buttons on hover */
    .plan-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 25px rgba(9, 30, 45, .2);
    }

    /* Sweep effect for the button (already present, but ensure it's smooth) */
    .plan-btn::after {
      content: "";
      position: absolute;
      left: -100%;
      top: 0;
      height: 100%;
      width: 60%;
      transform: skewX(-25deg);
      background: rgba(255, 255, 255, 0.25);
      transition: left 0.7s ease;
    }

    .plan-btn:hover::after {
      left: 120%;
    }

    /* Styles for hidden features and arrow rotation */
    .hidden-features {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out;
      /* Smooth transition for height */
    }

    .uk-plns-arrow {
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .uk-plns-arrow.rotated {
      transform: rotate(90deg);
      /* Rotate arrow when expanded */
    }


    .b2b-container {
      font-family: "open-sans";
      width: 1200px;
      margin: 0 auto 20px auto;
    }

    .b2bPkgTable {
      border-collapse: collapse;
      width: 1200px;
      position: relative;
      margin: 0 auto;
    }

    .b2bPkgTable__TR {
      display: table-row;
    }

    .b2bPkgTable__TR+.b2bPkgTable__TR:nth-child(even) .b2bPkgTable__TD:not(:first-child) {
      background: #f7f7f7;
    }

    .b2bPkgTable__TD {
      display: table-cell;
      border: 1px solid #e5e5e5;
      font-size: 14px;
      color: #909090;
      width: 181px;
      text-align: center;
      background: #fff;
    }

    .b2bPkgTable__TD.active {
      color: #303030;
    }

    .b2bPkgTable__TD.active .b2bPkg__btn {
      background: #8659D3FF;
      color: #fff;
      border: 0px;
    }

    .b2bPkgTable__TD:nth-child(1) {
      width: 280px;
      text-align: left;
      color: #303030;
      font-weight: 600;
      font-size: 12px;
    }

    .b2bPkgTable__blank {

      border-left: 0px solid #f5f4f5;
      border-top: 0px solid #f5f4f5;
      border-bottom: 1px solid #e5e5e5;
    }

    .b2bPkgTable__Head {
      /* height: 224px; */
      width: 224px;
      position: relative;
      overflow: hidden;
      border-top: 0px;
      vertical-align: top;
    }




     .active  .animate {
      background: #F6F3FCFF !important;
      position: absolute;
    width: 100%;
    height: 100%;

    }


    .b2bPkgTable__Head--green:after {
      background: #8659D3FF;
      height: 4px;
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      z-index: 10;
    }

    .b2bPkgTable__Head--green .animate {
      position: absolute;
      width: 100%;
      height: 100%;
      background: #F6F3FCFF;
      top: -100%;
      transition: all 0.3s ease;
    }

    .b2bPkgTable__Head--green .animate.show {
      top: 0;
    }

    .b2bPkgTable__Head--yellow:after {
      background: #40424a;
      height: 1px;
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      z-index: 10;
    }

    .b2bPkgTable__Head--yellow .animate {
      position: absolute;
      width: 100%;
      height: 100%;
      background: #ffff;
      top: -100%;
      transition: all 0.3s ease;
    }

    .b2bPkgTable__Head--yellow .animate.show {
      top: 0;
    }

    .b2bPkgTable__inner {
      padding: 14px 10px;
      position: relative;
    }

    .b2bPkgTable__mask-TD {
      height: 100%;
      position: absolute;
      top: 0px;
      bottom: 0;
      z-index: 0;
    }

    .b2bPkgTable__mask-TD:hover {
      box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.37);
      cursor: pointer;



    }




    .b2bPkgTable__mask-TD.current {
      box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.37);
      cursor: pointer;
    }

    .b2bPkgTable__mask-TD2 {
      width: 222px;
      left: 283px;
    }

    .b2bPkgTable__mask-TD3 {
      width: 224px;
      left: 504px;
    }

    .b2bPkgTable__mask-TD4 {
      /* width: 181px;
      left: 645px; */
      width: 224px;
      left: 729px;
    }

    .b2bPkgTable__mask-TD5 {
      width: 224px;
      left: 952px;
    }

    .b2bPkgTable__mask-TD6 {
      width: 181px;
      left: 1009px;
    }

    .tag-recommended {
      background: #8659D3FF;
      width: 100px;
      height: 23px;
      line-height: 23px;
      text-align: center;
      position: absolute;
      /* left: 40px; */
      text-transform: uppercase;
      font-size: 10px;
      color: #fff;
      border-radius: 0 0 2px 2px;
      z-index: 11;
      top: 0;
      font-weight: 500;
      transition: all ease;
      /* transform: scale(1); */

      transform: translateX(61%);
    }

    .tag-recommended.hover {
      transform: scale(1.1);
    }

    .b2bPkg {
      text-align: center;
    }



    .b2bPkg__price {
      height: 48px;
      margin: 0 auto;
      /* text-align: right;
      width: 105px; */
    }

    .b2bPkg__mrp {
      text-decoration: line-through;
      color: #d7232a;
      font-size: 14px;
      font-weight: bold;
    }

    .b2bPkg__offer {
      font-size: 35px;
      color: #333;
      line-height: 20px;
    }

    .b2bPkg__offer span {
      font-size: 25px !important;
      font-weight: bold;
    }

    .b2bPkg__validity {
      height: 35px;
      font-size: 12px;
      color: #606060;
    }

    .b2bPkg__btn {
      height: 32px;
      line-height: 32px;
      background-color: #fff;
      display: inline-block;
      font-size: 14px;
      color: rgba(9, 30, 45, .98);
      border: 1px solid rgba(9, 30, 45, .98);
      font-weight: 600;
      border-radius: 3px;
      text-align: center;
      text-decoration: none;
      width: 132px;
      cursor: pointer;
    }

    .b2bPkg__btn:hover {
      background: #ea001b;
      color: #fff;
    }

    .b2bPkg__sample {
      padding-top: 6px;
      position: relative;
      z-index: 99;
    }

    .b2bPkg__sample a {
      color: #4a4a4a;
      font-family: "open-sans--semi-bold";
      font-size: 12px;
    }

    .icon-nAv {
      height: 22px;
      width: 22px;
      margin: auto;
      display: inline-block;
      position: relative;
      border-radius: 50%;
      border: 1px solid #eb142d;
      background: #fbe9e9;
      margin-top: -3px;
      margin-bottom: -5px;
    }

    .icon-nAv:before,
    .icon-nAv:after {
      content: "";
      height: 12px;
      width: 2px;
      background: #ea001b;
      transform: rotate(45deg);
      display: inline-block;
      vertical-align: baseline;
      position: absolute;
      top: 5px;
      left: 10px;
      z-index: 1;
    }

    .icon-nAv:after {
      transform: rotate(-45deg);
    }

    .active .icon-nAv {
      background: #ea001b;
    }

    .active .icon-nAv:before,
    .active .icon-nAv:after {
      background: #fff;
    }

    .icon-Av {
      display: inline-block;
      width: 22px;
      height: 22px;
      position: relative;
      border-radius: 50%;
      border: 1px solid #00bd00;
      background: #e8f7e7;
      margin-top: -3px;
      margin-bottom: -5px;
    }

    .icon-Av:after {
      content: "";
      width: 10px;
      height: 5px;
      border: solid 1px #00bd00;
      border-width: 0 0 2px 2px;
      transform: rotate(-45deg);
      position: absolute;
      left: 5px;
      top: 6px;
      z-index: 1;
    }

    .active .icon-Av {
      background: #00bd00;
    }

    .active .icon-Av:after {
      border: solid 1px #fff;
      border-width: 0 0 2px 2px;
    }

    .font-semibold {
      font-family: "open-sans--semi-bold";
    }

    .font-bold {
      font-weight: 700;
    }



    .plan-info-list {
      font-size: 12px;
      margin: 0 0 0 0;
      padding: 0 10px 10px 10px;
      text-align: center;
    }

    .plan-info-list__head {
      font-size: 28px;
      line-height: 28px;

      color: #303030;
      text-align: center;
      padding: 5px 0 10px 0;
    }

    .plan-info-list__pHead {
      font-size: 24px;
      font-family: "open-sans--semi-bold";
      color: #303030;
      text-align: center;
      padding: 5px 20px;
    }

    .plan-info-list__pHead span {
      display: block;
      font-size: 16px;
    }

    .plan-info-list__con {
      font-size: 12px;
      color: #606060;
      text-align: center;
      padding: 5px 20px;
    }

    .plan-info-list ul {
      margin: 0;
      padding: 0;
    }

    .plan-info-list li {
      margin: 0 12px;
      padding: 0 0 5px 20px;
      position: relative;
      list-style-type: none;
      text-align: left;
      display: inline-block;
      color: #303030;
      box-sizing: border-box;
      font-size: 16px;
      font-family: "open-sans--bold";
    }

    .plan-info-list li:after {
      content: "";
      display: block;
      border: solid #fff;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
      position: absolute;
      top: 5px;
      left: 7px;
      border-color: #24a427;
      width: 4px;
      height: 8px;
    }

    .city-select-box {
      width: 440px;
      height: 37px;
      margin: 0 auto 25px auto;
      background: #fdface;
      padding: 8px 10px;
      box-sizing: border-box;
    }

    .city-dropdown {
      width: 189px;
      float: left;
    }

    .city-dropdown label {
      float: left;
      font-size: 12px;
      font-family: "open-sans--bold";
      margin-right: 10px;
      color: #666;
      line-height: 24px;
    }

    .city-select {
      min-width: 104px;
      height: 24px;
      border: 1px solid #d7d7d7;
      position: relative;
      float: left;
      background: #fff;
    }

    .city-select select {
      -moz-appearance: none;
      -webkit-appearance: none;
      appearance: none;
      background-color: #fff;
      border: 0;
      padding: 2px 5px;
      font-size: 12px;
      outline: none;
      width: 100%;
      color: #000;
    }

    .city-select:after {
      content: "";
      display: block;
      border: solid #fff;
      border-width: 0 1px 1px 0;
      transform: rotate(47deg);
      position: absolute;
      top: 50%;
      right: 7px;
      border-color: #333;
      width: 4px;
      height: 4px;
      margin-top: -2px;
    }

    .othercity {
      font-size: 10px;
      text-align: center;
      color: #606060;
      padding: 5px 0;
    }

    .othercity a {
      color: #303030;
      text-decoration: none;
    }

    .breadcrum {
      font-size: 10px;
      color: #909090;
      padding: 10px 0;
    }

    .animation-delay .animate--2 {
      transition: all 0.1s ease !important;
    }

    .animation-delay .animate--3 {
      transition: all 0.3s ease !important;
    }

    .animation-delay .animate--4 {
      transition: all 0.5s ease !important;
    }

    .animation-delay .animate--5 {
      transition: all 0.7s ease !important;
    }

    .animation-delay .animate--6 {
      transition: all 0.9s ease !important;
    }

    .bodyFixed {
      overflow: hidden;
    }

    .b2b-grid-layer {
      content: "";
      position: fixed;
      background: rgba(0, 0, 0, 0.7);
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      display: none;
      z-index: 998;
    }

    .m-b2b-grid-pop {
      position: fixed;
      top: 50%;
      left: 50%;
      right: 0;
      bottom: 0;
      z-index: 999;
      background: #f5f4f5;
      padding: 10px 0 0 0;
      display: none;
      overflow: hidden;
      width: 1280px;
      height: 600px;
      margin: -300px 0 0 -640px;
      box-sizing: border-box;
      border-radius: 4px;
    }

    .m-b2b-grid-pop .b2bPkgTable__Head {
      height: 200px;
    }

    .m-b2b-grid-pop .b2bPkg__name {
      margin-top: 20px;
    }

    .m-b2b-grid-pop .b2bPkgTable__inner {
      padding: 6px 10px 6px 10px;
    }

    .m-b2b-grid-pop__close {
      width: 28px;
      height: 28px;
      position: absolute;
      right: 10px;
      top: 10px;
      z-index: 6;
    }

    .m-b2b-grid-pop__close:after,
    .m-b2b-grid-pop__close:before {
      content: "";
      display: block;
      position: absolute;
      width: 2px;
      height: 18px;
      left: 12px;
      background-color: #666666;
    }

    .m-b2b-grid-pop__close:before {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }

    .m-b2b-grid-pop__close:after {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }

    .m-b2b-grid-pop .b2bTable {
      padding: 10px;
    }

    /* iadvantage grid css */
    .b2bPkgTable--colm5 {
      /* width: calc(1400px - 0px);
   */
      margin: 0;
      margin-top: 48px;
      float: left;
     
    }

    .b2bPkgTable--iadvantage {
      width: 181px;
      margin: 0;
      float: right;
    }

    .b2bPkgTable--iadvantage .b2bPkgTable__TD {
      font-size: 14px;
      color: #909090;
      /* text-align: center; */
      font-family: "open-sans";
    }

    .b2bPkgTable--iadvantage .b2bPkgTable__TD.active {
      color: #303030;
    }

    /* .b2bPkgTable--iadvantage .b2bPkgTable__TD.active .b2bPkg__btn {
      background: #ea001b;
      color: #fff;
    } */

    .b2bPkgTable--iadvantage .b2bPkgTable__mask-TD1 {
      left: 0 !important;
      width: 180px;
    }

    .b2bPkgTable--iadvantage .b2bPkgTable__TR+.b2bPkgTable__TR:nth-child(even) .b2bPkgTable__TD {
      background: #f7f7f7;
    }

    .b2bPkgTable--iadvantage .b2bPkgTable__TR+.b2bPkgTable__TR .b2bPkgTable__inner {
      padding: 10px 8px;
      line-height: 16px;
    }

    .b2bPkgTable--iadvantage .b2bPkgTable__TR+.b2bPkgTable__TR .b2bPkgTable__inner a {
      text-decoration: underline;
      color: #d7232a;
    }

    .sample-image img {
      width: 100%;
      height: auto;
    }

    /* Special Packages CSS */
    .no-overflow {
      overflow: hidden;
    }

    .info-buy-a-pack {
      border-radius: 4px;
      background: #fbe9e9;
      border: 2px dashed #ee6677;
      text-align: center;
      width: 647px;
      box-sizing: border-box;
      line-height: 35px;
      font-size: 24px;
      font-family: "open-sans--semi-bold";
      color: #4a4a4a;
      padding: 10px;
      margin: 0 0 14px 281px;
    }

    .info-buy-a-pack span {
      display: block;
      font-size: 20px;
    }

    .clear {
      clear: both;
    }


    .clearfix:before,
    .clearfix:after {
      content: " ";
      display: table;
    }

    .clearfix:after {
      clear: both;
    }

    .b2b-container {
      padding: 10px;
      font-family: var(--open-sans);
    }

    .b2bTable * {
      box-sizing: border-box;
    }

    .b2bTable {
      font-size: 12px;
      padding: 10px 0 0 0;
    }

    .b2bTable__TR {
      display: table;
      width: 100%;
    }

    .b2bTable__TD {
      display: table-cell;
      width: 33.3%;
      text-align: center;
      padding: 10px 5px;
      background: #f4f4f4;
      color: #909090;
    }

    .b2bTable__TD:nth-child(2) {
      position: relative;
    }

    .b2bTable__TD:nth-child(2):after {
      background: #ccc;
      content: "";
      width: 1px;
      top: 10px;
      bottom: 10px;
      right: 0;
      position: absolute;
    }

    .b2bTable__TD:nth-child(2):before {
      background: #ccc;
      content: "";
      width: 1px;
      top: 10px;
      bottom: 10px;
      left: 0;
      position: absolute;
    }

    .b2bTable__TD.active {
      color: #303030;
      font-family: var(--open-sans-semi-bold);
    }

    .b2bTable__heading {
      text-align: center;
      padding: 30px 10px 12px 10px;
      font-size: 14px;
      color: #303030;
    }

    .b2bTable__TH {
      width: 33.3333%;
      height: 187px;
      display: table-cell;
      vertical-align: top;
      border-right: solid 1px #e1e1e1;
      line-height: 18px;
      position: relative;
      cursor: pointer;
      padding: 5px;
      border-top: solid 1px #e1e1e1;
      border-bottom: solid 1px #e1e1e1;
      text-align: center;
    }

    .b2bTable__TH:first-child {
      border-left: solid 1px #e1e1e1;
    }

    .b2bTable__TH.active {
      background-color: #e8f7e7;
    }

    .b2bTable__TH.active:after {
      background: #1bba14;
      height: 5px;
      position: absolute;
      content: "";
      left: -1px;
      bottom: -4px;
      right: -1px;
    }

    .b2bTable__TH.active:before {
      z-index: 11;
      content: "";
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      border-top: 11px solid transparent;
      border-bottom: 12px solid transparent;
      border-right: 12px solid #2bb700;
      left: 50%;
      bottom: -18px;
      transform: rotate(-90deg);
      margin-left: -4px;
    }

    .b2bTable__btn {
      height: 24px;
      line-height: 24px;
      background-color: #fff;
      display: block;
      font-size: 12px;
      color: #ea001b;
      border: 1px solid #ea001b;
      font-family: var(--open-sans-semi-bold);
      border-radius: 3px;
      text-align: center;
      text-decoration: none;
    }

    .b2bTable__TH.active .b2bTable__btn {
      background: #ea001b;
      color: #fff;
    }

    /* b2bPkg */
    .b2bPkg__name {
      height: 42px;
      margin-top: 28px;
      font-size: 16px;
      font-weight: 500;
      color: #606060;
      line-height: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .b2bPkg__name span {
      font-family: var(--open-sans-semi-bold);
    }

    .b2bPkg__price {
      height: 45px;
      margin: 0 auto;
    }

    .b2bPkg__mrp {
      text-decoration: line-through;
      color: #d7232a;
      font-size: 12px;
    }

    .b2bPkg__offer span {
      font-size: 16px;
      font-family: var(--open-sans-bold);
      color: #333;
    }

    /* .b2bPkg__validity {
      height: 24px;
      font-size: 10px;
      color: #606060;
    } */

    .b2bPkg__tag {
      background: #ECFDFDFF;
      width: 77px;
      height: 12px;
      line-height: 13px;
      text-align: center;
      text-transform: uppercase;
      position: absolute;
      top: -6px;
      font-size: 8px;
      left: 50%;
      margin-left: -38px;
      font-family: var(--open-sans-semi-bold);
      color: #333;
    }

    .b2bPkg__sample {
      padding-top: 8px;
    }

    .b2bPkg__sample a {
      font-size: var(--font-size-sm);
      color: var(--gray-dark);
      text-decoration: none;
      font-family: var(--open-sans-semi-bold);
    }

    /* icons */
    .icon-nAv {
      height: 22px;
      width: 22px;
      margin: auto;
      display: inline-block;
      position: relative;
      border-radius: 50%;
      border: 1px solid #eb142d;
      background: #fbe9e9;
      margin-top: -3px;
      margin-bottom: -5px;
    }

    .icon-nAv:before,
    .icon-nAv:after {
      content: "";
      height: 12px;
      width: 2px;
      background: #ea001b;
      transform: rotate(45deg);
      position: absolute;
      top: 4px;
      left: 9px;
      z-index: 1;
    }

    .icon-nAv:after {
      transform: rotate(-45deg);
    }

    .active .icon-nAv {
      background: #ea001b;
    }

    .active .icon-nAv:before,
    .active .icon-nAv:after {
      background: #fff;
    }

    .icon-Av {
      display: inline-block;
      width: 22px;
      height: 22px;
      position: relative;
      border-radius: 50%;
      border: 1px solid #00bd00;
      background: #e8f7e7;
      margin-top: -3px;
      margin-bottom: -5px;
    }

    .icon-Av:after {
      content: "";
      width: 10px;
      height: 5px;
      border: solid 1px #00bd00;
      border-width: 0 0 2px 2px;
      transform: rotate(-45deg);
      position: absolute;
      left: 4px;
      top: 5px;
      z-index: 1;
    }

    .active .icon-Av {
      background: #00bd00;
    }

    .active .icon-Av:after {
      border: solid 1px #fff;
      border-width: 0 0 2px 2px;
    }



    .table td.active {
      background-color: #0c394e !important;
      /* Dark highlight */
      color: #fff !important;
      /* White text */
      font-weight: 600;
      border: 1px solid #0c394e !important;
    }

    /* sellYourProperty */



    /* language-selector */
    .language-selector {

      top: 12px;
      left: 1164px;
      width: 106.5625px;
      height: 40px;
      padding: 0 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      line-height: 22px;
      font-weight: 500;
      color: #171A1FFF;
      /* neutral-900 */
      background: #00000000;
      /* transparent */
      opacity: 1;
      border: none;
      border-radius: 12px;
      gap: 8px;
    }

    .language-selector .icon {
      width: 16px;
      height: 16px;
      fill: #171A1FFF;
      /* neutral-900 */
    }

    /* Hover */
    .language-selector:hover {
      color: #171A1FFF;
      /* neutral-900 */
      background: #00000000;
      /* black */
    }

    /* Pressed */
    .language-selector:hover:active {
      color: #171A1FFF;
      /* neutral-900 */
      background: #00000000;
      /* black */
    }

    /* Disabled */
    .language-selector:disabled {
      opacity: 0.4;
    }

    .sellYourProperty {

      width: 157.3125px;
      height: 40px;
      padding: 0 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      line-height: 22px;
      font-weight: 500;
      color: #171A1FFF;
      /* neutral-900 */
      background: #FFFFFFFF;
      /* white */
      opacity: 1;
      border-radius: 12px;
      border-width: 1px;
      border-color: #DEE1E6FF;
      /* neutral-300 */
      border-style: solid;
    }

    /* Hover */
    .sellYourProperty:hover {
      color: #171A1FFF;
      /* neutral-900 */
      background: #FFFFFFFF;
      /* white */
    }

    /* Pressed */
    .sellYourProperty:hover:active {
      color: #171A1FFF;
      /* neutral-900 */
      background: #FFFFFFFF;
      /* white */
    }

    /* Disabled */
    .sellYourProperty:disabled {
      opacity: 0.4;
    }

    .text {
      font-size: 19px;
      line-height: 32px;
      font-weight: 600;
      color: rgb(239, 235, 235);
    }



    .main-heading {
      width: 100%;
      font-size: 36px;
      line-height: 60px;
      font-weight: 800;
      color: #ffff;
    }

.insights{
    padding-top: 80px;

}

    @media (max-width: 768px) {
      .main-heading {
        width: 100%;
      }

    }

    .simpleProcess {
      text-align: center;
      padding-top: 80px;
      padding-bottom: 80px;
    }


    .simpleProcess .row {

      margin-top: 46px;

    }



    .simpleProcess h2, .insights h2 {

      font-size: 36px;
      line-height: 40px;
      font-weight: 600;
      color: #171A1FFF;
           text-align: center;
    }

    /* Container */
    .wpcontainer {
      position: relative;

      background: #fff;
      border-radius: 18px;
      box-shadow: 0px 0px 1px #171a1f12, 0px 0px 2px #171a1f1F;
      padding: 24px;
      text-align: center;
      font-family: "Encode Sans", sans-serif;
    }

    /* Tag */
    .tag {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .tag .tag-item {
      width: 68px;
      height: 26px;
      font-size: 12px;
      font-weight: 600;
      background: #0EA5A8;
      color: white;
      padding: 4px 12px;
      border-radius: 9999px;
    }

    /* Card Content */
    .card-content h3 {
      font-size: 20px;
      font-weight: 700;
      margin: 40px 0 12px 0;
      color: #171A1F;
    }

    .card-content p {
      font-size: 14px;
      line-height: 20px;
      color: #565E6C;
      margin-bottom: 24px;
    }

    .card-content .icon img {
      font-size: 40px;

      filter: invert(49%) sepia(96%) saturate(370%) hue-rotate(136deg) brightness(95%) contrast(92%);
      width: 48px;
      height: 48px;
    }

    /* Responsive adjustments for general elements */
    @media (max-width: 992px) {
      h1 {
        font-size: 38px;
      }

      .subtitle {
        font-size: 20px;
      }

      .features-list li {
        font-size: 16px;
        line-height: 24px;
      }

      .money-back {
        font-size: 13px;
      }

      .main-heading {
        font-size: 32px;
        line-height: 48px;
      }

      .simpleProcess h2,
      .bottom-section h2,
      .faq-title {
        font-size: 30px;
        line-height: 36px;
      }

      .card-content h3 {
        font-size: 18px;
      }

      .card-content p {
        font-size: 13px;
        line-height: 18px;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        height: auto;
        padding: 10px 0;
      }

      .navbar-brand img {
        width: 180px;
        height: auto;
      }

      .navbar-collapse {
        background: var(--wb-background);
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        padding: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
      }

      .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .navbar-nav .nav-link {
        padding: 8px 0;
        font-size: 16px;
        color: var(--dark-text);
      }

      .navbar-nav .nav-link:hover {
        color: var(--primary-blue);
      }

      .dropdown-menu.mega-menu {
        position: static;
        transform: none;
        width: auto;
        max-width: none;
        box-shadow: none;
        border-radius: 0;
        padding: 1rem 0;
        background-color: transparent;
      }

      .mega-menu .row>div {
        padding: 0 1rem;
      }

      .mega-menu h6 {
        color: var(--dark-text);
        margin-top: 1rem;
      }

      .mega-menu .product-item span {
        color: var(--dark-text);
      }

      .d-flex.align-items-center.gap-3 {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
      }

      .sellYourProperty,
      .btn-account,
      .language-selector {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
      }

      .language-selector {
        color: var(--dark-text);
      }

      .main {
        padding-top: 6rem;
        padding-bottom: 4rem;
      }

      h1.main-heading {
        font-size: 28px;
        line-height: 40px;
      }

      .text {
        font-size: 16px;
        line-height: 24px;
      }

      .features-list li {
        font-size: 15px;
        line-height: 22px;
      }

      .btn-primary.btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 15px;
      }

      .money-back {
        font-size: 12px;
      }

      .pricing-plans h2 {
        font-size: 28px;
        line-height: 36px;
      }

      .subtitle {
        font-size: 18px;
        line-height: 24px;
      }

      .price-month {
        flex-wrap: nowrap;
        margin-top: 40px;
      }


      .price-month button., .price-month .active {
        width: 100%;
        margin: 5px;
        font-size: 12px;
      }

    
      .b2bPkgTable {
        width: 100%;
      }

      .b2bPkgTable__TD:nth-child(1) {
        width: 150px;
        font-size: 10px;
      }

      .b2bPkgTable__TD {
        font-size: 10px;
        width: auto;
      }

      .b2bPkgTable__Head {
        width: auto;
      }

      .tag-recommended {
        transform: translateX(0);
        left: 50%;
        margin-left: -50px;
      }

     .simpleProcess h2, .insights h2{
        font-size: 28px;
        line-height: 36px;
      }

      .wpcontainer {
        padding: 15px;
      }

      .card-content h3 {
        font-size: 18px;
        margin: 20px 0 10px 0;
      }

      .card-content p {
        font-size: 13px;
        line-height: 18px;
      }

      .bottom-section h2 {
        font-size: 28px !important;
        line-height: 36px;
      }

      .bottom-section .right p {
        font-size: 0.85rem;
        line-height: 28px;
      }

      .faq-title {
        font-size: 28px;
        line-height: 36px;
      }

      .faq-question {
        font-size: 15px;
      }

      footer .main-footer {
        margin-top: 40px;
      }

      footer .widget {
        padding: 10px;
        margin-bottom: 20px;
      }

      footer .widget-title {
        margin-bottom: 10px;
      }

      footer input[type="text"],
      footer input.submitbutton.ripplelink {
        font-size: 12px;
        padding: 8px 10px;
      }
    }

    @media (max-width: 576px) {
      .main {
        padding-top: 8rem;
        padding-bottom: 3rem;
      }

      h1.main-heading {
       font-size: 20px;
        line-height: 36px;
      }

      .text {
        font-size: 14px;
        line-height: 20px;
      }

      .features-list li {
        font-size: 14px !important;
        line-height: 20px;
      }

      .features-list li img {
        width: 18px;
        height: 18px;
      }

      .btn-primary.btn-lg {
        padding: 0.5rem 1.2rem;
        font-size: 14px;
        margin-left: 4px;
                font-weight: 600;
        border-radius: 8px !important;
      }

      .money-back {
        font-size: 14px;
      }

      .pricing-plans h2 {
        font-size: 24px;
        line-height: 32px;
      }

      .subtitle {
        font-size: 16px;
        line-height: 22px;
      }

      .price-month button {
        width: auto;
        margin: 5px 0;
      }


      .b2bPkgTable__TD:nth-child(1) {
        width: 120px;
      }

.simpleProcess h2, .insights h2 {
        font-size: 24px;
        line-height: 32px;
      }

      .card-content h3 {
        font-size: 16px;
      }

      .card-content p {
        font-size: 12px;
        line-height: 16px;
      }

    

      .bottom-section .right p {
        font-size: 0.8rem;
        line-height: 24px;
      }

      .faq-title {
        font-size: 24px;
        line-height: 32px;
      }

      .faq-question {
        font-size: 14px;
      }

      .faq-item {
        padding: 6px 15px;
      }

      .faq-answer p {
        font-size: 13px;
      }
      .b2bPkg__offer{
            font-size: 14px !important;
      }
      .b2bPkg__offer span{
          font-size: 15px !important;
      }
    }



.blogs{

  padding-top: 80px;
  padding-bottom: 80px;
}

.blogs h2{
text-align: center;
  font-weight: 600;
  color: #171A1FFF;
  font-size: 36px;
}


    .insights-cards {
      display: flex;
      gap: 20px;
      margin-top: 80px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .insight-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      width: 320px;
      display: flex;
      flex-direction: column;
      color: #eee;
      box-shadow: 0px 0px 1px #171a1f12, 0px 0px 2px #171a1f1F;
      transition: transform 0.3s ease;
    }

    .insight-card:hover {
      transform: translateY(-5px);
    }

    .insight-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 1px solid #8659D3FF;
    }

    .insight-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .insight-tag {
      display: inline-block;
    background-color:#8659D3FF;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    width: fit-content;
    font-weight: 600;
    }

    .insight-content h3 {
      font-size: 1.1rem;
      line-height: 1.25;
      font-weight: 700;
      margin-bottom: 12px;
      color: #171A1FFF;
    }

    .insight-content p {
      font-size: 0.85rem;
      line-height: 1.4;
      margin-bottom: 20px;
      color: #565E6C;
      flex-grow: 1;
    }

    .insight-read-more {
      font-size: 0.85rem;
      color: #7a38f4;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }

    .insight-read-more:hover {
      text-decoration: underline;
    }

    .insight-read-more svg {
      width: 12px;
      height: 12px;
      fill: #7a38f4;
      transition: transform 0.3s ease;
    }

    .insight-read-more:hover svg {
      transform: translateX(3px);
    }

    /* Responsive */
    @media (max-width: 1000px) {
      .insights-cards {
        justify-content: center;
      }
      
      .insight-card {
        width: 90%;
        max-width: 400px;
      }
    }

    .reviewsection{

      margin-top: 80px;
    }

    .Company{
      font-weight: 500; 
  color: #171A1FFF;
  font-size: 14px; 
    }

    footer{
      padding-top: 80px;
    }

    footer .bi{
color: #171A1FFF;

    }

    .plans-price i {
    align-self: flex-start;
    font-size: 16px;
    font-weight: 600;
    }



  .package-card {
  position: relative; /* Add this */
  border-radius: 12px;
  box-shadow: 0px 0px 1px #171a1f12, 0px 0px 2px #171a1f1F;
  background-color: #F6F3FCFF;
  padding: 1rem;
  margin-bottom: 1.5rem;
  min-height: 180px; /* optional: to ensure enough height for button */
}
.buy-btn {
    position: absolute;
    bottom: 20px;
    right: 23px;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.4rem 0.4rem;
    background-color: #8659D3FF;
    font-size: 13px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s 
ease;
    display: inline-block;
    margin-top: 0 !important;
}
    .package-price {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 5px !important;
      color: #8659D3FF;
    }
    .package-mrp {
      text-decoration: line-through;
      color:red;
      font-size: 0.9rem;
    }
    .validity {
      font-weight: 600;
      
      font-size: 14px;
      color: #8659D3FF;
      margin-bottom: 0.5rem;
    }
    
     .package-card p{
    color: #909090;
    font-weight: 500;
    font-size: 12px;
    margin-bottom:4px;
         
     }

    .buy-btn:hover {
      background-color: #5bb38a;
      color: white;
      text-decoration: none;
    }
    .package-image img {
      border-radius: 12px;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

.package-card  h3{
        font-size: 18px;
    font-weight: 600;
    color: #606060;

}

.ai-powered-lead-engine-network{
    
     height: 500px;
    object-fit: cover;
}

 .container-margin{
     margin-bottom: 70px;
 } 