header {
  background-color: #111;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0rem;
}

.nav-menu-bar {
  display: none;
}

.navbar .logo {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
}

.navbar .logo a {
  color: #fff;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar ul li a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}

.navbar ul li a:hover {
  color: var(--color-classic-orange);
  transition: .5s;
  line-height: 1;
}

@media screen and (max-width:1080px) {
  nav {
    display: none;
  }

  .nav-menu-bar {
    display: flex;
    color: #fff;
  }

  .nav-menu-bar:hover {
    color: var(--color-classic-orange);
    transition: 0.5s;
  }

  .hire-me {
    display: none;
  }
}

.side-menu {
  position: fixed;
  top: 68px;
  left: -300px;
  width: 300px;
  height: 100%;
  background-color: #121212;
  color: #fff;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  z-index: 999;
}

.side-menu.open {
  left: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-header .logo {
  display: flex;
  justify-content: space-between;
}

.menu-header .span {
  font-size: 20px;
  font-weight: 600;
}

.close-btn {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.close-btn:hover {
  color: var(--color-classic-orange);
  transition: 0.5s;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.side-menu ul li {
  padding: 8px 0px;
}

.side-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  display: block;
}

.side-menu ul li a:hover {
  color: var(--color-classic-orange);
  transition: 0.5s;
}

.navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.side-menu.open~.navbar-overlay {
  opacity: 0.8;
  visibility: visible;
}

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 99999;
  padding: 0 16rem;
  background-color: #000;
}

@media screen and (max-width:768px) {
  .fixed-nav {
    padding: 0 1.5rem 0 1rem;
  }
}

.top-link {
  font-size: 1.25rem;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  background: var(--color-golden-orange);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #e0f7fa;
  animation: bounce 1s ease-in-out infinite;

  visibility: hidden;
  z-index: -100;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.show-link {
  visibility: visible;
  z-index: 100;
}

.mobile-buttons a {
  display: flex;
  align-items: left;
  justify-content: left;
  font-size: 14px;
  padding: 10px 12px;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.btn-meeting {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: var(--color-deep-blue, #007BFF);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-meeting::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.6s ease-in-out;
}

.btn-meeting:hover::after {
  left: 120%;
}

.btn-meeting i {
  transition: transform 0.3s ease;
}

.btn-meeting:hover {
  background-color: #0056b3; /* darker blue */
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.5);
}

.btn-meeting:hover i {
  transform: translateX(6px);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: var(--color-green, #28a745);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-download::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.6s ease-in-out;
}

.btn-download:hover::after {
  left: 120%;
}

.btn-download i {
  transition: transform 0.3s ease;
}

.btn-download:hover {
  background-color: #218838;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.5);
}

.btn-download:hover i {
  transform: translateX(6px);
}

@media screen and (min-width: 481px) {
  .mobile-buttons {
    display: none;
  }
}