@font-face {
  font-family: "boing_light";
  src: url("/static/fonts/Boing_LightWEB.7acb9c74.woff2") format("woff2"), url("/static/fonts/Boing_LightWEB.55494bd0.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "boing_med";
  src: url("/static/fonts/Boing_MediumWEB.6567610d.woff2") format("woff2"), url("/static/fonts/Boing_MediumWEB.e0f795ed.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "boing_semi";
  src: url("/static/fonts/Boing_SemiboldWEB.1881cee2.woff2") format("woff2"), url("/static/fonts/Boing_SemiboldWEB.e79cb856.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

  :root {
    --primary-color: #c0e82b;
    --secondary-color: #0a2540;
    --text-color: #333;
    --light-text: #fff;
    --gray-text: #777;
    --gray: #4c4c4e;
    --light-bg: #f5f5f5;
    --card-bg: #fff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --breakpoint-1: 1440px;
    --altogether-linear: linear-gradient(314deg, #62BB46 4.35%, #FFF200 103.61%);
}

body {
  margin: 0;
  font-family: "boing_light",'Segoe UI', Arial, sans-serif;
  background: white;
}

.altogether-linear {
  background: linear-gradient(314deg, #62BB46 4.35%, #FFF200 103.61%);
}

.altogether-linear-reverse {
background: linear-gradient(316deg, #FFF200 -51.12%, #62BB46 126.5%);}

/* Utility classes */
.row { display: flex; flex-wrap: wrap; }
/* .no-gutters {     
  margin: 0 auto;
    display: flex;
    width: 100%;
    gap: 10px;
    background: none;
    justify-content: center;
  flex-wrap: nowrap; } */
.flex-nowrap { flex-wrap: nowrap !important; }
.w-100 { width: 100% !important; }
.flex-grow-0 { flex-grow: 0 !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.col-auto { flex: 0 0 auto; }
.d-flex { display: flex !important; justify-content: space-between; }
.d-md-block { display: block !important; }
.d-block {    display: flex; flex-direction: column; padding: 1rem; text-decoration: none; color: black;}
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-end { justify-content: flex-end !important; }
.flex-wrap { flex-wrap: wrap !important; }
.text-right { text-align: right !important; }
.text-white { color: #fff !important; }
.bold { font-weight: bold; }
.lead { font-size: 1.15em; }
.p-3 { padding: 1rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.mr-3 { margin-right: 1rem !important; }
.far { padding: 0 0.5rem; }
.border-right { border-right: 1px solid #ccc !important; }
.border-left { border-left: 1px solid #ccc !important; }
.border-bottom { border-bottom: 1px solid #ccc !important; }
.border-gray-mid { border-color: #ccc !important; }
.h-100 { height: 100% !important; }
.pointer-none { pointer-events: none; }
.no-radius { border-radius: 0 !important; }

/* Header styles */
header {
  background: #444;
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav--logo {
  display: block;
  max-width: 170px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.nav--borders .nav-link {
  border-radius: 0;
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #4C4C4E;
  text-decoration: none;
  padding: 0.75rem 2.5rem 0.75rem 0rem;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.nav-link.active,
.nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: #e0ff00;
}

.btn.cta {
  background: var(--altogether-linear, linear-gradient(314deg, #62BB46 4.35%, #FFF200 103.61%));

  border: none;
  border-radius: 24px;
  font-family: "boing_med";
  font-size: 1em;
  cursor: pointer;
  padding: 0.75rem 2rem;
  margin-left: 1rem;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn.cta--hover:hover {
  background: linear-gradient(90deg, #d4ff00, #00e6a3);
}

.btn--wide { min-width: 120px; }
.btn--icon i { margin-left: 0.5rem; }

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 24px;
    display: inline-block;
}

.hero-bg {
  background: url("/img/hero.jpg");
  background-size: cover;
  background-position: 0px 0rem;
  background-attachment: fixed;
  color: #fff;
  height: fit-content;
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 7rem 0px 9rem 6rem;
    color: #fff;
    min-height: 400px;
    width: 1440px;
}

.hero-text {
  max-width: 500px;
  font-size: 5rem;
  font-family: 'boing_semi';
  z-index: 1;
  padding-left: 3vw;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    /* transition: transform 0.45s cubic-bezier(.4,1.3,.5,1), box-shadow 0.45s; */

}
.hero-text:hover {
  /* transform: translateY(-6px) scale(1.03); */
}


.hero-card {
  font-family: 'boing_med';
  background: #00000027;
  color: #ffffff;
  border-radius: 24px;
  padding: 32px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 390px;
  min-width: 300px;
  text-align: center;
  backdrop-filter: blur(16px); /* glass blur */
  -webkit-backdrop-filter: blur(16px); /* Safari support */
  border: 1px solid rgba(255,255,255,0.18); /* subtle border for glass */
}
.hero-card h2 {
  margin-top: 0;
  font-size: 2.4em;
  font-weight: bold;
}
.hero-card input {
    width: 12rem;
    padding: 12px;
    height: 4rem;
    margin: 0px 0 12px 0;
    border: none;
    font-family: 'boing_med';
    color: #f1f1f1;
    text-align: center;
    border-bottom: solid 6px #cccccc;
    font-size: 4em;
    background: #00000000;
    box-shadow: none;
}
.hero-card input::placeholder {
  color: #ffffffac; /* Change to your desired color */
}
.hero-card button {
  width: 100%;
  font-family: "boing_semi";
  background: var(--altogether-linear, linear-gradient(314deg, #62BB46 4.35%, #FFF200 103.61%));  
  color: #222;
  border: none;
  border-radius: 28px;
  padding: 12px 0;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
}

.quick-container {
  padding: 1rem;
    /* background: white; */
    border-radius: 6px 6px 0 0;
    max-width: 1450px;
    margin: 0 auto;
}

.mini-square {
background: radial-gradient(100% 100% at 0% 0%, rgba(255, 255, 255, 0.4) 0%, rgb(255 255 255 / 19%) 100%);
/* border: 1px solid; */
color:white;
border-image-source: linear-gradient(142.84deg, rgba(255, 253, 212, 0.59) 10.63%, #62BB46 44.71%, rgba(255, 255, 255, 0.2) 84.61%);
backdrop-filter: blur(10px);
/* padding: 0.5rem 2rem; */
/* width: 14vw; */
border-radius: 12px;
border-width: 1px;
transition: transform 0.45s;
}

.mini-square:hover {
  transform: translateY(-6px) scale(1.005);
}

.hero-icons {
background: linear-gradient(158.79deg, #63BB46 19.71%, #D0D119 86.02%);
width: fit-content;
border-radius:24px;
width: 42px;
height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: 'boing_med';
}

.solutions-card {
    transition: transform 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28), box-shadow 0.35s ease;
}
.solutions-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.help-card {
    transition: transform 0.2s;
}
.help-card:hover {
    transform: translateY(-6px) scale(1.03);
}
.learn-more-link:hover {
    color: #62BB46;
    text-decoration: underline;
}

.tabbednav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.tabbed-content-panel .tabbednav-tabs {
    position: relative;    /* or 'sticky' if you want it to stick on scroll */
    z-index: 1001;
    background: #fff;  
    margin: 0 auto;
    width: fit-content;
    border-radius: 3rem;
    padding: 1rem;
    box-shadow: -4px 3px 20px 0px rgba(0, 0, 0, 0.15);
    margin-top: -6rem;
    font-family: 'boing_med';
}
.tabbed-content-panel .tabbednav-link {
    border: none;
    border-radius: 999px;
    margin: 0 8px;
    background: #fff;
    color: var(--gray);
    font-weight: 500;
    padding: 0.5rem 2rem;
    transition: background 0.2s, color 0.2s;
}
.tabbed-content-panel .tabbednav-link.active {
    background: var(--altogether-linear, linear-gradient(314deg, #62BB46 4.35%, #FFF200 103.61%));
}
.tabbed-content-panel .tab-pane {
    padding: 2rem 0 0 0;
}
.tabbed-content-panel .btn-dark {
    background: #222;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 2rem;
    font-weight: 500;
}
.tabbed-content-panel img {
    height: auto;
    border-radius: 8px;
    transition: transform 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28), box-shadow 0.35s ease;
}
.tabbed-content-panel img:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.animate-ez {
  transition: transform 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28), box-shadow 0.35s ease;
}

.animate-ez:hover {
  transform: translateY(-10px) scale(1.05);
}

.options-grid__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28),box-shadow 0.35s ease;
}

.options-grid__card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.options-grid__icon {
    margin-bottom: 1rem;
}
.options-grid__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
}
.options-grid__desc {
    color: #444;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    height: 5rem;
}
.options-grid__links a {
    font-weight: 600;
    color: #222;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.options-grid__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 16px 16px;
    pointer-events: none;
}

/* Animation classes */
.solutions-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.66,0,.17,1), transform 0.7s cubic-bezier(.66,0,.17,1);
}

.solutions-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 0px 10px; }
  .hero-card { margin-top: 1rem; }
.hero-text {  font-size:3rem;}
}


@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}

/* Font Awesome icon sizing and spacing */
.fa-2x {
  font-size: 2em;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.text-success {
  color: #28a745 !important;
}

/* Custom icon classes (if not already defined by Font Awesome) */
.icon-user:before {
  content: "\f007"; /* fa-user */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
}


.icon-card:before {
  content: "\f09d"; /* fa-credit-card */
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-size: 18px;
}

.icon-chat:before {
  content: "\f4ad"; /* fa-comments */
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
      color: white;
  font-size: 18px;
}

.icon-pin:before {
  content: "\f276"; /* fa-map-pin */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
      color: white;
  font-size: 18px;
}

.icon-cross:before {
  content: "\f00d"; /* fa-times */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
      color: white;
  font-size: 18px;
}

.navbar-main, .navbar-secondary {
  width: 100%;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.nav-link {
  text-decoration: none;
  transition: color 0.2s;
  gap: 6px;
}
.nav-link:hover {
  color: #3fd47f !important;
}
.btn-signup:hover {
  filter: brightness(0.95);
  text-decoration: none;
}
.btn-signup i {
  font-size: 1.1em;
}

/* Utility classes */
.bold {
  font-weight: bold;
}

.h5 {
  font-size: 1rem;
}