.elementor-23 .elementor-element.elementor-element-acb317f{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-ec245b5 */:root {
  --font-logo: 'Montserrat', sans-serif !important;
  --font-nav: 'DM Sans', sans-serif !important;
  --color-primary: #0A5C36; /* Deep Emerald */
  --color-accent: #16A34A; /* Vibrant Green */
  --color-text-dark: #1F2937;
  --color-text-light: #6B7280;
  --color-bg-light: #F9FAFB;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Header Base & Scroll Effect --- */
.fbnl-modern-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent; 
  padding: 25px 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.fbnl-modern-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.fbnl-nav-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Logo Images --- */
.fbnl-logo-img {
  max-height: 85px;
  width: auto;
  transition: var(--transition-smooth);
}

.fbnl-sidebar-logo {
  max-height: 40px;
  width: auto;
}

/* --- Centered Navigation --- */
.fbnl-center-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.fbnl-nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.fbnl-nav-link {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff; /* Starts White over Hero image */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.fbnl-modern-header.scrolled .fbnl-nav-link {
  color: var(--color-text-dark);
}

.fbnl-nav-link svg {
  transition: transform 0.3s ease;
}

.fbnl-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.fbnl-nav-link:hover {
  color: var(--color-accent);
}

.fbnl-modern-header.scrolled .fbnl-nav-link:hover {
  color: var(--color-primary);
}

.fbnl-nav-link:hover::before {
  width: 100%;
}

.fbnl-has-dropdown:hover .fbnl-nav-link svg {
  transform: rotate(180deg);
  color: var(--color-accent);
}

/* --- Desktop Dropdown Card --- */
.fbnl-has-dropdown {
  position: relative;
}

.fbnl-dropdown-card {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  padding: 24px;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.03);
}

.fbnl-has-dropdown:hover .fbnl-dropdown-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: flex;
  gap: 40px;
}

.dropdown-column h4 {
  font-family: var(--font-logo);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.dropdown-column a {
  display: block;
  font-family: var(--font-nav);
  color: var(--color-text-dark);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  margin-left: -12px;
}

.dropdown-column a:hover {
  background: var(--color-bg-light);
  color: var(--color-accent);
}

/* --- Right Actions (Button) --- */
.fbnl-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fbnl-btn {
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-nav);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(10, 92, 54, 0.2);
}

.fbnl-btn:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
  color: #fff;
}

/* --- Mobile Hamburger --- */
.fbnl-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.fbnl-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff; /* Starts white */
  transition: 0.3s;
}

.fbnl-modern-header.scrolled .fbnl-menu-toggle span {
  background-color: var(--color-text-dark);
}

/* --- Mobile Sidebar --- */
.fbnl-mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  padding: 30px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.fbnl-mobile-sidebar.open {
  right: 0;
}

.fbnl-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.fbnl-sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.fbnl-close-menu {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--color-text-light);
}

.fbnl-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.fbnl-mobile-nav > li > a {
  display: block;
  font-family: var(--font-nav);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-bg-light);
  transition: 0.3s;
}

.fbnl-mobile-nav > li > a:hover {
  color: var(--color-accent);
  padding-left: 10px;
}

.mobile-submenu {
  display: none;
  list-style: none;
  padding: 10px 0 10px 20px;
  background: var(--color-bg-light);
  border-radius: 8px;
  margin-top: 10px;
}

.mobile-dropdown-trigger.active .mobile-submenu {
  display: block;
}

.mobile-submenu a {
  display: block;
  font-family: var(--font-nav);
  color: var(--color-text-light);
  text-decoration: none;
  padding: 8px 0;
  font-size: 15px;
}

.mobile-btn {
  display: block;
  text-align: center;
  width: 100%;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .fbnl-center-nav {
    display: none;
  }
  .fbnl-nav-actions .fbnl-btn {
    display: none; 
  }
  .fbnl-menu-toggle {
    display: flex; 
  }
}/* End custom CSS */