


a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-bar {
  float: left;
  width: 100%;
  position: relative;
  background: #0c1923;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
}
.mean-container a.meanmenu-reveal {
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  height: 22px;
  line-height: 22px;
  padding: 13px 13px 11px;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 0;
  width: 22px;
}
.mean-container a.meanmenu-reveal span {
  display: block;
  background: #fff;
  height: 3px;
  margin-top: 3px;
}
.mean-container .mean-nav {
  background: #ffffff none repeat scroll 0 0;
  float: left;
  margin-top: 44px;
  width: 100%;
}
.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}
.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}
.mean-container .mean-nav ul li a {
  /* border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(0, 0, 0, 0.5); */
  color: #000000;
  display: block;
  float: left;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  padding: 1.2em 5%;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  width: 90%;
  line-height: 17px;
}
.mean-last {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.mean-container .mean-nav ul li a:hover {
  color: #ec1c23;
}
.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 1em 10%;
  border-top: 1px solid #f1f1f1;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  opacity: 0.8;
  filter: alpha(opacity=75);
  text-shadow: none !important;
  visibility: visible;
}
.mean-container .mean-nav ul li.mean-last a {
  border-bottom: none;
  margin-bottom: 0;
}
.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 1em 15%;
}
.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 1em 20%;
}
.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 1em 25%;
}
.mean-container .mean-nav ul li a:hover {
  background: #252525;
  background: rgba(255, 255, 255, 0.1);
}
.mean-container .mean-nav ul li a.mean-expand {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0;
  border-color: currentcolor currentcolor rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.7);
  border-image: none;
  border-style: none none solid solid;
  border-width: medium medium 1px 1px;
  font-weight: 700;
  height: 22px;
  line-height: 21px;
  margin-top: 1px;
  padding: 11.5px 12px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 22px;
  z-index: 2;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: rgba(0, 0, 0, 0.9) none repeat scroll 0 0;
  color: #ffffff;
}
.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}
.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}
/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.mean-remove {
  display: none !important;
}
.mean-nav span {
  display: none;
}

/* hamburger-css */

/* Mobile Sidebar Menu Styles */
.mobile-menu-toggle {
  display: none;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.hamburger .line {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger .line:nth-child(1) {
  top: 0;
}

.hamburger .line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger .line:nth-child(3) {
  bottom: 0;
}

/* Mobile Sidebar */
.mobile-sidebar-menu {
  display: none;
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 84%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.sidebar-content {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
}

.mobile-sidebar-menu.active .sidebar-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar-menu.active .sidebar-content {
  left: 0;
}

.sidebar-header {
  padding: 15px 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
}

.sidebar-logo img {
  max-height: 40px;
}

.sidebar-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.sidebar-close:hover {
  color: #ec1c23;
}

.sidebar-nav {
  padding: 20px 0;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav ul li {
  margin: 0;
  padding: 0;
}

.for-mobile {
  margin-right: 0px !important;
}

.sidebar-nav ul li a {
  display: block;
  padding: 15px 25px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s ease;
}

.sidebar-nav ul li a:hover {
  background: #f8f9fa;
  color: #ec1c23;
  padding-left: 30px;
}

/* Hide default meanmenu navigation */
.mean-container .mean-bar,
.mean-container a.meanmenu-reveal {
  display: none !important;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    /* top: 50%; */
    transform: translateY(-50%);
  }

  .main-menu {
    display: none !important;
  }

  .mobile-sidebar-menu {
    display: block;
  }
}

/* Adjust hamburger position on smaller screens */
@media (max-width: 767px) {
  .header-area .content-wrapper {
    position: relative;
    min-height: 50px;
  }

  .mobile-menu-toggle {
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Animation for hamburger when active */
/* .hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
} */

/* .hamburger.active .line:nth-child(2) {
  opacity: 0;
} */

/* .hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
} */

/* Responsive sidebar width */
@media (max-width: 480px) {
  .sidebar-content {
    width: 280px;
    left: -280px;
  }
}

@media (min-width: 992px) {
  .mobile-sidebar-menu {
    display: none !important;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.preloader-content {
  text-align: center;
}

.spinner-border {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffd700;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo-loader img {
  max-height: 40px;
  filter: brightness(0) invert(1);
}

/* Hide preloader when loaded */
.preloader-hide {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

/* ------------------------------new-css-for-header----------------------- */




    /* Reset and base styles */
    .header-one .mobile-menu-toggle {
        display: none;
    }
    
    .header-one .hamburger {
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 0;
        /* width: 30px; */
        /* height: 24px; */
        position: relative;
    }
    
    .header-one .hamburger .line {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #333;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .header-one .hamburger .line:nth-child(1) {
        top: 0;
    }
    
    .header-one .hamburger .line:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-one .hamburger .line:nth-child(3) {
        bottom: 0;
    }
    
    .header-one .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .header-one .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .header-one .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Desktop Navigation Styles */
    .header-one .navbar {
        padding: 0;
    }
    
    .header-one .navbar-nav {
        gap: 15px;
    }
    
    .header-one .nav-link {
        color: #333 !important;
        font-weight: 500;
        padding: 10px 0 !important;
        background: transparent;
        transition: color 0.3s;
        font-size: 15px;
    }
    
    .header-one .nav-link:hover {
        color: #2c2b5e !important;
    }
    
    .header-one .dropdown-toggle::after {
        display: inline-block;
        margin-left: 5px;
        vertical-align: middle;
        border-top: 4px solid;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }
    
    .header-one .dropdown-menu {
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 5px;
        padding: 10px 0;
        margin-top: 5px;
    }
    
    .header-one .dropdown-item {
        padding: 8px 20px;
        color: #333;
        transition: all 0.3s;
        font-size: 15px;
    }
    
    .header-one .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #2c2b5e;
        padding-left: 25px;
    }
    
    /* Mega Menu Styles */
    .header-one .megamenu .dropdown-menu {
        width: 900px;
        left: -200px !important;
        padding: 20px;
    }
    
    .header-one .megamenu-content {
        max-width: 900px;
    }
    
    .header-one #department-tab .nav-link {
        background: #ffc107;
        color: #000;
        border: none;
        margin-bottom: 5px;
        text-align: left;
        padding: 10px 15px !important;
        border-radius: 4px;
    }
    
    .header-one #department-tab .nav-link.active {
        background: #2c2b5e;
        color: white !important;
    }
    
    .header-one .tab-content {
        padding-left: 15px;
    }
    
    .header-one .cors {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }
    
    .header-one .cors li {
        margin-bottom: 5px;
    }
    
    .header-one .cors .dropdown-item {
        padding: 5px 0;
        color: #666;
        font-size: 14px;
    }
    
    .header-one .cors .dropdown-item:hover {
        color: #2c2b5e;
        padding-left: 10px;
    }
          h6.drop-do-wn-inner-hd {
    border-bottom: 1px solid #ffca05;
    padding-bottom: 5px;
}

.header-one .mobile-menu-toggle{
position: absolute; 
right: 15px; 
top: 50%; 
transform: translateY(-50%); 
z-index: 10001;
}


    /* Mobile Menu Styles - IMPORTANT FIXES */
    @media (max-width: 991px) {
        .header-one .mobile-menu-toggle {
            display: block !important;
            position: absolute;
            right: 15px;
            top: 30%;
            transform: translateY(-50%);
            z-index: 10001;
        }

  .header-one .hamburger{
        width: 20px;
        height: 20px;

}


        .header-one .header-area.two .main-menu nav > ul > li > a{
          line-height: normal;
        }
        
        .header-one .d-lg-none {
            display: block !important;
        }
        
        .header-one .d-none.d-lg-block {
            display: none !important;
        }

        .header-one .main-menu ul li ul{
          position: relative;
          box-shadow: none;
        }
        
        .header-one .main-menu {
            position: fixed;
            top: 0;
            right: -280px;
            width: 280px;
            height: 100vh;
            background: #fff;
            z-index: 10000;
            padding: 50px 20px 20px;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            overflow-y: auto;
            transition: right 0.3s ease;
            display: block !important;
        }
        
        .header-one .main-menu.mobile-active {
            right: 0;
        }
        
        .header-one .main-menu nav {
            display: block !important;
        }
        
        .header-one #mainMenuList {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }
        
        .header-one #mainMenuList > li {
            margin-bottom: 0;
            border-bottom: 1px solid #eee;
            width: 100%;
        }
        
        .header-one #mainMenuList > li:last-child {
            border-bottom: none;
        }
        
        .header-one #mainMenuList > li > a {
            display: block;
            padding: 15px 0;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            width: 100%;
        }
        
        .header-one .has-submenu > a {
            display: flex !important;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .header-one .has-submenu > a .fa-angle-down {
            transition: transform 0.3s ease;
            /* font-size: 14px; */
        }
        
        .header-one .has-submenu.active > a .fa-angle-down {
            transform: rotate(180deg);
        }
        
        .header-one .submenu {
            display: none;
            list-style: none;
            padding-left: 15px;
            margin: 0;
            background: #f9f9f9;
            border-radius: 5px;
            margin-top: 5px;
            margin-bottom: 10px;
            width: 100%;
        }
        
        .header-one .submenu.active {
            display: block;
        }
        
        .header-one .submenu li {
            margin-bottom: 0;
            width: 100%;
            padding: 0px;
        }
        
        .header-one .submenu li a {
            display: block;
            padding: 5px 15px;
            color: #666;
            text-decoration: none;
            /* font-size: 14px; */
            border-bottom: 1px solid #eee;
            width: 100%;
        }
        
        .header-one .submenu li:last-child a {
            border-bottom: none;
        }
        
        /* Mobile Mega Menu */
        .header-one .mobile-megamenu {
            display: none;
            padding-left: 15px;
            width: 100%;
        }
        
        .header-one .has-submenu.active .mobile-megamenu {
            display: block;
        }
        
        .header-one .mobile-tabs {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 15px;
            width: 100%;
        }
        
        .header-one .mobile-tab {
            background: #ffc107;
            border: none;
            padding: 10px 15px;
            text-align: left;
            border-radius: 4px;
            color: #000;
            /* font-size: 14px; */
            font-weight: 500;
            width: 100%;
            cursor: pointer;
        }
        
        .header-one .mobile-tab.active {
            background: #2c2b5e;
            color: white;
        }
        
        .header-one .mobile-tab-content {
            padding-left: 10px;
            width: 100%;
        }
        
        .header-one .mobile-tab-pane {
            display: none;
            width: 100%;
        }
        
        .header-one .mobile-tab-pane.active {
            display: block;
        }
        
        .header-one .mobile-tab-section {
            margin-bottom: 15px;
            width: 100%;
        }
        
        .header-one .mobile-tab-section h6 {
            /* font-size: 14px; */
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }
        
        .header-one .mobile-tab-section ul {
            list-style: none;
            padding-left: 15px;
            margin: 0;
            box-shadow: none;
            width: 100%;
        }
        
        .header-one .mobile-tab-section ul li {
            margin-bottom: 5px;
            width: 100%;
        }
        
        .header-one .mobile-tab-section ul li a {
            display: block;
            padding: 5px 0;
            color: #666;
            text-decoration: none;
            /* font-size: 13px; */
            width: 100%;
        }
        
        /* Overlay */
        .header-one .menu-open::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
        }
        
        .header-one .menu-open {
            overflow: hidden;
        }
        
        /* Ensure hamburger is visible */
        .header-one .position-relative {
            position: relative;
        }
        
        /* Adjust logo size on mobile */
        .header-one .logo img {
            max-height: 60px !important;
        }
    }




