.header {
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header-container {
  background: var(--background-color);
  border-radius: 15px;
  padding: 5px 25px;
  box-shadow: 0px 0px 15px rgba(29, 29, 29, 0.1);
}

.logo-div .logo img {
  max-height: 36px;
  margin-right: 8px;
}
.fs-icon{
  font-size: 2rem;
}

@media (max-width: 576px) {
  .header-container {
    width: 90%;
  }
}

@media (max-width: 456px) {
  .header-container {
    width: 95%;
  }
  .logo-div .logo img {
  max-height: 30px;
  margin-right: 8px;
}
.fs-icon{
  font-size: 1.5rem;
}
}

.bi::after,
[class^=bi-]::after,
[class*=" bi-"]::after {
  display: none;
}

@media (min-width: 992px) {

  .navmenu a,
  .navmenu a:focus {
    color: var(--heading-color);
    padding: 18px 0;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
}

:root {
  --accent-color: #c59c3d;
}

/* Hover Effect */
.navmenu a:hover {
  color: var(--accent-color) !important;
}

/* Active Page */
.navmenu a.active {
  color: var(--accent-color) !important;
}

.mobile-nav-toggle {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--heading-color);
}

@media (max-width: 991px) {

  .navmenu {
    position: fixed;
    top: 81px;
    right: -100%;
    width: 175px;
    height: calc(50% - 90px);
    background: #fff;
    flex-direction: column !important;
    padding: 25px;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 10px;
  }

  .navmenu.active {
    right: 75px;
  }

  .navmenu li {
    margin-bottom: 10px;
    padding-left: 15px;
  }
}

.id-icon {
  border: none;
  background-color: white;
  color: var(--accent-color);
}

.mobile-nav-toggle::before {
  display: none;
}

  .navmenu li a,
  .navmenu li a:focus {
    color: var(--heading-color);
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--heading-color);
  background-color: var(--background-color);
  padding: 10px 0 30px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title h2 {
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--heading-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/*--------------------------------------------------------------
# Dropdown
--------------------------------------------------------------*/
.navmenu ul li.dropdown {
  position: relative;
}

.navmenu ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  border-radius: 6px;
}

.navmenu ul li .submenu li {
  list-style: none;
}

.navmenu ul li .submenu li a {
  display: block;
  padding: 8px 18px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

.navmenu ul li .submenu li a:hover {
  background: #f5f5f5;
}

/* Show on hover (desktop) */
.navmenu ul li.dropdown:hover .submenu {
  display: block;
}



