

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000; 
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.logo span {
  color: var(--orange);
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-blue);
}
 .logo a{display: flex; justify-content: center; align-items: center;flex-direction:row-reverse; gap: 10px;
          width: 80px;height: auto; text-decoration: none; line-height: 100%; color:#1a73e8;
        }

        .logotext{ font-weight: 700;}
/* Hamburger Menu for Mobile */
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {




  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 60%;
    height: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    right: 0;
  }

  .logo a{display: flex; justify-content: center; align-items: center;
          width: 50px;height: auto; text-decoration: none; line-height: 100%; font-size: 20px;margin-left: 20px;
        }

        .logotext{ font-weight: 00;}
}
