.elementor-56 .elementor-element.elementor-element-5280830{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-fdfc7e3 */:root {
  --franv-navy: #061b35;
  --franv-blue: #1268ff;
  --franv-blue-dark: #0a4fda;
  --franv-text: #10233f;
  --franv-muted: #64748b;
  --franv-border: #e4ebf5;
  --franv-light: #f6f9ff;
  --franv-gold: #f5b73f;
  --franv-white: #ffffff;
}

/* HEADER */

.franv-header {
    position: relative;
    border-bottom: 1px solid rgba(6,27,53,.05);
}

.franv-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            #1268ff 18%,
            #5c8cff 40%,
            #f5b73f 60%,
            #1268ff 82%,
            transparent 100%
        );
}

.franv-nav {
  width: 100%;
  max-width: 1320px;
  height: 76px;
  margin: 0 auto;
  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-sizing: border-box;
}

/* LOGO */

.franv-logo {
  display: inline-flex;
  align-items: center;
  background: transparent;
  text-decoration: none;
}

.franv-logo img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 100%;

  background: transparent;
  border: 0;
  box-shadow: none;
  filter: none;
}

/* MAIN MENU */

.franv-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.franv-menu a,
.franv-nav-button {
  font-family: Inter, Poppins, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--franv-text);
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.franv-top-link {
  padding: 28px 0;
}

.franv-nav-button {
  padding: 14px 18px;
  border-radius: 12px;
}

.franv-dropdown {
  position: relative;
}

.franv-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
}

.franv-dropdown:hover .franv-nav-button,
.franv-dropdown.open .franv-nav-button,
.franv-menu a:hover,
.franv-active {
  color: var(--franv-blue) !important;
}

.franv-dropdown:hover .franv-nav-button,
.franv-dropdown.open .franv-nav-button {
  background: rgba(246, 249, 255, 0.9);
  box-shadow: 0 10px 25px rgba(18, 104, 255, 0.08);
}

.franv-chevron {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.franv-dropdown:hover .franv-chevron,
.franv-dropdown.open .franv-chevron {
  transform: rotate(180deg);
}

/* MEGA MENU */

.franv-mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;

  width: 920px;

  display: flex;
  overflow: hidden;

  background: var(--franv-white);
  border: 1px solid var(--franv-border);
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(6, 27, 53, 0.14);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(-45%) translateY(10px);

  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.franv-dropdown:hover .franv-mega-menu,
.franv-dropdown.open .franv-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-45%) translateY(0);
}

.franv-mega-grid {
  width: 66%;
  padding: 30px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;

  box-sizing: border-box;
}

.franv-mega-item {
  display: grid;
  grid-template-columns: 46px 1fr 12px;
  gap: 14px;
  align-items: flex-start;

  padding: 6px;
  border-radius: 14px;

  color: var(--franv-text);
  text-decoration: none;
}

.franv-mega-item:hover {
  background: var(--franv-light);
}

.franv-mega-item strong {
  display: block;
  margin-bottom: 5px;

  font-size: 15px;
  line-height: 1.25;
}

.franv-mega-item p {
  margin: 0;

  color: var(--franv-muted);
  font-size: 13px;
  line-height: 1.42;
}

.franv-mega-item em {
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  opacity: 0.4;
}

.franv-mega-item:hover strong {
  color: var(--franv-blue);
}

.franv-mega-item b {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;

  border-radius: 999px;
  background: var(--franv-blue);

  color: white;
  font-size: 10px;
}

/* MENU ICONS */

.franv-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;
  font-size: 20px;
}

.franv-icon.blue {
  background: #eaf2ff;
  color: #1268ff;
}

.franv-icon.green {
  background: #eaf8ef;
  color: #249a54;
}

.franv-icon.purple {
  background: #f1eafd;
  color: #7545d8;
}

.franv-icon.gold {
  background: #fff6e5;
  color: #eba820;
}

.franv-icon.orange {
  background: #fff1df;
  color: #f28a16;
}

.franv-icon.red {
  background: #fdecef;
  color: #d52d45;
}

.franv-icon.teal {
  background: #e7fbfb;
  color: #0f9ba8;
}

/* MEGA MENU CTA */

.franv-mega-cta {
  width: 34%;
  padding: 30px;

  border-left: 1px solid var(--franv-border);
  background: linear-gradient(180deg, #ffffff, #f7faff);

  box-sizing: border-box;
}

.franv-cta-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #eaf2ff;
  color: var(--franv-blue);
}

.franv-cta-block h3 {
  margin: 0 0 10px;

  color: var(--franv-text);
  font-size: 21px;
}

.franv-cta-block p {
  color: var(--franv-muted);
  font-size: 14px;
  line-height: 1.55;
}

.franv-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 22px;

  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--franv-blue),
    #1d55eb
  );

  color: white !important;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 12px 24px rgba(18, 104, 255, 0.25);
}

.franv-primary:hover {
  background: var(--franv-blue-dark);
}

.franv-all-link {
  display: block;
  margin-top: 20px;

  color: var(--franv-blue);
  font-weight: 800;
  text-decoration: none;
}

/* PREMIUM SIMPLE DROPDOWNS
   Used for Consulting and Resources
*/

.franv-simple-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;

  width: 330px;
  padding: 10px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.99),
      rgba(248,251,255,0.99)
    );

  border: 1px solid rgba(228,235,245,0.95);
  border-radius: 18px;

  box-shadow:
    0 28px 70px rgba(6,27,53,0.14),
    0 8px 24px rgba(18,104,255,0.06);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(-50%) translateY(12px);

  overflow: hidden;

  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.franv-simple-menu::before {
  content: "";
  position: absolute;
  top: -55px;
  right: -45px;

  width: 150px;
  height: 150px;

  background: radial-gradient(
    circle,
    rgba(18,104,255,0.12),
    transparent 68%
  );

  pointer-events: none;
}

.franv-simple-menu::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(18,104,255,0.18),
    transparent
  );

  pointer-events: none;
}

.franv-dropdown:hover .franv-simple-menu,
.franv-dropdown.open .franv-simple-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}

.franv-simple-menu a {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 42px 1fr 18px;
  gap: 13px;
  align-items: center;

  min-height: 66px;
  padding: 12px 14px;

  border: 1px solid transparent;
  border-radius: 14px;

  color: var(--franv-text);
  text-decoration: none;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.franv-simple-menu a + a {
  margin-top: 4px;
}

.franv-simple-menu a:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(18,104,255,0.12);

  transform: translateY(-1px);

  box-shadow:
    0 10px 24px rgba(6,27,53,0.06),
    0 4px 12px rgba(18,104,255,0.04);
}

.franv-simple-menu a strong {
  display: block;
  margin-bottom: 3px;

  color: var(--franv-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.franv-simple-menu a span {
  display: block;

  color: var(--franv-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.franv-simple-menu a em {
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  opacity: 0.35;

  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    color 0.18s ease;
}

.franv-simple-menu a:hover strong {
  color: var(--franv-blue);
}

.franv-simple-menu a:hover em {
  color: var(--franv-blue);
  opacity: 1;
  transform: translateX(3px);
}

/* ICONS INSIDE SIMPLE DROPDOWNS */

.franv-simple-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #eaf2ff;
  color: var(--franv-blue);

  font-size: 18px;
}

.franv-simple-icon.gold {
  background: #fff6e5;
  color: #eba820;
}

.franv-simple-icon.green {
  background: #eaf8ef;
  color: #249a54;
}

.franv-simple-icon.purple {
  background: #f1eafd;
  color: #7545d8;
}

.franv-simple-icon.teal {
  background: #e7fbfb;
  color: #0f9ba8;
}

.franv-simple-icon.orange {
  background: #fff1df;
  color: #f28a16;
}
/* HEADER ACTIONS */

.franv-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.franv-contact {
  color: var(--franv-text);
  font-weight: 700;
  text-decoration: none;
}

.franv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 22px;

  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--franv-blue),
    #1d55eb
  );

  color: white !important;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(18, 104, 255, 0.22);

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.franv-button:hover {
  background: var(--franv-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(18, 104, 255, 0.25);
}

/* FOOTER */

.franv-footer {
  padding: 70px 28px 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(18, 104, 255, 0.18),
      transparent 32%
    ),
    var(--franv-navy);

  color: white;
}

.franv-footer-inner {
  max-width: 1240px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.7fr 1.15fr 1.25fr 1fr 1.35fr;
  gap: 42px;
}

.franv-footer-brand img {
  height: 44px;
  margin-bottom: 22px;
}

.franv-footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.franv-footer h4 {
  margin: 0 0 18px;

  color: var(--franv-gold);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.franv-footer a {
  display: block;
  margin: 10px 0;

  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  text-decoration: none;
}

.franv-footer a:hover,
.franv-footer .franv-active {
  color: white !important;
}

.franv-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.franv-social a {
  width: 38px;
  height: 38px;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.franv-footer-card {
  padding: 26px;

  border: 1px solid rgba(245, 183, 63, 0.55);
  border-radius: 16px;
}

.franv-footer-card h3 {
  margin: 0 0 10px;
  color: var(--franv-gold);
}

.franv-footer-card a {
  display: inline-flex;
  margin-top: 14px;
  padding: 13px 22px;

  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--franv-blue),
    #1d55eb
  );

  color: white !important;
}

.franv-footer-bottom {
  max-width: 1240px;
  margin: 54px auto 0;
  padding: 24px 0;

  display: flex;
  justify-content: space-between;
  gap: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);

  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.franv-footer-bottom div {
  display: flex;
  gap: 34px;
}

.franv-footer-bottom a {
  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .franv-menu,
  .franv-actions {
    display: none;
  }

  .franv-nav {
    height: 68px;
    padding: 0 22px;
  }

  .franv-logo img {
    height: 38px;
  }

  .franv-footer-inner {
    grid-template-columns: 1fr;
  }

  .franv-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .franv-nav {
    padding: 0 18px;
  }

  .franv-logo img {
    height: 35px;
  }

  .franv-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .franv-footer-bottom div {
    flex-direction: column;
    gap: 10px;
  }
}

/* Remove WordPress block spacing directly after the header */

.franv-header {
  margin-bottom: 0 !important;
}

/* Header followed directly by page content */
.franv-header + main,
.franv-header + .frv-service-page,
.franv-header + .site-content,
.franv-header + .entry-content,
.franv-header + .wp-block-post-content {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  padding-top: 0 !important;
}

/* Gutenberg commonly inserts spacing between top-level blocks */
.wp-site-blocks > .franv-header + *,
.wp-site-blocks > header + main,
.wp-site-blocks > header + *,
body > .franv-header + * {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}

/* Remove block gap from the main site wrapper */
.wp-site-blocks {
  gap: 0 !important;
  row-gap: 0 !important;
}

/* WordPress block-gap fallback */
.wp-site-blocks > * {
  margin-block-start: 0;
}

/* Preserve spacing between other page sections */
.wp-site-blocks > * + * {
  margin-block-start: 0;
}

/* Force header to span the full browser width */

.franv-header {
  position: sticky;
  top: 0;
  z-index: 9999;

  width: 100vw !important;
  max-width: none !important;

  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;

  background: rgba(248, 251, 255, 0.94);
  border-bottom: 1px solid rgba(6, 27, 53, 0.045);
  box-shadow: none;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-sizing: border-box;
}

.franv-nav {
  width: 100% !important;
  max-width: 1400px;
  height: 76px;

  margin: 0 auto;
  padding: 0 36px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-sizing: border-box;
}

/* Remove WordPress spacing between header and page content */

.wp-site-blocks {
  gap: 0 !important;
  row-gap: 0 !important;
}

.wp-site-blocks > .wp-block-template-part:has(.franv-header) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.wp-site-blocks > .wp-block-template-part:has(.franv-header) + * {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  padding-top: 0 !important;
}

.wp-block-template-part:has(.franv-header) + main,
.wp-block-template-part:has(.franv-header) + .wp-block-group,
.wp-block-template-part:has(.franv-header) + .site-content {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  padding-top: 0 !important;
}

/* Extend the homepage gradient behind the Elementor header template */

.elementor-location-header {
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(18,104,255,.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 82% 14%,
      rgba(245,183,63,.18),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 100%
    ) !important;

  margin: 0 !important;
  padding: 0 !important;
}

.franv-header {
  position: sticky;
  top: 0;
  z-index: 9999;

  width: 100%;
  margin: 0;
  padding: 0;

  background: transparent !important;
  border-bottom: 1px solid rgba(6,27,53,.045);
  box-shadow: none;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}/* End custom CSS */