header.header-main-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  /* MODIFIED: Consolidated transitions for smooth animation */
  transition: top 0.6s linear, 
              background 0.6s linear, 
              padding 0.6s linear, 
              border-bottom 0.6s linear;
  padding-top: 49px;
  padding-bottom: 49px;
  padding-left: 20px;
  padding-right: 20px;
  background: transparent;
  border-bottom: 1px solid transparent;
}

header.header-main-section.scroll-down {
  /* REMOVED: transition: .6s linear; (now handled above) */
  top: 0;
  background: linear-gradient(111.34deg, #12274B 0%, #00163B 100%);
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #C2E458;
}

header.header-main-section.scroll-up {
  /* REMOVED: transition: .6s linear; (now handled above) */
  top: -300px;
  background: linear-gradient(111.34deg, #12274b4c 0%, #00163b53 100%);
  border-bottom: 1px solid #c1e45849;
}

.header-main {
  max-width: 1308px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

header.header-main-section.scroll-up .header-main {
  padding-bottom: 40px;
}

.header-main .logo-side a {
  display: flex;
}

.logo-side a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.toggle-menu {
  padding: 30px;
  background: linear-gradient(111.34deg, #12274B 0%, #00163B 100%);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.menu-logo:hover .empty-span {
  border: 1px solid #C2E458;
}

.toogle-first-title-close {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
}
.menu-link-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toogle-first-title-close p {
  font-family: Titillium Web;
  font-weight: 400;
  font-size: 20px;
  line-height: 110.00000000000001%;
  color: #FFFFFF;
  display: none;
}

.menu-link-main {
  list-style: none;
  padding-top: 30px;
}

.menu-link p {
  font-weight: 400;
  line-height: 110.00000000000001%;
  /* color: #FFFFFF; */
    color: #C2E458;
}

.menu-link-main a {
  font-family: Titillium Web;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s linear;
}

.menu-link-main a:hover {
  color: #C2E458;
}

.menu-child {
  position: relative;
  z-index: 999;
}

.menu-child.active span.empty-span:nth-child(1) {
  transform: rotate(42deg);
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
}

.menu-child.active span.empty-span:nth-child(3) {
  transform: rotate(316deg);
  position: absolute;
  top: 50%;
  left: 0;
}

.menu-child.active span.empty-span:nth-child(2) {
  opacity: 0;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  z-index: 100;
  position: relative;
  pointer-events: all;
}

/* START: CSS FIX 1 (Replaced SASS &.active syntax) 
*/
.menu-toggle.active .burger {
  background-color: transparent;
  border-color: #FFFFFF;
}

.menu-toggle.active .burger:before {
  opacity: 1;
}

.menu-toggle.active .burger .burger-icon {
  transform: rotate(45deg) scale(1.2);
}

.menu-toggle.active .burger .top {
  stroke-dashoffset: -68px;
}

.menu-toggle.active .burger .bottom {
  stroke-dashoffset: -68px;
}

.menu-toggle.active .burger .line {
  stroke: #FFFFFF;
}
/* END: CSS FIX 1 */


.menu-burger-text {
  font-size: 18px;
  font-weight: 700;
  margin-left: auto;
  margin-right: 16px;
  transition: 0.3s;
  cursor: pointer;
  display: none;
}

.burger {
  position: relative;
  z-index: 100;
  clip-path: inset(0 0 0 0);
  overflow: hidden;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(62px, 52px) !important;
  height: clamp(62px, 52px) !important;
  margin-top: -35px;
  margin-bottom: -35px;
}
.burger .burger-icon {
  cursor: pointer;
  transition: transform 400ms, background-color 0.3s ease;
  user-select: none;
  width: 90px;
  height: 120px;
  position: relative;
  z-index: 2;
}

/* START: CSS FIX 2 (Replaced SASS &.active syntax) 
*/
.burger.active {
  background-color: transparent;
}
.burger.active:before {
  opacity: 1;
}
.burger.active .burger-icon {
  transform: rotate(45deg);
}
.burger.active .top {
  stroke-dashoffset: -68px;
}
.burger.active .bottom {
  stroke-dashoffset: -68px;
}
.burger.active .line {
  stroke: #FFFFFF;
}
.burger.active:hover .line {
  stroke: #C2E458;
}
/* END: CSS FIX 2 */

.burger .line {
  fill: none;
  transition: stroke 0.3s ease, stroke-dasharray 400ms,
    stroke-dashoffset 400ms;
  stroke: #FFFFFF;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.burger .top {
  stroke-dasharray: 40 121;
}

.burger .bottom {
  stroke-dasharray: 40 121;
}

.burger:hover .line {
  stroke: #FFFFFF;
}

.toggle-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  z-index: 99;
  background: linear-gradient(111.34deg, #12274B 0%, #00163B 100%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  text-align: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translate(0%, -100%);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s;
  border-top: 10px solid #C2E458;
}

.menu-toggle.active + .toggle-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.header-container {
  display: flex;
  width: 100%;
}

.menu-link:not(:last-child):not(:first-child) {
  padding-left: 80px;
  padding-right: 80px;
}

.menu-link {
  text-align: left;
}

header.header-main-section.scroll-up .toggle-menu {
    opacity: 0;
}

/* END: CSS FIX 3 */    

.menu-open .header-main-section {
  background: linear-gradient(111.34deg, #12274B 0%, #00163B 100%);
}

.executive-page-header .burger {
  &:hover {
    & .line {
      stroke: #bc8252c7;
    }
  }
}

.executive-page-header.scroll-down {
  background: #000000 !important;
}

.menu-open .executive-page-header {
  background: #000000 !important;
}

.executive-page-header .toggle-menu {
  background: #000000 !important;
}

.menu-open h1 {
  opacity: 0 !important;
}

.menu-open .scroll-down.executive-page-header {
  background: #000000 !important;
}

.menu-open .scroll-down.executive-page-header .toggle-menu {
  background: #000000 !important;
}

/* Responsive start */

@media screen and (min-width: 1920px) {
  .logo-side a img {
    width: 300px;
  }
}

@media screen and (min-width: 1500px) {
  .header-main {
    max-width: 100%;
  }

  header.header-main-section {
    padding-left: 50px;
    padding-right: 50px;
  }

  .toggle-menu {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 1600px) {
  .logo-side a img {
    width: 190px;
  }

  .burger-icon {
    width: 80px !important;
    height: 70px !important;
  }

  .menu-link-main a {
    font-size: 28px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1200px) {
  .menu-link:not(:last-child):not(:first-child) {
    padding: 0px 60px;
  }

  .logo-side a img {
    width: 180px;
  }

  .burger-icon {
    width: 70px !important;
    height: 60px !important;
  }

  .menu-link-main a {
    font-size: 26px;
  }
}

@media screen and (max-width: 1024px) {
  .menu-link:not(:last-child):not(:first-child) {
    padding: 0px 40px;
  }

  .burger-icon {
    width: 60px !important;
    height: 50px !important;
  }

  .logo-side a img {
    width: 170px;
  }

  .menu-link-main a {
    font-size: 24px;
  }
}

@media screen and (max-width: 991px) {
  header.header-main-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .menu-link-main a {
    font-size: 22px;
    line-height: 1.2;
  }

  .menu-link-main {
    gap: 5px;
  }

  .menu-link-main {
    padding-top: 25px;
  }

  .logo-side a img {
    width: 160px;
  }

  .burger-icon {
    width: 60px !important;
    height: 60px !important;
  }
}

@media screen and (max-width: 768px) {
  header.header-main-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .menu-link-main a {
    font-size: 20px;
  }

  .menu-logo {
    gap: 10px;
  }

  .burger {
    margin-top: -0px;
    margin-bottom: -0px;
  }
  .burger .burger-icon {
    width: 52px;
    height: 52px;
  }

  .menu-link-main {
    padding-top: 20px;
  }

  .header-container {
    flex-direction: column;
    gap: 20px;
  }

  .menu-link-main {
    padding-top: 10px;
  }

  .toggle-menu {
    height: 100vh;
    justify-content: flex-start;
    padding: 30px 20px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-link:not(:last-child):not(:first-child) {
    padding: 0px;
  }

  .executive-page-header .toggle-menu {
    background: #000000fc !important;
  }

  .executive-page-header.scroll-down {
    background: #000000fc !important;
  }

  .menu-open .executive-page-header {
    background: #000000fc !important;
  }

  .logo-side a img {
    width: 140px;
  }

  .burger-icon {
    width: 50px !important;
    height: 45px !important;
  }
}

@media screen and (max-width: 576px) {
  header.header-main-section.scroll-down {
    padding: 5px 20px !important;
  }

  header.header-main-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .logo-side a {
    max-width: 150px;
  }

  .logo-side a img {
    width: 120px;
  }
}