/*
Theme Name: HoxionSoft
Author: Haris
Version: 1.0
*/

body {
    font-family: Arial, sans-serif;
}


/* .main-banner{
    background: url(images/banner.png)
} */

#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #0a0a0a; /* dark background */
}

.banner-content {
    width: 100%;
}

#banner-carousel .car-dot, #portfolio-carousel .car-dot {
    background: #61dafb8c;
}

#banner-carousel .car-dot[aria-current="true"], #portfolio-carousel .car-dot[aria-current="true"] {
    background: #61DAFB;
}

.navigator-nav-sub {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 5px;
}


.navigator-nav:hover .navigator-nav-sub {
    background: #4e5d6285;
}

.navigator-nav:hover .navigator-nav-sub .bullet-point {
    display: block;
    margin-right: 11px;
}
.navigator-nav-sub .bullet-point {
    display: none;
    font-size: 12px;
    color: #ccc;
}

.navigator-item {
    /* height: 20px; */
    justify-content: space-between;
    align-items: center;
    display: flex;
    cursor: pointer;
    
}

.navigator-item .bullet {
    background: #61dafb8c;
}

.navigator-item:hover .bullet, .navigator-item.active .bullet {
    background: #61dafb;
}

.navigator-item:hover .bullet-point {
    color: #fff;
}

.web-loader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.web-loader .spinner {
  border: 4px solid #1f2937;
  border-top: 4px solid #61DAFB;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}