/* CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
a{
    text-decoration: none!important;
}

.scrolled{
    background-color: #fff;
}
/* ===== Header Menu Container ===== */
.header-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #f6f6f6;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    border-radius: 99px;
}

/* Menu UL */
.header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px; /* space between items */
}

/* Menu LI */
.header-menu li {
    position: relative;
}

/* Menu links */
.header-menu a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 0.925rem;
    display: flex;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom 0.3s;
        padding: 5px 20px;
}

/* Hover / Focus */
.header-menu a:hover,
.header-menu a:focus {
    color: #5949aa;
}

/* Dropdown menus */
.header-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 0.5rem 0;
    min-width: 180px;
    z-index: 100;
    list-style: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Show dropdown on hover */
.header-menu li:hover > ul,
.header-menu li:focus-within > ul {
    display: flex;
}

/* Dropdown items */
.header-menu li ul li {
    width: 100%;
}

/* Dropdown links */
.header-menu li ul li a {
    padding: 0.5rem 1rem;
    font-weight: 400;
    color: #444;
    border-bottom: none;
}

/* Dropdown hover */
.header-menu li ul li a:hover {
    background-color: #f5f5f5;
    color: #222;
}

/* ----- Hamburger button (desktop hidden) ----- */
.qubix-menu-toggle {
    display: none; /* default hidden, shown on mobile below */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}
.qubix-menu-toggle svg { display: block; }

/* Overlay (hidden by default) */
.qubix-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 95; /* below menu which will be 100+ */
}

/* Mobile behavior */
@media (max-width: 768px) {
    /* Show toggle button on mobile */
    .qubix-menu-toggle {
        display: inline-flex;
        color: #222; /* icon color */
        margin-left: 0.5rem;
    }

    /* Hide the normal horizontal menu and make it a vertical panel */
    .header-nav {
        position: relative;
        background-color: transparent;
        padding: 0;
    }

    /* Make menu panel hidden by default */
    .header-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 16px;
        right: 16px;
        width: min(320px, 85%);
        max-width: 320px;
        height: calc(100vh - 32px);
        padding: 1rem;
        z-index: 1003;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.25rem;
        transform: translateY(-10px) scale(0.98);
        opacity: 0;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    /* When menu is opened, show it and overlay */
    .header-nav.menu-open .header-menu {
        display: flex;
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    .header-nav.menu-open .qubix-menu-overlay {
        display: block;
        opacity: 1;
    }

    /* Menu links - bigger touch targets */
    .header-menu a {
        padding: 14px 16px;
        font-size: 1rem;
    }

    /* Dropdowns inside panel should be visible and stacked */
    .header-menu li ul {
        position: static;
        display: none;
        padding-left: 0.5rem;
    }
    /* if a li has children, let it toggle with a small caret (optional JS enhancement) */
    .header-menu li.open > ul {
        display: block;
    }

    /* Overlay z-index and mobile tweaks */
    .qubix-menu-overlay {
        z-index: 100;
    }
}

/* ---------- QB-FORM: Minimal flat CF7 theme (primary #222222) ---------- */
.qb-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  background: #ffffff; /* page is white */
  color: #222222;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Make sure CF7 form uses the wrapper */
.qb-form .wpcf7-form {
  margin: 0;
  display: flex;
    flex-direction: column;
    gap: 10px;
}
.qb-form .cf7-field-row{
  display: flex;
  gap: 10px;
}
.qb-form .cf7-field{
    flex: 1;
}
/* Labels */
.qb-form label {
  display: block;
  margin-bottom: 8px;
  color: #222222;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Inputs, textareas, selects */
.qb-form input[type="text"],
.qb-form input[type="email"],
.qb-form input[type="tel"],
.qb-form input[type="url"],
.qb-form input[type="number"],
.qb-form input[type="search"],
.qb-form input[type="password"],
.qb-form textarea,
.qb-form select,
.qb-form .wpcf7-form-control.wpcf7-date {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e9e9e9;
  border-radius: 6px;
  background: #f6f6f6;
  color: #222222;
  font-size: 1rem;
  box-shadow: none;
  outline: none;
  transition: border-color .14s ease, box-shadow .14s ease, transform .06s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Subtle bottom-only alternative (uncomment to use):
.qb-form input, .qb-form textarea { border: none; border-bottom: 1px solid #e9e9e9; border-radius: 0; padding-left:0; padding-right:0; }
*/

/* Placeholder */
.qb-form ::placeholder {
  color: rgba(34,34,34,0.36);
}

/* Focus state - flat and accessible */
.qb-form input:focus,
.qb-form textarea:focus,
.qb-form select:focus {
  border-color: #222222;
  box-shadow: 0 0 0 4px rgba(34,34,34,0.04);
}

/* Textarea sizing */
.qb-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Checkbox & radio - modern browsers */
.qb-form input[type="checkbox"],
.qb-form input[type="radio"] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 8px;
  accent-color: #222222; /* modern browsers */
}

/* File input fallback */
.qb-form input[type="file"] {
  border: 1px solid #e9e9e9;
  padding: 10px;
  border-radius: 6px;
}

/* Submit button */
.qb-form .wpcf7-submit {
  display: inline-block;
  background: #222222;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .08s ease, opacity .12s ease;
  margin-top: 12px;
}

/* Button hover / active */
.qb-form .wpcf7-submit:hover  { opacity: .92; transform: translateY(-1px); background: #222222}
.qb-form .wpcf7-submit:active { transform: translateY(0); }

/* Disabled submit */
.qb-form .wpcf7-submit[disabled],
.qb-form .wpcf7-submit.wpcf7-not-valid {
  opacity: .55;
  cursor: not-allowed;
}

/* Small helper text */
.qb-form .helper,
.qb-form .wpcf7-form-control-wrap .hint {
  display: block;
  font-size: .9rem;
  color: rgba(34,34,34,0.6);
  margin-top: 6px;
}

/* Validation messages */
.qb-form .wpcf7-not-valid-tip {
  display: inline-block;
  margin-top: 6px;
  color: #c0392b; /* error red */
  font-size: .9rem;
}

/* Response output */
.qb-form .wpcf7-response-output {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 600;
  box-sizing: border-box;
}
.qb-form .wpcf7-mail-sent-ok {
  background: rgba(34,34,34,0.06);
  color: #222222;
  border: 1px solid rgba(34,34,34,0.06);
}
.qb-form .wpcf7-validation-errors {
  background: rgba(192,57,43,0.06);
  color: #c0392b;
  border: 1px solid rgba(192,57,43,0.08);
}

/* Inline fields & columns (optional helpers) */
.qb-form .row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.qb-form .col {
  flex: 1 1 0;
}

/* Make it responsive */
@media (max-width: 640px) {
  .qb-form { padding: 18px; }
  .qb-form .row { flex-direction: column; }
  .qb-form .wpcf7-submit { width: 100%; text-align: center; }
}

.qb-svg svg rect,
.qb-svg svg path{
    fill: #3ed9c9!important;
}






/* Qubix Comparison Section - Light Theme */
.qb-comparison {
  color: #222222;
}

.qb-container {
    font-family: 'Poppins', sans-serif;
}

.qb-section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222222;
  letter-spacing: -0.02em;
}

/* Table grid */
.qb-comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: #efefef; /* thin divider lines between cells */
  border-radius: 12px;
  overflow: hidden;
}

.qb-row, .qb-header {
  display: contents;
}

.qb-col {
  background: #ffffff;
  padding: 22px 26px;
  font-size: 1rem;
  line-height: 1.5;
  color: #222222;
  text-align: left;
  display: flex;
  align-items: center;
}
.qb-col img {
  width: 70px;
  height: auto;
}

/* Header column styles */
.qb-header .qb-col {
  font-weight: 700;
  font-size: 1.02rem;
  background: #fafafa;
  color: #222222;
  text-align: left;
}

/* Left heading column */
.qb-col.heading {
  font-weight: 600;
  background: #fcfcfc;
  color: #444;
}

/* Qubix column highlight */
.qb-col.highlight {
  background: #ffffff;
  color: #222222;
  border-left: 4px solid #47dcd2;
}

/* Accent pill for header Qubix cell (optional visual) */
.qb-header .qb-col.highlight {
  position: relative;
  padding-left: 34px;
}

/* Hover (subtle) */
.qb-col.highlight:hover {
  background: rgba(89,73,170,0.08); /* faint purple tint */
  transition: background 0.25s ease, transform 0.15s ease;
  transform: translateY(-2px);
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .qb-comparison-table {
    grid-template-columns: 1fr;
  }

  .qb-header { display: none; }

  .qb-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
  }

  .qb-col {
    padding: 18px 20px;
    border-bottom: 1px solid #f5f5f5;
  }

  .qb-col:last-child {
    border-bottom: none;
  }

  .qb-col.heading {
    text-align: center;
    background: #fafafa;
    color: #222222;
  }
}



/* Client SLider */
/* Qubix Smooth Infinite Logo Marquee - Light version */

/* Section container (page background remains white) */
.qb-marquee {
  padding: 48px 0;
}

/* Viewport hides overflow */
.qb-marquee-viewport {
  width: 100%;
  overflow: hidden;
  outline: none; /* focus styles can be added if you want */
}

/* Track holds items inline and will be animated */
.qb-marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  /* animation variables set dynamically via JS:
     --marquee-distance: px to travel
     --marquee-duration: time in seconds
  */
  animation: qb-marquee linear infinite;
  animation-duration: var(--marquee-duration, 28s);
  animation-play-state: running;
  padding-block: 24px;
}

/* Keyframes - move left by the width of one item-set (set by JS) */
@keyframes qb-marquee {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(calc(-1 * var(--marquee-distance)), 0, 0); }
}

/* Each marquee item (acts like slide) */
.qb-marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Square logo card — background only on card */
.qb-logo-card {
  background: #e3e3e3;   /* requested logo block background */
  width: 180px;          /* square size — adjust if needed */
  height: 180px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), box-shadow 220ms;
  will-change: transform;
}

/* Image sizing inside card */
.qb-logo-card img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: .95;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

/* Hover: bring into color and lift */
.qb-logo-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.02);
}

/* Alternate subtle rotation (applies before duplication too) */
.qb-marquee-item:nth-child(odd) .qb-logo-card {
  transform: rotate(-5deg);
}
.qb-marquee-item:nth-child(even) .qb-logo-card {
  transform: rotate(5deg);
}

/* On hover of individual card, normalize rotation and scale */
.qb-logo-card:hover {
  transform: rotate(0deg) scale(1.03) !important;
  background-color: #3DDBC6;
}

/* Pause animation when hovering the viewport */
.qb-marquee-viewport:hover .qb-marquee-track,
.qb-marquee-viewport:focus .qb-marquee-track {
  animation-play-state: paused;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .qb-marquee-track { animation: none !important; transform: none !important; }
}

/* Responsive sizing */
@media (max-width: 1024px) {
  .qb-logo-card { width: 120px; height: 120px; }
}
@media (max-width: 600px) {
  .qb-logo-card { width: 96px; height: 96px; }
  .qb-marquee-track { gap: 16px; }
}

#qb-header:hover{
   background: white;
}
#qb-header.is-hovered {
  background: white;
}

.ehf-header #masthead{
    z-index: 9999;
}

.menu-icon {
    line-height: 0;
}

.qb-menu-link:hover .elementor-heading-title{
    text-decoration: underline;
}

.menu-icon .elementor-icon{
    border: 1px solid #eee;
    border-radius: 8px!important;
}
.qb-menu-link:hover .elementor-icon{
    background-color: #3ddbc6!important;
}
.qb-menu-link:hover .menu-icon .elementor-icon{
    border: 1px solid #000!important;
}













:root{
  --hb-brand: #54d5cb;
  --hb-ink: #0f172a;
  --hb-muted: #64748b;
  --hb-bg: #ffffff;
  --hb-border: rgba(15,23,42,0.06);
  --hb-gap: 24px;
  --hb-max: 1280px;
}

/* skip link */
.skip-link{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus{
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--hb-ink);
  color: #fff;
  z-index: 9999;
  border-radius: 6px;
  text-decoration: none;
}

/* header */
.hb-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--hb-bg);
  border-bottom: 1px solid var(--hb-border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* grid layout: logo | nav | actions */
.hb-header-inner{
  max-width: var(--hb-max);
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--hb-gap);
  align-items: center;
  min-height: 64px;
}

/* logo */
.hb-logo-link{ display:inline-block; }
.hb-logo-img{
  height: 44px;
  width: auto;
  display: block;
  transition: transform .18s ease;
}
.hb-logo-img:hover{ transform: scale(1.02); }

/* NAV WRAP -> allows shrinking */
.hb-nav-wrap{ min-width: 0; }

/* primary nav centred */
.hb-nav{ display:flex; justify-content:center; align-items:center; min-width:0; }
.hb-menu{
  display:flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  justify-content: center;
  min-width:0;

  /* IMPORTANT: allow measurement & fallback overflow */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* firefox */
}
.hb-menu::-webkit-scrollbar{ display: none; } /* hide webkit scrollbar */

.hb-menu > li{ white-space: nowrap; flex: 0 0 auto; }
.hb-menu > li > a{
  color: var(--hb-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 6px 0;
  display: inline-block;
  position: relative;
  letter-spacing: 0.2px;
  transition: color .18s ease, transform .18s ease;
}

/* thin underline on hover */
.hb-menu > li > a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 0%;
  background: var(--hb-brand);
  transition: width .22s ease;
}
.hb-menu > li > a:hover{ color: var(--hb-brand); transform: translateY(-2px); }
.hb-menu > li > a:hover::after{ width: 100%; }

/* actions (right) */
.hb-actions{ display:flex; align-items:center; gap:12px; justify-self:end; }

/* CTA — modern pill with subtle shadow */
.hb-cta-btn{
  background: linear-gradient(180deg, var(--hb-brand), var(--hb-brand));
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(84,213,203,0.12);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.hb-cta-btn:hover, .hb-cta-btn:focus{
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(84,213,203,0.16);
}

/* CTA smaller on mobile */
.hb-cta-btn-mobile{ padding: 12px 16px; width: 100%; display: inline-block; text-align:center; }

/* hamburger button */
.hb-menu-toggle{
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.hb-menu-icon rect{ fill: var(--hb-ink); }

/* mobile panel */
.hb-mobile-panel{
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -22px 24px 80px rgba(12,20,40,0.12);
  transition: right .28s cubic-bezier(.2,.9,.2,1);
  z-index: 1200;
  overflow-y: auto;
}
.hb-mobile-panel.is-open{ right: 0; }
.hb-mobile-panel-inner{ padding: 28px; }
.hb-mobile-close{
  font-size: 28px;
  line-height: 1;
  border: none;
  background: none;
  float: right;
  cursor: pointer;
}
.hb-mobile-menu{ list-style:none; padding: 18px 0 0 0; margin: 0; display:flex; flex-direction:column; gap:14px; }
.hb-mobile-menu a{ text-decoration:none; color:var(--hb-ink); font-weight:700; font-size:16px; }

/* accessibility focus */
.hb-menu a:focus, .hb-cta-btn:focus, .hb-menu-toggle:focus, .hb-mobile-close:focus{ outline: 3px solid rgba(84,213,203,0.18); outline-offset: 3px; }

/* VISUAL TUNING FOR LARGER DESKTOPS */
@media (min-width: 1280px){
  .hb-header-inner{ padding-left:28px; padding-right:28px; }
  .hb-menu{ gap:36px; }
  .hb-logo-img{ height:48px; }
}

/* default collapse breakpoint (kept as a fallback) */
@media (max-width: 1100px){
  .hb-menu{ display:none; }
  .hb-menu-toggle{ display:inline-flex; }
  .hb-cta-btn{ display:none; } /* CTA moves into mobile panel */
}

/* FORCE collapse state (applied by JS when nav can't fit) */
.hb-force-collapse .hb-menu{ display:none !important; }
.hb-force-collapse .hb-menu-toggle{ display:inline-flex !important; }
.hb-force-collapse .hb-cta-btn{ display:none !important; }

/* If nav fits but the user still scrolls horizontally, hide CTA to avoid overlap on narrow widths */
.hb-nav-wrap.narrow ~ .hb-actions .hb-cta-btn{ display:none; }

/* small screens */
@media (max-width: 480px){
  .hb-header-inner{ padding:12px 14px; grid-template-columns: auto 1fr auto; gap:12px; }
  .hb-logo-img{ height:40px; }
  .hb-mobile-panel{ width: 100%; max-width:100%; }
}