           
/* ===============================
   SOCIAL PROOF SECTION
================================ */
body {font-family: Arial, Helvetica, sans-serif;}
.social-proof-section {
  background: #ffffff;
  overflow: hidden;
  padding: 60px 0;
}

/* ===============================
   MARQUEE WRAPPER
================================ */

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* ===============================
   CARD
================================ */

.proof-card {
  min-width: 340px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ===============================
   HEADER
================================ */

.proof-header {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.proof-header img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===============================
   USER INFO
================================ */

.user-info {
  display: flex;
  flex-direction: column;
}

.name-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
}

.verified {
  color: #1d9bf0;
  font-size: 14px;
}

.handle-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6c757d;
  margin-top: 2px;
}

/* ===============================
   PLATFORM ICON COLORS
================================ */

.platform {
  font-size: 14px;
}

.platform.twitter {
  color: #1d9bf0;
}

.platform.facebook {
  color: #1877f2;
}

.platform.google {
  color: #ea4335;
}

.platform.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   TEXT (WRAPPING FIX)
================================ */

.proof-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;

  /* 🔥 TEXT WRAPPING FIX */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ===============================
   ANIMATIONS
================================ */

.marquee-left .marquee-track {
  animation: scrollLeft 40s linear infinite;
}

.marquee-right .marquee-track {
  animation: scrollRight 40s linear infinite;
}

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

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

/* ===============================
   HOVER PAUSE
================================ */

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .proof-card {
    min-width: 280px;
    max-width: 280px;
  }
}


/* ===============================
   FAQ SECTION
================================ */

.faq-section {
  background: #ffffff;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ ITEM */
.faq-item {
  border: 1px solid #eeeeee;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #ffffff;
}

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

.faq-question:hover {
  background: #f8f9fa;
}

/* ICON */
.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  margin: 16px 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .faq-question {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}


/* ===============================
   FLOATING CALL WIDGET
================================ */

/* Wrapper fixed at bottom-left */
.lccwf-wrap {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Main toggle button */
.lccwf-main {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 2; /* make sure it stays ABOVE the arc */
}

.lccwf-main .icon {
  position: absolute;
  transition: opacity .2s;
}
.lccwf-main .icon.close { opacity: 0; }
.lccwf-wrap.open .icon.phone { opacity: 0; }
.lccwf-wrap.open .icon.close { opacity: 1; }

/* Arc container behind the button */
.lccwf-arc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 220px;
  z-index: 1;
  pointer-events: none; /* container never blocks clicks */
}

/* Items can be clicked */
.lccwf-arc .lccwf-item {
  pointer-events: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0,0) scale(0);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* When open, reveal items */
.lccwf-wrap.open .lccwf-arc .lccwf-item {
  opacity: 1;
  transform: scale(1);
}

/* Place items on a 180° arc (top, top-right, right) */
.lccwf-wrap.open .lccwf-arc .lccwf-item:nth-child(1) { transform: translate(0,-130px) scale(1); }
.lccwf-wrap.open .lccwf-arc .lccwf-item:nth-child(2) { transform: translate(92px,-92px) scale(1); }
.lccwf-wrap.open .lccwf-arc .lccwf-item:nth-child(3) { transform: translate(130px,0) scale(1); }

.lccwf-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  border: 2px solid #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lccwf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}

/* Prevent images capturing focus/drag issues */
.lccwf-btn img,
.lccwf-main img {
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* this is review section part   */

.review-section {
  background: #ffffff;
}

/* MASK */
.review-mask {
  overflow: hidden;
  padding-top: 90px;
}

/* TRACK (ONLY THIS MOVES) */
.review-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLTR 65s linear infinite;
}

/* CARD */
.review-card {
  position: relative;
  width: 420px;
  padding: 50px 30px 32px;
  border-radius: 18px;
  font-family: 'DM Sans', sans-serif;
  border: 3px solid #000;
}

/* MULTI COLORS */
.color-1 { background: #FFE66D; }
.color-2 { background: #DCE9FF; }
.color-3 { background: #DFF5EA; }
.color-4 { background: #FFD6E8; }

/* TEXT */
.review-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 14px;
}

.stars {
  font-size: 18px;
}

/* QUOTES ON BORDER */
.border-quote {
  position: absolute;
  font-size: 52px;
  font-weight: 700;
  background: inherit;
  padding: 0 6px;
  line-height: 1;
}

.border-quote.top {
  top: -28px;
  left: 22px;
}

.border-quote.bottom {
  bottom: -32px;
  right: 22px;
}

/* PHOTO + PIN */
.photo {
  position: absolute;
  top: -44px;
  right: -26px;
  background: #fff;
  padding: 6px;
  transform: rotate(6deg);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.photo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* PIN */
.pin {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #e63946;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.pin::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  width: 2px;
  height: 16px;
  background: #555;
  transform: translateX(-50%);
}

/* ANIMATION */
@keyframes scrollLTR {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* PAUSE ON HOVER */
.review-mask:hover .review-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .review-card {
    width: 360px;
  }
}

@media (max-width: 576px) {
  .review-card {
    width: 300px;
    padding: 44px 22px 26px;
  }

  .photo {
    top: -34px;
    right: -18px;
  }
}
      /* ===============================
   PI STATS (FULLY ISOLATED)
================================ */

.pi-stats-wrap {
  background: #ffffff;
}

.pi-stats-card {
  position: relative;
  background: #3D405B;
  border-radius: 20px;
  padding: 70px 40px;
  overflow: hidden;
  color: #e4f5e8;
}

/* Background arcs */
.pi-stats-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pi-arc {
  position: absolute;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  border: 2px solid rgba(217, 242, 220, 0.45);
  filter: drop-shadow(0 0 6px rgba(217, 242, 220, 0.25));
}

.pi-arc-1 {
  top: -35%;
  right: -45%;
  opacity: 0.6;
  animation: piArcFloat 22s ease-in-out infinite;
}

.pi-arc-2 {
  top: -45%;
  right: -30%;
  opacity: 0.45;
  border-width: 1.5px;
  animation: piArcFloat 28s ease-in-out infinite reverse;
}

.pi-arc-3 {
  top: -55%;
  right: -15%;
  opacity: 0.35;
  border-width: 1px;
  animation: piArcFloat 34s ease-in-out infinite;
}

@keyframes piArcFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(12px); }
  100% { transform: translateY(0); }
}

/* Content */
.pi-stats-row {
  position: relative;
  z-index: 2;
}

.pi-stat-col {
  padding: 20px 10px;
}

.pi-stat-number {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
  color: #d9f2dc;
}

.pi-stat-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .pi-stats-card {
    padding: 60px 30px;
  }

  .pi-stat-number {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .pi-stats-card {
    padding: 55px 24px;
  }

  .pi-stat-number {
    font-size: 36px;
  }
}
/* ===============================
   FEATURE CARDS (ISOLATED)
================================ */

.pi-feature-section {
  font-family: 'DM Sans', sans-serif;
}

/* Card */
.pi-feature-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid #d9dde5;
  border-radius: 18px;
  padding: 30px;
  transition: all 0.3s ease;
}

.pi-feature-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

/* Icon */
.pi-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: #155BD5;
}

.bg-green {
  background: #dff3ea;
}

/* Title */
.pi-feature-card h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #111;
}

/* Text */
.pi-feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5f6470;
  margin-bottom: 28px;
}

/* Read More */
.pi-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #1f5b57;
  text-decoration: none;
}

.pi-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid #cfd6e3;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pi-read-more:hover .pi-arrow {
  background: #1f5b57;
  color: #fff;
  border-color: #1f5b57;
}

/* offer popup */


/* ===============================
   PREMIUM URGENCY POPUP (FIXED)
================================ */

.pi-urgent-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transform: translateX(140%);
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  font-family: 'DM Sans', sans-serif;
}

.pi-urgent-popup.active {
  transform: translateX(0);
}

/* CARD */
.pi-urgent-card {
  width: 350px;
  background: linear-gradient(135deg, #0f1b2d, #155BD5, #3ddc97);
  border-radius: 24px;
  padding: 130px 26px 26px;
  position: relative;

  /* 🔥 KEY FIX: allow image to overflow */
  overflow: visible;

  box-shadow:
    0 35px 90px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.15);
}

/* CLOSE */
.pi-urgent-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* ===============================
   SALES IMAGE (NO CUT)
================================ */

.pi-urgent-image {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding: 6px;
  background: #ffffff;
  z-index: 5;
  box-shadow:
    0 0 0 8px rgba(255,80,80,0.35),
    0 25px 60px rgba(0,0,0,0.4);
}

/* Glow halo */
.pi-urgent-image::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,80,80,0.6), transparent 65%);
  z-index: -1;
}

.pi-urgent-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ===============================
   TEXT
================================ */

.pi-urgent-card h4 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 6px;
}

.pi-urgent-card p {
  font-size: 15px;
  text-align: center;
  color: #eaf7ff;
  margin-bottom: 18px;
}

/* ===============================
   URGENCY BADGE
================================ */

.pi-urgent-badge {
  display: inline-block;
  margin: 0 auto 14px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #ff3b3b, #ff914d);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  animation: shake 1.4s infinite;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  30% { transform: translateX(-2px); }
  70% { transform: translateX(2px); }
}

/* ===============================
   PREMIUM TIMER
================================ */

.pi-urgent-timer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.pi-time-box {
  flex: 1;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 10px 6px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}

.pi-time-box span {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.pi-time-box small {
  font-size: 11px;
  opacity: 0.85;
}

/* Danger pulse when low */
.pi-time-danger {
  animation: dangerPulse 1s infinite;
}

@keyframes dangerPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,60,60,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,60,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,60,60,0); }
}

/* ===============================
   CTA
================================ */

.pi-urgent-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff3b3b, #ff914d);
  border: none;
  border-radius: 40px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 15px 35px rgba(255,80,80,0.6);
  animation: ctaPulse 1.4s infinite;
}

@keyframes ctaPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ===============================
   FLOATING REOPEN
================================ */

.pi-urgent-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  animation: ctaPulse 1.4s infinite;
  z-index: 9998;
}

.pi-urgent-toggle.show {
  display: flex;
}

/* MOBILE */
@media (max-width: 576px) {
  .pi-urgent-popup,
  .pi-urgent-toggle {
    right: 30px;
    bottom: 30px;
  }

  .pi-urgent-card {
    width: 300px;
    padding-top: 120px;
  }

  .pi-urgent-image {
    width: 110px;
    height: 110px;
    top: -60px;
  }
}

