/* =========================================
   TOP HEADER
========================================= */
/* HEADER */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: rgba(11, 22, 35, 0.85); 
  backdrop-filter: blur(8px);*/
  z-index: 999999;
  /* border-bottom: 1px solid rgba(255,255,255,0.08); */
}

.top-header.menu-open{border-bottom: 1px solid rgba(255,184,30,0.50); background-color: #091826;}

/* LEFT LOGO */
.logo-left img,
.logo-right img {
  height: 38px;
  filter: brightness(0) invert(1);
}

/* CENTER TEXT */
.company-name {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  flex: 1;
}

/* RIGHT SIDE */
.right-section {
  display: flex;
  align-items: center;
  gap: 30px;
}






/* =========================================
   HAMBURGER BUTTON
========================================= */

.hamburger {
  width: 28px;
  height: 24px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.4s cubic-bezier(.77,0,.18,1);
}

/* Position lines perfectly */
.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  left: -3px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
  left: -6px;
}

/* =========================================
   ACTIVE → PERFECT CROSS
========================================= */

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);left: auto;
}

/* Optional Premium Hover */
/* .hamburger:hover span {
  background: #f5b400;
} */

/* =========================================
   FULLSCREEN MENU
========================================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0b1623, #000);
  color: #fff;
  transform: translateY(-100%);
  transition: 0.6s cubic-bezier(.77,0,.18,1);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.menu-overlay.open {
  transform: translateY(0);
}

/* =========================================
   MENU LAYOUT
========================================= */
.menu-container {
  flex: 1;
  display: flex;
  /* min-height: 100%; */
  flex-wrap: wrap;
}


/* LEFT SIDE */
.menu-left {
  width: 50%;
  margin-top: 80px; background: url("../images/bg_menu.jpg") no-repeat; background-size: cover;
}

.main-menu {
  list-style: none;
  padding: 0px 0 0 80px;
  margin: 60px 0 0; border-right: 1px solid rgba(255,255,255,0.2);
}

.main-menu li {
  font-size: 36px;
  font-weight: 300;
  padding: 9px 0;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  position: relative;
  transition: 0.3s ease;
}

.main-menu li:hover{
  color: #f5b400;
}

.main-menu li.active {
  color: #f5b400;  font-weight:700;
}

.main-menu li.active::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 40px;
  background: #f5b400;
}

/* .arrow-box {
    position: relative;
    width: 60px;
    height: 120px;
} */

/* Vertical Line */
.main-menu li.active .menu-title:before {
    content: "";
    position: absolute;
    right: 0;
    top: 7%;
    width: 2px;
    height: 60%;
    background: #f4b400; /* yellow */
}

/* Arrow Shape */
.main-menu li.active .menu-title:after {
    content: "";
    position: absolute;
    right: -6px;
    top: 17px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #f4b400;
    border-right: 2px solid #f4b400;
    transform: rotate(45deg); background: #0b1016;
}

/* RIGHT SIDE */
.menu-right {
  width: 50%;
  padding: 60px 80px;
  background: linear-gradient(to right, rgba(255,255,255,0.05), transparent);margin-top: 80px;
}

.submenu {
  display: none;
  animation: fadeIn 0.4s ease;
}

.submenu.active {
  display: block;
}

.submenu a {
  display: block;
  padding: 8px 0;
  font-size: 20px;
  color: #a6a2a2;
  text-decoration: none;
  transition: 0.3s;
}

.submenu a:hover {
  color: #f5b400;
  padding-left: 10px;
}

/* =========================================
   SECOND LEVEL
========================================= */
.expand-btn {
  display: block;
  font-weight: 400;
  cursor: pointer;
  padding: 10px 0;
  font-size: 20px; position: relative; color: #C6C6C6;
 
}

.expand-btn.active {
  color: #FFB81E;
  font-weight: 700;
}

.expand-btn.active i {

}

.expand-btn i::before {
    content: "+";
    position: absolute;
    font-size: 40px;
    color: #fff;
    top: 0px;
    right: 0;
    font-style: normal;
    font-weight: 400;
}

.expand-btn.active i::before {
    content: "-";
    position: absolute;
    font-size: 40px;
    color: #fff;
    top: -6px;
    right: 0;
    font-style: normal;
    font-weight: 400;
}

.inner-submenu {
  max-height: 0;
  overflow: hidden;
  /* transition: max-height 0.4s ease; */
  /* padding-left: 20px; */
}

.inner-submenu.open {
  max-height: 500px; position: relative;
  /* border-right: 1px solid rgba(255,255,255,0.4); */
}

.inner-submenu.open:after{position: absolute; content: ""; height: 100%; width: 1px; background-color: rgba(255,255,255,0.4); right: 10px; top: 0;}

.inner-submenu a {
  font-size: 15px;
}

.sociallink{border-top: 1px dashed rgba(255,255,255,0.1); padding: 20px 80px 0; width: 100%; position: absolute; bottom: 50px;}

.follow-section {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0px;
}

.follow-text {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.dot {
    width: 6px;
    height: 6px;
    background: #bbb;
    border-radius: 50%;
}

/* Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover Effects */
.social-icon:hover {
    transform: translateY(-3px);
}

/* =========================================
   ANIMATION
========================================= */
@keyframes fadeIn {
  from {opacity:0; transform:translateX(20px);}
  to {opacity:1; transform:translateX(0);}
}

@media (max-width: 1300px) {
  .main-menu {
    margin: 20px 0 0;
}
.menu-right {
    padding: 20px 80px;
}
.sociallink {
    padding: 0px 80px 0;
    bottom: 0px;
}
.main-menu li {
    font-size: 30px;
}
}
/* =========================================
   TABLET
========================================= */


@media (max-width: 1024px) {

  .menu-container {
    flex-direction: column;
  }

  .menu-left,
  .menu-right {
    width: 100%;
  }

  .menu-left {
    padding: 120px 50px 40px;
    /* border-bottom: 1px solid rgba(255,255,255,0.1); */
  }

  .menu-right {
    padding: 40px 50px 80px;
  }

  .main-menu li {
    font-size: 36px;
  }

  .main-menu li.active::before {
    display: none;
  }

  .sociallink {
    border-top: 0px dashed rgba(255, 255, 255, 0.1);
    padding: 20px 80px 0;
    width: 100%;
    position: relative;
    bottom: auto;
}
}

/* =========================================
   MOBILE ACCORDION MODE
========================================= */
@media (max-width: 768px) {

  .top-header {
    padding: 15px 20px;
  }

  .company-name {
    display: none;
  }

  .logo-left img,
  .logo-right img {
    height: 28px;
  }

  .menu-left {
    padding: 100px 25px 20px;
  }

  .menu-right {
    display: none; /* Hide right panel on mobile */
  }

  .main-menu li {
    font-size: 24px;
    padding: 10px 0;
  }

  /* MOBILE: Show submenu under main item */
  .submenu {
    display: none;
    padding-left: 15px;
  }

  .main-menu li.active + .submenu {
    display: block;
  }

  .submenu a {
    font-size: 14px;
  }

  .expand-btn {
    font-size: 14px;
  }

  .main-menu li.menu-item::after {
    content: "+";
    position: absolute;
    font-size: 20px;
    color: #fff;
    top: 12px;
    right: 0;
    font-style: normal;
    font-weight: 400;
}

.main-menu li.active::after {
    content: "-";
    position: absolute;
    font-size: 20px;
    color: #fff;
    top: 12px;
    right: 0;
    font-style: normal;
    font-weight: 400;
}

.expand-btn i::before {
    font-size: 20px;
    top: 12px;

}

.expand-btn.active i::before {
  font-size: 20px;
    top: 12px;
}




}

/* =========================================
   SMALL MOBILE
========================================= */
@media (max-width: 480px) {

  .main-menu li {
    font-size: 20px;
  }

  .submenu a {
    font-size: 14px;
  }
}


/* =========================================
   RESPONSIVE STRUCTURE FIX
========================================= */

/* Desktop default */
.menu-right {
  display: block;
}

.menu-left .submenu {
  display: none;
}

/* =========================================
   MOBILE MODE (Accordion)
========================================= */
@media (max-width: 768px) {

  .menu-container {
    flex-direction: column;
  }

  .menu-left {
    width: 100%;
    padding: 0px 25px 30px;
  }

  .main-menu {
    list-style: none;
    padding: 0px 0 0 0px;
    margin: 10px 0;
    border-right: 0px solid rgba(255, 255, 255, 0.2);
}

/* Vertical Line */
.main-menu li.active .menu-title:before {
display: none;
}

/* Arrow Shape */
.main-menu li.active .menu-title:after {
   display: none;
}

  .menu-right {
    display: none; /* Hide right panel */
  }

  .main-menu li {
    font-size: 22px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* Inject submenu visually under menu item */
  .menu-item.active {
    color: #f5b400;
  }

  .menu-item.active::before {
    display: none;
  }

  /* MOBILE SUBMENU STYLE */
  .mobile-submenu {
    padding: 10px 0 15px 0px;
    animation: fadeIn 0.3s ease;
  }

  .mobile-submenu a {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
  }

  .mobile-submenu a:hover {
    color: #f5b400;
  }

  .inner-submenu.open:after{display: none;}

}