.elementor-32 .elementor-element.elementor-element-1423b39{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.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-dd1fd2b */.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
  background: linear-gradient(135deg, #010846, #000da4);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}


/* Sticky state */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #010846, #000da4);
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    /* animation */
    animation: slideDown 0.4s ease;
}

/* FLEX */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img {
  max-height: 50px;
    width: 200px;
    display: block;
    height: auto;
}
/* MENU */
.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  border: 1.5px solid #ffffff00;
}
.menu a:hover {
  border: 1.5px solid #fff;
  border-radius: 6px;
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.icon-close {
  display: none;
}

/* When active */
.menu-toggle.active .icon-open {
  display: none;
}

.menu-toggle.active .icon-close {
    display: inline;
    z-index: 999999;
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
}
.dropdown-icon::before {
    content: "▼"; /* dropdown arrow */
    font-size: 12px;
    margin-left: 6px;
    margin-top: -16px;
    display: inline-block;
    transition: 0.3s ease;
    line-height: 1;
    top: 0px; /* fine-tune vertical alignment */
    position: relative;
}
.menu-item.has-mega:hover .dropdown-icon::before {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .nav.active {
        left: 0;
        padding-top: 15px;
    }
}
/* Show toggle on mobile */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
}

/* CTA */
.btn {
  border: 1.5px solid #fff;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
}
.btn:hover{
    background: #062aa6;
    border: 1.5px solid #062aa6;
    color:#fff;
}

/* ===================== */
/* MEGA MENU */
/* ===================== */

.has-mega {
  position: relative;
}

.mega-menu {
    position: absolute;
    left: 0;
    width: max-content;
    background: #0b1d5c;
    padding: 20px;
    display: none;
    margin-top: 10px;
}
.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 20px;
}
.has-mega:hover .mega-menu {
  display: block;
}

.mega-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.mega-col h4 {
  color: #fff;
  margin-bottom: 10px;
  margin-top: 0px;
}

.mega-col a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 15px;
    text-decoration: none;
    padding: 0;
}
.mega-col a:hover {
    border: 1.5px solid #ffffff00;
}

/* ===================== */
/* MOBILE */
/* ===================== */

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
}

/* Tablet */
@media (max-width: 992px) {

  .nav {
    position: fixed;
    top: 0;
    left: -280px; /* same as width */
    width: 280px;
    height: 100vh;
    background: #020c2b;
    transition: 0.3s ease;
    padding-top: 80px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
  }

  .nav.active {
    right: 0; /* ✅ FIXED */
  }

  .menu {
    flex-direction: column;
    padding: 20px;
  }

  .menu li {
    margin-bottom: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .btn {
    display: none;
  }

  .mega-menu {
    position: static;
    display: none;
  }

  .has-mega.active .mega-menu {
    display: block;
  }

  .mega-container {
    flex-direction: column;
  }
  .mega-menu {
        width: fit-content;
    }
}/* End custom CSS */