/*
Theme Name: Hello Child Theme
Description: Aqua DesignWorks Representing
Author: Aqua
Author URI: Design
Author Email: Works
Version: 1.0.0
Text Domain: hello-elementor-child
Template: hello-elementor
*/
/*
Add your custom styles here
*/

/* Scrollbar width & rounded corners */
::-webkit-scrollbar {
  width: 10px;
}

/* Track: dark with a subtle inner glow */
::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 20px;
  box-shadow: inset 0 0 8px rgba(138, 0, 212, 0.3); /* faint purple glow inside track */
}

/* Thumb: vibrant gradient with glassy effect */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(138, 0, 212, 0.8), rgba(168, 0, 247, 0.8));
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2); /* subtle glass border */
  box-shadow: 0 0 10px rgba(168, 0, 247, 0.5); /* outer soft glow for pop */
  transition: all 0.3s ease;
}

/* Thumb on hover: boost brightness & glow */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(176, 51, 255, 1), rgba(211, 57, 255, 1));
  box-shadow: 0 0 15px rgba(211, 57, 255, 0.8);
}

#PrsmbytBan {
  animation: rotateBothWays 22s linear infinite;
  transform-origin: center center;
}

@keyframes rotateBothWays {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.desc_web {
  color: black;
  max-height: 150px; /* adjust height as needed */
  overflow-y: auto;
  padding-right: 10px;
}

/* Custom scrollbar styling only for .desc_web */
.desc_web::-webkit-scrollbar {
  width: 8px;
}

.desc_web::-webkit-scrollbar-track {
  background: #e0e0e0; /* light gray track */
  border-radius: 4px;
}

.desc_web::-webkit-scrollbar-thumb {
  background-color: #EB1C24; /* red scrollbar thumb matching your theme */
  border-radius: 4px;
}



