 /* .membership-plans {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin: 60px 0;
        } */

        .membership-plans {
          display: grid;
          flex-wrap: wrap;
          justify-content: center;
          gap: 25px;
          margin: 60px 0;
          grid-template-columns: 1fr 1fr;
      }

        .plan-card {
            /* width: 300px; */
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .plan-header {
            position: relative;
            color: #fff;
            text-align: center;
            padding: 50px 15px 30px;
            font-size: 1.4em;
            font-weight: 600;
            overflow: hidden;
        }

        .plan-header::before {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
            animation: waveMove 4s infinite linear;
        }

        @keyframes waveMove {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .plan-price {
            text-align: center;
            font-size: 1.5em;
            color: #333;
            margin: 15px 0;
            font-weight: 700;
        }

        .plan-features {
            padding: 0 25px;
            color: #555;
        }

        .plan-features ul {
            list-style: none;
            padding: 0;
        }

        .plan-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .plan-features li::before {
            content: "✓";
            color: #2ecc71;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .plan-btn {
            display: block;
            text-align: center;
            margin: 25px auto 30px;
            padding: 10px 25px;
            font-weight: 600;
            color: #fff;
            border-radius: 25px;
            text-decoration: none;
            width: 70%;
            transition: all 0.3s ease;
        }

        .plan-btn:hover {
            filter: brightness(1.1);
            transform: translateY(-3px);
        }

        .plan-btn::after {
            content: " →";
            transition: transform 0.3s;
        }

        .plan-btn:hover::after {
            transform: translateX(4px);
        }

.comparison-table-container {
  max-width: 900px;
  margin: auto;
  background: #11295e;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.comparison-title {
  text-align: center;
  color: #e6ae2d!important;
  font-size: 28px;
  font-weight: 600;
  font-family: "Fira Sans", sans-serif;
  margin: 25px 0 10px;
  text-transform: uppercase;
}

.comparison-subtitle {
  text-align: center;
  color: #ffffffcc;
  font-size: 16px;
  margin-bottom: 25px;
}

table.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: left;
}

.comparison-table th {
  background-color: #e6ae2d;
  color: #0c1f41;
  font-size: 16px;
}

.comparison-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  
}

.accordion-header td{
color:white;

}

.accordion-content td{
color:white;
}

.tablebotton td {
 
  font-size: 16px;
  font-weight: bold;
}

/* ===== YES/NO ICONS ===== */
.yes {
  color: #e6ae2d !important;
  font-weight: bold;
  text-align: center;
}
.no {
  color: #ff4d4d !important;
  text-align: center;
  font-weight: bold;
}

/* ===== ACCORDION HEADERS ===== */
.accordion-header {
  background-color: #0c1f41;
  color: #e6ae2d;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-top: 3px solid #e6ae2d;
}

.accordion-header:hover {

  color: #0c1f41;
}

.accordion-header td {
  position: relative;
  padding: 16px 20px;
  font-size: 17px;
  letter-spacing: 0.3px;
}

/* Arrow Icon */
.accordion-arrow::before {
  content: "▼";
  font-size: 14px;
  color: #e6ae2d;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-header.active .accordion-arrow::before {
  transform: rotate(180deg);
  color: #fff;
}

/* Accordion content */
.accordion-content {
  display: none;
  background-color: #162b5a;
  transition: all 0.3s ease;
}

.accordion-content:hover {
  background-color: #1f3a7a;
}

/* Show active content */
.accordion-content.show {
  display: table-row;
}

/* ===== TOTAL ROW ===== */
.total-row {
  background-color: #e6ae2d;
  color: #0c1f41;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}

  .highlight-nutomo {
    color: #0c1f41; /* dark blue */
  }
  .highlight-nutomo-pro {
    color: #e6ae2d; /* gold */
  }
  .demo-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: nowrap;
    max-width: 900px;
    margin: 0 auto;
  }
  .demo-box {
    width: 420px;
    text-align: center;
    box-sizing: border-box;
  }
  .demo-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .demo-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 20px 0 10px 0;
    color: #0c1f41;
  }
  .demo-link {
    display: inline-block;
    color: #e6ae2d;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .demo-link:hover {
    color: #0c1f41;
    text-decoration: underline;
  }
/* theme version  */
.plan-header {
  padding: 65px 15px 65px;
}
.plan-header {
  /* background-image: url('/nutomo/wp-content/uploads/2022/02/nutomo-1theme.jpg')!important; */
  background-image: url('/nutomo/wp-content/uploads/2025/12/bg-11.jpg')!important;
  

  background-size: cover!important;
  background-position: center!important;
  background-repeat: no-repeat!important;
}
.membership-plans .plan-card:nth-child(2) .plan-header {
  background-image: url('/nutomo/wp-content/uploads/2025/12/bg-12.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* product  */
.header-theme {
  display: flex;
  align-items: center; 
  /* justify-content: center; */
  justify-content: space-between;
  gap: 10px;
}
img.theme-icon {
  width: 80px;
}
  /* Responsive fallback */
  @media(max-width: 900px) {
    .demo-container {
      flex-wrap: wrap;
      gap: 40px;
    }
    .demo-box {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
    }
  }
  @media(max-width: 900px) {
    .membership-plans {
      grid-template-columns: 1fr;
  }
  }

  .custom-product-features {
  margin-top: 8px;
  font-size: 13px;
  color: #555;
}

.custom-product-features div {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.custom-product-features i {
  font-size: 14px;
  color: #0073aa;
}
