/* ================= Utility Bar ================= */
.utility-bar {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  color: #fff;
  font-size: 14px;
  padding: 6px 20px;
}

.utility-left a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.utility-left a:hover {
  color: #ffc107; /* golden hover */
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.utility-right span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
}

.utility-right i {
  margin-right: 5px;
}

/* Search box */
.search-box {
  position: relative;
}

.search-box input {
  border: none;
  border-radius: 20px;
  padding: 6px 28px 6px 12px;
  font-size: 13px;
  outline: none;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Hover par halka blue glow */
.search-box input:hover {
  box-shadow: 0 0 6px rgba(246, 246, 247, 0.4);
}

/* Focus par strong glow */
.search-box input:focus {
  background: #f8f9fa;
  box-shadow: 0 0 10px rgba(3, 59, 143, 0.7), 0 0 20px rgba(102, 16, 242, 0.6);
  border: 1px solid #cc720c;
}

.search-box i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Icon hover effect */
.search-box i:hover {
  color: #0d6efd;
}

/* Dark mode adjustments */
body.dark-mode .utility-bar {
  background: linear-gradient(90deg, #0d6efd, #6f42c1); /* modern blue-purple gradient */
  color: #eee;
}


body.dark-mode .utility-left a {
  color: #ddd;
}

body.dark-mode .utility-left a:hover {
  color: #0d6efd;
}

body.dark-mode .utility-right span {
  color: #ccc;
}

body.dark-mode .search-box input {
  background: #2c2c2c;
  color: #fff;
}

body.dark-mode .search-box input:hover {
  box-shadow: 0 0 6px rgba(13, 110, 253, 0.5);
}

body.dark-mode .search-box input:focus {
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.8), 0 0 24px rgba(102, 16, 242, 0.7);
  border: 1px solid #0d6efd;
}

body.dark-mode .search-box i {
  color: #aaa;
}
