/*====================================
	Header
=====================================*/
.header-logo {
  display: block;
}

.header-logo-title {
  flex-grow: 1;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.header-search-bar {
  font-size: 16px;
  font-weight: 500;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 15px 20px;
  border-radius: 16px;
  width: 100%;
}

.header-logo-wrap {
  flex-grow: 1;
  display: flex;
}

/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement */
.header-marketplace .nav-link {
  padding: 15px 20px;
  color: #64748b !important;
  font-weight: 500;
  font-size: 15px;
}

.header-marketplace .nav-link.active,
.header-marketplace .nav-link.active i {
  color: var(--primary) !important;
}

.header-marketplace .nav-link i {
  color: #64748b !important;
}

.header-marketplace .nav-link:hover,
.header-marketplace .nav-link:hover i {
  color: var(--primary) !important;
}

/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement End */

.marketplace-search {
  max-width: 460px;
  width: 100%;
  padding: 8px 0;
}

.marketplace-search .form-control,
.marketplace-search .form-control:focus {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  border-right: 0;
  background-color: #e6e7e7 !important;
  border-color: #e6e7e7 !important;
  box-shadow: none;
  padding: 20px;
}

.marketplace-search .btn {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  border-left: 0;
  background-color: #e6e7e7 !important;
  border-color: #e6e7e7 !important;
  color: #222222 !important;
}

.text-2-line {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/** ========================================
	Content Main
========================================== */
#content-main {
  padding: 15px 0;
}

#content-main.marketplace-dashboard {
  padding: 30px 15px 30px 255px;
}

.marketplace-dashboard #sidebar-menu {
  z-index: 995;
  padding-top: 140px;
}


.marketplace-dashboard-with-filter #sidebar-menu {
  width: 300px;
}

#content-main.marketplace-dashboard-with-filter {
  padding: 30px 15px 30px 315px;
}



/** ========================================
	Home
========================================== */
.home-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
}

.home-category-card .category-icon-wrap img {
  filter: brightness(0) invert(1);
}

.multiselect-container {
  max-width: 100%;
  max-height: 300px !important;
  overflow-y: auto;
}


.icon-btn {
  background: #fff;
  border: 1px solid #fff;
  padding: 5px;
  margin: 2px;
  font-size: 18px;
  line-height: 1;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  color: var(--primary);
}



/* ==========================================================================
   Premium Categories Section Redesign (Horizontal Layout & Secondary Accents)
   ========================================================================== */
.home-category-card-vertical {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
}

.home-category-card-vertical:hover {
  border-color: #cbd5e1 !important;
  /* Subtle neutral border transition on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
  /* Smooth soft shadow */
  transform: translateY(-3px) !important;
  /* Clean micro-lift */
  text-decoration: none !important;
}

/* Category Image Wrapper */
.home-category-card-vertical .category-image-wrap {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  background: #f8fafc !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.home-category-card-vertical .category-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.home-category-card-vertical:hover .category-image-wrap img {
  transform: scale(1.04) !important;
  /* Subtle zoom */
}

/* Category Info Body */
.home-category-card-vertical .category-info-body {
  padding: 14px 16px !important;
  /* Balanced padding so text has more room and doesn't truncate */
  background: #ffffff !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.home-category-card-vertical .category-name {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  line-height: 1.4 !important;
  text-align: left !important;
  margin-bottom: 0 !important;
  flex-grow: 1 !important;
  padding-right: 8px !important;
  transition: color 0.2s ease !important;
}

.home-category-card-vertical:hover .category-name {
  color: var(--secondary) !important;
}

/* Category Arrow */
.home-category-card-vertical .category-arrow-wrap {
  text-align: right !important;
  flex-shrink: 0 !important;
}

.home-category-card-vertical .category-arrow-link {
  width: 30px !important;
  /* Smaller, sharper, more professional circle */
  height: 30px !important;
  border-radius: 50% !important;
  background: #f1f5f9 !important;
  color: #64748b !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.home-category-card-vertical:hover .category-arrow-link {
  background: var(--secondary) !important;
  color: #ffffff !important;
}

.home-category-card-vertical .category-arrow-link i {
  transition: transform 0.25s ease !important;
}

.home-category-card-vertical:hover .category-arrow-link i {
  transform: translateX(2px) !important;
  /* Slide the arrow right on hover */
}

/* View All button custom accent for Category wrap */
.home-category-wrap .btn-secondary {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
}

.home-category-wrap .btn-secondary:hover {
  background-color: #d8560f !important;
  border-color: #d8560f !important;
  box-shadow: 0 4px 15px rgba(243, 112, 33, 0.3) !important;
}

.counter-icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/** ========================================
	Footer
========================================== */
footer {
  z-index: 997;
  position: relative;
}

/* ── Marketplace Footer ─────────────────── */
.footer-marketplace {
  background: #1F2937;
  color: #a8b8cc;
  font-size: 14px;
  line-height: 1.7;
}

.footer-top {
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Brand Column */
.footer-brand-col {}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}

.footer-description {
  color: #8fa2b8;
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 340px;
  margin-top: 14px !important;
}

.footer-informa-logo {
  margin-top: 16px;
}

.informa-logo-img {
  max-height: 36px;
  width: auto;
  opacity: 0.75;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.informa-logo-img:hover {
  opacity: 1;
}

/* Social Icons */
.footer-social {
  margin-top: 20px;
}

.footer-social .social-Media {
  justify-content: flex-start !important;
  gap: 8px;
}

.footer-social .social-Media li a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #a8b8cc;
  font-size: 13px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social .social-Media li a:hover {
  background-color: var(--secondary, #f37021);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Links Columns */
.footer-links-col {}

.footer-col-heading {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary, #f37021);
  display: inline-block;
}

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-categories-list {
  column-count: 1;
}

.footer-categories-list li {
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
}

@media (min-width: 768px) {
  .footer-categories-list {
    column-count: 2;
    column-gap: 30px;
  }
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list li a {
  color: #8fa2b8;
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Bottom Bar */
.footer-bottom {
  padding: 18px 0;
  background: #080f1a;
}

.footer-copyright {
  color: #5c7285;
  font-size: 12.5px;
}

.footer-bottom a {
  color: #7a96aa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 767.98px) {
  .footer-top {
    padding: 36px 0 28px;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-social .social-Media {
    justify-content: flex-start !important;
  }

  .footer-bottom .d-flex {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Pradum 30-12-2025 Start */
/** ========================================
	Header Dropdown Responsive
========================================== */
#menu-nav-trig {
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-wrap {
  display: flex;
  align-items: center;
}

.dropdown {
  position: initial !important;
}

@media (max-width: 768px) {
  .dropdown-menu .header-nav {
    flex-direction: column;
    padding: 10px 0;
  }

  .dropdown-menu .nav-item {
    width: 100%;
  }

  .dropdown-menu .nav-link {
    padding: 10px 20px !important;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }

  .dropdown.d-md-none>.dropdown-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    width: 280px !important;
    margin: 0 !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s ease-in-out !important;
    display: block !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    border-radius: 0 !important;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1) !important;
  }

  .dropdown.d-md-none.show>.dropdown-menu {
    transform: translateX(0) !important;
  }

  .dropdown-menu .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 20px !important;
    display: none;
    width: 100% !important;
    height: auto !important;
  }

  /* Support for show class if added manually, but allow jQuery to override */
  .dropdown-menu .dropdown.show>.dropdown-menu,
  .dropdown-menu .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu .marketplace-search {
    max-width: 100%;
    padding: 5px 0;
  }

  .header-logo-title {
    display: none;
  }

  .header-right-profile .btn {
    margin-left: 5px !important;
    margin-top: 5px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .header-right-profile .btn i {
    margin-right: 2px !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  /* Convert sidebar-menu to horizontal row on mobile */
  .marketplace-dashboard .page-content,
  .marketplace-dashboard-with-filter .page-content {
    padding-top: 0 !important;
  }

  .marketplace-dashboard #sidebar-menu,
  .marketplace-dashboard-with-filter #sidebar-menu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    padding-top: 0 !important;
    margin: 0 !important;
    background-color: #fff !important;
    border-bottom: 1px solid #ddd !important;
    z-index: 990 !important;
  }

  .marketplace-dashboard #sidebar-menu .sidebar-content,
  .marketplace-dashboard-with-filter #sidebar-menu .sidebar-content {
    height: auto !important;
    padding: 10px 0 !important;
    background: #fff !important;
  }

  .sidebar-nav-wrap .sidebar-nav {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 15px !important;
    background: #fff !important;
  }

  .sidebar-nav-wrap {
    background: #fff !important;
  }

  .sidebar-nav-wrap .sidebar-nav .nav-item {
    display: block !important;
    width: 100% !important;
    border-bottom: 0 !important;
    margin-right: 15px !important;
  }

  .sidebar-nav-wrap .sidebar-nav .nav-item-box {
    padding: 5px 10px !important;
    border-radius: 20px !important;
    background: #f0f0f0 !important;
    color: #333 !important;
  }

  .sidebar-nav-wrap .sidebar-nav .nav-item.active .nav-item-box {
    background: var(--primary) !important;
    color: #fff !important;
  }

  .sidebar-nav-wrap .sidebar-nav .nav-item-icon {
    margin-right: 5px !important;
    font-size: 14px !important;
  }

  .sidebar-nav-wrap .sidebar-nav .nav-item-text {
    font-size: 13px !important;
    font-weight: 600 !important;
  }

  /* Hide submenus in horizontal row format */
  .sidebar-nav-wrap .sidebar-nav .nav-subitems {
    display: none !important;
  }

  .sidebar-nav-wrap .sidebar-nav .nav-item.has-submenu a.level-1:after {
    display: none !important;
  }

  #sidebar-menu-overlay {
    display: none !important;
  }

  #content-main {
    padding: 25px !important;
  }

  .marketplace-dashboard #sidebar-menu .sidebar-content,
  .marketplace-dashboard-with-filter #sidebar-menu .sidebar-content {
    padding: 25px !important;
  }

  .col-sm-3 {
    text-align: center;
    padding-bottom: 20px;
  }

  .justify-content-center {
    justify-content: left !important;
  }

}


.dropdown-toggle::after {
  float: right;
  margin-top: 10px;
}

/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement */
.btn-login {
  background-color: transparent !important;
  border: 1.5px solid var(--primary) !important;
  color: var(--primary) !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

.btn-login:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}

/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement End */

.btn-register {
  /* background-image: linear-gradient(135deg, var(--primary) 0%, #1ea689 100%) !important; */
  background-color: var(--primary) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.btn-register:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

.page-heading {
  padding-top: 20px !important;
}

.social-Media {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
}

.social-Media li a {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #c71d23;
  color: #fff;
}

@media (max-width: 767.98px) {
  .social-Media {
    justify-content: center !important;
    align-items: center !important;
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-Media li a {
    width: 36px;
    height: 36px;
  }
}

/* Pradum 30-12-2025 End */

/* ========================================
   B2B Premium Landing Page - Start
======================================== */

.b2b-premium-landing {
  font-family: 'Inter', 'Check Sm', sans-serif;
  /* Modern font stack */
  background-color: #f8f9fa;
  /* Softer background */
}

/* --- Utilities --- */
.ls-1 {
  letter-spacing: 1px;
}

.z-index-2 {
  z-index: 2;
}

.rounded-xl {
  border-radius: 20px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.border-left-primary {
  border-left: 5px solid var(--primary);
}

.border-left-secondary {
  border-left: 5px solid var(--secondary);
}

/* --- Main B2B Feature Cards (Bento Style) --- */
.b2b-main-card {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-hover-lift:hover {
  transform: translateY(-10px);
}

.b2b-main-card .card {
  background: #ffffff;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle border by default */
}

.b2b-main-card:hover .card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--primary-light);
}

.card-bg-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 15rem;
  color: rgba(0, 0, 0, 0.03);
  transform: rotate(-15deg);
  pointer-events: none;
  transition: all 0.5s ease;
}

.b2b-main-card:hover .card-bg-icon {
  transform: rotate(0deg) scale(1.1);
  color: rgba(23, 103, 177, 0.08);
  /* Primary color hint */
}

/* Icon Box Animation */
.icon-box-lg {
  transition: all 0.3s ease;
}

.b2b-main-card:hover .icon-box-lg {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(23, 103, 177, 0.3);
}

.card-action {
  transition: all 0.3s ease;
}

.b2b-main-card:hover .card-action {
  transform: translateX(10px);
  color: var(--primary-dark) !important;
}


/* --- Secondary Cards (Essentials) --- */
.b2b-secondary-card {
  transition: all 0.3s ease;
}

.b2b-secondary-card .card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle border */
  border-radius: 12px !important;
  /* Slightly sharper than main cards */
  transition: all 0.3s ease;
  overflow: hidden;
  /* For the border-left effect */
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.b2b-secondary-card:hover .card {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
  border-color: var(--primary-light);
}

/* Hover Accent Line */
.b2b-secondary-card .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-light);
  /* Lighter accent */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.b2b-secondary-card:hover .card::after {
  opacity: 1;
}

.b2b-secondary-card .icon-box-md {
  width: 45px !important;
  height: 45px !important;
  font-size: 1.1rem;
  background-color: #f8f9fa;
  /* Light gray default */
  color: var(--primary);
  border-radius: 10px !important;
  transition: all 0.3s ease;
}

.b2b-secondary-card:hover .icon-box-md {
  background-color: var(--primary-light) !important;
  /* Lighter background on hover */
  color: var(--primary-dark) !important;
  /* Dark text for contrast */
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(23, 103, 177, 0.1);
}

.b2b-secondary-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  /* Softer Heading Color */
}

.b2b-secondary-card:hover h5 {
  color: var(--primary);
}


.b2b-secondary-card .fa-chevron-right {
  font-size: 0.8rem;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.b2b-secondary-card:hover .fa-chevron-right {
  opacity: 1;
  color: var(--primary);
  transform: translateX(3px);
}

/* Support Buttons (Mini Tiles) */
.btn-white.transition-hover {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
  justify-content: flex-start !important;
  /* Alignment fix */
  padding-left: 20px !important;
  background: #fff;
  transition: all 0.3s ease;
  color: #555;
  /* Softer text */
}

.btn-white.transition-hover:hover {
  background: #fff;
  border-color: var(--primary-light) !important;
  /* Lighter border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
  color: var(--primary) !important;
  /* Switch to primary blue, not red */
  transform: translateY(-2px);
}

.btn-white.transition-hover i {
  color: #999;
  /* Softer icon default */
  transition: color 0.3s ease;
}

.btn-white.transition-hover:hover i {
  color: var(--primary) !important;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .b2b-main-card .card-body {
    padding: 2rem !important;
  }
}

/* --- Premium Promo Card (Meeting Fix) --- */
.b2b-promo-card {
  /* Premium clean cool background (Primary fade) */
  background: #f0f7ff;
  border: 1px solid rgba(23, 103, 177, 0.15);
  /* Primary subtler border */
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(23, 103, 177, 0.05);
}

.b2b-promo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(23, 103, 177, 0.1);
  border-color: rgba(23, 103, 177, 0.3);
}

/* Decorative accent */
/* .b2b-promo-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
} */

.b2b-promo-card .promo-icon {
  width: 60px;
  height: 60px;
  background: rgba(23, 103, 177, 0.08);
  /* Primary color ultra light */
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.b2b-promo-card .enroll-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(23, 103, 177, 0.3);
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.b2b-promo-card .enroll-btn:hover {
  background: var(--primary-dark);
  /* darker shade */
  box-shadow: 0 6px 15px rgba(23, 103, 177, 0.4);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

/* ==========================================================================
   Paperex-inspired Marketplace Header Custom Styling
   ========================================================================== */
@media (min-width: 768px) {

  /* Enable navigation link icons and style them cleanly */
  .header-marketplace .nav-link i {
    display: inline-block !important;
    margin-right: 8px;
    font-size: 15px;
    vertical-align: middle;
  }

  /* Deepak Dubey 16-06-2026 :  OSH UI Enhancement */
  .header-marketplace .nav-link {
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    padding: 10px 18px !important;
    transition: color 0.3s ease !important;
    display: inline-flex !important;
    align-items: center;
  }

  /* Deepak Dubey 16-06-2026 :  OSH UI Enhancement End */

  .header-marketplace .nav-link:hover,
  .header-marketplace .nav-link.active,
  .header-marketplace .nav-link.active i {
    color: var(--primary) !important;
    /* Premium Teal highlight */
  }

  /* Adjust the header navigation wrapper alignment */
  .header-menu-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

/* Header Top/Bottom splitting layout styling */
.header-top-bar {
  background-color: #ffffff;
}

.header-bottom-bar {
  background-color: #ffffff;
  border-top: 1px solid #f0f0f0;
}

/* Vertically stacked header action icons (Chat, Notification) */
.header-right-profile .header-icon-item .header-icon-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 19px !important;
  color: var(--primary) !important;
  /* Premium Teal matching active menu style */
  text-decoration: none !important;
  padding: 4px 12px !important;
  position: relative !important;
  line-height: 1.2 !important;
  background: transparent !important;
}

.header-right-profile .header-icon-item .header-icon-link i {
  font-size: 20px !important;
  color: var(--primary) !important;
  margin-bottom: 2px !important;
  transition: color 0.2s ease !important;
}

.header-right-profile .header-icon-item .header-icon-link:hover i {
  color: var(--primary, #4bb965) !important;
}

.header-right-profile .header-action-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  text-transform: capitalize !important;
  margin-top: 2px !important;
  transition: color 0.2s ease !important;
  letter-spacing: 0.2px;
}

.header-right-profile .header-icon-item .header-icon-link:hover .header-action-label {
  color: var(--primary, #4bb965) !important;
}

/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement */
.header-right-profile .header-icon-item .header-icon-link .header-icon-count {
  position: absolute !important;
  top: -8px !important;
  right: -8px !important;
  background: #ff3b30 !important;
  color: #ffffff !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  padding: 1px 4px !important;
  border-radius: 10px !important;
  line-height: 1.2 !important;
  min-width: 15px !important;
  text-align: center !important;
  border: 1.5px solid #ffffff !important;
}

.header-marketplace .nav-link.dropdown-toggle::after {
  float: none !important;
  margin-top: 0 !important;
  margin-left: 6px !important;
  vertical-align: middle !important;
}

.header-app-badge-link {
  transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.header-app-badge-link:hover {
  transform: scale(1.05) !important;
  opacity: 0.95 !important;
}

/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement End */

/* Override body scrolled padding for the taller split header */
body.scrolled {
  padding-top: 108px !important;
}

.scrolled .header-marketplace {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ==========================================================================
   Full Page Search Overlay Styling
   ========================================================================== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-overlay .close-search {
  position: absolute;
  top: 30px;
  right: 40px;
  background: transparent;
  border: none;
  font-size: 40px;
  color: #333;
  cursor: pointer;
  z-index: 10002;
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1;
  outline: none;
}

.search-overlay .close-search:hover {
  color: #ff0000;
  transform: rotate(90deg);
}

.search-overlay-content {
  position: relative;
  z-index: 10001;
  width: 90%;
  max-width: 700px;
  text-align: center;
  transform: translateY(-30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-overlay.active .search-overlay-content {
  transform: translateY(0);
}

.search-overlay .search-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.search-overlay .search-form {
  width: 100%;
}

.search-overlay .search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 10px 8px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-overlay .search-input {
  width: 100%;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #333333;
  background: transparent;
}

.search-overlay .search-input::placeholder {
  color: #999999;
}

.search-overlay .search-submit-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: linear-gradient(135deg, var(--primary) 0%, #1ea689 100%);
  border: none;
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.search-overlay .search-submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(30, 166, 137, 0.4);
}

body.search-overlay-open {
  overflow: hidden !important;
}

/* ==========================================================================
   Homepage Counters Section Style (Paperex inspired layout)
   ========================================================================== */
.counter-section {
  background-color: var(--primary) !important;
  position: relative;
  overflow: hidden;
}

.counter-item {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.counter-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.counter-item:hover .counter-icon-wrap {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

.counter-number {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 12px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.counter-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: capitalize;
  margin-top: 4px;
}

/* ==========================================================================
   Premium Refactored Exhibitor Grid Cards (Professional Image/Content Separation)
   ========================================================================== */
.grid-view .company-grid-item,
.grid-view .user-profile-item,
.grid-view .product-item {
  perspective: none;
  padding: 0 7px !important;
}

.grid-view .card-view-item {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
  position: relative;
  overflow: hidden;
}

.grid-view .card-view-item:hover {
  background-color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
  border-color: var(--primary) !important;
}

/* Top Meta Bar Container */
.card-view-item .company-meta-bar {
  height: 48px !important;
  padding: 0px 16px !important;
  background-color: #ffffff !important;
  border-bottom: none !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.card-view-item .product-meta-bar {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 100%;
}


/* Badges Alignment */
.card-view-item .company-badges {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}

/* Premium Badges - Soft Translucent Design */
.card-view-item .badge {
  padding: 4px 8px !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  display: inline-block !important;
  margin: 0 !important;
  box-shadow: none !important;
}

/* Domestic (Primary Green Translucent Badge) */
.card-view-item .badge-primary {
  background-color: rgba(75, 185, 101, 0.1) !important;
  color: #3b9350 !important;
  border: 1px solid rgba(75, 185, 101, 0.2) !important;
}

/* Startup (Neutral Slate Badge) */
.card-view-item .badge-secondary {
  background-color: rgba(100, 116, 139, 0.1) !important;
  color: #475569 !important;
  border: 1px solid rgba(100, 116, 139, 0.2) !important;
}

/* Sponsor (Secondary Orange Translucent Badge) */
.card-view-item .badge-warning {
  background-color: rgba(243, 112, 33, 0.1) !important;
  color: #d8560f !important;
  border: 1px solid rgba(243, 112, 33, 0.2) !important;
}

/* International Badge (Teal Translucent) */
.card-view-item span.badge[style*="background-color: #00b590"],
.card-view-item .company-badges span.badge[style*="#00b590"] {
  background-color: rgba(0, 181, 144, 0.1) !important;
  color: #008f71 !important;
  border: 1px solid rgba(0, 181, 144, 0.2) !important;
}

/* Bookmark Buttons - Circular look on the right side */
.card-view-item .icon-btn.btn-nobg,
.card-view-item .icon-btn.btn-nobg1 {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background-color: #ffffff !important;
  color: #64748b !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
  cursor: pointer !important;
}

.card-view-item .icon-btn.btn-nobg:hover,
.card-view-item .icon-btn.btn-nobg1:hover {
  background-color: #ffffff !important;
  color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  box-shadow: 0 2px 6px rgba(243, 112, 33, 0.15) !important;
}

.card-view-item .icon-btn.btn-nobg.removecompanybookmark,
.card-view-item .icon-btn.btn-nobg1.removeproductbookmark {
  background-color: #ffffff !important;
  color: var(--secondary) !important;
  border-color: var(--secondary) !important;
}

/* Logo container styling - Clean White Container */
.card-view-item .company_logo {
  width: 100% !important;
  height: 100px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  border-bottom: 1px solid #f1f5f9 !important;
  border-radius: 0 !important;
  background-color: #ffffff !important;
  overflow: hidden;
  padding: 8px 24px !important;
  box-shadow: none !important;
  transition: none !important;
}

.card-view-item .product_logo {
  padding: 7px !important;

}

.card-view-item:hover .product_logo {
  transform: none !important;
}

.card-view-item .product_logo img {

  border-radius: 8px;
}



.card-view-item .company_logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-view-item .company_logo .d-inline-block {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  background-color: transparent !important;
}

/* Card Body Details */
.card-view-item .company-details-body {
  padding: 16px 12px 0px 12px !important;
  background-color: #ffffff !important;
  text-align: left !important;
}

/* Company details text typography */
.card-view-item .company-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: left !important;
  transition: color 0.2s ease;
}

.card-view-item:hover .company-name {
  color: var(--primary) !important;
}

/* Booth Info Row */
.card-view-item .company-booth {
  font-family: 'Poppins', sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  color: #64748b !important;
  background-color: transparent !important;
  padding: 0 !important;
  margin-bottom: 12px !important;
  letter-spacing: 0px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-align: left !important;
}

.card-view-item .company-booth i {
  color: var(--primary) !important;
  font-size: 13px !important;
}

.card-view-item .hr-line {
  border-top: 1px solid #f1f5f9 !important;
  margin: 12px 0 !important;
}

.card-view-item .b-type {
  margin-bottom: 12px !important;
  padding: 0 !important;
  text-align: left !important;
}

.card-view-item .sectorbadgelist {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 4px !important;
}

/* Sector tags (pills) */
.card-view-item .sectorbadgelist .badge {
  background-color: #f8fafc !important;
  color: #64748b !important;
  border: 1px solid #e2e8f0 !important;
  font-weight: 500 !important;
  font-size: 11px !important;
  padding: 3px 8px !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
  box-shadow: none !important;
  border-radius: 6px !important;
}

.card-view-item .sectorbadgelist .badge.more {
  background-color: rgba(75, 185, 101, 0.06) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(75, 185, 101, 0.15) !important;
  font-weight: 600 !important;
}

.card-view-item .company-placeholder-text {
  font-size: 12px !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  font-weight: 400 !important;
  text-align: left !important;
}

/* Action button container */
.card-view-item .card-footer-action {
  padding: 0 12px 20px 12px !important;
  margin: 0 !important;
  background-color: #ffffff !important;
}

/* Action button outline styles */
.card-view-item .btn-primary {
  background-color: transparent !important;
  border: 1.5px solid var(--primary) !important;
  color: var(--primary) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-transform: none !important;
}

.card-view-item .btn-primary i {
  transition: transform 0.2s ease;
}

.card-view-item .btn-primary:hover {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(75, 185, 101, 0.15) !important;
  transform: none !important;
}

.card-view-item .btn-primary:hover i {
  transform: translateX(3px);
}

/* Custom 5-column layout breakpoint utility for B2B grid views */
@media (min-width: 992px) {
  .col-lg-2-5 {
    flex: 0 0 20% !important;
    max-width: 20% !important;
  }
}

/* ==========================================================================
   Home Page Custom B2B Sections
   ========================================================================== */

/* Directory / Action Tiles Grid */
.home-action-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .home-action-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .home-action-tiles {
    grid-template-columns: 1fr;
  }
}

.action-tile-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

.action-tile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.action-tile-card.accent-card {
  background: linear-gradient(135deg, #f37021 0%, #d8560f 100%);
  border: none;
  color: #ffffff;
}

.action-tile-card.accent-card:hover {
  box-shadow: 0 12px 24px rgba(243, 112, 33, 0.2);
}

.action-tile-card .tile-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #0f172a;
  z-index: 2;
}

.action-tile-card.accent-card .tile-title {
  color: #ffffff;
}

.action-tile-card .tile-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 16px;
  z-index: 2;
}

.action-tile-card.accent-card .tile-desc {
  color: rgba(255, 255, 255, 0.85);
}

.action-tile-card .tile-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  z-index: 2;
}

.action-tile-card.accent-card .tile-link {
  color: #ffffff;
}

.action-tile-card .tile-icon-bg {
  position: absolute;
  bottom: -10px;
  right: -15px;
  font-size: 80px;
  color: var(--primary-light);
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.action-tile-card.accent-card .tile-icon-bg {
  color: rgba(255, 255, 255, 0.08);
}

.action-tile-card:hover .tile-icon-bg {
  transform: scale(1.1) rotate(-5deg);
}

/* Best Sellers Premium Panel */
.best-sellers-section {
  background: linear-gradient(135deg, #f37021 0%, #d8560f 100%) !important;
  border-radius: 20px;
  padding: 40px 30px !important;
  margin-top: 20px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(243, 112, 33, 0.15);
}

.best-sellers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.best-sellers-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

.best-sellers-link {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.best-sellers-link:hover {
  opacity: 1;
}

/* Download App Section */
.app-download-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 50px;
  margin-top: 20px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.app-download-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.app-download-desc {
  font-size: 15px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.5;
}

.app-download-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-store-badge-btn {
  display: inline-flex;
  align-items: center;
  background: #0f172a;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-store-badge-btn:hover {
  background: #1e293b;
}

.app-store-badge-btn i {
  font-size: 24px;
  margin-right: 12px;
}

.app-store-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.app-store-badge-text .badge-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  line-height: 1;
}

.app-store-badge-text .badge-main {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

/* ==========================================================================
   Premium Refactored Sidebar Filter Layout (Clean modern Inputs and Buttons)
   ========================================================================== */
.sidebar-content {
  background-color: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

.filter-form {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 24px 15px !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
  margin-bottom: 24px !important;
}

.filter-form .sub-heading {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 0 !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
}

.filter-form .border-top {
  border-top: none !important;
}

.filter-form .mt-3,
.filter-form .mt-1 {
  margin-top: 16px !important;
  padding-top: 0 !important;
}

.filter-form label,
.filter-form .label-main {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  margin-bottom: 8px !important;
  display: inline-block !important;
}

.filter-form .form-group {
  margin-bottom: 20px !important;
}

.filter-form input.form-control,
.filter-form select,
.filter-form .multiselect-native-select button.multiselect {
  background-color: #f8fafc !important;
  color: #1e293b !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  height: auto !important;
  width: 100% !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
}

.filter-form input.form-control:focus,
.filter-form select:focus,
.filter-form .multiselect-native-select button.multiselect:focus,
.filter-form .multiselect-native-select .btn-group.show button.multiselect {
  background-color: #ffffff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(75, 185, 101, 0.1) !important;
  outline: none !important;
}

.filter-form input.form-control::placeholder {
  color: #94a3b8 !important;
}

.filter-form .fg-icon {
  position: relative !important;
  width: 100% !important;
}

.filter-form .fg-icon i {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #94a3b8 !important;
  pointer-events: none !important;
  font-size: 14px !important;
}

.filter-form .fg-icon input.form-control {
  padding-left: 38px !important;
}

.filter-form .multiselect-native-select button.multiselect {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-align: left !important;
}

.filter-form .multiselect-native-select button.multiselect .caret {
  margin-left: auto !important;
  border-top-color: #475569 !important;
}

.filter-form a[data-toggle="multiselect_deselect_all"],
.filter-form a {
  font-size: 11px !important;
  color: #64748b !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.filter-form a[data-toggle="multiselect_deselect_all"]:hover,
.filter-form a:hover {
  color: var(--secondary) !important;
}

/* Stacking and styling Load my list & Clear complete list buttons */
.filter-form .form-btn-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-top: 24px !important;
  text-align: center !important;
  width: 100% !important;
}

.filter-form .form-btn-group .btn {
  width: 100% !important;
  padding: 12px 20px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-align: center !important;
  box-shadow: none !important;
  border: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin: 0 !important;
}

.filter-form .form-btn-group #filter-serch-submit {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(75, 185, 101, 0.12) !important;
}

.filter-form .form-btn-group #filter-serch-submit:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(75, 185, 101, 0.2) !important;
}

.filter-form .form-btn-group #filter-serch-clear {
  background-color: #f1f5f9 !important;
  color: #0f172a !important;
}

.filter-form .form-btn-group #filter-serch-clear:hover {
  background-color: #e2e8f0 !important;
  transform: translateY(-1px) !important;
}

.filter-form input:checked+.switch-checkbox-slider {
  background-color: var(--primary) !important;
}

/* ==========================================================================
   Premium Attendee Grid Card Styling
   ========================================================================== */
.user-profile-item .card-view-item {
  padding: 10px 12px !important;
}

/* Hover state active border outline */
.user-profile-item .card-view-item:hover {
  border-color: var(--primary) !important;
  /* Premium Green outline */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Top Meta Bar (Badges & Bookmark) */
.user-profile-item .top-box {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 16px !important;
  width: 100% !important;
  background: transparent !important;
  padding: 0 !important;
}

.user-profile-item .top-box .my-2 {
  display: flex !important;
  gap: 6px !important;
  margin: 0 !important;
}

/* Badge styling: Orange background, white text */
.user-profile-item .grp-box {
  display: inline-flex !important;
  align-items: center !important;
  background-color: #f97316 !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  line-height: 1.2 !important;
  text-transform: capitalize !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.user-profile-item .grp-box i {
  font-size: 11px !important;
  margin-right: 4px !important;
}

/* Bookmark star icon in standard circle */
.user-profile-item .profile-icon-bn-box {
  margin: 0 !important;
}

.user-profile-item .profile-icon-bn-box .init-video-call {
  display: none !important;
  /* Hide video camera icon in this layout */
}

.user-profile-item .user-wishlist-trig,
.user-profile-item .login-trigger {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  border: 1.5px solid #cbd5e1 !important;
  background-color: #ffffff !important;
  color: #64748b !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
}

.user-profile-item .user-wishlist-trig:hover,
.user-profile-item .login-trigger:hover {
  border-color: #f59e0b !important;
  color: #f59e0b !important;
}

/* Active wishlisted state */
.user-profile-item .user-wishlist-trig.removewishlist {
  border-color: #f59e0b !important;
  color: #f59e0b !important;
}

/* Center Avatar image container - Rounded rectangle shape */
.user-profile-item .user_img {
  width: 100px !important;
  height: 100px !important;
  margin: 0 auto 8px !important;
  display: block !important;
  position: relative !important;
  border-radius: 12px !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
}

.user-profile-item .user_img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
}

/* Green online status dot */
.user-profile-item .user_img .online-icon {
  position: absolute !important;
  bottom: -2px !important;
  right: -2px !important;
  width: 14px !important;
  height: 14px !important;
  background-color: var(--primary) !important;
  border: 2px solid #ffffff !important;
  border-radius: 50% !important;
  display: block !important;
}

/* Card details alignment & colors */
.user-profile-item .user-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  margin-bottom: 2px !important;
  line-height: 1.4 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: center !important;
  transition: color 0.2s ease;
}

.user-profile-item .user-name a {
  color: #1e293b !important;
  text-decoration: none !important;
}

.user-profile-item .user-name a:hover {
  color: var(--primary) !important;
}

.user-profile-item .comp-name {
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #64748b !important;
  background-color: transparent !important;
  padding: 0 !important;
  letter-spacing: 0px !important;
  gap: 6px !important;
  text-align: center !important;
}

.user-profile-item .comp-name a {
  color: #475569 !important;
  text-decoration: none !important;
}

.user-profile-item .u-deg {
  font-family: 'Poppins', sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  color: #64748b !important;
  background-color: transparent !important;
  padding: 0 !important;
  letter-spacing: 0px !important;
  gap: 6px !important;
  text-align: center !important;
}

.user-profile-item .u-deg a {
  color: #64748b !important;
  text-decoration: none !important;
}

/* Hide helper lines and lists from grid item */
.user-profile-item .hr-line {
  display: none !important;
}

/* Action button area */
.user-profile-item .btn-box {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 0 !important;
  margin-top: auto !important;
}

/* Premium green outline button styles */
.user-profile-item .btn-box .btn,
.user-profile-item .btn-box .chat-button {
  width: 100% !important;
  background-color: #ffffff !important;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary) !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 9px 16px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  line-height: 1.2 !important;
  width: 100% !important;
}

.user-profile-item .btn-box .btn:hover,
.user-profile-item .btn-box .chat-button:hover {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

.user-profile-item .btn-box .btn i,
.user-profile-item .btn-box .chat-button i {
  font-size: 13px !important;
  margin-right: 6px !important;
}

/* ==========================================================================
   Premium Product Grid Card Styling
   ========================================================================== */
.product-item .card-view-item {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  text-align: center !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  position: relative !important;
}

.product-item .card-view-item:hover {
  border-color: var(--primary) !important;
  /* Premium green outline */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Product Meta Bar */
.product-item .product-meta-bar,
.product-item .company-meta-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 12px !important;
  width: 100% !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Badge for Sponsored products */
.product-item .product-badges .badge,
.product-item .company-badges .badge {
  background-color: #f97316 !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  line-height: 1.2 !important;
  border: none !important;
}

/* Bookmark/wishlist icon for products */
.product-item .product-bookmark .product-bookmark-trig,
.product-item .company-bookmark .product-bookmark-trig {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  border: 1.5px solid #cbd5e1 !important;
  background-color: #ffffff !important;
  color: #64748b !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.product-item .product-bookmark .product-bookmark-trig:hover,
.product-item .company-bookmark .product-bookmark-trig:hover {
  border-color: #f59e0b !important;
  color: #f59e0b !important;
}

/* Image container styling */
/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement */
.product-item .product_logo,
.product-item .company_logo {
  width: 100% !important;
  height: auto !important;
  margin: 0 auto 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  background-color: #f8fafc !important;
  /* Soft light-blue/gray background */
  overflow: hidden !important;
  padding: 0px !important;
  border: 1px solid #f1f5f9 !important;
  box-shadow: none !important;
}

/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement End */

.product-item .product_logo img,
.product-item .company_logo img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: 8px !important;
}

/* Product card details styling */
.product-item .company-details-body {
  text-align: center !important;
  padding: 0 !important;
}

/* Actions button */
/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement */
.product-item .card-footer-action {
  padding: 0 !important;
  margin-top: auto !important;
  width: 100% !important;
  background-color: #ffffff !important;
}

/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement End */

.product-item .card-footer-action .btn {
  width: 100% !important;
  background-color: #ffffff !important;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary) !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 9px 16px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  line-height: 1.2 !important;
}

.product-item .card-footer-action .btn:hover {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

.product-item .card-footer-action .btn i {
  font-size: 13px !important;
  margin-right: 6px !important;
}

/* ==========================================================================
   Premium Featured Videos Gallery Styling
   ========================================================================== */
.video-card {
  border-radius: 16px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease !important;
  border: 1px solid #e2e8f0 !important;
  background-color: #ffffff !important;
}

.video-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: var(--primary) !important;
  /* Teal accent border */
}

.video-thumbnail-wrap {
  position: relative !important;
  overflow: hidden !important;
  background-color: #000000 !important;
}

.video-thumbnail-wrap .video-thumbnail {
  transition: transform 0.5s ease !important;
  opacity: 0.95;
}

.video-card:hover .video-thumbnail {
  transform: scale(1.06) !important;
  opacity: 0.85;
}

.video-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(15, 26, 43, 0.35) !important;
  opacity: 1 !important;
  transition: background-color 0.3s ease !important;
}

.video-card:hover .video-overlay {
  background-color: rgba(15, 26, 43, 0.6) !important;
}

.play-btn-circle {
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  background-color: var(--secondary, #f37021) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(243, 112, 33, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.play-btn-circle i {
  margin-left: 3px !important;
  /* Fine-tune optical center for play icon */
}

.video-card:hover .play-btn-circle {
  transform: scale(1.15) !important;
  background-color: var(--primary) !important;
  /* Premium Teal highlight */
  box-shadow: 0 4px 20px rgba(23, 138, 156, 0.5) !important;
}

.video-duration-badge {
  position: absolute !important;
  bottom: 12px !important;
  right: 12px !important;
  background-color: rgba(15, 26, 43, 0.85) !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 3px 7px !important;
  border-radius: 4px !important;
  letter-spacing: 0.5px !important;
}

.video-card-title {
  transition: color 0.25s ease !important;
}

.video-card:hover .video-card-title {
  color: var(--primary) !important;
  /* Premium Teal highlight */
}

.modal-content.bg-dark {
  background-color: #0b111e !important;
  /* Sophisticated deep dark background */
}

.modal-header .close:focus {
  outline: none !important;
}

/* ==========================================================================
   Partners Infinite Marquee Slider
   ========================================================================== */
.partners-marquee-wrapper {
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
}

/* Linear scrolling animation */
.partners-marquee-track {
  display: flex;
  width: max-content;
  animation: partnersScroll 25s linear infinite;
}

.partners-marquee-wrapper:hover .partners-marquee-track {
  animation-play-state: paused;
  /* Pause scrolling on hover for premium interaction */
}

.partner-logo-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
  border: 1px solid #e2e8f0;
  background-color: #ffffff !important;
  /* Premium clean white background cards */
}

.partner-logo-card:hover {
  transform: translateY(-4px) scale(1.03) !important;
  border-color: var(--primary) !important;
  /* Teal accent border */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06) !important;
}

/* Siddhant Pawar 23-07-2026 : remove grayscale filter from partner logo */
.partner-logo-img {
  /* filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease !important; */

  filter: none;
  opacity: 1;
}

/* Siddhant Pawar 23-07-2026 : remove grayscale filter from partner logo -end */


.partner-logo-card:hover .partner-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Keyframes for smooth infinite scrolling loop */
@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Scroll exactly half-way (the first set of items) */
  }
}

/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement */
@media (min-width: 769px) {
  #content-main.marketplace-dashboard {
    padding: 30px 0 !important;
  }

  /* Sidebar Redesign for Marketplace Dashboard - Premium White Card Layout */
  .marketplace-dashboard #sidebar-menu {
    position: static !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
    /* Remove radius */
    /* Clean light border matching page panels */
    overflow: visible !important;
    padding: 0 0 !important;
    background-color: transparent !important;
    /* White background for clean integration */
  }

  .marketplace-dashboard #sidebar-menu .sidebar-content {
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  /* Sidebar Navigation list container */
  .marketplace-dashboard #sidebar-menu .sidebar-nav {
    margin: 10px !important;
    padding: 0 !important;
  }

  /* Sidebar items styling */
  .marketplace-dashboard #sidebar-menu .sidebar-nav .nav-item {
    border: 1px solid #f1f5f9 !important;
    background: #fff !important;
    border-radius: 6px !important;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
    margin: 10px 0 !important;
  }


  /* Item boxes */
  .marketplace-dashboard #sidebar-menu .sidebar-nav .nav-item a.level-1 {
    border-radius: 0px !important;
    /* Remove radius */
    margin: 0 !important;
    padding: 14px 20px !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    border-left: 4px solid transparent !important;
    background-color: transparent !important;
    color: #4b5563 !important;
    /* Slate gray text */
  }

  /* Hover state */
  .marketplace-dashboard #sidebar-menu .sidebar-nav .nav-item a.level-1:hover {
    background-color: #f8fafc !important;
    /* Subtle gray background hover */
    color: var(--primary) !important;
    padding-left: 24px !important;
    /* Smooth slide-in effect */
    border-left-color: var(--primary) !important;
  }

  /* Active state */
  .marketplace-dashboard #sidebar-menu .sidebar-nav .nav-item.active a.level-1 {
    background-color: #eefdf4 !important;
    /* Soft green active highlight */
    color: var(--primary-dark) !important;
    border-left: 4px solid var(--primary) !important;
    font-weight: 600 !important;
  }

  .marketplace-dashboard #sidebar-menu .sidebar-nav .nav-item .nav-item-icon {
    margin-right: 12px !important;
    font-size: 16px !important;
    width: 20px !important;
    height: auto !important;
    text-align: center !important;
    color: var(--primary) !important;
    /* Green icon accent */
    border-radius: 0px !important;
    /* Remove radius */
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Active icon state */
  .marketplace-dashboard #sidebar-menu .sidebar-nav .nav-item.active a.level-1 .nav-item-icon {
    color: var(--primary-dark) !important;
  }

  .marketplace-dashboard #sidebar-menu .sidebar-nav .nav-item .nav-item-text {
    font-size: 14px !important;
    font-weight: 500 !important;
  }

  .marketplace-dashboard #sidebar-menu .sidebar-nav .nav-item.active .nav-item-text {
    font-weight: 600 !important;
  }
}

/* Deepak Dubey 16-06-2026 :  OSH UI Enhancement End */



/* Siddhant Pawar 25-07-2026 : Custom scrollable filter form fields to keep bottom buttons visible */
.filter-fields-scrollable {
  max-height: calc(100vh - 380px);
  min-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
}

.filter-fields-scrollable::-webkit-scrollbar {
  width: 5px;
}

.filter-fields-scrollable::-webkit-scrollbar-track {
  background: transparent;
}

.filter-fields-scrollable::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.filter-fields-scrollable::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Siddhant Pawar 25-07-2026 : Custom scrollable filter form fields to keep bottom buttons visible */