.categoryvbmenu .hfe-nav-menu {
margin-left: auto; 
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-justify-content: flex-end;
-moz-box-pack: end;
justify-content: flex-end;
}
body.no-scroll {
  overflow: hidden;
}

.marketing-navbar {
  position: relative;
  width: 100%;
  z-index: 9999;   
}
.marketing-container {
  align-items: center;
  gap: 10px;
 overflow: visible !important;

}

.marketing-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
align-items: center;
    justify-content: end;	
}
.marketing-nav a {
  text-decoration: none;
  color: #362F75;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.marketing-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
border-bottom:1px solid #8E8E8F;	
 /* height: 1px;
  background: #8E8E8F; */
  transition: 0.3s;
}

.marketing-nav a:hover::after {
  width: 100%;
}
.marketing-mega {
 position: static; 
}
.marketing-mega-menu {
  position: fixed;   /* change from absolute */
  top: 100px;        /* adjust as per header height */
  left: 0;
  width: 100%;
  background: #fff;
  padding: 50px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 9999;
}
.marketing-mega:hover .marketing-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.marketing-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.marketing-nav-arrow {
  transition: transform 0.3s ease;
}

.marketing-mega:hover .marketing-nav-arrow {
  transform: rotate(180deg);
}

.marketing-mega-content {
  width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.marketing-column h4 {
  color: #E75524;
  margin-bottom: 12px;
  font-size:17px;
  font-weight:600;
}
.marketing-column a {
  display: block;
  margin-bottom: 4px;
  color: #362F75;
  font-size: 14px;
}

.marketing-image-box {
  width: 320px;
  border-radius: 8px;
  overflow: hidden;
}
.marketing-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketing-book-btn {
  background: #362F75;
  color: #fff;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.marketing-book-btn:hover {
  background: #f04e23;
}
.marketing-hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
.mm-sub,
.mm-sub-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mm-item.active > .mm-sub {
  max-height: 1000px;
}

.mm-sub-item.active > .mm-sub-links {
  max-height: 500px;
overflow-y:scroll;	
}

.mm-title span svg,
.mm-sub-title span svg {
  transition: transform 0.3s ease;
}

.mm-item.active > .mm-title span svg {
  transform: rotate(180deg);
}

.mm-sub-item.active > .mm-sub-title span svg {
  transform: rotate(180deg);
}

.mm-sub-title {
  padding: 14px 22px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #2d1b69;
}

.mm-title-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mm-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.mm-sub-title:hover .mm-icon {
  transform: scale(1.05);
  transition: 0.2s;
}
/*
.active-link {
  color: #f04e23 !important;
  font-weight: 600;
}
*/
.marketing-hamburger.active span {
  background: #2d1b69;   /* or #f04e23 if you want orange */
}
.marketing-hamburger span {
  transition: all 0.3s ease;
}

.active-parent {
  color: #f04e23 !important;
}
.active-parent::after {
  width: 100% !important;
}

.mm-item a.active-link {
  background: #fdf1ed;
  color: #f04e23;
}
.marketing-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 99999;
  overflow-y: auto;
}

.marketing-mobile-menu.active {
  transform: translateX(0);
}
.drawer-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
  cursor: pointer;
  color: #2d1b69;
  z-index: 100000;
}
.topmobileheader{ border-top: 1px solid #eee;  transition: .5s all;
}

.marketing-response {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.marketing-hamburger {
  width: 26px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.marketing-hamburger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.3s ease;
  border-radius: 3px;
}

.marketing-hamburger span:nth-child(1) {
  top: 0;
}
.marketing-hamburger span:nth-child(2) {
  top: 8px;
}
.marketing-hamburger span:nth-child(3) {
  top: 16px;
}

.marketing-hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.marketing-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.marketing-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}


.mega-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2d1b69;
  margin-bottom: 12px;
  font-weight: 600;
}

.mega-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.mm-item {
  border-bottom: 1px solid #eee;
}

.mm-title {
  padding: 16px 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #2d1b69;
}

.mm-item a {
  display: block;
  padding: 14px 22px;
  color: #362F75;
  text-decoration: none;
  font-size: 15px;
}

.mm-item a:hover {
  background: #f8f7fb;
}

.mm-sub {
  background: #faf9fd;
}

.mm-sub-links a {
  padding: 12px 30px;
  font-size: 14px;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 99998;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
.marketing-logo-img {
padding: 10px 20px;
}
/* Webkit browsers (Chrome, Edge, Safari) */
.mm-sub-links::-webkit-scrollbar {
  width: 1px !important;
}

.mm-sub-links::-webkit-scrollbar-track {
  background: transparent;
}

.mm-sub-links::-webkit-scrollbar-thumb {
  background: #ccc;   /* scrollbar color */
  border-radius: 10px;
}

/* Firefox */
.mm-sub-links {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
@media (max-width: 1300px) {
  .marketing-nav {
    display: none;
  }
  .marketing-hamburger {
    display: block;
  }
}

@media (max-width: 991px) {

  .marketing-nav {
    display: none;
  }

  .marketing-hamburger {
    display: block;
  }
}
@media (max-width: 767px){
.categoryvbmenu .hfe-nav-menu{ margin-left:auto; margin-right:auto;}	
}
@media (max-width: 450px) {
  .marketing-book-btn {
    padding: 10px 14px;
  }
}


