.icon-btn-left {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;

  background: #a67fbc;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  padding: 0.7em 1em 0.7em 3em; /* extra left space for icon overlap */
  position: relative;
  overflow: visible; /* allow icon to extend outside */
}

.icon-btn-left i {
  font-size: 1.2rem;
  background: #fff;
  border-radius: 50%;
  padding: 0.9em;
  color: #a67fbc;

  /* 👇 makes icon circle slightly larger and overlapping */
  position: absolute;
  left: -0.6em;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.icon-btn-left:hover {
  background: #b38ecb;
  transform: translateY(-2px);
}

.icon-btn-left:hover i {
  transform: translateY(-50%) scale(1.05);
}

/* right buttton css */
.icon-btn-right {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;

  background: #df5745;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  padding: 0.7em 1em 0.7em 3em; /* extra left space for icon overlap */
  position: relative;
  overflow: visible; /* allow icon to extend outside */
}

.icon-btn-right i {
  font-size: 1.2rem;
  background: #fff;
  border-radius: 50%;
  padding: 0.9em;
  color: #df5745;

  /* 👇 makes icon circle slightly larger and overlapping */
  position: absolute;
  left: -0.6em;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.icon-btn-right:hover {
  background: #df5745;
  transform: translateY(-2px);
}

.icon-btn-right:hover i {
  transform: translateY(-50%) scale(1.05);
}

/* framed css */
/* CSS - drop into your stylesheet */
.hanger-wrap {
  width: 400px;               /* change width as needed */
  margin: 2.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-6deg);   /* tilt the whole composition */
  position: relative;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* top area: ring and rope */
.hanger-top {
  position: absolute;
  top: -58px;                 /* adjust to bring rope above card */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 5;
}

/* small ring */
.hanger-ring {
  width: 25px;
  height: 25px;
  display: block;
  position: relative;
  left: 47%;
  top: -3em;
  background: #222;
  border-radius: 50px;
}

/* rope svg - visual line between ring and card corners */
.hanger-rope {
  width: 420px;
  height: 100px;
  margin-left: -1.5em;
  margin-top: -2em;
  opacity: 0.98;
  transform-origin: center;
}

/* the card */
.hanging-card {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border-radius: 22px;
  padding: 32px 36px;
  box-shadow: 0 28px 50px rgba(11, 20, 35, 0.28), inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(11,20,35,0.06);
  position: relative;
  z-index: 2;
}

/* list inside card */
.hc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hc-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11,20,35,0.04);
  min-height: 44px;
}

.hc-list li:last-child {
  border-bottom: none;
}

/* circular badge on left */
.badge {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0f0f0 0%, #e6e6e6 100%);
  color: #0b2740;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(11,20,35,0.08);
  font-size: 14px;
  margin-top: 2px;
}

/* text area */
.hc-list .text {
  color: #0b2740;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.1px;
}

/* subtle vignette behind card */
.hanger-wrap::before {
  content: "";
  position: absolute;
  /* inset: -80px -120px -120px -120px; */
  background: radial-gradient(closest-side at 50% 10%, rgba(0,0,0,0.12), transparent 40%);
  z-index: 0;
  filter: blur(10px);
  pointer-events: none;
}

/* responsive */
@media (max-width: 640px) {
  .hanger-wrap { width: 92%; transform: rotate(0deg); }
  .hanging-card { padding: 20px; border-radius: 16px; }
  .hanger-top { top: -48px; }
  .hanger-rope { width: 90%; }
  .hanger-ring {left: 40%;}
  
}



