/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Regular */
@font-face {
  font-family: "Benzin";
  src: url("../assets/fonts/font-A/benzin-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: "Benzin";
  src: url("../assets/fonts/font-A/benzin-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* SemiBold */
@font-face {
  font-family: "Benzin";
  src: url("../assets/fonts/font-A/benzin-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: "Benzin";
  src: url("../assets/fonts/font-A/benzin-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* ExtraBold */
@font-face {
  font-family: "Benzin";
  src: url("../assets/fonts/font-A/benzin-extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

/* ClashDisplay */

/* Regular */
@font-face {
  font-family: "ClashDisplay";
  src: url("../assets/fonts/Font-B/ClashDisplay-Regular.woff2") format("woff2"),
    url("../assets/fonts/Font-B/ClashDisplay-Regular.woff") format("woff");
  font-weight: 400;
}

/* Medium */
@font-face {
  font-family: "ClashDisplay";
  src: url("../assets/fonts/Font-B/ClashDisplay-Medium.woff2") format("woff2"),
    url("../assets/fonts/Font-B/ClashDisplay-Medium.woff") format("woff");
  font-weight: 500;
}

/* Bold */
@font-face {
  font-family: "ClashDisplay";
  src: url("../assets/fonts/Font-B/ClashDisplay-Bold.woff2") format("woff2"),
    url("../assets/fonts/Font-B/ClashDisplay-Bold.woff") format("woff");
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #1ae0ed;
}

a {
  text-decoration: none;
}

/* HERO WRAPPER */
.mainHeroWrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  background: linear-gradient(360deg, rgba(26, 224, 237, 0) 0%, #000000 100%);
  overflow: hidden;
}

/* WAVES SVG */
.waves_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.waves_bg img {
  width: 100%;
  opacity: 0.2; /* subtle like screenshot */
  display: block;
}
.waves_bg_SM {
  display: none;
}
/* RECTANGLE GLOW BOX */
.rectagle_bg {
  position: absolute;
  z-index: 2;
  width: 100%;
}

.rectagle_bg img {
  width: 100%;
  opacity: 1;
  z-index: 100;
}
.rectagle_bg_SM {
  display: none;
}
/* NAVBAR */
.navbar {
  padding-top: 20px;
  padding-left: 60px;
  padding-right: 60px;
  z-index: 10;
}

/* LOGO */
.navbar-brand_logo {
  max-width: 100%;
  height: auto;
  display: block;
}

/* NAVBAR-CONTENT */
.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler img {
  display: block;
}
.navbar_button {
  width: 136px;
  height: 64px;
  background: rgba(26, 224, 237, 0.1);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: moveShadow 4s linear infinite;
  animation-delay: 1ms;
  transition: background 0.3s ease, border 0.3s ease, backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
  color: #ffffff;
  font-family: "ClashDisplay";

  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}

/* Move the inset box-shadow around the border */
@keyframes moveShadow {
  0% {
    box-shadow: 0px 5px 6px rgba(26, 224, 237, 1) inset; /* bottom */
  }
  25% {
    box-shadow: 5px 0px 6px rgba(26, 224, 237, 1) inset; /* right */
  }
  50% {
    box-shadow: 0px -5px 6px rgba(26, 224, 237, 1) inset; /* top */
  }
  75% {
    box-shadow: -5px 0px 6px rgba(26, 224, 237, 1) inset; /* left */
  }
  100% {
    box-shadow: 0px 5px 6px rgba(26, 224, 237, 1) inset; /* back to bottom */
  }
}
.navbar_button:hover {
  background: #1ae0ed;
  border: 1px solid #33a3cc;
  backdrop-filter: blur(70px);
}
.heroContents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 5;
}

/* Common heading style */
.heroContents h1 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-family: "Benzin";
  line-height: 1.1;
  letter-spacing: 2%;
  text-align: center;
}

/* LINE 1 — Solid white */
.heroContents .line1 {
  display: block;
  font-weight: 600;
  font-size: 67.14px;
  color: #ffffff;
}

/* LINE 2 — Gradient bold */
.heroContents .line2 {
  display: block;
  font-weight: 700;
  font-size: 109px;

  background: linear-gradient(180deg, #ffffff 0%, #59e4f6 70%, #28dfed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LINE 3 — Stronger gradient, heavier weight */
.heroContents .line3 {
  display: block;
  font-weight: 800;
  font-size: 109px;

  background: linear-gradient(180deg, #95f7ff 0%, #44e4ef 50%, #00cce0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heroContents p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-size: 24px;
  line-height: 33.2px;
  letter-spacing: 2%;
  text-align: center;
  color: #ffffff;
  margin-top: 10px;
}
.brakeTagSM {
  display: none;
}
.mainHeroButton {
  width: 326px;
  height: 64px;
  border-radius: 40px;
  background: #ffffff33;
  border: none;
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;

  /* Animation */
  animation: mainBtnMoveShadow 2s linear infinite;
  /* Smooth transitions */
  transition: background 0.4s ease, border 0.4s ease, box-shadow 0.4s ease,
    backdrop-filter 0.4s ease, color 0.4s ease;
  margin-top: 20px;
}
@keyframes mainBtnMoveShadow {
  0% {
    box-shadow: 0px 5px 6px rgba(255, 255, 255, 0.8) inset; /* bottom */
  }
  25% {
    box-shadow: 5px 0px 6px rgba(255, 255, 255, 0.8) inset; /* right */
  }
  50% {
    box-shadow: 0px -5px 6px rgba(255, 255, 255, 0.8) inset; /* top */
  }
  75% {
    box-shadow: -5px 0px 6px rgba(255, 255, 255, 0.8) inset; /* left */
  }
  100% {
    box-shadow: 0px 5px 6px rgba(255, 255, 255, 0.8) inset; /* bottom again */
  }
}
.mainHeroButton:hover {
  background: #ffffff;
  color: #1ae0ed;
  box-shadow: -4px 0px 4px 0px #ffffff inset;
  cursor: pointer;
}
.heroTitleWrapper {
  overflow: hidden;
  display: inline-block;
}

.heroTitle {
  opacity: 0;
  transform: translateY(500px); /* starting position */
  animation: heroBounceUp 4s forwards;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroBounceUp {
  0% {
    opacity: 0;
    transform: translateY(500px); /* far down */
  }

  /* Fast rise */
  55% {
    opacity: 1;
    transform: translateY(-3px); /* soft overshoot */
  }

  /* Smooth settle */

  100% {
    opacity: 1;
    transform: translateY(0); /* final position */
  }
}
.curved_arrow_wrapper {
  position: absolute;
  top: 49%;
  left: 19.5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.curved_arrow_wrapper img {
  width: 63px;
  height: 38px;
  transform-origin: bottom left; /* bounce direction: top-right */
  animation: arrowDiagonalBounce 1.4s linear infinite;
  animation-delay: 1ms;
}

@keyframes arrowDiagonalBounce {
  0% {
    transform: scale(1); /* normal size */
  }
  50% {
    transform: scale(1.5, 1.5); /* expands diagonally to top-right */
  }
  100% {
    transform: scale(1); /* back to normal */
  }
}
.coinLogo_wrapper {
  position: absolute;
  right: 23%;
  top: 54%;
}

.coinLogo_wrapper img {
  max-width: 100%;
  height: auto; /* optional size */
  animation: coinSpin 3.5s linear infinite;
  animation-delay: 1ms;
  transform-origin: center center;
}
@keyframes coinSpin {
  0% {
    transform: rotate(0deg); /* start */
  }
  100% {
    transform: rotate(360deg); /* full rotation */
  }
}
/* ABOUT_SECTION-styling */
.mainPage_aboutSection {
  max-width: 100%;
  height: auto;
  position: relative;
  padding-top: 35px;
  padding-bottom: 100px;
}
.about_blur-line {
  position: absolute;
  top: 0;
  width: 100%;
}
.about_blur-line img {
  width: 100%;
  height: auto;
}
.aboutSection_content img {
  max-width: 100%;
  height: auto;
}
.aboutSection_des p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ffffff;
  margin-top: 21px;
  margin-bottom: 20px;
}
.aboutSection_btn button {
  width: 178px;
  height: 64px;
  border: none;
  border-radius: 40px;
  background: #ffffff33;
  box-shadow: 0px 4px 4px 0px #ffffff inset;
  color: #ffffff;
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

/* The Container (Mask) */
.aboutSection_content {
  overflow: hidden;
  position: relative;
  /* This element is reveal-1, so its delay is 0s */
  transition-delay: 1s !important;
}

/* The Image Element (The mover) */
.aboutSection_content img {
  /* Define the animation: 1.2s smooth slide */
  transition: transform 1s cubic-bezier(0.2, 0.4, 0.2, 1);
  /* Initial State: Pushed down 100% of its height */
  transform: translateY(100%);
  display: block;
  z-index: 1;
}

/* Final State: Image moves up */
.aboutSection_content.is-visible img {
  transform: translateY(0);
}

/* ========================================= */
/* 2. TEXT & BUTTON ANIMATIONS (Reveal-2 and Reveal-3) */
/* ========================================= */

/* Base Slide-Up Setup for Text and Button */
.aboutSection_des.revealBottom,
.aboutSection_btn.revealBottom {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(50px);
}

/* Final State: Text and Button move up */
.aboutSection_des.revealBottom.is-visible,
.aboutSection_btn.revealBottom.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggering Delays */
/* Text is reveal-2, starts after the image is moving */
.aboutSection_des.reveal-2 {
  transition-delay: 0.2s;
}

/* Button is reveal-3, starts after the text is moving */
.aboutSection_btn.reveal-3 {
  transition-delay: 0.28s;
}
.currency_logo {
  animation: floatUpDown 1.5s linear infinite;
  animation-delay: 1ms;

  position: absolute;
  top: 362px;
  left: 5%;
}
.currency_logo img {
  max-width: 100%;
  height: auto;
}
.bag_logo {
  position: absolute;
  top: -10px;
  right: 8%;
}
.bag_logo img {
  max-width: 100%;
  height: auto;
  z-index: 0;
}

.currency_logo img {
  width: 100%;
  height: auto;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-60px); /* height of floating */
  }
  100% {
    transform: translateY(0);
  }
}
.bag_logo img {
  width: 100%;
  height: auto;
  transform-origin: center center;
  animation: bagPulse 1.5s linear infinite;
  animation-delay: 1ms;
}

@keyframes bagPulse {
  0% {
    transform: scale(1); /* original size */
  }
  50% {
    transform: scale(
      calc(152.67 / 130)
    ); /* scale to 152.67px if base size = 100px */
  }
  100% {
    transform: scale(1); /* back to original */
  }
}
.business_marketers_section .title h1 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 80px;
  line-height: 90px;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;

  /* Gradient Animation */
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3),
    #ffffff,
    rgba(255, 255, 255, 0.3)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientShift 7s ease-in infinite;
  animation-delay: 1ms;
}

/* Animation KEYFRAMES */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%; /* gradient on left */
  }
  50% {
    background-position: 100% 50%; /* gradient moves to right */
  }
  100% {
    background-position: 0% 50%; /* returns left */
  }
}
.business_wrapper {
  margin-top: 20px;
}
.bussiness_owners_box {
  max-width: 645px;
  width: 100%;
  height: 572px;
  background: #ed921a;
  border: 1px solid #ffffff;
  border-radius: 32px;
  backdrop-filter: blur(84px);
  position: relative;

  box-shadow: 0px 0px 33px 0px #ffffff38 inset;
  padding: 30px;
  cursor: pointer;
}
.marketers_box {
  max-width: 645px;
  width: 100%;
  height: 572px;
  background: #00d35b;
  border: 1px solid #ffffff;
  border-radius: 32px;
  backdrop-filter: blur(84px);

  box-shadow: 0px 0px 33px 0px #ffffff38 inset;
  position: relative;
  cursor: pointer;
  padding: 30px;
}
.bussiness_owners_box_content h3 span {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 30px;
  line-height: 55px;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: #ffffff;
}
.bussiness_owners_box_content h3 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: #ffffff;
}
.bussiness_owners_box_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes first to top, second to bottom */
  height: 100%; /* required if you want bottom alignment */
}

.business_man {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.business_man img {
  max-width: 100%;
  height: auto;
}
.business_analyst {
  position: absolute;
  left: 23px;
  top: 180px;
}
.business_analyst img {
  max-width: 100%;
  height: auto;
  transition: filter 0.2s ease, transform 0.2s ease;
  opacity: 0.8;
}
.business_ownerTag {
  max-width: 361px;
  width: 100%;
  height: 84px;
  border-radius: 60px;
  background: #ffffff4d;
  border: 1px solid #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;

  /* Smooth transitions */
  transition: background 0.5s ease, border-color 0.5s ease;
}

.business_ownerTag h3 {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 0;

  /* Smooth text color transition */
  transition: color 0.5s ease;
}

.business_ownerTag span img {
  max-width: 100%;
  height: auto;
  margin-left: 10px;

  /* Smooth filter transition */
  transition: filter 0.5s ease;
}

/* Image inside card */
.bussiness_owners_box:hover .business_analyst img {
  filter: drop-shadow(0 0 0px #ffffff) drop-shadow(0 0 0px #ff9100);
  transform: scale(1);
  transition: filter 0.35s ease, transform 0.5s ease;
}

/* Card hover → Tag background white */
.bussiness_owners_box:hover .business_ownerTag {
  background: #ffffff;
  border-color: #ffffff;
}

/* Card hover → Text becomes orange */
.bussiness_owners_box:hover .business_ownerTag h3 {
  color: #ed921a;
}

/* Card hover → Icon becomes orange using filter */
.bussiness_owners_box:hover .business_ownerTag span img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(63%) saturate(618%)
    hue-rotate(-8deg) brightness(94%) contrast(92%);
}
.business_man img {
  max-width: 100%;
  height: auto;
  transition: transform 0.7s ease;
  transform-origin: bottom right; /* grow upward + toward left */
}

/* Hover effect */
.bussiness_owners_box:hover .business_man img {
  transform: scale(1.12);
}
.marketers_box_content h3 span {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 55px;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: #ffffff;
}
.marketers_box_content h3 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: #ffffff;
}
.marketer img {
  max-width: 100%;
  height: auto;
  border-radius: 32px;
  z-index: 1;
}
.marketer {
  position: absolute;
  right: 0;
  bottom: 0;
}
.dollar_logo img {
  max-width: 100%;
  height: auto;
  transition: filter 0.7s ease, transform 0.7s ease;
}
.dollar_logo {
  position: absolute;
  left: 0px;
  top: 140px;
  z-index: -1;
}
.marketers_box_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes first to top, second to bottom */
  height: 100%; /* required if you want bottom alignment */
}

.marketer_Tag {
  max-width: 361px;
  width: 100%;
  height: 84px;
  border-radius: 60px;
  background: #ffffff4d;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.7s ease, border-color 0.7s ease;
}
.marketer_Tag h3 {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 0;
  margin-right: 10px;
}
/* Hover effect on the whole card */
.marketers_box:hover .dollar_logo img {
  filter: drop-shadow(0 0 0px #ffffff) drop-shadow(0 0 0px #00d35b);
  transform: scale(1); /* optional */
}
/* Card hover → Tag background white */
.marketers_box:hover .marketer_Tag {
  background: #ffffff;
  border-color: #ffffff;
}

/* Card hover → Text becomes orange */
.marketers_box:hover .marketer_Tag h3 {
  color: #00d35b;
}
.marketers_box:hover .marketer_Tag span img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(86%) saturate(3330%)
    hue-rotate(118deg) brightness(92%) contrast(101%);
}
.marketer img {
  max-width: 100%;
  height: auto;
  transition: transform 0.7s ease;
  transform-origin: bottom right; /* grow upward + toward left */
}

/* Hover effect */
.marketers_box:hover .marketer img {
  transform: scale(1.12);
}
.getAppMain {
  width: 100%;
  height: auto;
  margin-top: 110px;
}

/* TITLE */
.getAppTitle {
  vertical-align: middle;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.3) 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* INFO BOXES (left/right) */
.appInfoBox {
  max-width: 400px;
  width: 100%;
  height: 257px;
  background: #ffffff1a;
  border: 1px solid #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column; /* stack items top → bottom */
  justify-content: space-between; /* center horizontally */
  gap: 10px;
  padding: 24px;
  position: absolute;
  top: 227px;
}
.appInfoBox h3 span {
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
}

.appInfoBox h3 {
  font-family: "ClashDisplay";

  color: #ffffff;
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
}

.storeBtns img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
}
.storeBtns {
  display: flex;
  gap: 10px;
}
.appInfoBox-2 {
  max-width: 400px;
  width: 100%;
  height: 257px;
  background: #ffffff1a;
  border: 1px solid #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column; /* stack items top → bottom */
  justify-content: space-between; /* center horizontally */
  gap: 10px;
  padding: 24px;
  position: absolute;
  top: 118px;
  left: 43px;
}
.appInfoBox-2 h3 {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: #ffffff;
}
.phoneWrapper_SM {
  display: none;
}
.appInfoBox-2 h3 span {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: #ffffff;
}
/* PHONE IMAGES */
.phoneWrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: auto;
}

.phoneImg {
  width: 100%;
  max-width: 260px;
  transition: 0.4s ease;
}

.phoneImg.front {
  position: relative;
  z-index: 2;
}

.phoneImg.back {
  position: absolute;
  right: -40px;
  top: 40px;
  z-index: 1;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .getAppTitle {
    font-size: 58px;
  }

  .phoneWrapper {
    max-width: 320px;
  }

  .phoneImg.back {
    right: -20px;
    top: 25px;
  }
}

@media (max-width: 576px) {
  .getAppTitle {
    font-size: 40px;
  }

  .phoneWrapper {
    max-width: 260px;
  }

  .phoneImg {
    max-width: 200px;
  }

  .phoneImg.back {
    right: -10px;
    top: 20px;
  }
}
.titleLine {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 90px;
  line-height: 90px;
  letter-spacing: 2%;
  text-align: center;

  /* Correct gradient text */
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* hidden initially */
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translateX(0);

  transition: none;
}
.getAppContentRow {
  margin-top: -45px;
}

.titleLine.reveal {
  animation: revealFromLeft 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards normal;
}

.line1.reveal {
  animation-delay: 0s;
}
.line2.reveal {
  animation-delay: 0.6s;
}

@keyframes revealFromLeft {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translateX(0);
  }
  60% {
    transform: translateX(10px);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateX(10px);
    opacity: 1;
  }
}
.titleRow {
  position: relative;
}
.dollar_bag {
  position: absolute;
  left: 21%;
}
.dollar_bag img {
  max-width: 100%;
  height: auto;
  animation: pendulumSmooth 3.5s linear infinite;
  transform-origin: center center;
}

@keyframes pendulumSmooth {
  0% {
    transform: rotate(-30deg);
  }
  25% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(30deg);
  }
  75% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-30deg);
  }
}
.vectorLine {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.vectorLine img {
  width: 100%;
  height: auto;
  display: block;
}
.operateCityTitle h2 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 90px;
  line-height: 90px;
  letter-spacing: 2%;
  text-transform: uppercase;

  /* GRADIENT TEXT FIX */
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.carouselFullWidth {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%); /* force full width even inside container */
  overflow: hidden !important;
}

.carouselWrapper {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: moveLeft 20s linear infinite;
  overflow: hidden !important;
}

.carouselContent {
  flex: 0 0 auto;
  width: 520px;
}

.carouselContent img {
  width: 100%;
  border-radius: 30px;
}
.carouselContent h5 {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-size: 34px !important;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  margin-top: 10px;
}
/* Move Right → Left */
@keyframes moveLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-5%);
  }
}
.countryWrapper {
  display: flex;
  gap: 10px;
  margin-top: 23px;
  margin-bottom: 30px;
  /* width: 100vw; */

  overflow-x: auto;
  overflow-y: hidden;

  -ms-overflow-style: none;   /* IE & Edge */
  scrollbar-width: none;      /* Firefox */
}


.country {
  height: 64px;
  background: #ffffff1a;
  border: 1px solid #ffffff;
  padding: 15px 40px;
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  cursor: pointer;
   white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.operateCity {
  margin-top: 247px;
}
.activeCountry {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.66) 0%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  backdrop-filter: blur(0px);
}
.servedInustriesTitle h2 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 90px;
  line-height: 100px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.industriesWrapper {
  max-width: 200px;
  width: 100%;
  height: 200px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  position: relative;
}
.innerDiagonal {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  border-radius: 50px;
}
.industriesWrapper img {
  max-width: 100%;
  height: auto;
}
.industriesWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.industriesTitle {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  margin-top: 10px;
}
.industriesWrapperMain {
  width: 200px;
}
.industriesRow-2 {
  margin-top: 20px;
}
.servedIndustries {
  position: relative;
}
.opposite_curve-1 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.opposite_curve-2 {
  position: absolute;
  top: 0;
  right: 0;
}
.industriesRow-1 {
  margin-top: 50px;
}
.industriesBag {
  position: absolute;
  top: 220px;
  right: 30%;
}
.industriesButton button {
  width: 242px;
  height: 64px;
  background: #ffffff33;
  box-shadow: 0px 4px 4px 0px #ffffff inset;
  border: none;
  border-radius: 40px;
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-top: 50px;
}
.servedIndustries {
  padding-top: 129px;
  padding-bottom: 117px;
}
.footer_top_section {
  max-width: 100%;
  height: 656px;
  background-image: url("./network.svg");
  opacity: 0.9;
}
.footer_top_title h2 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 60px;
  line-height: 80px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3) 0%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.company_growing_count-1 h5 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 70px;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #3462eb;
}
.company_growing_count-2 h5 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 70px;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #f8584f;
}
.company_growing_count-3 h5 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 70px;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #289700;
}
.company_growing_count-4 h5 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 70px;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  color: #f3ef4a;
}
.company_growing_count-1 p,
.company_growing_count-2 p,
.company_growing_count-3 p,
.company_growing_count-4 p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
}
.shadow_circle {
  position: absolute;
  top: -180px;
  left: -150px;
}
.shadow_circle img {
  max-width: 100%;
  height: auto;
}
.coinGroup {
  position: absolute;
  bottom: -50px;
  left: 30px;
}

.mapLogo {
  position: absolute;
  top: 50%;
  right: 60px;
  width: auto; /* Remove 100% width */
  z-index: -1;
}
.mapLogo img {
  width: 100%;
  height: auto;
}
.footer_section_main {
  position: relative;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

.footer_section_main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/footer-waves.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  opacity: 0.5; /* <-- control ONLY image opacity */
  z-index: 0;
}

.footer_section_main * {
  position: relative;
  z-index: 1; /* keeps all content above background */
}

.addressWrapper p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 2%;
  text-align: center;
  color: #ffffff;
  margin-top: 2px;
}
.footer_logo_wrapper img {
  filter: brightness(0) invert(1) contrast(200%);
}
.footer_email img {
  max-width: 100%;
  height: auto;
}
.footer_email p a {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 2%;
  text-align: center;
  color: #ffffff;
}
.footer_email {
  margin-top: 24px;
}
.contact_number_wrapper {
  max-width: 100%;
  height: auto;
}
.contact_number_wrapper p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  letter-spacing: 2%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 4px;
}
.socialIcon_wrapper img {
  max-width: 100%;
  height: auto;
}
.socialIcon_wrapper {
  width: 40px;
  height: 40px;
  background: #ffffff33;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_social_icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 99px;
}
.footer_container {
  padding-top: 126px;
  padding-bottom: 56px;
}
.footer_upper_btn {
  width: 101px;
  height: 101px;
  border: 1px solid #ffffff;
  background: #ffffff4d;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  right: 0;
  cursor: pointer;
  overflow: hidden; /* ensures smooth animation */
  z-index: 10;
}
.addressWrapper,
.contact_number_wrapper {
  padding-top: 68px;
}
/* Arrow animation */
.footer_upper_btn {
  animation: arrowBounce 1.3s ease-in-out infinite;
  transform-origin: center;
}

/* Keyframes */
@keyframes arrowBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* moves up */
  }
  100% {
    transform: translateY(0); /* moves back down */
  }
}

/* BUSINESS_OWNERS_STYLING */
.businessOwnersHeroWrapper {
  max-width: 100%;
  height: 60vh;
  background: #ed921a;
  position: relative;
}
.bussiness_owners_login_btn {
  width: 136px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-weight: 500;
  font-size: 20px;

  animation: moveShadowWhite 4s linear infinite !important;
  transition: background 0.5s ease, backdrop-filter 0.3s ease;
}

@keyframes moveShadowWhite {
  0% {
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.9) inset; /* bottom */
  }
  25% {
    box-shadow: 4px 0 6px rgba(255, 255, 255, 0.9) inset; /* right */
  }
  50% {
    box-shadow: 0 -4px 6px rgba(255, 255, 255, 0.9) inset; /* top */
  }
  75% {
    box-shadow: -4px 0 6px rgba(255, 255, 255, 0.9) inset; /* left */
  }
  100% {
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.9) inset; /* back to bottom */
  }
}

.bussiness_owners_login_btn:hover {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #33a3cc;
  backdrop-filter: blur(70px);
  color: black;
}
.businessOwners_hero_content .hero_content_title h1 {
  font-family: "Benzin";
  font-weight: 700;
  line-height: 55px;
  letter-spacing: 2%;
  font-size: 50px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
}
.businessManMain img {
  max-width: 100%;
  height: auto;
}
.businessOwners_hero_content_left {
  display: flex;
  justify-content: start;
  align-items: center;
}
.businessOwners_hero_content_right {
  display: flex;
  align-items: end;
  justify-content: end;
  height: 60vh;
}
.businessOwners_hero_content .hero_content_title h1 span {
  font-family: "Benzin";
  font-weight: 700;
  line-height: 55px;
  font-size: 30px !important;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
}
.businessOwners_hero_content_left {
  padding-top: 160px;
  position: relative;
}
.hero_download_section h6 {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  color: #ffffff;
  margin-top: 20px;
}
.download_link {
  margin-top: 10px;
}
/* Circle positioning */
.bottom_arrow_circle {
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  width: 101px;
  height: 101px;
  background: #3de5f0;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  z-index: 1;

  /* MOVE CIRCLE UP & DOWN */
  animation: circleFloat 1.6s ease-in-out infinite;
}

/* Arrow direction */
.bottom_arrow_circle img {
  transform: rotate(180deg); /* arrow points down */
}

/* Smooth downward float */
@keyframes circleFloat {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.business_owner_about_section .about_section h1 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 70px;
  leading-trim: NONE;
  line-height: 80px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0;
}
.business_owner_about_section .about_section h1 span {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 54px;
  leading-trim: NONE;
  line-height: 80px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
}
.business_owner_about_section .paragraph {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 33.2px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}
.business_owner_about_section {
  padding-top: 100px;
  position: relative;
}
.whyGrro_businessOwners {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(43, 255, 255, 0.2) 0%,
    rgba(43, 255, 255, 0) 100%
  );
  backdrop-filter: blur(84px);
  padding: 40px;
  margin-top: 153px;
  overflow: visible; /* IMPORTANT */
  z-index: 1; /* create stacking context */
}
.marketers_eclips-1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
/* Gradient Border */
.whyGrro_businessOwners::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 32px;

  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: -1; /* MUST be behind */
}
.whyGrro_businessOwners_img {
  position: absolute;
  right: 35px;
  top: -109px;
}
.whyGrro_businessOwners_top_img {
  position: absolute;
  right: 51px;
  top: -124px;
}

/* Floating Image */
.about_section_top_img {
  position: absolute;
  right: 70px;
  top: -56px;
  z-index: 10; /* above everything */
}

.about_section_top_img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.whyGrro_businessOwners_content h2 span {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
}
.whyGrro_businessOwners_content h2 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3) 0%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.whyGrro_paragraph {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 33.2px;
  letter-spacing: 2%;
  vertical-align: middle;
  color: #ffffff;
}
.whyGrro_businessOwners .sub_paragraph {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  color: #ffffff;
  margin-top: 80px;
}

.bussiness_owners_points_wrapper {
  max-width: 200px;
  width: 100%;
  height: 200px;
  background: #ffffff1a;
  border: 1px solid #ffffff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bussiness_owners_points_wrapper img {
  max-width: 100%;
  height: auto;
}
.point_title {
  color: #ffffff;
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-top: 10px;
}
.business_quotes_section h5 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3) 0%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 98px;
}
.what_you_unlocked_title h2 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 76px;
  line-height: 80px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3) 0%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.points_number_wrapper {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  position: relative;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 100%
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

/* GRADIENT BORDER */
.points_number_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;

  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.points_number_wrapper span {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 28px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}
.what_you_unlocked_points_1 p,
.what_you_unlocked_points_2 p,
.what_you_unlocked_points_3 p {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 0 !important;
  margin-left: 30px;
}
.what_you_unlocked_points_1 {
  padding: 25px 20px;
  border-bottom: 1px solid #ffffff;
}
.what_you_unlocked_points_2 {
  padding: 25px 20px;
  border-bottom: 1px solid #ffffff;
}
.what_you_unlocked_points_3 {
  padding: 25px 20px;
  border-bottom: 1px solid #ffffff;
}
.what_you_unlocked_section {
  margin-top: 120px;
  position: relative;
}
.business_owner_about_arc {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 9999;
}
.smart_solution_section {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(43, 255, 255, 0.2) 0%,
    rgba(43, 255, 255, 0) 100%
  );
  backdrop-filter: blur(84px);
  padding: 40px 40px 10px;
  margin-top: 240px;

  overflow: visible; /* REQUIRED for floating image */
  z-index: 1; /* create stacking context */
}

/* Gradient Border */
.smart_solution_section::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 32px;

  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: -1; /* behind section content */
}

.smart_solution_top_img {
  position: absolute;
  right: 81px;
  top: -73px;
  z-index: 10; /* above everything */
}

.smart_solution_top_img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.carouselCardWrapper {
  max-width: 610px;
  width: 100%;
  height: auto;
  background: #ffffff1a;
  border: 1px solid #ffffff;
  border-radius: 20px;
}
.carouselSectionCustom {
  position: relative;
  width: 100%;
  padding-bottom: 80px; /* space for buttons */
} /* viewport */
.carouselViewport {
  overflow: hidden;
} /* track */
.carouselTrack {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 41px;
} /* cards */

.carouselControls {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
} /* buttons */
.carouselArrow {
  width: 101px;
  height: 101px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.carouselArrow:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.carouselTrack {
  display: flex;
  gap: 24px;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
} /* cards */
.carouselCard {
  min-width: calc(50% - 12px);
  height: 669px;
  background: #ffffff1a;
  border-radius: 20px;
  border: 1px solid #fff;
  backdrop-filter: blur(20px);
  color: #ffffff;
  padding: 24px;
} /* CONTROLS */
.carouselControls {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
} /* buttons */
.carouselArrow {
  width: 101px;
  height: 101px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.carouselArrow:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.carouselSection {
  position: relative;
  padding-bottom: 50px; /* space for buttons */
}
.carouselCardContent h3 {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.carouselCardContent p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
}
.carouselCardInner_card-1 {
  max-width: 274px;
  width: 100%;
  height: 122px;
  background: #ffb26b;
  border: 1px solid #ffb26b;
  border-radius: 20px;
  margin-bottom: 14px;
}
.innerCradContent img {
  max-width: 100%;
  height: auto;
}
.innerCradContent h4 {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0;
  margin-top: 10px;
}
.innerCradContent {
  padding-top: 0px;
}
.carouselCardInner_card-2 {
  max-width: 274px;
  width: 100%;
  height: 122px;
  background: #3843ab;
  border: 1px solid #3843ab80;
  border-radius: 20px;
  margin-bottom: 14px;
}
.carouselCardInner_card-3 {
  max-width: 274px;
  width: 100%;
  height: 122px;
  background: #25ba6a;
  border: 1px solid #25ba6a80;
  border-radius: 20px;
  margin-bottom: 14px;
}
.carouselCardInner_card-4 {
  max-width: 274px;
  width: 100%;
  height: 122px;
  background: #ff6b6b;
  border: 1px solid #ff6b6b80;
  border-radius: 20px;
}
.carouselCardInner_card-5 {
  max-width: 274px;
  width: 100%;
  height: 122px;
  background: #da42b7;
  border: 1px solid #ff6b6b80;
  border-radius: 20px;
  margin-bottom: 14px;
}
.carouselArrow.disabled {
  opacity: 0.4;
  pointer-events: none; /* disable click */
  cursor: not-allowed;
  transform: none;
}
.carouselCardBottomText h4 {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
}
.how_it_work_title h2 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 90px;
  line-height: 70px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 65px;
}
.how_it_work_boxA {
  max-width: 1058px;
  width: 100%;
  height: 272px;
  background: #ffffff1a;
  border: 1px solid #ffffff80;
  border-radius: 20px;
  margin-bottom: 30px;
  margin: auto;
  padding-left: 30px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 53px;
  margin-bottom: 30px;
}
.how_it_work_boxB {
  max-width: 1058px;
  width: 100%;
  height: 272px;
  background: #ffffff1a;
  border: 1px solid #ffffff80;
  border-radius: 20px;
  margin-bottom: 30px;
  margin: auto;
  padding-left: 42px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 30px;
  margin-bottom: 30px;
}
.how_it_work_box_img img {
  max-width: 100%;
  height: auto;
}
.how_it_work_box_content h6 {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
}
.how_it_work_box_content p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 0;
}
.how_it_work_box_number p {
  font-family: "Benzin";
  font-weight: 700;
  font-style: ☞;
  font-size: 150px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.3;
}
.how_it_work_section {
  margin-top: 100px;
  position: relative;
}

.best_suited_section_wrapper {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(43, 255, 255, 0.2) 0%,
    rgba(43, 255, 255, 0) 100%
  );
  backdrop-filter: blur(84px);
  margin-top: 136px;
  padding: 40px;

  overflow: visible; /* REQUIRED */
  z-index: 1;
}

/* Gradient Border */
.best_suited_section_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 32px;

  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: -1;
}

.best_suited_img {
  position: absolute;
  right: 81px;
  top: -73px;
  z-index: 10;
}
.best_suited_Top_img {
  position: absolute;
  right: 73px;
  top: -107px;
}
.best_suited_img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.best_suited_title h2 span {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
}
.best_suited_title h2 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3) 0%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.best_suited_pointsImgwrapper {
  width: 92px;
  height: 92px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner_circle {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner_circle img {
  max-width: 100%;
  height: auto;
}
.best_suited_points h6 {
  font-family: "Benzin";
  font-weight: 500;
  font-size: 19px;
  leading-trim: NONE;
  line-height: 25px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  margin-top: 4px;
}
.best_suited_row-2 {
  margin-top: 44px;
}
.best_suited_row-1 {
  margin-top: 44px;
}
.inner_footer_Left h2 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 50px;
  leading-trim: NONE;
  line-height: 60px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3) 0%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inner_footer_Left p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #ffffff;
}
.connectButton button {
  width: 326px;
  height: 64px;
  font-family: "ClashDisplay";
  font-weight: 600;
  font-style: Semibold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
  background: #ffffff33;
  box-shadow: 0px 4px 4px 0px #ffffff inset;
  border: none;
  border-radius: 40px;
  margin-bottom: 26px;
}
.best_suited_section {
  padding-bottom: 54px;
}
.inner_footer_Top {
  margin-top: 140px;
}
.waveLine {
  width: 100%;
  position: absolute;
  top: 25%;
  transform: translateY(-25%);
}
.waveLine img {
  width: 100%;
  height: auto;
}
.marketersHeroWrapper {
  max-width: 100%;
  height: 60vh;
  background: #00d35b;
  position: relative;
}
.marketers_about_section h1 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 76px;
  leading-trim: NONE;
  line-height: 80px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0;
}
.marketers_about_section h1 span {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 42px;
  leading-trim: NONE;
  line-height: 80px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
}
.marketers_quotes_section p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  color: #ffffff;
  margin-top: 20px;
}
.waveLine_marketer {
  width: 100%;
  position: absolute;
  top: 20%;
}
.waveLine_marketer img {
  width: 100%;
  height: auto;
}
.whyBecomeBox {
  max-width: 610px;
  width: 100%;
  height: 254px;
  border-radius: 20px;
  background: #ffffff1a;
  border: 1px solid #ffffff;
  padding: 20px;
}
.whyBecomeBox_points_wrapper li img {
  max-width: 100%;
  height: auto;
}
.whyBecomeBox_points_wrapper li {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
}
.whyBecomeBox_points_wrapper {
  margin-top: 10px;
  padding: 0;
}
.whyBecomeBoxTitle h5 {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 34px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
}
.whyBecomeBox_points_wrapper li p {
  margin-bottom: 0;
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}
.why_become_Row {
  margin-top: 55px;
}
.why_become_Row-2 {
  margin-top: 20px;
}
.marketers_point-three_left span {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 70px;
  leading-trim: NONE;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
}
.marketers_point-three_left h3 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3) 0%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;
}
.marketers_point-three_right ul {
}
.marketers_point-three_right ul li {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
}
.marketers_point-three_right ul li img {
  max-width: 100%;
  height: auto;
}
.marketers_point-three_right ul li p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}
.marketers_point-three-section {
  margin-top: 234px;
  position: relative;
}
.waveLine_marketer_middle {
  position: absolute;
  width: 100%;
  bottom: 150px;
}
.waveLine_marketer_middle img {
  width: 100%;
}
.best_suited_title p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 33.2px;
  letter-spacing: 2%;
  vertical-align: middle;
  color: #ffffff;
}
/* CARRERS_PAGE-STYLING */
.careersHeroWrapper {
  max-width: 100%;
  height: 60vh;
  background: #1ae0ed;
  position: relative;
  box-shadow: 0px 74px 140px 0px #ffffff33;
}
.careers_man-cartoon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.job_position_wrapper {
  max-width: 420px;
  width: 100%;
  height: auto;
  background: #ffffff1a;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;

  /* smooth interaction */
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.6s ease;
}
.job_position_wrapper:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25),
    /* depth shadow */ inset 0 0 20px rgba(255, 255, 255, 0.08); /* soft inner glow */

  border-color: rgba(255, 255, 255, 0.6);
}

.job_title h4 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0;
}
.job_title span {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-style: Semibold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}
.job_title {
  border-bottom: 1px solid #ffffff80;
  padding-bottom: 10px;
}
.short_jd p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin-top: 21px;
}
.experienceWrapper {
  max-width: 188px;
  width: 100%;
  height: 37px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}
.experienceWrapper img {
  max-width: 100%;
  height: auto;
}
.experienceWrapper p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 0;
}
.salaryWrapper {
  max-width: 131px;
  width: 100%;
  height: 37px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
}
.salaryWrapper img {
  max-width: 100%;
  height: auto;
}
.salaryWrapper p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 0;
}
.qualificationWrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}
.apply-btn button {
  width: 217px;
  height: 64px;
  border-radius: 40px;
  border: none;
  background: #ffffff33;
  box-shadow: 0px 4px 4px 0px #ffffff inset;
  font-family: "ClashDisplay";
  font-weight: 600;
  font-style: Semibold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  margin-top: 21px;
}

/* MODAL */
/* Modal background */
.applyModal {
  max-width: 1015px;
  width: 100%;
  height: auto;
  background: #1ae0ed;
  backdrop-filter: blur(40px);
  border-radius: 30px;
  border: 1px solid #ffffff80;
  color: #fff;
  padding: 40px 20px 40px 20px;
}

/* Job meta row */
.jobMeta {
  display: flex;
  gap: 6px;
  padding: 0 16px 10px;
  font-size: 14px;
  opacity: 0.85;
}

/* Inputs */
.applyModal .form-control,
.applyModal .form-select {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.applyModal .form-control::placeholder {
  color: #ffffff;
}

/* Submit button */
.applySubmitBtn {
  width: 220px;
  height: 54px;
  border-radius: 30px;
  border: none;
  background: #1ae0ed;
  color: #000;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.applySubmitBtn:hover {
  transform: translateY(-2px);
}
.modal-title {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 25px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
}
.modal-time {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}
.modal-meta-year {
  max-width: 188px;
  width: 100%;
  height: 37px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 5px 15px;
}
#modalJobExp {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-left: 4px !important;
}
.modal-meta-salary {
  max-width: 131px;
  width: 100%;
  height: 37px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 5px 15px;
}
#modalJobSalary {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-left: 4px !important;
}
.header_line {
  border-bottom: 1px solid #ffffff80;
  margin: 20px 20px 0 20px;
}
.modal_form_control {
  max-width: 457px;
  height: 50px;
}
.form-control {
  border-bottom: 1px solid #e5e9eb !important;
  border: none !important;
  background: transparent !important;
  border-bottom: 1px solid #ffffff80 !important;
}
.form-control:focus {
  outline: none;
  box-shadow: none !important;
}
.modal_form_control ::placeholder {
  color: #ffffff;
  font-size: 1px !important;
  font-weight: 400;
  opacity: 1; /* IMPORTANT for Firefox */
}
.modal_form-select {
  max-width: 457px;
  height: 50px;
  background-color: transparent;
  border-bottom: 1px solid #e5e9eb !important;
  border: none !important;
  background: transparent !important;
  border-bottom: 1px solid #ffffff80 !important;
}
.modal_form-select:focus,
.modal_form-select:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ffffff !important; /* optional highlight */
}
/* Hide default file input */
.customFileUpload input[type="file"] {
  display: none;
}

/* Custom button style */
.customFileUpload {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #e5e9eb;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-left: 15px;

  font-family: "ClashDisplay";
  font-size: 14px;
  color: #ffffff;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.modal_form-select option {
  background: #1ae0ed;
  color: #ffffff; /* white text */
  font-family: "ClashDisplay";
  font-size: 16px;
}
.modal_form-select option:hover,
.modal_form-select option:checked {
  background-color: #1ae0ed !important;
  color: #000000 !important;
}
.applySubmitBtn {
  width: 326px;
  height: 64px;
  background: #ffffff33;
  box-shadow: 0px 4px 4px 0px #ffffff inset;
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Semibold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  margin-top: 20px;
  text-transform: uppercase;
}
.applySubmitBtn {
  position: relative;
  width: 160px;
  height: 56px;
  border-radius: 40px;
  border: 1px solid #ffffff;
  background: #ffffff33;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "ClashDisplay";
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
}

/* Text */
.applySubmitBtn .btn-text {
  transition: opacity 0.2s ease;
}

/* Loader */
.applySubmitBtn .btn-loader {
  width: 25px;
  height: 25px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;

  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Loading state */
.applySubmitBtn.loading .btn-text {
  opacity: 0;
}

.applySubmitBtn.loading .btn-loader {
  opacity: 1;
}

/* Spinner animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.career_row-2 {
  margin-top: 30px;
}
.career_section {
  padding-top: 100px;
  padding-bottom: 428px;
  position: relative;
}
.career_page_curced {
  position: absolute;
  top: 334px;
  right: 0;
}
.collaborate_left .title h2 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3) 0%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.collaborate_left .paragraph p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 35px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ffffff;
}
.collaborate_form_wrapper {
  max-width: 650px;
  width: 100%;
  height: auto;
  background: #ffffff33;
  border: 1px solid #ffffff80;
  border-radius: 30px;
}
/* FORM WRAPPER */
.collaborate_form_wrapper {
  padding: 40px;
  display: flex;
  align-items: center;
}

/* INPUTS */
.collaborate-input,
.collaborate-textarea,
.collaborate-select {
  height: 56px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff80;
  color: #ffffff;
  font-family: "ClashDisplay";
  font-size: 16px;
  border-radius: 0;
}

.collaborate-textarea {
  height: auto;
  resize: none;
}

/* INPUT TEXT COLOR */
.collaborate-input,
.collaborate-textarea,
.collaborate-select {
  color: #ffffff; /* typed text color */
}

/* Placeholder color */
.collaborate-input::placeholder,
.collaborate-textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* On focus – keep same color */
.collaborate-input:focus,
.collaborate-textarea:focus,
.collaborate-select:focus {
  color: #ffffff;
  background: transparent;
}

/* REMOVE FOCUS GLOW */
.collaborate-input:focus,
.collaborate-textarea:focus,
.collaborate-select:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #ffffff;
  background: transparent;
}

/* DROPDOWN WHITE ICON */
.collaborate-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='white' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  cursor: pointer;
}

/* DROPDOWN OPTIONS */
.collaborate-select option {
  background: #1ae0ed;
  color: #000;
}

/* SUBMIT BUTTON */
.collaborate-submit-btn {
  max-width: 326px;
  width: 100%;
  height: 64px;
  border-radius: 40px;
  background: #ffffff33;
  color: #ffffff;
  font-family: "ClashDisplay";
  font-size: 20px;
  font-weight: 600;
  border: none;
  box-shadow: 0px 4px 4px 0px #ffffff inset;
  text-transform: uppercase;
}
.collaborate_section {
  padding-top: 125px;
  padding-bottom: 65px;
  position: relative;
}
.collaborate-ring-bg {
  position: absolute;
  top: 340px;
}
/* SweetAlert confirm button text color */
.swal-black-text {
  color: #000000 !important;
  font-weight: 600;
}
.contact_section_title h1 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3) 0%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact_section_form_wrapper {
  max-width: 100%;
  height: auto;
  background: #ffffff33;
  border: 1px solid #ffffff80;
  border-radius: 30px;
  margin-top: 30px;
  padding: 40px;
}

/* INPUTS */
.contact-input,
.contact-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff80;
  color: #ffffff;
  padding: 12px 15px;
  font-family: "ClashDisplay";
  font-size: 16px;
  margin-bottom: 10px;
}

/* INPUT + TEXTAREA TEXT COLOR */
.contact-input,
.contact-textarea {
  color: #ffffff; /* typed text color */
  caret-color: #ffffff; /* cursor color */
}

/* PLACEHOLDER COLOR */
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

/* REMOVE BOOTSTRAP OVERRIDES */
.contact-input:focus,
.contact-textarea:focus {
  color: #ffffff;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #1ae0ed;
}

/* SUBMIT BUTTON */
.contact-submit-btn {
  width: 326px;
  height: 64px;
  border-radius: 40px;
  border: 1px solid #ffffff;
  background: #ffffff33;
  box-shadow: 0px 4px 4px 0px #ffffff inset;
  font-family: "ClashDisplay";
  font-weight: 600;
  font-style: Semibold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: #1ae0ed;
  color: #ffffff;
  box-shadow: 0px 0px 0px 0px #ffffff inset;
}

/* Loader */
.contact-submit-btn .btn-loader {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: absolute;
  opacity: 0;
}

/* Loading state */
.contact-submit-btn.loading .btn-text {
  opacity: 0;
}

.contact-submit-btn.loading .btn-loader {
  opacity: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.contact_section {
  padding-top: 91px;
  padding-bottom: 90px;
  position: relative;
}
.cube_logo {
  position: absolute;
  right: 60px;
  top: 55px;
}
.mapWrapper iframe {
  border-radius: 30px;
}
.contactPage_address_wrapper {
  max-width: 392px;
  width: 100%;
  height: 208px;
  background: #ffffff1a;
  border: 1px solid #ffffff;
  border-radius: 20px;
  margin-bottom: 20px;
}
.contactPage_address_wrapper-2 {
  max-width: 392px;
  width: 100%;
  height: 176px;
  background: #ffffff1a;
  border: 1px solid #ffffff;
  border-radius: 20px;
  margin-bottom: 20px;
}
.contactPage_address_wrapper-3 {
  max-width: 392px;
  width: 100%;
  height: 172px;
  background: #ffffff1a;
  border: 1px solid #ffffff;
  border-radius: 20px;
  margin-bottom: 20px;
}
.contactPage_address_content img {
  max-width: 100%;
  height: auto;
}
.contactPage_address_content p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 2%;
  text-align: center;
  color: #ffffff;
  margin-top: 14px;
}
.contactPage_email_content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
}
.contactPage_email_content p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 2%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 4px;
}
.contact_options_wrapper {
  margin-top: 70px;
}
.aboutPage-about_section {
  max-width: 100%;
  height: auto;
  background-image: url("../assets/bgImages/about-about-bg.svg");
  position: relative;
  z-index: -2;
}
.aboutPage-about_content p {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 35px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 46px;
}
.aboutPage-about_content {
  padding-top: 88px;
  padding-bottom: 47px;
}
.about_circle_shadow {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -40%);
}
.about_circle_shadow img {
  max-width: 498px;
  height: 498px;
}
.about-about-bg {
  position: absolute;
  bottom: 103px;
  z-index: -1;
}
.about-about-bg img {
  max-width: 100%;
  height: auto;
}
.inMinuteSection_title h2 {
  font-family: "Benzin";
  font-weight: 700;
  font-size: 60px;
  leading-trim: NONE;
  line-height: 50px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0.3) 0%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 51px;
}
.inMinuteSection_card {
  max-width: 232px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  padding-top: 75px;
  padding-bottom: 8px;
  position: relative;
  overflow: hidden;
}

/* Bottom 75px gradient only */
.inMinuteSection_card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75px; /* ONLY bottom area */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  pointer-events: none;
}

.inMinuteSection_card img {
  max-width: 100%;
  height: auto;
}
.inMinuteSection_card h6 {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-style: Semibold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #f4f8f9;
  margin-top: 37px;
}
.circle_design {
  position: absolute;
  top: -41px;
  left: -32px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.inMinuteSection {
  padding-top: 68px;
  padding-bottom: 80px;
}
.about_big_text h1 {
  font-family: "Benzin";
  font-weight: 700;
  font-style: ☞;
  font-size: 200px;
  leading-trim: NONE;
  line-height: 174.39px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.group_text {
  display: flex;
  gap: 16px;
  align-items: center;
}

.group_text h6 {
  position: relative;
  font-family: "ClashDisplay";
  font-weight: 600;
  font-size: 34px;
  line-height: 100%;
  text-transform: uppercase;
  color: #f4f8f9;

  white-space: nowrap; /* ✅ FORCE ONE LINE */
  padding-left: 16px; /* space for divider */
}

/* Vertical divider */
.group_text h6:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 36px;
  background: rgba(255, 255, 255, 0.6);
}
.about_big_text {
  margin-top: 162px;
}
.group_text {
  margin-top: 12px;
}
.industries_section {
  padding-top: 110px;
  padding-bottom: 89px;
}
.offcanvas {
  background: #1ae0ed;
}
.nav-item a {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Semibold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  margin-bottom: 20px;
}
.offcanvas-title {
  font-family: "Benzin";
  font-weight: 700;
  font-style: Semibold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  margin-bottom: 30px;
}
.nav-item a.active {
  font-family: "ClashDisplay";
  font-weight: 600;
  font-style: Semibold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff !important;
}
.nav-item a:hover {
  color: #ffffff !important;
}
.nav_social_icons {
  display: flex;
  gap: 10px;
}
.nav_icon_wrapper {
  width: 39px;
  height: 40px;
  background: #ffffff33;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav_icon_wrapper img {
  max-width: 100%;
  height: auto;
}
/* Default navbar */
.navbar {
  transition: all 0.4s ease;
}

/* Hide-only state */
.navbar.logo-only .navbar-toggler,
.navbar.logo-only .navbar_button {
  opacity: 0;
  pointer-events: none;
}

/* Keep logo visible */
.navbar.logo-only .navbar-brand {
  opacity: 1;
}

/* Smooth hide */
.navbar-toggler,
.navbar_button {
  transition: opacity 0.3s ease;
}
.navbar-brand_logo {
  mix-blend-mode: difference;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.8));
}
.offcanvas_inner {
  background: rgb(255, 255, 255);
}
.offcanvas-title-inner {
  color: black;
}
.nav_icon_wrapper-inner {
  border: 2px solid #1ae0ed;
}
.offcanvas-title img {
  max-width: 50%;
  height: auto;
}
.offcanvas-header {
  padding-bottom: 0;
}
.marketers_middle_eclips {
  position: absolute;
  bottom: -400px;
  left: 0;
}
.best_suite_clips {
  position: absolute;
  right: 0;
}
.best_suite_clips img {
  max-width: 100%;
  height: auto;
}

.business_owners_hero_left {
  display: flex;
  align-items: center;
}
.business_owners_hero_right {
  display: flex;
  align-items: end;
  justify-content: end;
  height: 60vh;
}
.carouselTrack {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.carouselCard {
  flex: 0 0 calc(50% - 12px); /* Desktop: 2 cards */
}

@media (max-width: 768px) {
  .carouselCard {
    flex: 0 0 100%; /* Mobile: 1 card */
  }
}
.footer_Top_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sub_paragraph-marketers {
  font-family: "ClashDisplay";
  font-weight: 500;
  font-style: Medium;
  font-size: 35px;
  leading-trim: NONE;
  line-height: 50px;
  letter-spacing: 2%;
  vertical-align: middle;
  color: #ffffff;
}
.footer_logo_SM {
  display: none;
}

/* Initial hidden state */
.reveal-from-bottom {
  opacity: 0;
  transform: translateY(80px);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}

/* When visible */
.reveal-from-bottom.active {
  opacity: 1;
  transform: translateY(0);
}

/* OVERLAY */
.demoModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

/* ACTIVE */
.demoModalOverlay.active {
  opacity: 1;
  pointer-events: all;
}

/* MODAL */
.demoModal {
  max-width: 945px;
  width: 100%;
  background: #1ae0ed;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transform: translateY(40px);
  transition: transform 0.3s ease;
}

/* OPEN ANIMATION */
.demoModalOverlay.active .demoModal {
  transform: translateY(0);
}

/* CLOSE */
.closeModal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* TITLE */
.demoModal h2 {
  font-family: "Benzin";
  font-size: 28px;
  color: #fff;
  margin-bottom: 24px;
}

/* FORM */
.demoForm input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 0;
  margin-bottom: 22px;
color: #FFFFFF;
  font-size: 16px;

}

.demoForm input::placeholder {
  color: rgba(255, 255, 255, 0.9);
    font-family: "ClashDisplay";
  font-size: 16px;

}

.demoForm input:focus {
  outline: none;
}

/* DATE */
.dateField {
  position: relative;
}

.calendarIcon {
  position: absolute;
  right: 0;
  bottom: 14px;
  pointer-events: none;
}

/* SUBMIT */
.scheduleBtn {
  width: 100%;
  height: 48px;
  background: #ffffff33;
  box-shadow: 0px 4px 4px 0px #ffffff inset;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: "ClashDisplay";
  font-weight: 600;
  font-style: Medium;
  font-size: 20px;
  line-height: 100%;
}
.carouselSectionMain {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
}

.carouselWrapper {
  display: flex;
  gap: 24px;
  width: max-content; /* VERY IMPORTANT */
  animation: autoScroll 60s linear infinite;
}

.carouselWrapper:hover {
  animation-play-state: paused;
}

@keyframes autoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.dateField {
  position: relative;
  width: 100%;
}

.dateField input[type="date"] {
  width: 100%;
  height: 48px;
  font-size: 16px;
}

/* Fake placeholder */
.fakePlaceholder {
  position: absolute;
  left: 0px;
  top: 35%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  font-size: 16px;
    font-family: "ClashDisplay";

  transition: 0.2s ease;
  color: #ffffff;
  display: none !important;
}

/* Hide when date is selected or focused */
.dateField input:focus + .fakePlaceholder,
.dateField input:valid + .fakePlaceholder {
 display: none;
}
.dateField input[type="date"]:valid {
  color: #ffffff !important;
}
