.elementor-19 .elementor-element.elementor-element-58039fb{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-19 .elementor-element.elementor-element-ac02509{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-19 .elementor-element.elementor-element-ac02509{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-c78ae2c *//* ==========================================
   AML HEADER
========================================== */
.aml-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 94, 115, 0.08);
}

.aml-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.aml-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--aml-primary);
}

.aml-logo-text span {
  color: var(--aml-accent);
}

/* Logo Image */
.aml-logo-img {
  max-height: 86px;
  width: auto;
  display: block;
}

/* Better alignment */
.aml-header-logo a {
  display: flex;
  align-items: center;
}

/* Nav */
.aml-header-nav {
  display: flex;
  gap: 26px;
}

.aml-header-nav a {
  font-weight: 600;
  color: var(--aml-primary);
  position: relative;
}

.aml-header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--aml-accent);
  transition: 0.3s;
}

.aml-header-nav a:hover::after {
  width: 100%;
}

.aml-header-nav a:hover {
  color: var(--aml-accent);
}

/* CTA */
.aml-header-cta {
  margin-left: 20px;
}

/* Mobile Toggle */
.aml-header-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.aml-header-toggle span {
  width: 24px;
  height: 2px;
  background: var(--aml-primary);
  margin: 4px 0;
}

/* Mobile Menu */
.aml-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--aml-white);
  padding: 20px;
  border-top: 1px solid var(--aml-border);
}

.aml-mobile-menu a {
  padding: 10px 0;
  font-weight: 600;
  color: var(--aml-primary);
}

/* ==========================================
   CLIENT PORTAL / DASHBOARD VISIBILITY
========================================== */

/* By default, logged-out visitors see Client Portal */
.aml-dashboard-link {
  display: none;
}

/* When user is logged in, hide Client Portal */
body.logged-in .aml-client-portal-link {
  display: none;
}

/* When user is logged in, show My Dashboard */
body.logged-in .aml-dashboard-link {
  display: inline-block;
}

/* Animation */
.aml-header {
  opacity: 0;
  transform: translateY(-20px);
  animation: amlHeaderFade 0.7s ease forwards;
}

@keyframes amlHeaderFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .aml-header-nav {
    display: none;
  }

  .aml-header-cta {
    display: none;
  }

  .aml-header-toggle {
    display: flex;
  }

  .aml-mobile-menu.active {
    display: flex;
  }
}

/* Mobile logo size */
@media (max-width: 767px) {
  .aml-logo-img {
    max-height: 42px;
  }
}/* End custom CSS */