/* custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: #023b89;
  border-radius: 10px;
  border: 2px solid #fff;
}
body::-webkit-scrollbar-track {
    border-radius: 1px;
}
body::-webkit-scrollbar-thumb {
   border-radius: 10px;
}
/* custom scrollbar */
.shadow-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: default !important;
}

.shadow-box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(2, 59, 137, 0.25),
    0 0 15px rgba(93, 167, 187, 0.3);
}

.custom-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999 !important;
  background: #fff;
  transition: 0.3s;
}

.custom-header.scrolled {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
