/* Top Utility Bar Styles - ku.ac.bd Clone */
.ku-topbar-container {
  background-color: #49688e !important;
  padding: 8px 0 !important;
  font-family: 'SolaimanLipi', 'Kalpurush', 'Open Sans', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100% !important;
}

.ku-topbar-flex {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

/* Social Icons */
.ku-topbar-social {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ku-topbar-social li {
  display: inline-block !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ku-topbar-social li a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  border: 1px solid #f4a024 !important;
  box-shadow: 0 0 2px #f4a024 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  transition: all 0.2s ease-in-out !important;
  text-decoration: none !important;
}

.ku-topbar-social li a:hover {
  background-color: #f4a024 !important;
  color: #ffffff !important;
  transform: scale(1.1);
}

/* Navigation Links */
.ku-topbar-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
}
  
.ku-topbar-nav li {
  display: inline-block !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.ku-topbar-nav li a {
  color: #ffffff !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 2px 0 !important;
  transition: color 0.2s ease-in-out !important;
  display: inline-block !important;
}

.ku-topbar-nav li a:hover {
  color: #f4a024 !important;
}

.ku-topbar-nav .divider {
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0 6px !important;
  font-weight: 300 !important;
  user-select: none !important;
  display: inline-block !important;
}

/* Responsive Alignment */
@media (max-width: 991px) {
  .ku-topbar-flex {
    flex-direction: column !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
  }
  .ku-topbar-social {
    justify-content: center !important;
  }
  .ku-topbar-nav {
    justify-content: center !important;
    gap: 4px 0 !important;
  }
}

@media (max-width: 576px) {
  .ku-topbar-nav {
    font-size: 10px !important;
  }
  .ku-topbar-nav .divider {
    margin: 0 3px !important;
  }
}
