@font-face {
    font-family: 'ClashGrotesk';
    src: url('../fonts/ClashGrotesk/WOFF/ClashGrotesk-Regular.woff2') format('woff2'),
         url('../fonts/ClashGrotesk/WOFF/ClashGrotesk-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ClashGrotesk';
    src: url('../fonts/ClashGrotesk/WOFF/ClashGrotesk-Medium.woff2') format('woff2'),
         url('../fonts/ClashGrotesk/WOFF/ClashGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ClashGrotesk';
    src: url('../fonts/ClashGrotesk/WOFF/ClashGrotesk-Bold.woff2') format('woff2'),
         url('../fonts/ClashGrotesk/WOFF/ClashGrotesk-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tomorrow';
    src: url('../fonts/Tomorrow/Tomorrow-Thin.woff2') format('woff2'),
         url('../fonts/Tomorrow/Tomorrow-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tomorrow';
    src: url('../fonts/Tomorrow/Tomorrow-Regular.woff2') format('woff2'),
         url('../fonts/Tomorrow/Tomorrow-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tomorrow';
    src: url('../fonts/Tomorrow/Tomorrow-Medium.woff2') format('woff2'),
         url('../fonts/Tomorrow/Tomorrow-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TurretRoad';
    src: url('../fonts/Turret_Road/TurretRoad-Medium.woff2') format('woff2'),
         url('../fonts/Turret_Road/TurretRoad-Medium.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TurretRoad';
    src: url('../fonts/Turret_Road/TurretRoad-ExtraBold.woff2') format('woff2'),
         url('../fonts/Turret_Road/TurretRoad-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

.tomorrow-thin {
  font-family: "Tomorrow", sans-serif;
  font-weight: 100;
}

.tomorrow-regular {
  font-family: "Tomorrow", sans-serif;
  font-weight: 400;
}

.tomorrow-medium {
  font-family: "Tomorrow", sans-serif;
  font-weight: 500;
}

.turret-road-medium {
  font-family: "TurretRoad", sans-serif;
  font-weight: 400;
}

.turret-road-extrabold {
  font-family: "TurretRoad", sans-serif;
  font-weight: 800;
}


:root {
    --basic_color: #32045E;
    --basic_grey: #BFBFBF;
    --white-color: #fff;
    --text-dark: #000;
    --greyish_blue: #6E798C;
    --bg_greyish_yellow: #F3F2EF;
    --grey_text: #808080;
    --form-btn_bg: #32045E;
    --deposit-btn_bg: #542086;
    --dark-color2: #161719;
    --light-ash: #f4f4f4;
    --landingPage-bg: #f5f5f5;
}
body.landing__page__body.dark-theme {
    --light-ash: #161719;
}
body.landing__page__body::-webkit-scrollbar-thumb {
    background: #6E0ACE;
}
body.landing__page__body::-webkit-scrollbar-track {
    background: #32045E;
    /* background: #E8E8E8; */
}
body.landing__page__body {
    font-family: 'ClashGrotesk', sans-serif;
    /* max-width: 1440px; */
    margin: 0 auto;
    background-color: var(--landingPage-bg);
}
.page__width {
    max-width: 1840px;
    margin: 0 auto;
}

.custom__btn {
    background-color: var(--basic_color);
    color: var(--white-color);
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 27px;
    padding: 5px 45px;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.2s ease;
}
.custom__btn__outline {
    background-color: transparent;
    color: var(--basic_color);
    border: 1px solid var(--basic_color);
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 27px;
    padding: 5px 45px;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.2s ease;
}
.custom__btn:hover {
    color: var(--white-color);
    transform: scale(0.98);
}
.custom__btn__outline:hover {
    color: var(--basic_color);
    transform: scale(0.98);
}

.section_padding_py {
    padding: 80px 0;
}
@media (max-width: 575.98px) {
    .section_padding_py {
        padding: 40px 0;
    }
}
.page__loader {
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 100vh;
    z-index: 9999;
    position: fixed;
    align-items: end;
    justify-content: center;
    border-bottom: 1px solid #fff;
    /* background-color: var(--basic_color); */
    transition: transform 1s ease, opacity 0.8s ease;
}

/* Sliding up effect */
.page__loader.slide-up {
  transform: translateY(-100%);
  pointer-events: none;
  opacity: 0;
}

.page__loader .intro__text {
    /* max-width: 1000px; */
    margin: 0 auto;
    color: #fff;
    margin-bottom: 100px;
}
.page__loader.hide {
  display: none;
}
#loaderCounter,
.intro__text .h1 {
    font-size: 75px;
    font-family: "Tomorrow", sans-serif !important;
    font-weight: 500;
}
@media (max-width: 575.98px) {
    #loaderCounter,
    .intro__text .h1 {
        font-size: 40px;
    }
}
@media (min-width: 1200px) {
    #loaderCounter,
    .intro__text .h1 {
        font-size: 100px;
    }
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-up__animation {
  animation: slideInUp 2.8s ease-out forwards;
}

.landing__page__body .hero__section {
    /* background-color: var(--basic_color); */
    /* height: 100vh; */
    min-height: 100vh;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hero__section .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    overflow: hidden;
}
.hero__section .hero__btn {
    text-transform: uppercase;
    border: 2px solid var(--white-color);
}

.shine-btn {
    border: none !important;
    position: relative;
    --shine-bg: var(--basic_color);
    --shine-speed: 4.5s;
    --shine-color-rgb: 255,255,255;
}

.shine-btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 70deg,
        rgba(var(--shine-color-rgb), 0.4) 80deg,
        rgba(var(--shine-color-rgb), 0.8) 85deg,
        rgba(var(--shine-color-rgb), 1) 90deg,
        rgba(var(--shine-color-rgb), 0.8) 95deg,
        rgba(var(--shine-color-rgb), 0.4) 100deg,
        transparent 110deg,
        transparent 360deg
    );
    border-radius: 15px;
    animation: rotate-shine var(--shine-speed) linear infinite;
    z-index: -1;
}

.shine-btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--shine-bg);
    border-radius: 15px;
    z-index: -1;
}

@keyframes rotate-shine {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



/* ----------------- */
/* Features section */
/* _______________ */
.lock-scroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}

/* .features__section {
  position: relative;
  height: 100vh;
  overflow: hidden;
} */

/* .scroll-lock-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
} */

.scroll-frames {
  position: relative;
  width: 100%;
  height: 100%;
}

.scroll-lock-wrapper button.scroll-arrow .fa {
    font-size: 25px;
}

.scroll-lock-wrapper button.scroll-arrow {
    position: absolute;
    /* top: 50%; */
    right: 5px;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #6E0ACE;
    background: transparent;
    border: 2px solid #6E0ACE;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: transform 0.5s ease;
    opacity: 0.5;
    z-index: 100;
}
.scroll-lock-wrapper button.scroll-arrow:hover {
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 1;
}
.scroll-lock-wrapper button.scroll-arrow.scroll-up {
  top: 5%;
}
.scroll-lock-wrapper button.scroll-arrow.scroll-down {
  top: 13%;
}

.slider__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.slider__frame.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Animate each col-12 block */
.animated_Yaxis_slideUp,
.slider__frame .animated_feature {
  opacity: 0;
  transform: translateY(250px);
  transition: all 0.5s ease;
}

.animated_Yaxis_slideUp,
.slider__frame.is-active .animated_feature {
  opacity: 1;
  transform: translateY(0);
}





/* .slider__frame:nth-child(1) { background: #fdd; }
.slider__frame:nth-child(2) { background: #dfd; }
.slider__frame:nth-child(3) { background: #ddf; } */


/* Left Content Styling */
.text-content {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fast-badge {
    display: inline-flex;
    align-items: center;
    /* background: white; */
    border: 1px solid #000;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    transition: all 0.3s ease;
    font-family: "Turret_road_medium", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}

/* .fast-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} */

.fast-badge .fa-bolt {
    animation: pulse 2s infinite;
    color: #292D32;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.features-title {
    font-size: 45px;
    font-weight: 800;
    color: var(--text-dark);
    font-family: "Turret_road_extraBold", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
    text-transform: capitalize;
}

.features-description {
    font-size: 20px;
    color: var(--text-light);
    word-spacing: 7px;
    max-width: 500px;
    font-family: "ClashGrotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Image placeholders for reference */
.phone-image {
    max-width: 300px;
    margin: 0 auto;
    max-height: 400px;
    height: 100%;
}
.phone-image img {
    max-height: 450px;
    height: 100%;
    /* width: 100%; */
    /* object-fit: cover; */
}
.subscription-image {
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    align-items: end;
    padding-bottom: 30px;
}

/* Desktop-only lock styling */
@media (min-width: 992px) {
  .features__section {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .scroll-lock-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .features-title {
        font-size: 2.2rem;
    }
    .features__section {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .scroll-lock-wrapper {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow: hidden;
    }
}

@media (max-width: 767.98px) {
    .features__section {
        padding: 60px 0;
    }

    .features-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .features-description {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .fast-badge {
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto 24px;
    }

    .text-content {
        text-align: center;
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
  .how__it__works__section,
  .features__section,
  .scroll-lock-wrapper {
    position: static !important;
    height: auto !important;
    overflow-y: visible !important;
  }

  .scroll-frames {
    height: auto !important;
  }

  .slider__frame {
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: auto !important;
    margin-bottom: 3rem;
  }

  .slider__frame .animated_feature {
    transform: none !important;
    opacity: 1 !important;
  }

  .scroll-lock-wrapper button.scroll-arrow {
    display: none;
  }
}



@media (max-width: 575.98px) {
    .features-title {
        font-size: 1.8rem;
    }

    .features-description {
        font-size: 1rem;
    }
    .slider__frame {
        position: static !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: auto !important;
        margin-bottom: 0;
    }
}



/* ---------------- */
/* why us section */
/* --------------- */
.why-us-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateY(-250px);
}
.why-us-card.animate_card_in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease-out;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hover-bg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.why-us-card:hover::before {
    opacity: 1;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(50, 4, 94, 0.2);
    border-color: var(--hover-bg);
    background-color: var(--basic_color);
}

.card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.card__title {
    font-size: 34px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    transition: color 0.4s ease;
    font-family: "Turret_road_medium", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.why-us-card:hover .card__title {
    color: white;
}

.card-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.card-arrow svg {
    width: 30px;
    height: 30px;
    stroke: var(--basic_color);
    transition: stroke 0.4s ease;
}

.why-us-card:hover .card-arrow svg {
    stroke: white;
}

.why-us-card:hover .card-arrow {
    transform: translate(4px, -4px);
}

.card-description {
    color: var(--text-light);
    font-size: 20px;
    line-height: 1.9;
    flex-grow: 1;
    transition: color 0.4s ease;
    font-family: "ClashGrotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.why-us-card:hover .card-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Special styling for the featured card (Privacy) */
.featured-card {
    background: var(--primary-color);
}

.featured-card::before {
    background: var(--hover-bg);
}

.featured-card .card__title,
.featured-card .card-description {
    color: white;
}

.featured-card .card-arrow svg {
    stroke: white;
}

.featured-card:hover {
    background: var(--hover-bg);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

    .why-us-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .why-us-card {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .card__title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}


/* ----------------- */
/* Benefits section */
/* --------------- */
.benefits__section {
  background-color: var(--basic_color);
  overflow: hidden;
}

.benefit__block__container {
  display: flex;
  flex-wrap: wrap;
  perspective: 1000px;
  position: relative;
  justify-content: center;
  left: -45px;
}

.benefit__block {
  border-radius: 40px;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 45px;
  font-size: 18px;
  margin-bottom: 3px;
  font-family: 'ClashGrotesk', sans-serif;
  font-weight: 400;
  opacity: 0;
  transform: translateY(-100px) scale(0.8);
  min-width: 200px;
  text-transform: capitalize;
}

.benefit__block.rotate-block  {
  transform: rotate(-45deg) translateY(-150px) scale(0.8);
}

.benefit__block:nth-child(4) {
    position: absolute;
    top: -10px;
    z-index: 2;
    transform: rotate(50deg) translateY(40px) translateX(-90px) !important;
    min-width: 175px;
}

.benefit__block:nth-child(7) {
  position: relative;
  top: -30px;
  z-index: 3;
  min-width: 175px;
  transform: scale(1.13) !important;
}
.block_position_left {
    position: relative;
    left: 75px;
}

@media (max-width: 1440px) {
    .benefit__block:nth-child(4) {
      transform: rotate(50deg) translateY(-35px) translateX(-25px) !important;
    }
}
@media (max-width: 1024px) {
    .benefit__block:nth-child(4) {
        transform: rotate(50deg) translateY(-180px) translateX(100px) !important;
    }
    .benefit__block:nth-child(7) {
      top: 0px;
      transform: scale(1) !important;
    }
}





.benefit__block__color1 { background-color: #BC7CF9; color: white; }
.benefit__block__color2 { background-color: #FFE5A5; }
.benefit__block__color3 { background-color: #C7FFA5; }
.benefit__block__color4 { background-color: #F5ECFE; }
.benefit__block__color5 { background-color: #A6F7E2; }

/* Animate in */
@keyframes fallIn {
  0% {
    opacity: 0;
    transform: translateY(-150px) scale(0.8);
  }
  80% {
    transform: translateY(10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fallInTilted {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translateY(-150px) scale(0.8);
  }
  80% {
    transform: rotate(-10deg) translateY(10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) translateY(0) scale(1);
  }
}

.benefit__block.animate-in {
  animation: fallIn 0.8s ease-out forwards;
}

.benefit__block.rotate-block.animate-in {
  animation: fallInTilted 0.8s ease-out forwards;
}



@media (max-width: 768px) {
    .benefit__block__container {
        left: 0;
        gap: 20px;
    }
    .benefit__block {
        font-size: 14px;
        padding: 0 20px;
        min-width: 150px;
        /* height: 38px; */
    }
    .benefit__block:nth-child(4) {
        position: relative;
        top: 0;
        z-index: 2;
        transform: rotate(0deg) translateY(0) scale(1) !important;
        min-width: 175px;
    }
    .benefit__block:nth-child(7) {
        position: relative;
        top: 0;
        z-index: 3;
        transform: scale(1) !important;
    }
    .block_position_left {
        position: relative;
        left: 0;
    }
}



.benefits__slider__section {
}

.slider-wrapper {
  position: relative;
}
#benefitsSlider {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

/* .benefits-slider */
.card-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.slide-card {
  flex: 0 0 50%;
  max-width: 80%;
  padding: 40px 20px;
  border-radius: 7px;
  color: #000;
  text-align: center;
  font-family: 'ClashGrotesk', sans-serif;
  font-weight: 400;
  min-height: 300px;
}

.slide-card .slide__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}
.slide-card .content__icon {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: #fff;
}
.slide-card .content__icon img {
    height: 30px;
    width: 30px;
}
.slide-card .slide__content a {
    text-decoration: underline;
    color: #000;
    font-size: 32px;
}
.slide-card .slide__content p {
    font-size: 20px;
    word-spacing: 5px;
}

.slider__color1 { background-color: #A6F7E2; }
.slider__color2 { background-color: #BC7CF9; color: #fff; }
.slider__color2 a { color: #fff !important; }
.slider__color3 { background-color: #FFE5A5; }
.slider__color4 { background-color: #F5ECFE; }
.slider__color5 { background-color: #C7FFA5; }

.slider__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}
.nav-arrow {
  background: transparent;
  border: 2px solid white;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

@media (max-width: 768px) {
    .slide-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .slide-card .slide__content p {
        font-size: 16px;
        word-spacing: 3px;
    }
    .slide-card .slide__content a {
        font-size: 20px;
    }
}


/* ----------------- */
/* how it works us section */
/* --------------- */
.how__it__works__section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.how__it__works__section article {
    max-width: 475px;
    margin: 0 auto;
}
.how__it__works__section article a {
    color: #000;
    font-family: 'Turret_road_medium';
    font-size: 20px;
    text-transform: uppercase;
}
.how__it__works__section article h4 {
    color: #000;
    font-family: 'Turret_road_extraBold';
    font-size: 35px;
    text-transform: capitalize;
}
.how__it__works__section article p {
    font-size: 20px;
}

.works__image__container img.how-img {
    max-height: 350px;
}
.works__image__container {
  max-height: 550px;
  height: 100%;
  max-width: 450px;
  /* background-color: #fff; */
  border-radius: 10px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.7;
  transform: translateY(316px) scale(0.7) rotate(-40deg);
}

/* Animate In */
.slider__frame.is-active .works__image__container.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

/* Animate Out */
.slider__frame.rotate-out .works__image__container {
  opacity: 0.7;
  transform: translateY(-316px) scale(0.7) rotate(40deg);
}

.rotate-in {
  opacity: 1;
  transform: rotateX(0deg) translateY(0) scale(1);
}
.rotate-out {
  opacity: 0.7;
  transform: translateY(-316px) scale(0.7) rotate(40deg);
}
.works__image__container.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

/* TEXT animation */
.how-text-chunk {
  opacity: 0;
  transition: all 0.5s ease-out;
}
.chunk-1 {
  transform: translateX(-80px);
}
.chunk-1.animate-in {
  transform: translateX(0);
  opacity: 1;
}
.chunk-2 {
  transform: translateY(-60px) rotate(-6deg);
}

.chunk-3 {
  transform: translateY(60px) rotate(6deg);
}

.how-text-chunk.animate-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .works__image__container {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  #how__it__works__section .works__image__container {
    opacity: 0;
    transform: scale(0.85);
  }
  #how__it__works__section .works__image__container.fade-center-in {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
  .slider__frame.rotate-out .works__image__container,
  .rotate-out,
  .how-text-chunk {
    opacity: 1;
    transform: none;
  }

  .how__it__works__section article h4 {
        font-size: 25px;
    }
  .how__it__works__section article p {
        font-size: 16px;
    }

  .mobile_slideLeft,
  .mobile_slideRight {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease;
  }

  .mobile_slideLeft {
    transform: translateX(-100%);
  }

  .in-view.mobile_slideLeft,
  .in-view.mobile_slideRight {
    opacity: 1;
    transform: translateX(0);
  }


  .fade-center-in {
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .mobile__slideImg__animation {
    opacity: 0;
    transform: scale(0.2);
    transition: all 0.8s ease;
  }
}



/* ----------------- */
/* About us section */
/* --------------- */
.about__us__section {
  /* background-color: #2a0054; */
      display: flex;
    justify-content: center;
}

.about-us-box {
  background-color: #BC7CF9;
  color: white;
  position: relative;
  border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  /* padding: 40px 20px; */
  /* padding-top: 80px;
  padding-bottom: 80px; */
}

.section-heading {
  font-size: 40px;
  font-family: 'ClashGrotesk', sans-serif;
  position: relative;
}

.business-duration .years {
  font-size: 66px;
  font-family: 'Tomorrow', sans-serif;
  font-weight: 400;
}

.section-divider {
  border-color: #ffffff33;
}

.core-label {
  color: #ffffff5d;
  font-size: 20px;
  margin-bottom: 10px;
}

.about-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  color: #fff;
  max-width: 660px;
  word-spacing: 2px;
  font-family: 'ClashGrotesk', sans-serif;
}

.core-value-card h5 {
  margin-top: 8px;
  font-family: 'ClashGrotesk', sans-serif;
  font-size: 30px;
}

.core-value-card {
  position: relative;
  padding-top: 30px; /* gives space for the bar */
}

.top-frame {
  height: 16px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
}

@media (max-width: 768px) {
    .business-duration .years {
        font-size: 45px;
    }
    .about-text {
        line-height: normal;
        font-size: 18px;
    }
    .about__us__section .section-heading {
        font-size: 30px;
    }
    .about__us__section .core-value-card h5 {
        font-size: 25px;
    }
}



/* FAQ section */
.faq__section {
    background-color: #32045E;
}

.faq-item {
    color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    /* border-radius: 8px; */
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.04); */
}

.faq-item:hover {
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    /* border-color: #6c5ce7; */
}

.faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: grid;
    grid-template-columns: 50px auto;
    transition: all 0.3s ease;
    color: #fff;
    font-family: 'ClashGrotesk', sans-serif;
}

.faq-header:hover {
    /* background: #f8f9ff; */
}

.faq-header:focus {
    outline: none;
}

.faq-question {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
    padding-right: 30px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    /* background: #ffffff; */
    color: #fff;
}

.faq-content.show {
    max-height: 200px;
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: #fff;
    line-height: 1.6;
    font-size: 15px;
    /* border-top: 1px solid #f1f5f9; */
}


@media (max-width: 768px) {
    .faq-header {
        padding: 16px 20px;
    }

    .faq-question {
        font-size: 15px;
        padding-right: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
}




/* --------------- */
/* Footer Section */
/* ------------- */


.footer__section {
    background-color: var(--basic_color);
}
.footer__section .footer__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* margin-bottom: 20px; */
}
.footer__section h4 {
    color: #fff;
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 24px;
    /* line-height: 1.6; */
}
.footer__section h5 {
    color: #fff;
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 18px;
    /* line-height: 1.6; */
}
.footer__section p {
    color: #e4e4e4;
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 16px;
    /* line-height: 1.6; */
    /* opacity: 0.8; */
}
.footer__section .footer__links li {
    margin-bottom: 15px;
}
.footer__section .footer__links a,
.footer__section .footer__info a {
    color: #e4e4e4;
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 16px;
    text-decoration: none;
}
.footer__section .footer__info a:hover {
    color: var(--primary_color);
    /* text-decoration: underline; */
}
.footer__section .socials a {
    height: 35px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}
.footer__section .socials a:hover {
    transform: scale(0.98);
}

.footer__section .copyright__text {
    border-top: 1px solid #fff;
    color: #fff;
    padding: 20px 0;
}
.footer__section .copyright__text p {
    color: #fff;
    text-align: center;
}










        /* --------------- */
        /* --------------- */
/* --------- Affiliate Pages --------- */
        /* --------------- */
        /* --------------- */

.affiliate__page {
    background-color: #F3F2EF;
}
.affiliate__page .affiliate-hero__section h4 {
    color: #000;
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 20px;
}
.affiliate__page .affiliate-hero__section h1 {
    color: var(--basic_color);
    font-family: 'ClashGrotesk__bold', sans-serif;
    font-weight: 600;
    font-size: 50px;
}
.affiliate__page .affiliate-hero__section p {
    color: #000;
    font-family: 'ClashGrotesk', sans-serif;
    font-size: 20px;
}
.affiliate__page .hero__img-container {
    display: flex;
    justify-content: center;
    margin-bottom: -60px;
}
.affiliate__page .hero__img-container img {
    max-height: 555px;
}

.affiliate__page .metrics__section {
    background-color: var(--basic_color);
}
.affiliate__page .metrics__box h1 {
    font-family: 'Turret_road_extraBold', sans-serif;
    font-weight: 800;
    font-size: 80px;
    color: #fff;
}
.affiliate__page .metrics__box p {
    font-family: 'ClashGrotesk', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin-bottom: 0;
}


/* How it works Section */
.affiliate__page .how-it-works__section {
    background-color: #F3F2EF;
    border-radius: 20px;
}
.how-it-works__section article {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.how-it-works__section article h4 {
    color: var(--basic_color);
    font-family: 'clashGrotesk', sans-serif;
    font-weight: 500;
    font-size: 50px;
}
.how-it-works__section article p {
    color: #000;
    font-family: 'ClashGrotesk', sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.how-it-works__section .how-it-works__container {
    background-color: #fff;
    border-radius: 20px;
}
.how-it-works__article-container h4 {
    color: var(--basic_color);
    font-family: 'ClashGrotesk', sans-serif;
    font-weight: 500;
    font-size: 24px;
}
.how-it-works__article-container h3 {
    color: #000;
    font-family: 'ClashGrotesk', sans-serif;
    font-weight: 500;
    font-size: 35px;
    max-width: 517px;
}
.how-it-works__container .how-it-works__img-container {
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}
.how-it-works__img-container1 {
    background-color: #F3F2EF;
}
.how-it-works__img-container2 {
    background-color: #32045E;
}
.how-it-works__img-container3 {
    background-color: #F5ECFE;
}
.floating_img {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}




.affiliate__page .why-join_section h4 {
    color: var(--basic_color);
    font-family: 'ClashGrotesk', sans-serif;
    font-weight: 500;
    font-size: 35px;
}
.affiliate__page .why-join_section h5 {
    color: #000;
    font-family: 'ClashGrotesk', sans-serif;
    font-weight: 500;
    font-size: 24px;
}
.affiliate__page .why-join_section p {
    color: #000;
    font-family: 'ClashGrotesk', sans-serif;
    font-weight: 400;
    font-size: 20px;
}
.affiliate__page .why-join_section ol {

}
.affiliate__page .benefits-list {
    padding: 0;
    counter-reset: list-counter;
}
.affiliate__page .benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    counter-increment: list-counter;
}
.affiliate__page .benefits-list li p {
    margin-bottom: 0;
}
.affiliate__page .benefits-list li::before {
    content: counter(list-counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-family: 'ClashGrotesk', sans-serif;
    color: #32045E;
    background-color: #E9E6E8;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    font-size: 19px;
}



.road__map-container {
  /* overflow: visible;
  padding: 2rem 0; */
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
}

.road__map {
  position: relative;
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  justify-content: space-between;
  /* overflow: hidden; */

}


/* Avatar styling */
.avatar {
  position: relative;
  width: 75px;
  height: 75px;
  border-radius: 50%;
}
.avatar-middle {
    position: relative;
    top: 30px;
}
/* Position each avatar manually */
/* .avatar-1 { top: -5px; }
.avatar-2 { top: -20px; }
.avatar-3 { top: 6px; }
.avatar-4 { top: -5px; }
.avatar-5 { top: -10px; }
.avatar-6 { top: 6px; } */

/* Optional: center dots */
/* .road-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 4px;
} */

.road-center-dot .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.why-join_section .become__affiliate {
    max-width: 650px;
}
.why-join_section .affiliate_subheading{
    max-width: 400px;
    font-size: 16px !important;
    margin: 0 auto;
    line-height: 20px;
}
.why-join_section .become__affiliate li {
    list-style: disc;
}

.trusted__section .container {
    background-color: var(--basic_color);
    border-radius: 20px;
}
.trusted__section h4 {
    font-family: 'ClashGrotesk';
    color: #fff;
    font-size: 35px;
}

.affiliate__page .form_title h4 {
    font-size: 45px;
    font-family: 'ClashGrotesk';
    color: var(--basic_color);
}
.affiliate__page label.body-title {
    font-family: 'ClashGrotesk';
    font-size: 16px;
}
.affiliate__page .wrap-custom-file {
    background-color: #fff;
}
.affiliate__page .form-control,
.affiliate__page textarea {
    background-color: #fff !important;
}
.affiliate__page .social__info input {
    height: 50.5px !important;
}

.affiliate__page .affiliate__modal .modal-content {
    border-radius: 16px;
}
.affiliate__page .affiliate__modal .modal-content h4 {
    font-size: 20px;
    font-family: 'ClashGrotesk';
    color: #1C222B;
    padding-top: 75px;
}
.affiliate__page .affiliate__modal .modal-content p {
    font-size: 20px;
    font-family: 'ClashGrotesk', sans-serif;
}
.affiliate__modal .custom__btn,
.affiliate__modal .custom__btn__outline {
    font-size: 18px;
    border-radius: 7px;
}





@media screen and (max-width: 768px) {
    .affiliate__page .affiliate-hero__section h1 {
        font-size: 40px;
    }
    .affiliate__page .hero__img-container img {
        max-height: 400px;
    }
    .road__map {
        background-size: cover;
    }
    .avatar-middle {
        top: -10px;
    }
}
