.elementor-1711 .elementor-element.elementor-element-7245d8ba{--display:flex;--min-height:67px;--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;--justify-content:center;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--border-radius:0px 0px 0px 0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:20px;--padding-right:20px;--z-index:100;}.elementor-1711 .elementor-element.elementor-element-7245d8ba.e-con{--order:99999 /* order end hack */;}.elementor-1711 .elementor-element.elementor-element-64501a12{width:100%;max-width:100%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-1711 .elementor-element.elementor-element-7245d8ba{--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1711 .elementor-element.elementor-element-64501a12{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}@media(max-width:767px){.elementor-1711 .elementor-element.elementor-element-7245d8ba{--justify-content:flex-start;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}}/* Start custom CSS for html, class: .elementor-element-64501a12 *//* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: transparent;
}

/* Full Width Custom Header */
.custom-header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%; /* Spans full width of the screen */
  padding: 16px 5%; /* Use percentage or px for side spacing from screen edges */
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  z-index: 1000;

  /* Typography Base Header */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
}

/* Header Container - Updated to Full Width */
.header-container {
  width: 100%; /* Changed from max-width: 1280px to 100% */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: max-height 0.3s ease;
}

/* Navigation List */
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
}

.nav-link {
  text-decoration: none;
  color: #0A066B !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;

  /* Typography Styles */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
}

.nav-link:hover {
  opacity: 0.75;
}

/* Dropdown Arrow */
.arrow-down {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #0A066B !important;
  display: inline-block;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown:hover .arrow-down {
  transform: rotate(180deg);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #0A066B !important;
  text-decoration: none;
  transition: background 0.2s ease;

  /* Typography Styles */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
}

.dropdown-menu li a:hover {
  background-color: #f4f5f8;
}

/* Contact Us Button Styling */
.btn-contact {
  background-color: #0b0c67;
  color: #ffffff !important;
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
  display: inline-block;

  /* Typography Styles */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
}

.btn-contact:hover,
.btn-contact:focus {
  color: #ffffff !important;
  background-color: #141680;
}

.mobile-btn {
  display: none;
}

/* Hamburger Icon Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 101;
}

.menu-toggle:focus,
.menu-toggle:active,
.menu-toggle:hover {
  background: transparent !important;
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #0b0c67;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Scrolled Header State */
.custom-header.scrolled {
  top: 0;
  background-color: #ffffff !important;
  padding: 12px 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.custom-header.scrolled .logo-img {
  max-height: 28px;
}

/* Responsive Mobile Navigation */
@media (max-width: 868px) {
  .custom-header {
    padding: 16px 20px;
    top: 0px;
  }

  .custom-header.scrolled {
    padding: 12px 20px;
    top: 0;
  }

  .logo-img {
    max-height: 17px;
  }

  .custom-header.scrolled .logo-img {
    max-height: 17px;
  }

  .menu-toggle {
    display: flex;
  }

  .desktop-btn {
    display: none;
  }

  /* Mobile Popdown Menu */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 24px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 99;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
  }

  /* Mobile Dropdown Submenu */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 10px 0 0 15px;
    background: transparent;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown.active .arrow-down {
    transform: rotate(180deg);
  }

  .mobile-btn {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}/* End custom CSS */