/* 🌐 Global */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* 🧱 Header */
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #35b6ff;
  color: #fff;
}

/* 🔹 Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.logo img {
  height: 80px;
  width: auto;
}
.logo h1 {
  font-size: 1.4rem;
  margin: 0;
  color: navy;
}

/* ☰ Menu Button */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* 🌍 Navigation */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
}
.nav-list li {
  position: relative;
}

/* 🔗 Links */
.nav-list a,
.dropdown-toggle {
  text-decoration: none;
  color: white;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  font: inherit;
  cursor: pointer;
  display: block;
  transition: all 0.3s ease;
  border-radius: 6px;
  white-space: nowrap;
}
.nav-list a:hover,
.dropdown-toggle:hover {
  color: navy;
  background-color: white;
  border-radius: 6px;
  transform: scale(1.05);     /* ✅ Slight zoom */
  font-weight: bold;          /* ✅ Bold font */
  letter-spacing: 0.5px;  
  font-weight: 200;    /* ✅ Elegant spacing */
}

/* ⬇️ Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #35b6ff; /* Sky blue */
  color: black;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  width: auto;
  min-width: max-content;
  z-index: 1000;
  white-space: nowrap;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ⬇️ Dropdown Items */
.dropdown-menu li a {
  padding: 0.5rem 1rem;
  color: navy;
  display: block;
  transition: all 0.3s ease;
  border-radius: 6px;
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background-color: white;
  color: navy;
}

/* 🔗 Social Icons */
.social-icons {
  display: flex;
}
.social-icons i {
  color: #010048;
  font-size: 2rem;
  transition: color 0.2s ease;
}
.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.2s ease, transform 0.3s ease; /* ✅ Added transform transition */
  display: inline-block; /* ✅ Required for transform to work */
}

.social-icons a:hover {
  color: #007bff;         /* ✅ Your requested blue */
  transform: scale(1.2);  /* ✅ Zoom-in effect */
}