:root {
  --primary: #dd0b8e;
  --accent: #ffac19;
  --bg-light: #fefafd;
  --text-muted: #777;
  --border-color: #0000001a;
  --gradient-color: linear-gradient(243.58deg, #ffac1b 0.63%, #e10b90 99.33%);
}
.bg-light {
  background-color: var(--border-color);
}
.background-light {
  background-color: var(--bg-light);
  border: 1px solid #0000001a;
}
.border {
  border: 1px solid #0000001a;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  margin: 0;
}
body a {
  text-decoration: none;
  transition: color 0.3s;
  color: black;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

a:hover,
a:focus-visible {
  color: var(--primary) !important;
}

input {
  border-radius: 100px;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.6);
  width: 100%;
}

input:focus {
  outline: none;
  border-color: var(--primary);
}
input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.4);
}
.button {
  gap: 6px;
  border-radius: 100px;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.3s ease;
  min-height: 40px;
  font-size: 15px;
}
.button-primary {
  border-radius: 100px;
  border: 1px solid var(--border-color);
  background-color: white;
  transition: all 0.3s ease;
}
.button-primary:hover {
  color: var(--primary);
}
.button-secondary {
  background: linear-gradient(90deg, #dd0b8e 0%, #ffac19 100%);
}
.button-secondary:hover {
  filter: brightness(1.1);
}
.button-secondary span {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: white;
}
.description {
  font-size: 14px;
}
.text-uppercase {
  text-transform: uppercase;
}
.rounded-30 {
  border-radius: 30px;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.box-shadow {
  box-shadow: 4px 4px 8px 8px hsla(0, 0%, 0%, 0.04),
    0px 15px 15px 0px hsla(0, 0%, 0%, 0.03),
    0px 35px 21px 0px hsla(0, 0%, 0%, 0.02),
    0px 62px 25px 0px hsla(0, 0%, 0%, 0.01),
    0px 96px 27px 0px hsla(0, 0%, 0%, 0);
}
.text-pink {
  color: var(--primary);
}
.gradient-color {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  letter-spacing: -0.04em;
}
.gradient-link {
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: absolute;
  top: 3px;
  right: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.logo-header {
  width: 150px;
}
.steps-list {
  list-style: none;
  padding: 0;
}
.steps-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.steps-list li.visible {
  opacity: 1;
  transform: translateY(0);
}

.images-panel {
  position: relative;
  height: 75vh;
}
.images-panel .step-image {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  opacity: 0;
  height: 100%;
  transition: opacity 0.5s;
  object-fit: contain;
}
.images-panel .step-image.active {
  opacity: 1;
}

.navbar .nav-item .nav-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -2%;
  color: black;
  padding: 0 12px;
}
.navbar .nav-item.active .nav-link {
  color: var(--primary);
}
.subtext,
.register {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
.option p {
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}
.option {
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

#individualOption.option.active {
  background-color: #f8843926;
}
#businessOption.option.active {
  background: #e10b9026;
}
.position-relative {
  position: relative;
}
.partners-swiper .swiper-pagination-bullet-active {
  background: var(--primary) !important;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.password-toggle svg {
  display: block;
}
.forget {
  padding-left: 20px;
}
/* About */
.header-section {
  border-radius: 30px;
  height: 100%;
}
.notification {
  width: 300px;
  object-fit: contain;
}
.notification img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.notification1 {
  position: relative;
  top: 15vh;
  left: 15%;
  transform: rotate(-5deg);
}

.notification.notification2 {
  margin-left: auto;
  position: relative;
  right: 15%;
  transform: rotate(5deg);
  top: 5vh;
}
.faq-accordion .accordion-button::after {
  content: "+";
  font-weight: bold;
  margin-left: auto;
  transition: transform 0.2s;
  background-image: none;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "-";
  background-image: none;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion-button {
  padding: 0;
  border: none;
}
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  padding: 0 10px;
}
.faq-accordion .accordion-button:not(.collapsed),
.faq-accordion .accordion-button:focus {
  color: black;
  background-color: unset;
  box-shadow: unset;
  font-weight: 600;
}
.benefits-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 600px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
}
.benefits-section {
  position: relative;
  z-index: 1;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.319);
  z-index: 0;
  border-radius: inherit;
}

.benefits-section > * {
  position: relative;
  z-index: 0;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  margin-top: -40px;
  z-index: 2;
}

.steps-wrapper {
  display: flex;
  flex-direction: column;
}

.mockup-container {
  position: relative;
  width: 45%;
  height: 100%;
  top: 0%;
}
.section .step img {
  width: auto;
}
.mockup-container img {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
}

.video-inside {
  position: absolute;
  top: 3%;
  left: 50%;
  width: 88%;
  height: 93%;
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 30px;
}

.video-inside video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-description {
  display: flex;
  align-items: start;
  justify-content: center;
}
.business-description span {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  border-width: 1px;
  gap: 10px;
  padding: 10px;
  border: 1px solid #0000001a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.prepaid-card {
  max-height: 110%;
  position: absolute;
  right: 0;
  bottom: 0;
  object-fit: contain;
}
.business-tabs {
  justify-content: center;
  border: none;
  gap: 15px;
}
.business-tabs .nav-link {
  border: 1px solid var(--border-color);
  border-radius: 100px;
  color: #00000080;
  opacity: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -2%;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: black;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
}

.industry-card {
  opacity: 0.9;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid #0000001a;
}
.industry-card:hover {
  opacity: 1;
  background-color: var(--bg-light);
}
.industry-card a {
  opacity: 0;
  transition: opacity 0.3s ease;
  border: none;
  background-color: transparent;
}
.industry-card:hover a {
  opacity: 1;
  color: black;
}
/* home */
.tipping-section {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.tipping-section .content {
  z-index: 2;
}

.tipping-section .image {
  position: relative;
}

.tipping-section .image img {
  position: absolute;
  right: 20%;
  top: 50%;
  width: 140%;
  transform: translateY(-45%);
}

.hero-section {
  height: 85vh;
  overflow: hidden;
}

.swiper-word {
  display: inline-block;
  height: 40px !important;
  width: auto;
  vertical-align: sub;
}

.vertical-swiper {
  height: 40px !important;
}

.vertical-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 700;
}
.partners img {
  max-width: 150px;
}
.swipe-section,
.swipe-section-individual {
  position: relative;
  min-height: 100vh;
  height: 100%;
  overflow: hidden;
}
.title-overlay {
  position: fixed;
  top: 100px; /* adjust based on your layout */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1; /* lower than swipe-section */
  width: 100%;
  background: white; /* optional: helps with contrast */
  padding: 1rem 0;
}

.swipe-section {
  z-index: 5;
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section img {
  width: 100%;
}
.notification-login {
  position: absolute;
}
.notification-login.not1 {
  left: 5%;
  transform: rotate(-10deg);
  top: 0;
}
.notification-login.not1 {
  left: 2%;
  transform: rotate(-10deg);
}
.notification-login.not2 {
  right: 2%;
  transform: rotate(10deg);
  bottom: 10%;
}
.preloader {
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
}

.logo-spinner {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-loader {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
  background: white;
}

.spinner-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #dd0b8e 0%, #ffac19 100%);
  border: 0.25em solid transparent;
  -webkit-mask: radial-gradient(circle, transparent 65%, white 66%);
  mask: radial-gradient(circle, transparent 65%, white 66%);
  animation: spin 1.5s linear infinite;
  z-index: 1;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .prepaid-card {
    max-height: 80%;
    object-fit: contain;
  }
  .notification-login.not1 {
    left: -0%;
  }
  .notification-login.not2 {
    right: -0%;
  }
  .mockup-container {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .steps-list li {
    opacity: 1;
    transform: unset;
    transition: opacity 0.5s, transform 0.5s;
    display: flex;
    flex-direction: column-reverse;
  }
  .step-image {
    aspect-ratio: 1;
    object-fit: contain;
  }
  .navbar > .container {
    justify-content: center;
  }
  .hero-section {
    height: auto;
  }

  .mockup-container {
    height: auto;
  }
  .step {
    text-align: center;
    margin: auto;
  }
  .step img {
    width: 40px;
    height: 40px;
  }
  .step h4 {
    font-size: 1rem;
  }
  .notification1 {
    position: relative;
    top: 20px;
    left: -20px;
  }
  .notification.notification2 {
    right: -20px;
    margin-top: 25px;
  }
  .prepaid-card {
    max-height: unset;
    position: relative;
    right: -10px;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .benefits {
    margin-top: 1rem;
    padding: 0;
  }
  .tipping-section .image img {
    position: relative;
    right: unset;
    top: unset;
    width: 100%;
    transform: unset;
  }
  .section {
    position: relative;

    display: flex;
    align-items: center;
    padding: 0rem;
    flex-direction: column-reverse;
    margin-bottom: 5em;
  }
  .section:last-child {
    margin-bottom: 0;
  }
  .section .left {
    margin-bottom: 1em;
  }
  .customers-steps .section {
    flex-direction: column;
  }

  .navbar > .container-fluid {
    justify-content: center;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
}
@media (max-width: 768px) {
  .navbar .nav-item .nav-link {
    padding: 0.5rem 0;
  }
  .notification-login {
    display: none;
  }
  .no-padding-responsive {
    padding: 0 !important;
  }
  .go-back {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 600px) {
  .logo-header {
    width: 100px;
  }
  .heading-sm {
    font-size: 1.5em;
  }
  .partners img {
    max-width: 122px;
  }
  .swipe-section {
    min-height: 44vh;
  }
  .vertical-swiper {
    height: 25px !important;
    font-size: 16px;
  }

  .tipping-section .image img {
    right: 12%;
  }
  .prepaid-card {
    right: 0;
  }
  .section .left h2,
  .benefits h4,
  .counter h3 {
    font-size: 1.3em;
  }
  .benefits img {
    width: 60px;
    height: 60px;
  }

  .faq-accordion .accordion-item {
    padding: 0;
  }
}
.staggered-card {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  width: 100%;
  max-width: 320px;
}
.staggered-card:nth-child(1) {
  margin-left: auto;
  z-index: 3;
}
.staggered-card:nth-child(2) {
  margin-top: -1.5rem;
  margin-right: auto;
  z-index: 1;
}

.staggered-card:nth-child(3) {
  margin-top: -1.2rem;
  margin: auto;
  z-index: 2;
}

.staggered-icon {
  display: block;
  margin-bottom: 1rem;
  width: 40px;
  height: 40px;
}
@media (max-width: 991px) {
  .staggered-card {
    max-width: unset;
    width: 100%;
    margin-top: 0 !important;
  }
}
@media (max-width: 768px) {
  .staggered-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .staggered-card {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    width: 80%;
  }

  .staggered-card:nth-child(1) {
    transform: rotate(-5deg);
    z-index: 3;
    top: 0;
    margin-left: auto;
  }

  .staggered-card:nth-child(2) {
    transform: rotate(8deg);
    z-index: 2;
    margin-right: auto;
    top: -1.5rem;
  }

  .staggered-card:nth-child(3) {
    transform: rotate(-5deg);
    z-index: 1;
    margin-inline: unset;
    top: -1.5rem;
    margin-left: auto;
  }
}
