.elementor-48 .elementor-element.elementor-element-38a4f3e{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;}.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-b6094ed *//* ======= HEADER BASE ======= */
#main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 24, 51, 0.95);
  color: #fff;
  z-index: 9999;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

#main-header.scrolled {
  background: #0a1833;
  padding: 8px 0;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

/* ======= CONTAINER ======= */
#main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ======= LOGO ======= */
#main-header .logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

#main-header .logo img {
  height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

#main-header.scrolled .logo img {
  height: 32px;
}

#main-header .logo .blue {
  color: #3b82f6;
}

/* ======= NAVIGATION ======= */
#navbar {
  display: flex;
  gap: 25px;
  align-items: center;
  transition: all 0.3s ease;
}

#navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

#navbar a:hover {
  color: #3b82f6;
}

/* ======= BUTTON ======= */
#navbar .btn {
  background: #2563eb;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

#navbar .btn:hover {
  background: #1d4ed8;
}

/* ======= MOBILE MENU ======= */
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

#menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

#navbar.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
  background: #0a1833;
  text-align: center;
  padding: 20px 0;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  #navbar {
    display: none;
  }

  #menu-toggle {
    display: flex;
  }

  #navbar a {
    font-size: 18px;
    padding: 10px 0;
  }
}/* End custom CSS */