
  /* Header Section */
  .header-section {
    width: 100%;
    height: max-content;
   
  }

  .header-section-home {
    width: 100%;
    height: 80px;
   
  }
  
  /* Center-aligned Container */
  .header-container {
    width: 100%;
    margin: 0 auto;
    /* height:max-content */


  }
  
  /* Top Blue Bar */
   .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white); 
    padding: 10px 7%;
  }

  /* Dropdown Styling */
.dropdown {
  position: relative;
}



.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* Align below the dropdown */
  left: 0;
  background-color: var(--neutral01100);
  padding: 10px 0;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  width: 300px;
}

.profile-dropdown-menu{
  display: none;
  position: absolute;
  top: 70%; /* Align below the dropdown */
  right: 10%;
  background-color: transparent;
  border-radius: 5px;
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
  z-index: 1000;
  min-width: 200px;
  height: max-content;
}
.inner-profile-dropdown-menu{
  margin-top: 1rem;
  padding: 1%;
  background-color: var(--neutralwhite);
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);

}


.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: var(--slate-gray-purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  min-width: 90%;
}


.profile-dropdown-menu a{
  border-radius: 5px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 1%;
  padding: 5px 0px;
  color: var(--slate-gray-purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  max-width: 98%;
  width: 100% !important;
}

.dropdown-menu a:hover {
  color: var(--dark-blue);
}


/* .svg-container img{
  width:20px;
  height: auto;
} */


.profile-dropdown-menu a:hover{
  background-color: var(--slate-gray-purple);
}

a span{
  margin-left: 10px;
  color: var(--dark-blue);
}

a:hover span{
  color: var(--neutralwhite);
}

/* Display dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
}
.profile-icon:hover .profile-dropdown-menu{
  display: block;
}
/* test */
a svg{
  margin-left: 10px;
}


 a:hover svg path{
  fill:var(--neutralwhite);
  stroke:var(--neutralwhite);
}

a:hover .logout-svg{
  fill:none;
  stroke:var(--neutralwhite);
}






/*  */

.arrow {
  display: inline-block;
  font-weight: 500;
  transform: rotate(90deg); 
  transition: transform 0.5s ease; /* Smooth transition */
  color: var(--slate-gray-purple);
}

/* On hover, rotate 180 degrees */
.dropdown:hover .arrow {
  transform: rotate(270deg);
  color: var(--slate-gray-purple);
}

/* Optional for better alignment */
/* .nav-sec {
  position: relative;
} */
 
  .logo-container img {
    max-height: 40px;
  }
  
  .buttons {
    display: flex;
    gap: 10px;
  }
  
  .btn {
    border: 1px solid var(--blue-zodiac-light);
    background-color: transparent;
    color: var(--blue-zodiac-light);
    font-family: var(--font-family-montserrat);
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
  }
  
  .btn:hover {
    background-color: var(--neutral01100);
    color: var(--dark-blue);
    transition: 0.3s;
  } 

  .login{
    border: 1px solid var(--blue-zodiac-light);
    background-color: var(--blue-zodiac-light);;
    color: var(--white);
  }

  .login:hover {
    background-color: var(--blue-zodiac-light);
    color: var(--neutral01100);
    transition: 0.3s;
  } 

  /* .nav-sec{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;    
  } */

  .nav-item a{
    text-decoration: none;
  }
  /* .nav-item a.active {
    border-bottom: 2px solid white;
} */
/* 
  .mobile-item{
    text-decoration: none;
  } */

  .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
  }

  .nav-container{
      display: flex;
      justify-content: space-between;
      
  }

  .nav-container a{
    width: 16%;
    
}
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .links-container{
    display: flex;
    align-items: center;
    gap: 10%;
    width: 84%;
  }

  .nav-links {
    list-style: none;
    display: flex;
    justify-content: start;
    gap: 1.5rem;
    width: 88%;
  }

  .welcome{
    margin-left: 25px;
    text-align: center;
    min-width: 165px;
  }

  .welcome-profile{
    display: flex;
    align-items: center;
    gap: 4%;
  }

  .welcome-profile:hover .profile-dropdown-menu{
    display: block;
    
  }

  .profile-info{
    text-align: left;
  }

  .profile-info span{
    color: var(--blue-zodiac-light)!important;
  }

  .hamburger {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: var(--blue-zodiac-light);
      cursor: pointer;

  }
  /* @media (max-width: 1200px) {
    .nav-links{
      gap: 10px;
    }
  } */

  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      background: var(--cool-light-gray);
      position: absolute;
      top: 80px;
      right: 0;
      width: 90%;
      padding: 1rem;
    }

    .nav-links.show {
      display: flex;
      z-index: 9;
    }
    .nav-container a{
      width: 60%;
      
  }

    .links-container{
      display: flex;
      align-items: center;
      gap: 1%;
      width: 40%;
    }
    
  }
 


  
  
  
 







/* Navbar Container */
.nav-bar {
  display: flex;
  /* position: relative; */
  justify-content: space-between;
  align-items: center;
  padding: 10px 7%;
  background-color: var(--cool-light-gray);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo */
.nav-bar img {
  height: 60px;
}

/* Navigation Links (Desktop) */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-item {
  cursor: pointer;
  transition: color 0.3s ease;
}

/* .nav-item:hover {
  color: #ff6600;
} */

/* Hamburger Icon (Mobile) */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.bar {
  height: 4px;
  background-color: var(--neutral01100);
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 15px;
  background-color: var(--red);
  text-align: center;
  padding: 15px;
  position: absolute;
  top: 65px;
  left: -20px;
  width: 100%;
}

/* Mobile Menu Items */
.mobile-item {
  font-size: 16px;
  font-weight: bold;
  color: var(--neutral01100);
  cursor: pointer;
}

.mobile-item:hover {
  color: #ff6600;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-icon {
    display: flex;
  }
}

/* Toggle Active Class */
.menu-icon.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-icon.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-icon.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu.active {
  display: flex;
  z-index: 9;
}