body, html {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  height: 100%;
  /* overflow: scroll; */
}

.element::-webkit-scrollbar {
    display: none; /* Hides the scrollbar entirely */
}

:root{
  --blue: #082567 ;
  --orange: #D9644A ;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  /* color: #fff; */
  padding: 0.5rem 14.5rem 0.5rem 4rem;
  z-index: 102;
  /* backdrop-filter: blur(3px); */
  
}
header img {
  width: 10.8rem;
  height: auto;

}

header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.9rem;
  width: 30.5rem;
  padding: 0.8rem 0 0.8rem 0;
  gap: 4rem;
  outline: 1.5px solid white;
  background: linear-gradient(to bottom, rgba(122, 153, 181, 0.202), rgba(255, 255, 255, 0.193)),
  linear-gradient(to bottom, rgba(255, 255, 255, 0.226), rgba(255, 255, 255, 1));
  border-radius: 2rem;
  backdrop-filter: blur(5px);
  list-style: none;
  

  li {
    list-style: none;
    height: 3.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  a {
      color: var(--blue);
      /* font-weight: bold; */
      font-size: 25px;
      text-decoration: none;
      display: inherit;
      justify-content: inherit;
      align-items: inherit;
      height: 100%;
      font-weight: lighter;
  }
}

.spacedot {
  color: transparent;
}

.navbar-toggler {
display: none;
flex-direction: column;
justify-content: center;
width: 2rem;
height: 2rem;
background: none;
border: none;
cursor: pointer;
z-index: 101;
color: var(--blue);
}

.navbar-toggler .navbar-icon {
width: 100%;
height: 0.20rem;
background-color: var(--blue);
transition: all 0.3s ease;
position: relative;
}

.navbar-toggler .navbar-icon::before,
.navbar-toggler .navbar-icon::after {
right: 0;
content: '';
position: absolute;
width: 100%;
height: 0.20rem;
background-color: var(--blue);
transition: all 0.3s ease;
}

.navbar-toggler .navbar-icon::before {
top: -0.60rem;
}

.navbar-toggler .navbar-icon::after {
top: 0.60rem;

}

/* Active state for hamburger icon */
.navbar-toggler.active .navbar-icon {
background-color: transparent;
}

.navbar-toggler.active .navbar-icon::before {
transform: rotate(45deg) translate(0.35rem, 0.39rem);
background-color: var(--orange);
}

.navbar-toggler.active .navbar-icon::after {
transform: rotate(-45deg) translate(0.5rem, -0.5rem);
background-color: var(--orange);
}

.dot p {
opacity: 0;
}

.lets-talk-btn {
  position: fixed !important;
  top: 1.6rem;
  right: 4rem;
  background-color: var(--orange);
  border-radius: 50px;
  display: flex;
  align-items: center;
  /* overflow: hidden; */
  width: 2.9rem;
  height: 2.9rem;
  transition: width 0.7s ease-in-out;
  color: white !important;
  text-decoration: none;
  z-index: 100;
}

.icon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.9rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: white;
  border-radius: 50%;
  padding: 0;
  margin: 0;
}

.icon-wrapper img {
  padding-bottom: 3px;
  width: 2rem;
  height: 2rem;
  margin: 0;
}

.text-label {
  opacity: 0;
  white-space: nowrap;
  margin-left: 1rem;
  transform: translateX(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  font-size: 1.25rem;
}

.lets-talk-btn:hover {
  width: 11rem;
  overflow: hidden;
}

.lets-talk-btn:hover .text-label {
  opacity: 1;
}

/* Mobile Let's talk button */
.lets-talk-btn-mobile {
  display: none;
  background-color: var(--blue);
  color: white;
  padding: 1rem;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  margin-top: 1rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

nav a.active-nav, nav a:hover {
  font-weight: bold;
  color: var(--orange); /* or any highlight color */
  position: relative;
  text-decoration: none;
  
}

/* nav a.active-nav::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--orange);
} */

@media (max-width: 1090px){
  
  header {
    justify-content: space-between;
    padding: 1rem 12rem 1rem 1rem;
  }

  header img {
    margin: 0 1rem;
    width: 120px;
  }

  header nav {
    gap: 2.5rem;
    width: 50vw;
    padding: 0 1rem;

          
  }

  .lets-talk-btn {
    right: 1rem;
    top: 1.3rem;
  }

}

@media (max-width: 776px) {
  header {
    padding: 1rem 2.5rem 1rem 1rem;
    justify-content: space-between;
    /* backdrop-filter: blur(5px); */
    /* background: rgba(255, 255, 255, 0.1); */
    /* background-color: white; */
    /* box-shadow: 0 2px 8px rgba(8, 37, 103, 0.08); */
  }

  header nav {
    background: none;
  }

  header img {
    width: 6rem;
  }

  .navbar-toggler {
    display: flex;
    color: var(--blue);
  }

  /* Mobile menu */
  .navbar-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(8, 37, 103, 0.95); /* Blue with opacity */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    display: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    outline: none;
  }

  .navbar-links.show {
    display: flex;
    gap: 0;
    height: 17rem;
    padding: 4rem 0 2rem;
    background-color: var(--blue);
  }

  .navbar-links li {
    height: auto;
    margin: 1rem 0;
  }

  .navbar-links a {
    color: white;
    font-size: 1.5rem;
    padding: 0;
  }

  .lets-talk-btn {
    display: none;
  }

  .lets-talk-btn-mobile {
    display: block;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    margin-top: 1rem;
    background-color: #ffffff00;
  }

  .lets-talk-btn  {
    animation: none !important;
    transition: none !important;
  }

  .lets-talk-btn:hovered  {
    animation: none !important;
    transition: none !important;
  }
}