/* ===== BUSINESS HERO ===== */
.biz-hero{
  position: relative;
  width: 100%;
  min-height: 58vh;

  /* ✅ navbar se gap */
  margin-top: 80px;

  display: flex;
  align-items: center;

  /* ✅ business/education background image */
  background: url("images/business.png")
              no-repeat center / cover;

  overflow: hidden;
}

/* overlay for readability */
.biz-hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.42));
}

/* content */
.biz-hero__inner{
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: 0 auto;
  color: #fff;
}

/* ✅ heading one line + left→right animation */
.biz-hero__title{
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.4px;

  /* one line on desktop */
  white-space: nowrap;

  /* animation */
  opacity: 0;
  transform: translateX(-40px);
  animation: slideLeftRight .9s ease-out both;
}

/* ✅ paragraph fade+up animation */
.biz-hero__text{
  margin: 0;
  max-width: 920px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.92);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.1s ease-out both;
  animation-delay: .2s;
}

/* Animations (same as your hero) */
@keyframes slideLeftRight{
  from{ opacity:0; transform: translateX(-40px); }
  to{ opacity:1; transform: translateX(0); }
}

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(20px); }
  to{ opacity:1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px){
  .biz-hero{
    min-height: 52vh;
    margin-top: 60px;
  }

  /* mobile pe wrap allow */
  .biz-hero__title{
    white-space: normal;
  }

  .biz-hero__text{
    font-size: 14.5px;
  }
}
/* Desktop */
.biz-hero{
  min-height: 70vh;
}

/* Mobile */
@media (max-width: 768px){
  .biz-hero{
    min-height: 58vh;
  }
}

.li-page{
  padding: 46px 0;
  background:#fff;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.li-wrap{
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* Intro */
.li-intro h2{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  color:#0b1220;
}
.li-intro p{
  margin: 0 0 10px;
  color:#5b6473;
  line-height: 1.75;
  max-width: 980px;
}

/* Card */
/* =========================
   BUSINESS CARDS (UPDATED ONLY)
   Replace your .li-card ... media queries block
========================= */

.li-card{
  display:grid;
  grid-template-columns: 220px 1fr 300px;
  gap: 18px;
  padding: 18px;
  margin-top: 16px;
  background:#fff;
  border: 1px solid #e9e9ee;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
  align-items: stretch;
}

/* LEFT */
.li-left{
  border-radius: 14px;
  overflow:hidden;
  background:#f3f4f6;
  min-height: 190px;
}

/* ✅ Add real image support */
.li-left .li-img{
  width:100%;
  height:100%;
  min-height:190px;
  object-fit:cover;
  display:block;
}

/* Placeholder stays (if you don’t use image) */
.li-ph{
  width:100%;
  height:100%;
  min-height:190px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 34px;
  color:#fff;
  background: linear-gradient(135deg, #2563eb, #22c55e);
}

/* MID */
.li-mid{ padding: 2px 2px; }

.li-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}

.li-title{
  margin:0;
  font-size: 22px;
  font-weight: 950;
  color:#0b1220;
}

.li-rating{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
}

.li-score{ font-weight: 950; color:#0b1220; }
.li-stars{ color:#f4b400; letter-spacing: 1px; }
.li-count{ color:#667085; }

/* Facts list stays same */
.li-facts{
  margin-top: 10px;
  display:grid;
  gap: 6px;
  color:#374151;
  font-size: 14px;
  line-height: 1.45;
}
.li-facts b{ color:#0b1220; }

.li-desc{
  margin: 12px 0 0;
  color:#5b6473;
  line-height: 1.7;
  font-size: 14px;
}

/* RIGHT */
.li-right{
  border-left: 1px solid #eef0f6;
  padding-left: 14px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

/* ✅ Screenshot-style side panel */
.li-pricebox{
  background:#f8fbff;            /* soft blue */
  border: 1px solid #dbeafe;     /* light blue border */
  border-radius: 14px;
  padding: 12px;
  box-shadow: none;
}

/* ✅ green tag at top */
.li-price-label{
  font-size: 12px;
  font-weight: 950;
  color:#16a34a;
  margin-bottom: 10px;
  padding: 10px 10px;
  border: 1px solid rgba(22,163,74,.35);
  border-radius: 10px;
  background:#fff;
}

/* Price row */
.li-price-main{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.li-offer{
  font-size: 11px;
  font-weight: 950;
  background:#fb923c;
  color:#fff;
  padding: 5px 10px;
  border-radius: 999px;
}

.li-pricebox strong{
  font-size: 28px;
  font-weight: 1000;
  color:#ef4444;
  letter-spacing: -0.02em;
  line-height: 1;
}

.li-pricebox small{
  color:#667085;
  font-size: 12px;
}

.li-price-sub{
  margin-top: 10px;
  color:#16a34a;
  font-weight: 950;
  font-size: 13px;
}

/* Buttons */
.li-btn{
  height: 46px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  text-decoration: none;
  padding: 0 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.li-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.li-btn--primary{
  background:#16a34a;
  color:#fff;
  border: 1px solid #16a34a;
}
.li-btn--primary:hover{
  background:#12863d;
}

.li-btn--outline{
  background:#fff;
  color:#f97316;
  border: 1px solid #f97316;
}

/* Mobile actions (keep hidden because right panel remains visible now) */
.li-actions--mobile{ display:none; }



/* FAQ */
.li-faq{
  margin-top: 26px;
  padding-top: 6px;
}
.li-faq h3{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  color:#0b1220;
}
.li-qa{
  border: 1px solid #e9e9ee;
  border-radius: 14px;
  padding: 12px 14px;
  background:#fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  margin-bottom: 12px;
}
.li-qa summary{
  cursor:pointer;
  font-weight: 900;
  color:#0b1220;
}
.li-qa p{
  margin: 10px 0 0;
  color:#5b6473;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 980px){
  .li-card{
    grid-template-columns: 190px 1fr;
    grid-template-areas:
      "left mid"
      "right right";
  }

  .li-left{ grid-area:left; min-height: 180px; }
  .li-left .li-img{ min-height: 180px; }
  .li-ph{ min-height: 180px; }

  .li-mid{ grid-area:mid; }

  .li-right{
    grid-area:right;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #eef0f6;
    padding-top: 12px;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .li-pricebox{ flex: 1; min-width: 280px; }
  .li-btn{ flex: 1; min-width: 220px; }
}

@media (max-width: 640px){
  .li-card{
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "mid"
      "right";
  }

  .li-left{ min-height: 210px; }
  .li-left .li-img{ min-height: 210px; }
  .li-ph{ min-height: 210px; }

  .li-top{
    flex-direction: column;
    align-items:flex-start;
    gap: 6px;
  }

  .li-right{
    border-top: 1px solid #eef0f6;
    padding-top: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .li-btn{ width: 100%; }
}