/* ================= NAVBAR ================= */
header .navbar {
  background: #09090b;
  padding: 16px 0;
  border-bottom: 1px solid #666666;
}
header .navbar .nav {
  background: #09090b;
}

header .nav-link {
  color: #cfcfcf !important;
  margin: 0 12px;
  font-size: 16px;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}

header .nav-link:hover {
  color: #ea580c !important;
}

.btn-outline-light {
  border-radius: 10px;
  padding: 8px 20px;
  /* border: 1px solid #666666; */
  border: 0;
  transition: all ease-in-out 0.3s;
  display: inline-flex;
  white-space: nowrap;
}
.btn-outline-light:hover {
  background: #ffffff;
  color: #000000;
}

.btn-primary-custom {
  border: none;
  border-radius: 10px;
  font-size: 14px;
  padding: 8px 20px;
  font-weight: 700;
  border: 1px solid #666666;
  color: #ffffff;
  transition: all ease-in-out 0.3s;
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  gap: 5px;
}

.btn-primary-custom:hover {
  background: #ea580c;
  color: #ffffff;
}
.logo {
  width: 230px;
}

/* ================= STICKY NAVBAR ================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.35s ease;
}

/* default transparent */
header .navbar {
  /* background: transparent; */
  transition: all 0.35s ease;
}

/* when scrolling */
header.sticky {
  background: #09090b;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* optional: slightly shrink navbar */
header.sticky .navbar {
  padding: 0px 0;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45); */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  background: #111114;
}
.navbar-toggler-icon {
  background-image: unset !important;
  font-size: 20px;
  color: white;
  width: auto !important;
  height: auto !important;
}

/* ======== close sign ======== */
/* toggler button */
header .navbar-toggler {
  border: none;
  background: #ea580c;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  position: relative;
}
header .navbar-toggler:focus {
  box-shadow: none !important;
}

/* icons */
.menu-open,
.menu-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  transition: 0.3s ease;
}

/* hide close icon initially */
.menu-close {
  opacity: 0;
}

/* when menu open */
.navbar-toggler.active .menu-open {
  opacity: 0;
}

.navbar-toggler.active .menu-close {
  opacity: 1;
}

@media screen and (max-width: 1199px) {
  .logo {
    width: 200px;
  }
  header .nav-link {
    margin: 0 8px;
    font-size: 14px;
  }
  .btn-primary-custom {
    font-size: 12px;
    padding: 6px 14px;
  }
  .btn-outline-light {
    padding: 6px 14px;
    font-size: 12px;
  }
  header .navbar-toggler {
    font-size: 14px;
    background: #ea580c !important;
  }
}
@media screen and (max-width: 992px) {
  header.sticky .navbar {
    padding: 10px 0;
  }

  /* ====== close sign -======= */
  header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111114;
    padding: 0px 0 20px;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.35s ease;
  }

  header .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
  }

  header .navbar-nav {
    margin-bottom: 20px;
    padding-left: 12px;
  }

  header .navbar-nav .nav-link {
    padding: 12px 0;
  }

  header .navbar-collapse .d-flex {
  padding-left: 12px;
  }
}
@media screen and (max-width: 768px) {
  header .nav-link {
    font-size: 12px;
  }
  .logo {
    width: 170px;
  }
  header .navbar {
    padding: 10px 0;
  }
  header .navbar-brand {
    padding: 0;
  }
}
