::-webkit-scrollbar {
  width: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #ff4a13;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #d43f12;
}

* {
  cursor: none;
  font-family: Roboto, sans-serif;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at center, #ff4a13, #d43f12);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, width 0.2s, height 0.2s;
  box-shadow: 0 0 15px #d43f1265;
  z-index: 9999;
}

/* Hide custom cursor and restore native cursor on touch devices / small screens */
@media (hover: none) and (pointer: coarse), (max-width: 768px) {
  .cursor {
    display: none !important;
  }
  /* Restore default cursor for interactive elements on touch devices */
  * {
    cursor: auto !important;
  }
}
body {
  background-color: #101010;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}
.glow-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.6), transparent 70%);
  filter: blur(150px);
  opacity: 0.7;
  border-radius: 50%;
  animation: float 10s infinite ease-in-out;
}
.glow:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}
.glow:nth-child(2) {
  top: 50%;
  left: 70%;
  animation-delay: 5s;
}
.glow:nth-child(3) {
  top: 80%;
  left: 30%;
  animation-delay: 10s;
}
@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(100px, -80px) scale(1.2);
  }
  100% {
    transform: translate(-50px, 100px) scale(1);
  }
}

.text-justify {
  text-align: justify;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.container {
  margin-top: 100px !important;
}

@media screen and (max-width: 768px) {
  .container {
    margin-top: 50px !important;
  }
  .navbar.w-75 {
    width: 90% !important;
  }
}
.main-colored {
  color: #ff6105;
}
