/* LOAD RALEWAY */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');

/* APPLY FONT */
.nf-steps,
.nf-steps *{
  font-family:'Raleway','Segoe UI',system-ui,-apple-system,sans-serif;
}

/* SECTION WRAPPER */
.nf-steps{
  width:100%;
  max-width:1800px;
  margin:40px auto;
  padding:0 16px;
}

/* GRID: 4 wide on desktop */
.nf-steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

/* CARD BASE */
.nf-card{
  background:#cfe2ff;
  border-radius:26px;
  min-height:185px;
  transition:background .2s ease,
             box-shadow .2s ease,
             transform .2s ease;
}

/* INNER CONTENT — LEFT STACK */
.nf-card-inner{
  padding:18px 18px 20px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  text-align:left;
}

/* ICON — TRUE TOP LEFT */
.nf-card-icon{
  margin-bottom:4px;
}

.nf-card-icon img{
  width:44px;
  height:auto;
  display:block;
}

/* TITLE */
.nf-card-title{
  margin:0;
  font-size:17px;
  font-weight:700;
  color:#041847;
  line-height:1.2;
}

/* BODY */
.nf-card-text{
  margin:0;
  font-size:14px;
  line-height:1.4;
  color:#06225e;
  max-width:100%;
}

/* HOVER */
.nf-card:hover{
  background:#052357;
  box-shadow:0 10px 26px rgba(5,35,87,.22);
  transform:translateY(-2px);
}

.nf-card:hover .nf-card-title,
.nf-card:hover .nf-card-text{
  color:#ffffff;
}

/* WHITE ICON ON HOVER */
.nf-card:hover img{
  filter:brightness(0) invert(1);
}

/* ========== RESPONSIVE ========== */

/* Tablet: 2 across */
@media(max-width:1200px){
  .nf-steps-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile: Stack full width */
@media(max-width:700px){
  .nf-steps-grid{
    grid-template-columns:1fr;
  }

  .nf-card{
    min-height:unset;
  }

  .nf-card-inner{
    padding:16px 16px 18px;
  }

  .nf-card-icon img{
    width:40px;
  }
}

/* LOAD RALEWAY */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');

/* FULL WIDTH STRIP */
.nf-marquee{
  width:100vw;                         /* true screen width */
  margin-left:calc(50% - 50vw);        /* breaks out of page container */
  background:#f3f3f3;                  /* thin gray bar */
  overflow:hidden;
  padding:10px 0;
}

/* MOVING TRACK */
.nf-marquee-track{
  display:inline-flex;
  white-space:nowrap;
  animation:nf-marquee-scroll 35s linear infinite; /* slower scroll */
  will-change:transform;
}

/* TEXT STYLE */
.nf-marquee-track span{
  padding:0 3rem;
  font-family:'Raleway','Segoe UI',system-ui,-apple-system,sans-serif;
  font-weight:500;
  font-size:clamp(18px, 3vw, 32px);
  color:#052357;
}

/* SCROLL ANIMATION */
@keyframes nf-marquee-scroll{
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* MOBILE SMOOTHER + SLOWER */
@media(max-width:600px){
  .nf-marquee-track{
    animation-duration:45s;
  }
  .nf-marquee-track span{
    padding:0 2rem;
  }
}


/* Raleway (if not already loaded elsewhere) */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');

/* OUTER BLUE PILL SECTION */
.benefits-pill{
  width:100%;
  padding:40px 16px;
  display:flex;
  justify-content:center;
}

.benefits-pill-inner{
  width:100%;
  max-width:1300px;
  background:#cfe2ff;           /* light blue pill */
  border-radius:40px;
  padding:40px 40px 36px;
  box-sizing:border-box;
}

/* HEADING */
.benefits-title{
  margin:0 0 32px;
  text-align:center;
  font-family:'Raleway','Segoe UI',system-ui,-apple-system,sans-serif;
  font-size:clamp(26px, 3vw, 36px);
  font-weight:700;
  color:#052357;
}

/* GRID OF CARDS */
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

/* INDIVIDUAL CARD */
.benefit-card{
  display:flex;
  flex-direction:column;
  align-items:stretch;
}

/* ICON BLOCK (SMALL DARK SQUARE) */
.benefit-icon{
  width:70px;
  height:70px;
  border-radius:18px;
  background:#052357;           /* dark navy */
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 12px;           /* center above card */
}

.benefit-icon img{
  max-width:36px;
  max-height:36px;
  display:block;
}

/* WHITE ROUNDED TEXT BOX */
.benefit-card-body{
  background:#ffffff;
  border-radius:28px;
  padding:22px 22px 24px;
  text-align:center;
  box-sizing:border-box;
}

/* TEXT INSIDE CARD */
.benefit-card-body p{
  margin:0;
  font-family:'Raleway','Segoe UI',system-ui,-apple-system,sans-serif;
  font-size:14px;
  line-height:1.55;
  color:#06225e;
}

/* OPTIONAL HOVER: LIFT CARD + TINT ICON */
.benefit-card:hover .benefit-card-body{
  box-shadow:0 12px 30px rgba(5,35,87,.20);
  transform:translateY(-2px);
  transition:all .22s ease;
}

.benefit-card:hover .benefit-icon{
  background:#041c47;
  transition:background .22s ease;
}

/* RESPONSIVE LAYOUT */
@media (max-width:1100px){
  .benefits-grid{
    grid-template-columns:repeat(2,1fr);
    row-gap:26px;
  }
}

@media (max-width:700px){
  .benefits-pill-inner{
    padding:28px 18px 30px;
    border-radius:28px;
  }

  .benefits-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .benefit-icon{
    margin:0 0 10px;           /* left-align icon on mobile if you prefer */
  }

  .benefit-card-body{
    text-align:left;
  }
}

/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');

/* MAIN FULL-WIDTH WRAPPER */
.path-toggle{
  width:100vw;
  max-width:none;
  margin-left:calc(50% - 50vw);   /* break out of page container */
  position:relative;
  overflow:hidden;
  border-radius:0;
  font-family:'Raleway','Segoe UI',system-ui,-apple-system,sans-serif;
  color:#c2dcff;
}

/* HIDE RADIO INPUTS */
.path-toggle input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* BACKGROUND LAYERS */
.path-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:brightness(.55);
  transition:opacity .4s ease;
  opacity:0;
  z-index:0;
}

/* 🔁 PUT YOUR IMAGE URLS HERE */
.path-bg-ownership{
  background-image:url('https://hippocampuslabs.com/wp-content/uploads/2025/12/Offices-Close-On-Thanksgiving-11.png');
  opacity:1; /* default visible */
}

.path-bg-jv{
  background-image:url('https://hippocampuslabs.com/wp-content/uploads/2025/12/Offices-Close-On-Thanksgiving-12.png');
}

/* FOREGROUND CONTENT */
.path-overlay{
  position:relative;
  z-index:1;
  max-width:1400px;
  margin:0 auto;
  padding:80px 32px 70px;
  text-align:center;
}

/* HEADING */
.path-heading{
  margin:0 0 26px;
  font-size:clamp(24px,3vw,38px);
  font-weight:700;
	color:#c2dcff
}

/* TOGGLE BAR */
.path-switch{
  display:inline-flex;
  background:rgba(255,255,255,.85);
  border-radius:999px;
  padding:4px;
  margin-bottom:40px;
}

.path-tab{
  padding:10px 28px;
  border-radius:999px;
  cursor:pointer;
  font-size:15px;
  font-weight:600;
  color:#02155a;
  transition:.2s ease;
}

/* ACTIVE TAB STYLING */
.path-toggle input#path-ownership:checked
~ .path-overlay .path-tab[for="path-ownership"],
.path-toggle input#path-jv:checked
~ .path-overlay .path-tab[for="path-jv"]{
  background:#052357;
  color:#ffffff;
}

/* STATS ROW */
.path-stats{
  display:flex;
  justify-content:space-between;
  gap:24px;
  margin-bottom:32px;
}

.path-stat{
  text-align:left;
}

.path-stat strong{
  display:block;
  font-size:clamp(32px,4.5vw,64px);
  letter-spacing:.04em;
  font-weight:700;
}

.path-stat span{
  font-size:15px;
  font-weight:500;
}

/* BODY TEXT */
.path-copy{
  max-width:760px;
  margin:0 auto;
  font-size:15px;
  line-height:1.6;
}

/* CONTENT VISIBILITY */
.path-body{
  display:none;
}

.path-toggle input#path-ownership:checked
~ .path-overlay .path-body-ownership{
  display:block;
}

.path-toggle input#path-jv:checked
~ .path-overlay .path-body-jv{
  display:block;
}
/* ============================
   LARGE 3-POINT TEXT STYLING
=============================== */

.path-points{
  list-style:none;
  padding:0;
  margin:20px auto 0;
  max-width:760px;
  text-align:center;
}

.path-points li{
  font-size:clamp(20px, 2.2vw, 30px);
  font-weight:600;
  letter-spacing:.03em;
  margin:10px 0;
}

/* Slight divider between points for polish */
.path-points li:not(:last-child){
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,0.35);
}

/* MOBILE OPTIMIZATION */
@media(max-width:600px){
  .path-points li{
    font-size:clamp(18px,4.5vw,22px);
  }
}


/* BACKGROUND SWITCHING */
.path-toggle input#path-ownership:checked ~ .path-bg-ownership{opacity:1;}
.path-toggle input#path-ownership:checked ~ .path-bg-jv{opacity:0;}

.path-toggle input#path-jv:checked ~ .path-bg-ownership{opacity:0;}
.path-toggle input#path-jv:checked ~ .path-bg-jv{opacity:1;}

/* RESPONSIVE: TABLET */
@media(max-width:960px){
  .path-overlay{
    padding:70px 24px 60px;
  }
  .path-stats{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .path-stat{
    text-align:center;
  }
}

/* RESPONSIVE: MOBILE */
@media(max-width:600px){
  .path-overlay{
    padding:52px 18px 44px;
  }

  .path-switch{
    width:100%;
    max-width:320px;
  }

  .path-tab{
    flex:1;
    padding:10px 0;
    font-size:14px;
  }

  .path-copy{
    font-size:14px;
  }
}

.nf-testimonials{
  width:100vw;
  max-width:none;
  margin-left:calc(50% - 50vw);
  background:#ffffff;
  padding:60px 16px 80px;
  position:relative;
}

.nf-testimonials-viewport{
  overflow:hidden;
  max-width:1300px;
  margin:0 auto;
  padding:0 2px;
}

.nf-testimonials-inner{
  display:flex !important;
  flex-wrap:nowrap !important;
  gap:60px !important;
  transition:transform 0.4s ease;
  will-change:transform;
  grid-template-columns:unset !important;
  column-gap:unset !important;
  row-gap:unset !important;
  overflow:visible !important;
  scroll-snap-type:none !important;
  padding:4px 0;
  margin:0;
}

.nf-testimonial-card{
  flex:0 0 calc((100% - (60px * 2)) / 3) !important;
  background:#ffffff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  font-family:'Raleway','Segoe UI',system-ui,-apple-system,sans-serif;
}

.nf-testimonial-header{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}

.nf-quote-mark{
  font-size:40px;
  line-height:1;
  color:#052357;
}

.nf-testimonial-name{
  font-size:16px;
  font-weight:700;
  color:#052357;
}

.nf-testimonial-text{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#111111;
}

.nf-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:50%;
  background:#052357;
  color:#ffffff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}

.nf-arrow-left{ left:16px; }
.nf-arrow-right{ right:16px; }

@media (max-width:1024px){
  .nf-testimonials-inner{ gap:40px !important; }
  .nf-testimonial-card{ flex:0 0 calc((100% - 40px) / 2) !important; }
}

@media (max-width:700px){
  .nf-testimonials{ padding:40px 18px; }
  .nf-testimonials-inner{ gap:24px !important; }
  .nf-testimonial-card{ flex:0 0 100% !important; }
}
/*=========================================================
   GOOGLE FONT
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');

/* =========================================================
   OUTER BLUE FORM CARD
========================================================= */
.nf-contact-card{
  max-width:900px;
  margin:40px auto;
  padding:40px 40px 32px;
  background:#cfe2ff;                 /* light blue card */
  border-radius:28px;
  box-shadow:0 20px 50px rgba(7,20,70,.10);
  font-family:'Raleway','Segoe UI',system-ui,-apple-system,sans-serif;
}

/* =========================================================
   HEADING
========================================================= */
.nf-contact-card h1,
.nf-contact-card h2,
.nf-contact-card h3{
  text-align:center;
  margin:0 0 28px 0;
  font-size:clamp(24px,3vw,32px);
  font-weight:700;
  color:#02155a;                      /* navy */
}

/* =========================================================
   FORM FIELDS
========================================================= */
.nf-contact-card input[type="text"],
.nf-contact-card input[type="email"],
.nf-contact-card input[type="tel"],
.nf-contact-card input[type="url"],
.nf-contact-card input[type="number"],
.nf-contact-card textarea,
.nf-contact-card select{
  width:100%;
  display:block;
  margin:0 0 16px;
  padding:14px 20px;
  border-radius:18px;
  border:none;
  background:#f6f6f6;
  font-size:15px;
  line-height:1.4;
  color:#052357;
  box-shadow:0 0 0 1px rgba(0,0,0,0.03);
  font-family:'Raleway','Segoe UI',system-ui,-apple-system,sans-serif;
}

/* Placeholder & input color */
.nf-contact-card input::placeholder,
.nf-contact-card textarea::placeholder{
  color:#052357;
  opacity:0.9;
}

/* Focus glow */
.nf-contact-card input:focus,
.nf-contact-card textarea:focus,
.nf-contact-card select:focus{
  outline:none;
  box-shadow:0 0 0 2px rgba(5,35,87,.35);
}

/* =========================================================
   SUBMIT BUTTON + ARROW BOX
========================================================= */
.nf-contact-card input[type="submit"],
.nf-contact-card button[type="submit"]{
  margin-top:8px;
  border:none;
  background:transparent;
  color:#052357;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  padding:0;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* Square arrow icon */
.nf-contact-card input[type="submit"]::after,
.nf-contact-card button[type="submit"]::after{
  content:"↗";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:10px;
  background:#052357;
  color:#ffffff;
  font-size:18px;
  transition:.2s ease;
}

/* Hover polish */
.nf-contact-card input[type="submit"]:hover::after,
.nf-contact-card button[type="submit"]:hover::after{
  transform:translateY(-2px);
}

/* Center submit row */
.nf-contact-card form,
.nf-contact-card .fl-form{
  text-align:center;
}

/* =========================================================
   LAYOUT SUPPORT
========================================================= */

/* Let Beaver's column gaps breathe */
.nf-contact-card .fl-col{
  padding-left:8px;
  padding-right:8px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:600px){
  .nf-contact-card{
    padding:28px 20px 26px;
    border-radius:22px;
  }

  .nf-contact-card h1,
  .nf-contact-card h2,
  .nf-contact-card h3{
    font-size:22px;
  }
}
/* === FORCE CONTACT FORM TO GO FULL DESKTOP WIDTH === */
.nf-contact-card{
  width:100vw !important;                /* expand to full viewport */
  max-width:1100px !important;           /* card’s max size on large screens */
  margin-left:calc(50% - 50vw) !important; /* escape page container */
}
/* === CENTER THE WIDE CONTACT FORM === */
.nf-contact-card{
  width:100%;
  max-width:1100px;       /* controls desktop width */
  margin:60px auto !important;
  margin-left:auto !important;
  margin-right:auto !important;

} 

.lc-quiz-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:99999;
}

.lc-quiz-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
}

.lc-quiz-container{
  position:relative;
  background:#fff;
  width:min(960px, 92vw);
  margin:5vh auto;
  border-radius:18px;
  padding:20px;
  max-height:90vh;
  overflow:auto;
}

.lc-quiz-close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border:none;
  border-radius:10px;
  background:#eee;
  font-size:18px;
  cursor:pointer;
}

#MmUDUzyUjchERDZtomGn{
  min-height:650px;
}

@media(max-width:700px){
  #MmUDUzyUjchERDZtomGn{ min-height:80vh; }
}
.pt-loc-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:999999;
}

.pt-loc-modal.is-open{
  display:block;
}

/* BACKDROP (behind dialog) */
.pt-loc-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:1;
}

/* DIALOG (above backdrop) */
.pt-loc-dialog{
  position:relative;
  z-index:2;
  width:min(1100px,calc(100% - 28px));
  margin:min(8vh,70px) auto;
  background:#fff;
  border-radius:18px;
  box-shadow:0 24px 60px rgba(0,0,0,.25);
  padding:16px;
}

/* CLOSE BUTTON */
.pt-loc-close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:3;
  width:40px;
  height:40px;
  border:none;
  border-radius:12px;
  background:#f2f4ff;
  color:#0b1a58;
  font-size:24px;
  cursor:pointer;
}



