@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --fq-green: #2ebd71;
  --fq-green-dark: #388e3c;
  --fq-orange: #fea400;
  --fq-orange-dark: #e68900;
  --fq-navy: #262a3f;
  --fq-dark-bg: #1e2d3d;
  --fq-stories-bg: #262a3f;
  --fq-stories-rt: #d9f0dc;
  --fq-text: #000000cc;
  --fq-muted: #666666;
  --fq-border: #e0e0e0;
  --fq-font: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--fq-font);
  color: var(--fq-text);
  margin: 0;
  padding: 0;
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-weight: 700;
}

a {
  color: #fea400;
  text-decoration: none;
}

input {
    min-height: 50px;
}

.yellow-btn {
  background: var(--fq-orange);
        color: #ffffff;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    position: relative;
    padding: 13px 45px;
    border: none;
     transition: background 0.2s;
}
.yellow-btn:hover {
  background-color: var(--fq-green);
  color: #fff;
}

.green-btn {
  background: var(--fq-green);
        color: #ffffff;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    position: relative;
    padding: 13px 45px;
    border: none;
     transition: background 0.2s;
}
.green-btn:hover {
  background-color: var(--fq-orange);
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.fq-navbar {
  padding: 10px 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fq-navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.fq-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fq-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fq-logo-icon {
  color: var(--fq-orange);
  font-size: 1rem;
  line-height: 1;
}

.fq-navbar .nav-link {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  padding: 6px 10px;
  transition: color 0.2s;
}

.fq-navbar .nav-link:hover {
  color: var(--fq-green);
}

.fq-navbar .nav-link.active {
  color: var(--fq-green);
}

.fq-btn-login {
  background-color: var(--fq-orange);
  color: #ffffff;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  position: relative;
  padding: 12px 45px;
}

.fq-btn-login:hover {
  background-color: var(--fq-green);
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.fq-hero {
  position: relative;
  min-height: 420px;
  background: url('../images/hero_image.jpg') top center / cover no-repeat;
  overflow: hidden;
  height: 100vh;
}

.fq-inner-banner {
  height: 450px;
  max-height: 450px;
}

.fq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.fq-hero-title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.fq-hero-sub {
  display: block;
  font-weight: 400;
  font-size: 25px;
  margin-top: 40px;
  line-height: 40px;
  font-style: italic;
  color: #fff;
}

@media (max-width: 767px) {
  .fq-hero {
    background-position: 60% 100%;
  }
  .fq-inner-banner {
    min-height: 320px;
    max-height: 400px;
    background-position: 70% 100%;
  }

  .fq-hero-title {
    font-size: 1.5rem;
  }
}

/* ============================================================
   CONNECT STRIP
   ============================================================ */
.fq-connect-strip {
  border-bottom: 1px solid var(--fq-border);
}

.fq-connect-strip p {
  font-size: 24px;
  margin-bottom: 0;
}

.fq-btn-green {
  background-color: var(--fq-green);
  border: none;
  transition: background 0.2s;
  text-decoration: none;
  color: #ffffff;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  padding: 17px 30px;
  line-height: normal;
}

.fq-btn-green:hover {
  background-color: var(--fq-orange);
  color: #fff;
}

/* ============================================================
   STATS
   ============================================================ */
.fq-stat-heading {
  font-size: 2rem;
  line-height: 1.4;
  color: #000;
  text-align: center;
  font-weight: 800;
}

.fq-stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.fq-stat-desc {
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}

.fq-orange {
  color: var(--fq-orange);
}

.fq-green-text {
  color: var(--fq-green);
}

/* ============================================================
   PLATFORM
   ============================================================ */
.fq-platform-section {
  background: #f3f3f3;
  border-top: 1px solid #e5e5e5;
}

.fq-result-list {
  /* max-width: 740px; */
  margin: 0 auto;
}

.fq-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--fq-green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 1px;
}

.fq-link-green {
  color: var(--fq-green);
  text-decoration: underline;
}

.fq-link-green:hover {
  color: var(--fq-green-dark);
}

/* ============================================================
   MISCONCEPTIONS
   ============================================================ */
.fq-misconceptions {
  background: var(--fq-navy);
}

.fq-misconceptions h6 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* ============================================================
   STORIES
   ============================================================ */
.fq-stories-section {
  display: flex;
  flex-wrap: wrap;
}

.fq-stories-left {
  background: #46c97e url(../images/testimonial_quote.png) no-repeat;
  background-position: 60px 25px;
}

.fq-stories-left h1 {
  position: relative;
}

/* .fq-stories-left::before {
      content: '';
    background: url(../images/testimonial_quote.png) no-repeat;
    position: absolute;
    top: 65px;
    left: 65px;
    width: 150px;
    height: 144px;
} */

.fq-stories-right {
  background: var(--fq-stories-rt);
}

.fq-story-avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.fq-story-bubble {
      padding: 30px;
    background: #f8f8f8;
    flex: 3;
    position: relative;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.fq-story-name {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  color: #2550ea;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.fq-case-logo img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.2s;
}

.fq-logo img {
  max-width: 180px;
}

.fq-case-logo img:hover {
  filter: none;
}

.fq-logo-placeholder {
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.fq-contact-section {
  position: relative;
  background:
    url('../images/footer_form_bg.jpg') top center / cover no-repeat;
  overflow: hidden;
}

.fq-contact-section label.form-label {
    font-size: 18px;
    color: #fff;
}

.fq-contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
}

.fq-form-input {
  border-radius: 4px;
  font-size: 0.88rem;
  border: 1px solid #ccc;
  padding: 10px 14px;
  background: #fff;
}

.fq-form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.25);
  border-color: var(--fq-green);
}

.fq-recaptcha-placeholder {
  font-size: 0.78rem;
  min-width: 140px;
  text-align: center;
}

.fq-btn-orange {
  background: var(--fq-orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.fq-btn-orange:hover {
  background: var(--fq-orange-dark);
  color: #fff;
}

.product-title {
  color: var(--fq-green);
}

/* ============================================================
   FOOTER
   ============================================================ */
.fq-footer-link {
  color: var(--fq-muted);
  text-decoration: none;
  font-size: 16px;
  line-height: 2;
  display: block;
  transition: color 0.2s;
}

.fq-footer-link:hover {
  color: var(--fq-green);
}

.fq-social-icons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.fq-social-icon {
  color: #aeadad;
  font-size: 1.3rem;
  transition: color 0.2s;
  text-decoration: none;
}

.fq-social-icon:hover i {
  color: #007acc;
}

@media (max-width: 767px) {
  .fq-social-icons {
    justify-content: flex-start;
  }
}

/* ============================================================
   UTILITY
   ============================================================ */
.shadow-sm {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}
ul.dropdown-menu {
  border-radius: 0;
  padding: 0;
  min-width: 233px;
}
.dropdown-menu li a.dropdown-item {
  padding: 20px 15px;
  line-height: normal;
  font-weight: 600;
  color: #333;
}
.dropdown-menu li:hover a.dropdown-item {
  color: #fff;
  background-color: var(--fq-orange);
}
.dropdown-menu li a.dropdown-item.active {
  background-color: var(--fq-orange);
  color: #fff;
}

/*--------------- meet-the-team-section --------------*/
.fq-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  /* border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6; */
}
.fq-team-grid-cell {
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 24px 24px;
  background: #fff;
  position: relative;
  min-height: 325px;
}
.fq-team-grid-cell img {
  max-width: 200px;
  max-height: 200px;
  object-fit:cover;
}
.fq-team-img {
  position: relative;
}
.fq-team-grid-cell .btn-light {
  position: absolute;
  bottom: 0;
  right: -30px;
  width:56px;
  height:56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:0 0.5rem 1rem rgba(0,0,0,0.06);
}
.fq-team-info {
  font-size: 21px;
  font-weight: bold;
}
.inner_pages_midcontainer ul li {
  margin-bottom: 10px;
}
ul.press_bullet li {
  border-bottom: 1px solid #e1e1e1;
  padding: 12px 0px;
  margin-bottom: 7px;
  list-style: none;
}
ul.press_bullet li a {
  text-decoration: none;
  color: #2ebd71;
}

@media (min-width: 992px) {
  .terms-and-con {
    font-size: 18px;
    line-height: 36px;
    color: rgba(0, 0, 0, 0.8);
  }
  .fq-hover-dropdown:hover .dropdown-menu,
  .fq-hover-dropdown:focus-within .dropdown-menu {
    display: block;
    margin-top: 0; /* Remove any BS5 js margin */
  }
  .fq-hover-dropdown .dropdown-toggle::after {
    transition: transform 0.2s;
  }
  .fq-hover-dropdown.show .dropdown-toggle::after,
  .fq-hover-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  .modal-dialog {
    max-width: 762px;
}
}

@media screen and (min-width: 768px) {
  .footer-logo {
    min-height: 175px;
  }
  .footer-logo img {
    max-width: 210px;
  }
}

@media screen and (max-width:991px) {
  button.navbar-toggler {
    background: #2ebd71;
}
.navbar-collapse ul.navbar-nav {
  position: absolute;
  width: calc(100% - 23px);
  margin: 0 auto;
  background: #fff;
  color: #000;
  padding: 20px;
  top: 70px;
  max-width: 700px;
}
.fq-navbar li.nav-item {
  width: 100%;
  border-bottom: 1px solid #d1d1d1;
  /* text-align: center; */
  padding: 10px 0;
}
.fq-navbar li.nav-item:last-child {
  border: none;
  padding-bottom: 0;
}
.fq-btn-login {
  float: left;
}
.fq-navbar .nav-link {
  color: #000;
  padding: 0;
}
}

@media screen and (max-width: 767px) {
  .fq-hero-sub {
    font-size: 17px;
    margin-top: 10px;
    line-height: 26px;
}
  button.navbar-toggler {
    background: #2ebd71;
}
.navbar-collapse ul.navbar-nav {
  position: absolute;
  width: calc(100% - 23px);
  margin: 0 auto;
  background: #fff;
  color: #000;
  padding: 20px;
  top: 70px;
  max-width: 520px;
}
.fq-navbar li.nav-item {
  width: 100%;
  border-bottom: 1px solid #d1d1d1;
  /* text-align: center; */
  padding: 10px 0;
}
.fq-navbar li.nav-item:last-child {
  border: none;
  padding-bottom: 0;
}
.fq-btn-login {
  float: left;
}
.fq-navbar .nav-link {
  color: #000;
  padding: 0;
}
  .fq-logo img {
    max-width: 130px;
  }
  .fq-team-grid-cell {
    border-right: none;
  }
  .footer-logo img {
    max-width: 200px;
  }
  footer.fq-footer {
    text-align: center;
}
.footer-logo {
  align-items: center;
}
.fq-connect-strip p {
  font-size: 15px;
  text-align: center;
}
.fq-btn-green {
  float: none;
  font-size: 14px;
  padding: 14px 30px;
}
.fq-stat-heading {
  font-size: 1.5rem;
}
.fq-stat-number {
  font-size: 2.5rem;
}
.fq-stat-desc {
  font-size: 16px;
  line-height: normal;
}
.fq-stories-left {
  padding: 20px !important;
}
.fq-story-card {
  display: inherit !important;
}
.fq-contact-section {
  position: relative;
  background: url(../images/footer_form_bg_mobile.jpg) top center / cover no-repeat;
}
.modal-body p {
  font-size: 14px;
}
.modal-title {
  font-size: 18px;
}
input {
    min-height: 45px;
}
}