
        @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: 700;
        line-height: 4rem;
    }

    .hero {
        font-family: 'Fira Sans Regular', sans-serif;
        font-size: 1.4rem;
        font-weight: 400;
        color:#21275e;
    }
    
    h4 {
        font-family: 'Fira Sans Bold', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color:#21275e;
    }

    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;  #112d4e */
        background-color: #f8c202;
        /* background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(249, 207, 0, 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:60px;
    height:auto;
}
html,
body {
  overflow-x: hidden;
}

.highlight {
box-sizing: border-box;
width: 100%;
background-color: #21275e;
padding: 4px;
color: white;
font-weight: 900;
}

.why {
    font-family: 'Fira Sans Regular', sans-serif;
    font-size: 1.9rem;
    /* font-weight: 900; */
    color:#21275e;
}

.nodeco {
  list-style-type: none;
}

.list-items {
    font-family: 'Fira Sans Light', sans-serif;
    font-size: 1.3rem;
    color: #333;
    margin: 24px;
}

.large {
  font-size: 2rem;
}

.bordered {
      border: 1px solid #ccc;
      border-radius: 0.5rem;
      padding: 1rem;
      background: #ffc628;
    }
.full-height {
      height: 100%;
      object-fit: cover;
      border-radius: 0.5rem;
    }
.row-equal > [class*='col'] {
      display: flex;
      flex-direction: column;
    }

.underlight {
      color: #21275e;
}

.bookademo {
      background-color: #21275e;
      color:#f8c202;
      font-weight: bold;
}

.features {
      color: white;
}

    .bizicard-table {
      max-width: 800px;
      margin: 40px auto;
      border: 1px solid #dee2e6;
    }
    .bizicard-table th {
      background-color: #f8f9fa;
      text-align: center;
      font-size: 1.5rem;
      font-weight: bold;
    }
    .bizicard-table td {
      vertical-align: top;
    }

    .min-equal {
      min-height: 200px;
    }

    .carousel-item > .row {
      display: flex;
    }
    .carousel-item img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }