.elementor-305 .elementor-element.elementor-element-2473bcd{--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;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-96d5890 */@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap');

/* --- Flat Header Wrapper --- */
.flat-header-wrapper {
  position: sticky;
  top: 0; 
  width: 100%;
  z-index: 99999;
  font-family: 'Roboto', sans-serif;
}

/* --- Main Header Styling (No Curves) --- */
.professional-header {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Clean, professional shadow */
  padding: 10px 40px;
  box-sizing: border-box;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Logo (Increased Size) --- */
.brand-logo-link {
  display: flex;
  align-items: center;
}

.brand-logo-link img {
  height: 85px; /* Increased from 60px */
  width: auto;
  object-fit: contain;
}

/* --- Desktop Navigation --- */
.nav-links-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Square/Flat links instead of pills */
.nav-item-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #1A2B3C;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 6px; /* Standard professional soft-edge */
  transition: all 0.3s ease;
}

.nav-item-link:hover {
  background-color: #2F88CA; /* Brand Blue */
  color: #ffffff;
}

.nav-item-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* --- Desktop Dropdown --- */
.dropdown-container {
  position: relative;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-top: 3px solid #2F88CA;
  
  /* Hidden Animation State */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

@media (min-width: 993px) {
  .dropdown-container:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-container:hover .nav-item-link svg {
    transform: rotate(180deg);
  }
}

.dropdown-list a {
  display: block;
  text-decoration: none;
  color: #1A2B3C;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 20px;
  transition: all 0.2s ease;
}

.dropdown-list a:hover {
  background-color: #F4F8FC;
  color: #2F88CA;
  padding-left: 25px; 
}

/* --- Burger Icon (Hidden on Desktop) --- */
.burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  cursor: pointer;
  z-index: 100;
}

.burger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #1A2B3C;
  border-radius: 3px;
  transition: all 0.3s ease;
}


/* =========================================
   MOBILE & TABLET VIEW
========================================= */
@media (max-width: 992px) {

  .professional-header {
    padding: 10px 20px; /* Tighter padding for mobile edges */
  }

  .brand-logo-link img {
    height: 65px; /* Scaled up for mobile too */
  }

  /* Show Burger */
  .burger-icon {
    display: flex;
  }

  /* Burger Cross Animation */
  .burger-icon.menu-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #2F88CA;
  }
  .burger-icon.menu-open span:nth-child(2) {
    opacity: 0;
  }
  .burger-icon.menu-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #2F88CA;
  }

  /* Mobile Dropdown Menu Container */
  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    
    /* Bulletproof hiding technique */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  /* When menu is open, expand it */
  .main-navigation.menu-open {
    max-height: 600px;
  }

  .nav-links-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 0;
  }

  .dropdown-container {
    width: 100%;
  }

  .nav-item-link {
    width: 100%;
    justify-content: space-between;
    border-radius: 0; /* Fully flat on mobile */
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-item-link:hover {
    background-color: transparent; /* Cleaner interaction on touch screens */
    color: #2F88CA;
  }

  /* Mobile Submenu */
  .dropdown-list {
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    background-color: #F8F9FA;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 0;
    
    /* Hidden by default */
    display: none; 
    padding: 0;
  }

  /* Opened via the inline JS */
  .dropdown-container.show-dropdown .dropdown-list {
    display: block;
  }

  .dropdown-list a {
    padding: 14px 25px;
    border-bottom: 1px solid #eeeeee;
  }

  .dropdown-container.show-dropdown .nav-item-link svg {
    transform: rotate(180deg);
  }
}/* End custom CSS */