.header_area {
  padding: 0 60px;
   position: fixed;
   width: 100%;
   top: 0;
   z-index: 9;
   transition: all 0.3s ease;
}

.inner-header {
  background-color: transparent !important;
  position: absolute;
  width: 100%;
}
.inner-header .nav-link {
  color: #ffffff ;
}

.header_area .auto-container {
      max-width: 1810px;
      transition: all 0.3s ease;
}
.container {
  transition: all 0.3s ease;
}

.navmenu {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.nav-link {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  color: #ffffff;
}
.nav-link.active {
  color: var(--main-color) !important;
  font-weight: 600;
}
.nav-link.sub-active {
  color: #C69A59 !important;
  font-weight: 600;
}
.nav-link:hover {
  color: #C69A59 !important;
}


.header_area.scrolled {
  background: #ffffff; 
    top: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.scrolled.inner-header {
    background-color: #ffffff !important;
     box-shadow: 0 0 4px 2px rgb(0 0 0 / 13%);
     position: fixed !important;
}

.scrolled .header-logo {
  filter: none !important;
}
.scrolled .nav-link, .scrolled .language-toggle {
  color: #252525;
}

.language-toggle {
  color: #ffffff;
  transition: all 0.3s ease;
}
.language-toggle  svg {
  height: 20px;
  width: auto;
  transition: all 0.3s ease;
}


/* ============================================
   Header Right Actions
   ============================================ */

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}


/* ============================================
   Sidebar Toggle Button (Hamburger)
   ============================================ */

.sidebar-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.sidebar-toggle-btn:hover {
  border-color: var(--main-color);
  background: rgba(244, 164, 58, 0.08);
}

.sidebar-toggle-btn .hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.scrolled .sidebar-toggle-btn {
  border-color: rgba(0, 0, 0, 0.15);
}

.scrolled .sidebar-toggle-btn .hamburger-line {
  background-color: #252525;
}

.scrolled .sidebar-toggle-btn:hover {
  border-color: var(--main-color);
  background: rgba(244, 164, 58, 0.08);
}


/* ============================================
   Sidebar Overlay
   ============================================ */

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ============================================
   Sidebar Navigation Panel
   ============================================ */

.sidebar-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.sidebar-nav.open {
  transform: translateX(0);
}


/* Sidebar Header */

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.sidebar-logo img {
  height: 36px;
  width: auto;
}

.sidebar-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #252525;
}

.sidebar-close-btn:hover {
  background: #e8e8e8;
  transform: rotate(90deg);
}

.sidebar-close-btn svg {
  width: 20px;
  height: 20px;
}


/* Sidebar Links */

.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 16px 0;
  flex-grow: 1;
}

.sidebar-link-item {
  border-bottom: 1px solid #f5f5f5;
}

.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  font-family: var(--body-font);
  font-size: 21px;
  font-weight: 500;
  color: #252525;
  text-decoration: none !important;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--main-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.sidebar-link:hover {
  color: var(--main-color) !important;
  background: rgba(244, 164, 58, 0.04);
  padding-left: 34px;
}

.sidebar-link:hover::before {
  transform: scaleY(1);
}

.sidebar-link.active {
  color: var(--main-color) !important;
  font-weight: 700;
  background: rgba(244, 164, 58, 0.06);
}

.sidebar-link.active::before {
  transform: scaleY(1);
}


/* Sidebar Submenu */

.sidebar-submenu-toggle {
  cursor: pointer;
}

.sidebar-submenu-toggle .submenu-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sidebar-link-item.has-submenu.submenu-open .submenu-arrow {
  transform: rotate(180deg);
}

.sidebar-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #fafafa;
}

.sidebar-link-item.has-submenu.submenu-open .sidebar-submenu {
  max-height: 300px;
  padding: 8px 0;
}

.sidebar-sublink {
  display: block;
  padding: 12px 28px 12px 44px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  color: #6A6A6A;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.sidebar-sublink:hover {
  color: var(--main-color) !important;
  padding-left: 50px;
}


/* Sidebar Footer */

.sidebar-footer {
  padding: 24px 28px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.sidebar-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.sidebar-lang-toggle {
  color: #6A6A6A;
  font-family: var(--body-font);
  font-size: 21px;
  font-weight: 500;
  text-decoration: none !important;
  justify-content: center;
  transition: color 0.3s ease;
}

.sidebar-lang-toggle:hover {
  color: var(--main-color) !important;
}


/* Body scroll lock when sidebar is open */

body.sidebar-active {
  overflow: hidden;
}


/* ============================================
   Loader Animation
   ============================================ */

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader-wrapper .conatiner {
  width: 50px;
  height: 50px;
}

#loader-wrapper .conatiner .boxes {
  width: 50px;
  height: 50px;
  fill: none;
  stroke-width: 50px;
  stroke: var(--main-color);
  stroke-dasharray: 50;
  stroke-dashoffset: 50%;
  animation: animate 1.5s linear infinite;
}
 @keyframes draw-blue {
    0% { stroke-dashoffset: 1400; fill-opacity: 0; }
    55% { stroke-dashoffset: 0; fill-opacity: 0; }
    80% { stroke-dashoffset: 0; fill-opacity: 1; }
    90% { stroke-dashoffset: 0; fill-opacity: 1; }
    100% { stroke-dashoffset: 0; fill-opacity: 1; }
  }
  @keyframes draw-orange {
    0% { stroke-dashoffset: 600; fill-opacity: 0; }
    55% { stroke-dashoffset: 0; fill-opacity: 0; }
    80% { stroke-dashoffset: 0; fill-opacity: 1; }
    90% { stroke-dashoffset: 0; fill-opacity: 1; }
    100% { stroke-dashoffset: 0; fill-opacity: 1; }
  }
  @keyframes fade-out-stroke-blue {
    0%, 79% { stroke-opacity: 1; }
    95% { stroke-opacity: 0; }
    100% { stroke-opacity: 0; }
  }
  @keyframes fade-out-stroke-orange {
    0%, 79% { stroke-opacity: 1; }
    95% { stroke-opacity: 0; }
    100% { stroke-opacity: 0; }
  }
  @keyframes full-fade {
    0%, 85% { opacity: 1; }
    97% { opacity: 0; }
    100% { opacity: 0; }
  }

 #loader-wrapper .path-blue {
    fill: #60B4CC;
    fill-opacity: 0;
    stroke: #60B4CC;
    stroke-opacity: 1;
    stroke-width: 1.2;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    stroke-linejoin: round;
    stroke-linecap: round;
    animation:
      draw-blue 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite,
      fade-out-stroke-blue 3.2s ease-in-out infinite;
  }

  #loader-wrapper .path-orange {
    fill: #F89933;
    fill-opacity: 0;
    stroke: #F89933;
    stroke-opacity: 1;
    stroke-width: 1.2;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    stroke-linejoin: round;
    stroke-linecap: round;
    animation:
      draw-orange 3.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s infinite,
      fade-out-stroke-orange 3.2s ease-in-out 0.3s infinite;
  }

  #loader-wrapper .svg-wrap {
    animation: full-fade 3.2s ease-in-out infinite;
  }

  @keyframes dot1 { 0%,100%{opacity:0.2} 16%{opacity:1} }
  @keyframes dot2 { 0%,100%{opacity:0.2} 33%{opacity:1} }
  @keyframes dot3 { 0%,100%{opacity:0.2} 50%{opacity:1} }

@keyframes animate {
  to {
    stroke-dashoffset: 250%;
  }
}


/* ============================================
   Nav Item
   ============================================ */

.nav-item {
  transition: all 0.3s ease;
}


/* ============================================
   Back to Top
   ============================================ */

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "unicons";
  content: "\e84b";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--main-color);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: "unicons";
  content: "\e84b";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--main-color);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/* ============================================
   Sub Header (commented out in HTML, kept for reference)
   ============================================ */

.sub-header {
  background-color: #001022;
  width: 100vw;
  margin-left: -60px;
}
.sub-header .navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
