@font-face {
  font-family: "LemonadoCaps";
  src: url("../fonts/lemonado-caps-smooth-italic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif !important;
  background: #fff !important;
  color: #0b0f12 !important;
}

h1 {
  font-size: 4.5rem !important;
  font-weight: 800;
  text-align: center;
}
h2 {
  font-size: 3.5rem !important;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif !important;
}
h3 {
  font-size: 2.25rem !important;
  font-weight: 600;
}
h4 {
  font-size: 1.5rem !important;
  font-weight: 500;
}
h5 {
  font-size: 1.25rem !important;
  font-weight: 500;
  margin-top: 10px;
}
p {
  font-size: 16px !important;
  font-weight: 400;
}
a {
  font-size: 14px;
  font-weight: 400;
}
button {
  font-size: 14px;
  font-weight: 600;
  font-family: Inter;
  cursor: pointer;
  padding: 11px 18px;
  border-radius: 30px;
  border: 0px;
}
.hero .toggle__btn:hover {
  color: #000 !important;
}
.btn--primary {
  background: #000;
  color: #fff !important;
  padding: 10px 20px;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #000 !important;
}
.btn--secondary {
  background-color: transparent !important;
  border: 1px solid #000;
  color: #000 !important;
}
.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(155, 155, 155, 0.473);
}
.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 56px 16px 24px;
}
/* Header Started*/
.header {
  top: 0;
  z-index: 40;
  padding: 8px 0;
}
.active-head {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  background-color: #f3f3f3e3;
}
.header__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0b0f12;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: "LemonadoCaps", cursive !important; /* Apply custom font here */
  font-size: 20px;
}
.brand:hover,.brand span:hover{
  color: #0b0f12 !important;
}
.brand__logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #000;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: #0b0f12;
  padding: 10px 15px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;

}
.nav a:hover {
  background: #e5e7eb7a;
}

.actions {
  display: flex;
  gap: 12px;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  justify-content: center;
  gap: 5px;
  background-color: transparent;
}
.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #0b0f12;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .apply-container h4 {
  margin: 20px;
  text-align: center;
  line-height: 30px;
}
  h1 {
    font-size: 3rem;
  }
  .brand {
    font-size: 16px;
  }
  .nav {
    position: absolute;
    top: 64px;
    right: 0;
    background: #fff !important;
    flex-direction: column;
    gap: 16px;
    width: 220px;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    align-items: flex-start;
  }
  .nav.active {
    transform: translateY(0);
    z-index: 10;
  }
  .menu-toggle {
    display: flex;
  }
}

/* Header Closed */
/* Main start */
.non-sticky {
  background-color: #fff !important;
  max-width: 2400px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero {
  text-align: center;
}
.hero .badge {
  display: inline-block;
  font-family: "LemonadoCaps";
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.15em;
  background: #f2ff00;
  padding: 6px 10px;
  border-radius: 6px;
  transform: rotate(-2deg);
}

.hero .connect-icon {
  font-size: 2em;
  font-family: "LemonadoCaps";
  margin-bottom: -20px;
  line-height: 0;
  margin-top: 20px;
  position: relative;
}

.hero .toggle {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 8px;
  border-radius: 12px;
  padding: 3px;
  margin: 30px auto 0;
  border: 1px solid #cdcdcd;
}
.hero .toggle__btn {
  background: transparent;
  padding: 10px 20px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.hero .toggle__btn--active {
  background: #cdcdcd61 !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 0 0 1px #e5e7eb;
  color: #000;
}

.hero .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px;
  align-items: end;
  justify-items: center;
  margin: 22px auto 10px;
  max-width: 1050px;
}
.hero .grid .card {
  padding: 16px 6px 6px;
  text-align: center;
  position: relative;
}
.hero .rate {
  display: inline-flex;
  align-items: flex-end;
  gap: 14px;
}
.hero .rate__num {
  font-weight: 900;
  font-size: clamp(72px, 12vw, 144px);
  display: flex;
  align-items: flex-end;
  letter-spacing: -0.05em;
  z-index: 1;
}
.hero .rate__digit {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 0.8em;
}
.hero .rate__digit > span {
  display: block;
}
.hero .rate__pct {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
}
.hero .rate__pa {
  font-size: clamp(20px, 3vw, 48px);
  margin-left: 8px;
  font-weight: 800;
  z-index: 1;
}
.hero .svgelem {
  position: absolute;
  width: 90%;
  bottom: 30px;
  opacity: 0;
}
.hero .label {
  font-weight: 800;
  font-size: 22px;
  position: relative;
  display: block;
}

.hero .note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
  text-align: center;
}

.hero .slider-wrap {
  max-width: 520px;
  margin: 16px auto 6px;
}
.hero .slider {
  width: 100%;
}
.hero input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
  outline: none;
}
/* Chrome, Safari, Edge (Webkit browsers) */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #000; /* Change to your color */
  cursor: pointer;

  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
input[type="range"]::-webkit-slider-thumb:hover {
  background: #ffcc00; /* hover color */
  transform: scale(1.1);
}

/* Firefox */
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #000; /* Change to your color */
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
input[type="range"]::-moz-range-thumb:hover {
  background: #ffcc00;
  transform: scale(1.1);
}

/* IE/Edge Legacy */
input[type="range"]::-ms-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #000; /* Change */
  cursor: pointer;
  border: none;
}

.hero .slider-legend {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-top: 12px;
}

.cta {
  display: flex;
  gap: 14px;
  margin: 26px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero .grid {
    grid-template-columns: repeat(1, minmax(240px, 1fr));
  }
  .hero .toggle__btn {
    padding: 12px;
  }
  .icon-box {
    width: 46% !important;
  }
}
/* Main Close */
/* Icon-Boxes Start*/
.icon-boxes {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
.icon-box {
  padding: 10px;
  width: 260px;
  display: flex;
    flex-direction: column;
    align-items: center;
}
/* Icon-Boxes Close*/
/*videos Start*/
.highlight-underline {
  position: relative;
  display: inline-block !important;
  vertical-align: bottom;
}
.svg-wrapper_underline-tiles {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  height: 53px;
  z-index: -1;
  overflow: visible;
}
.features-section {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 24px;
  padding: 80px 0px;
  background: #fff !important;
}
.feature-card {
  border-radius: 24px;

  position: relative;
  background: #f7f7f7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease;
  transform: none !important;
}
.inner-card {
  padding: 40px 30px;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.dark {
  background: #101010;
  color: #fff !important;
}
.dark h3 {
  color: #fff !important;
}
.feature-card h3 {
  margin-bottom: 16px;
}
#box3 {
  text-align: center;
}
.counter {
  display: flex;
  gap: 10px;
  color: #f2ff00;
  font-weight: 700;
  margin-bottom: 16px;
}
#counter {
  font-size: 5rem;
  width: 170px;
}
.count {
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.fee-list {
  margin: 20px 0;
}

.fee-item {
  position: relative;
  font-size: 1.1rem;
  display: inline-block;
  padding-right: 10px;
  margin: 5px 0;
}
.fee-item .strike-line {
  position: absolute;
  left: 0;
  top: 50%;
  height: 4px;
  background: red;
  width: 0;
  transform: translateY(-50%);
}

.arrow {
  position: absolute;
  right: 24px;
  bottom: 20px;
  font-size: 1.6rem;
  opacity: 1;
  z-index: 3;
  background: rgb(225, 224, 224);
  padding: 3px 12px 10px 12px;
  border-radius: 50%;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.12);
}
/* video playing */
.up_code-embed--pig {
  position: relative;
  z-index: 2; /* Pig always on top */
}
.up_coin-wrap {
  z-index: 1; /* Coin behind pig */
}

.image--pig_coin {
  display: block;
  margin-top: -60px;
  margin-left: -50px;
  width: 50px !important;
}
.out-img {
  position: absolute;
  bottom: 20px;
  right: -10px;
}
.out-img img {
  height: 200px;
  width: 150px;
}
.feature-img-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0px;
}
.feature-img-box img {
  width: 60px;
}
/*videos ENd


      /* Looking Start*/
.looking-boxs {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 30px;
  margin-top: 50px;
}
.looking-box {
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 20px;
}

.looking-box p {
  margin-top: 10px;
  line-height: 1.5rem;
}
.lookmore {
  margin-top: 20px;
  background-color: #fff !important;
  padding: 10px;
  border-radius: 50%;
  float: right;
  cursor: pointer;
}
.lookmore:hover {
  background-color: #dedede;
}
@media (max-width: 768px) {
  .looking-boxs {
    grid-template-columns: auto auto;
  }
  .svg-wrapper_underline-tiles {
    margin-bottom: -20px;
  }
  .features-section {
    grid-template-columns: auto;
  }
}

/* Review started */
.review,
.support,
.faqs {
  margin-top: 8rem;
}
.main-head {
  text-align: center;
}
.heart-anchor {
  position: relative;
  display: inline-block !important;
  vertical-align: bottom;
}
.svg-wrapper_heart {
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: -1;
  overflow: visible;
}

.svg-wrapper_heart svg:last-child {
  bottom: -42px;
  right: 10px;
  width: 48px;
  height: auto;
}
.svg-wrapper_heart svg {
  position: absolute;
  display: inline-block !important;
}

.review h4 {
  text-align: center;
  margin: 2vw 10vw;
  font-size: 1.5rem;
  font-weight: 600;
}
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden; /* viewport that clips to show side peeks */
  padding: 24px 0 96px; /* space at bottom for controls */
}

/* The moving strip */
.track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Each "review" card */
.review-wrap .card {
  margin: 8px;
  border-radius: 18px;
  height: 320px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.review-wrap .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Controls */
.controls {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.review-wrap .btn {
  pointer-events: auto;
  border-radius: 50%;
  border: 1px solid gray;
  background: #fff !important;
  padding: 15px;
  cursor: pointer;
}
.review-wrap .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.12);
}
.review-wrap .btn:active {
  transform: translateY(0);
}

.playpause {
  justify-self: center;
}
.arrows {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  justify-self: end;
  padding-right: 16px;
}

.icon {
  width: 24px;
  height: 24px;
  display: block;
}

/*support-box */
.support-boxes {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.highlight-circle {
  position: relative;
  display: inline-block;
}
.svg-wrapper_circle {
  position: absolute;
  top: -5%;
  left: -10%;
  width: 120%;
  height: 100%;
  z-index: -1;
}
.support-box {
  margin-top: 4rem;
  padding: 4rem 2.5rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  width: 50%;
  position: relative;
}
.support-box .images {
  display: flex;
  gap: 10px;
}
.support-box .images img {
  width: 50px;
  border-radius: 50%;
}
.support-box h3 {
  margin: 20px 10px 10px 0px;
}
.support-box h4 {
  line-height: 32px;
  margin-bottom: 20vh;
}
.support-box a {
  text-decoration: none;
  border-radius: 30px;
  cursor: pointer;
  padding: 10px 30px;
  position: absolute;
  bottom: 40px;
}
.box1 {
  background-color: #f7f7f7;
}
.box2 {
  background-color: #000;
  color: #fff !important;
}
.box2 #hd,
.box2 h4 {
  color: #fff !important;
}
.box1 a {
  color: #000;
  border: 2px solid #000;
}
.box2 a {
  color: #fff !important;
  border: 2px solid #fff !important;
}
@media (max-width: 720px) {
  .review-wrap .card {
    height: 260px;
  }
  .support-boxes {
    display: block;
  }
  .support-box {
    width: 100%;
  }
  .footer-column {
    flex: 1 1 140px !important;
  }
}
/* Looking End*/
/* Faqs Start */
.faq-wrap {
  margin: 40px auto 80px;
  padding: 0 16px 40px;
}

/* Intro block (like the screenshot) */
.faq-intro h1 {
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.faq-intro p {
  margin: 0 0 12px;
  font-size: 1.05rem;
}
.faq-intro ul {
  margin: 8px 0 12px 20px;
}
.faq-intro a {
  text-decoration: none;
}
.faq-intro a:hover {
  text-decoration: underline;
}

/* Divider */
.rule {
  height: 1px;
  margin: 28px 0;
}

.faq-item {
  border-bottom: 1px solid #dbd6d6;
}
.faq-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  text-align: left;
  background: #fff !important;
  border: 0;
  padding: 25px 0;
  cursor: pointer;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 33px;
  font-size: 24px;
  font-family: "inter";
  font-weight: 600;
}
.faq-trigger:hover {
  color: #111;
}
.faq-trigger:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--focus) 70%, transparent);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Plus icon that turns into × on open */
.icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 auto;
  color: #111;
  transition: transform 0.25s ease;
}
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: currentColor;
  border-radius: 1px;
}
.icon::before {
  width: 18px;
  height: 2px;
}
.icon::after {
  width: 2px;
  height: 18px;
}
.faq-trigger[aria-expanded="true"] .icon {
  transform: rotate(45deg); /* looks like an × */
}

.faq-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.28s ease;
}
.faq-panel-inner {
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.faq-panel-inner p {
  margin: 0 0 10px;
}
.faq-panel-inner ul {
  margin: 0 0 8px 20px;
}

/* FAQ's End */
/*Apply start */
/* Apply Container */
.apply-container {
  background-color: #f7f7f7;
}
.up_sticky-buffer {
  margin-top: -100vh;
}
.up_double-vh {
  height: 200vh;
}
.up_sticky {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.up_sticky--content {
  z-index: -10;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  inset: 0% auto;
  overflow: hidden;
}

.apply-container h1 {
  font-size: 5.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
  text-align: center;
}

.apply-container h1 span {
  background: yellow;
  padding: 0 6px;
  transform: rotate(-1deg);
  display: inline-block;
}

.apply-container h4 {
  margin: 0.8rem 0 2rem 0;
}

.apply-container .btn {
  display: inline-block;
  background: #000;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apply-container .btn:hover {
  background: #333;
}
/* Apply End */
/* Footer Start */
footer {
  background: #f7f7f7;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  padding: 40px 10%;
}
.footer-disclaimer p {
  margin-bottom: 12px;
  color: #333;
}
.footer-links-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 30px 0;
}
.footer-column {
  flex: 1 1 180px;
  margin: 10px;
}
.footer-column h4 {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 15px;
}
.footer-column a {
  display: block;
  margin-bottom: 8px;
  color: #000;
  text-decoration: none;
}
.footer-column a:hover {
  text-decoration: underline;
}
.footer-bottom {
  font-size: 13px;
  color: #555;
  margin-top: 20px;
}
.footer-bottom a {
  color: #0056b3;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
/* Footer End */
