@charset "UTF-8";
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.5s ease, opacity 0.4s ease;
  background: rgba(14, 14, 14, 0.5);
}

header.fixed-again {
  /* background: var(--white); */
  /* background: hsla(0, 0%, 100%, .5); */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

header .header_top_box .left_side .logo {
  max-height: 60px;
  width: 150px;
  transition: all 0.5s ease-in-out;
}

header .header_top_box {
  padding-block: 10px;
  transition: all 0.5s ease-in-out;
}

header.fixed-again .header_top_box {
  padding-block: 5px;
}

header.fixed-again .header_top_box .left_side .logo img {
  filter: none;
}

header.fixed-again .header_top_box .left_side .logo {
  width: 100px;
}

.navbar {
  padding: 0;
}

.navbar .navbar-nav > li {
  position: relative;
}

.nav-link, .menu-link {
  color: transparent;
  background: linear-gradient(90deg, #f58634, #f58634, 50%, #fff 50%);
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-size: 200%, 100%;
  background-position: 100%;
  font-weight: 500;
  transition: background 0.5s ease-in-out;
  font-size: var(--font14);
  line-height: 24px;
}

.menu-item {
  position: relative;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.menu-link {
  background: linear-gradient(90deg, #f58634, #f58634, 50%, #1C1F26 50%);
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-size: 200%, 100%;
  background-position: 100%;
  padding-right: 0 !important;
  padding-left: 20px !important;
}

.nav-item:hover > .nav-link, .menu-item:hover > .menu-link {
  background-position: 0;
}

.nav-item.active a {
  background: linear-gradient(90deg, #f58634, #f58634, 50%, #f58634 50%);
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-size: 200%, 100%;
  background-position: 100%;
}

.schedule-btn {
  background: var(--white);
  padding: 5px 10px;
  border-radius: 10px;
  font-size: var(--font14);
  line-height: 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.schedule-btn:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  border-radius: 50%;
  transition: all 500ms ease-in-out;
  background: var(--orange);
  transform: translate(-50%,-50%) scale(0);
}
.schedule-btn:hover {
  color: var(--white);
}
.schedule-btn:hover::before {
  width: 100%;
  height: 100%;
  transition: all 500ms ease-in-out;
    transform: translate(-50%,-50%) scale(4);
}

header.fixed-again .navbar .navbar-nav > li > .nav-link {
  color: var(--text-color);
}

.hamburger {
  width: 25px;
  height: 15px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Line positions */
.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 15px;
}

/* Active state → X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Prevent background scroll */
body.menu-open {
  overflow: hidden;
}

.sidemenu {
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1050;
  visibility: hidden;
}

/* Menu visible */
.sidemenu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* Actual menu panel */
.sidemenu .menu-nav {
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: white;
  align-items: flex-start;
  margin-left: auto;
}

.menu-flex {
  padding-left: 0;
  /* max-height: calc(100vh - 70px);
  overflow-y: auto; */
  height: 100%;
  padding-bottom: 70px;
  padding-top: 30px;
}

.menu-item .menu-link {
 
  color: var(--black);
  display: inline;
}

.dropdown-menu {
  position: relative;
  display: none;
  background: rgba(33, 37, 41, 0.03);
  box-shadow: none;
  border: none;
}
.dropdown-menu li{
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.dropdown-toggle.active:after {
  transition: transform 0.5s ease-in-out;
}

.dropdown-toggle.active:after {
  transform: rotate(180deg);
  transition: transform 0.5s ease-in-out;
}

.sidemenu.header-scroll {
  top: 50px;
}
.dropdown-toggle {
    margin-left: 10px;
    cursor: pointer;
  }

@media (min-width: 1200px) {
  .navbar-expand-lg .navbar-nav {
    gap: 30px;
    align-items: center;
  }
}
@media (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  header .header_top_box {
    padding-block: 10px;
  }
  header .header_top_box .left_side .logo {
    max-width: 120px;
  }
  header .header_top_box .left_side {
    width: 100%;
    justify-content: space-between;
  }
  .dropdown-toggle.active {
    color: var(--main);
  }
  .dropdown-toggle.active:after {
    transform: rotate(180deg);
    filter: grayscale(0);
  }
  .mobile-header .header_top_box .left_side .logo img {
    filter: none;
  }
  .schedule-btn {
    font-size: var(--font12);
    line-height: 22px;
    width: 100%;
    padding: 5px;
    border-radius: 7px;
    max-width: 200px;
  }
  .sidemenu {
    top: 52px;
  }
  .sidemenu.header-scroll {
    top: 42px;
  }
}