/* Global header styles */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #0d1b2a, #1b263b, #415a77);
  padding: 10px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

header.shrink {
  padding: 5px 30px;
}

.Elite-logo img {
  height: 100px;
}

.Company-Name h1 {
  color: #fff;
  font-weight: 500;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav ul li a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffd60a;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-select {
  background: #1b263b;
  color: #fff;
  border-radius: 6px;
  padding: 5px 10px;
}

.login-btn a, .logout-btn {
  background: #1b263b;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.login-btn a:hover, .logout-btn:hover {
  background: #ffd60a;
  color: #000;
}

.user-greeting {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffd60a;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
}

@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
}
