
        @font-face {
        font-family: 'Fira Sans Bold';
        src: url('assets/fonts/fira_sans/FiraSans-Bold.ttf') format('truetype');
        font-weight: bold;
        font-style: normal;
        }

       @font-face {
        font-family: 'Fira Sans Regular';
        src: url('assets/fonts/fira_sans/FiraSans-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
        }

       @font-face {
        font-family: 'Fira Sans Light';
        src: url('assets/fonts/fira_sans/FiraSans-Light.ttf') format('truetype');
        font-weight: light;
        font-style: light;
        }

    body {
        background-color: #ffffff;
    }

    h1 {
        font-family: 'Fira Sans Bold', sans-serif;
        font-size: 4rem;
        font-weight: 900;
    }

    .hero {
        font-family: 'Fira Sans Regular', sans-serif;
        font-size: 1.4rem;
        font-weight: 400;
        color:rgb(113, 112, 112);
    }
    
    h4 {
        font-family: 'Fira Sans Bold', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color:#330072;
    }

    h3 {
        font-family: 'Fira Sans Bold', sans-serif;
        font-size: 1.6rem;
        font-weight: 900;
        color:#330072;
    }

    .disclaimer {
        font-family: 'Fira Sans Light', sans-serif;
        font-size: 0.8rem;
        color:#000000;
    }

    .hero-gradient {
        --bs-bg-opacity: 1;
        background: #faf7fa;
        background: linear-gradient(90deg, rgba(250, 247, 250, 1) 0%, rgba(181, 130, 232, 1) 100%);
    }

    .hooray-gradient {
        --bs-bg-opacity: 1;
        background: #faf7fa;
        background: linear-gradient(90deg, rgba(250, 247, 250, 1) 0%, rgba(181, 130, 232, 1) 100%);
    }

.arrow-box {
  position: relative;
  background-color: #ffffff;
  padding: 1rem 2rem;
  border: 1px solid #330072;
  border-radius: 0.25rem;
  display: inline-block;
}

/* RIGHT ARROW (desktop) */
.arrow-box::before,
.arrow-box::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Outer arrow (border) */
.arrow-box::before {
  right: -25px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid #330072;
  z-index: 1;
}

/* Inner arrow (fill) */
.arrow-box::after {
  right: -23px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #5c338e;
  z-index: 2;
}

/* ✅ Forcefully remove arrow on mobile (including Safari) */
@media screen and (max-width: 576px) {
  .arrow-box::before {
    border-left: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-right: none !important;
    width: 0 !important;
    height: 0 !important;
    content: "" !important;
  }

  .arrow-box::after {
    border-left: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-right: none !important;
    width: 0 !important;
    height: 0 !important;
    content: "" !important;
  }
}
@media screen and (max-width: 576px) {
  @supports (-webkit-touch-callout: none) {
    .arrow-box::before,
    .arrow-box::after {
      display: none !important;
      content: none !important;
    }
  }
}

.logo{
    width:59%;
    height:auto;
}
html,
body {
  overflow-x: hidden;
}


    
    