/* header */


header {
  background: var(--Color-White, #FFF);
  padding: 3px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.dropdown-mega {
    position: static;
}

.dropdown-mega .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 2rem;
}

.border-right {
  border-right: 1px solid #373739;
}

/* Optional: hover on desktop */
@media (min-width: 992px) {
    .dropdown-mega:hover .dropdown-menu {
        display: block;
    }
}

.mega-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.mega-menu a {
    display: block;
    padding: 0.25rem 0;
    color: #555;
    text-decoration: none;
}

.mega-menu a:hover {
    color: #0d6efd;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: end;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: black !important;
    white-space: nowrap;
    text-transform: uppercase;
}

.verticle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verticle-list li {
  padding: 18px 0;
  font-weight: 500;
  color: #373739;
  cursor: pointer;
  font-size: 22px;
}

.left-menu ul li {
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
  position: relative;
}

.left-menu ul li.active::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 0;
  height: 100%;
  width: 5px;
  background: #FF7A00;
  border-radius: 12px;
}

.verticle-list li a {
  color: #373739;
  text-decoration: none;
  font-weight: 500;
}

.verticle-list li.active a {
  color: #FF7A00;
}


/* ---------------------hover orange underline and arrow------------------------------- */

/* Sabhi menu links ke liye base style */
.content-box a {
  text-decoration: none;
  color: #373739;
  font-size: 16px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
}

/* Hover state: Color change aur Arrow ke liye space */
.content-box a:hover {
  color: #FF7A00;
  padding-right: 25px;
}

/* 1. Underline Animation: Sabhi links ke niche */
.content-box a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 2px;
  /* Line ki position thodi upar niche kar sakte hain */
  left: 0;
  background-color: #FF7A00;
  transition: width 1.3s ease;
}

.content-box a:hover::before {
  width: 100%;
}

/* 2. Arrow Animation: Sabhi links ke right side mein */
.content-box a::after {
  content: "\2192";
  /* Unicode Right Arrow */
  position: absolute;
  right: 0;
  opacity: 0;
  font-weight: bold;
  transform: translateX(-10px);
  transition: all 1.3s ease;
}
.content-box a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Product specific tab buttons */
.active-tab-btn {
  background-color: #FF7A00 !important;
  color: white !important;
  font-weight: 600;
}

/* search box */
.search-box {
  max-width: 300px;
  width: 100%;
  margin-left: 30px;
}


.search-box input {
  border-radius: 6px;
  background-color: #E4E4E4;
  padding-left: 38px;
  font-size: 13px !important;
  color: #373739;
  max-width: 280px;
}

.search-box .search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

header .navbar-brand {
    width: 180px;
}

.divider {
  width: 1px;
  height: 28px;
  background-color: #e4e4e4;
}


/** hamburgerModal **/
#hamburgerModal .modal-body {
  background-color: #F78834;
}

#hamburgerModal .navbar-nav {
  flex-direction: row;
}

#hamburgerModal .dropdown-mega .dropdown-menu {
  height: calc(100vh - 150px);
  background: none;
  padding: 40px 0;
  border: none;
}

#hamburgerModal .content-box a::before,
#hamburgerModal .other-links {
  background-color: #373739;
}

#hamburgerModal .other-links a,
#hamburgerModal .content-box a,
#hamburgerModal .content-box-prod a,
#hamburgerModal .verticle-list li a {
  color: #FFF;
}

#hamburgerModal .left-menu ul li.active::after {
  background-color: #373739;
  right: -2px;
  width: 3px;
}


#hamburgerModal .content-box a:hover,
#hamburgerModal .content-box-prod a:hover,
#hamburgerModal .verticle-list li:hover a,
#hamburgerModal .verticle-list li.active a {
  color: #373739;
}

#hamburgerModal .border-right {
  border-color: #FFF;
}

#hamburgerModal .outlined-link {
  color: #FFF;
  border: 1px solid #FFF;
  padding: 5px 15px;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
  border-radius: 30px;
}

#hamburgerModal .outlined-link:hover {
  background-color: #FFF;
  color: #373739;
}

#hamburgerModal .right-content {
  height: calc(100vh - 180px);
  overflow-y: auto;
}

#hamburgerModal::-webkit-scrollbar {
	height: 4px;
	width: 4px;
	background: #666;
}

#hamburgerModal::-webkit-scrollbar-thumb {
	background: #F18000;
	-webkit-border-radius: 1ex;
	-webkit-box-shadow: 0px 1px 2px rgba(241, 128, 0, 0.75);
	cursor: pointer;
}

#hamburgerModal::-webkit-scrollbar-corner {
	background: #666;
}

#hamburgerModal .other-links {
  padding: 40px;
}

#hamburgerModal .other-links h4 {
  color: #FFFFFF80;
  font-weight: 700;
}

#hamburgerModal .other-links ul {
  padding: 0;
}

#hamburgerModal .other-links a {
  font-weight: 300;
}
#hamburgerModal .other-links li {
  margin: 10px 0;
}