/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 01 2026 | 20:54:24 */
body{
  	margin: 0;
  	padding: 0;
	background-color: #0a002f;
	background-image: radial-gradient(circle at 45% 35%, #ff408190, transparent 5%), radial-gradient(circle at 40% 45%, #20c5bb80, transparent 5%), radial-gradient(circle at 60% 53%, #da7a9a80, transparent 5%), radial-gradient(circle at 35% 60%, #ffffff60, transparent 5%), radial-gradient(circle at 65% 67%, #ff408160, transparent 3%), radial-gradient(circle at 40% 74%, #20c5bb80, transparent 5%) !important;
    background-size: 200% 200%;
    background-position: 50% 50%;	
}
.site-header {
    z-index: 99;
    position: relative;
    display: none;
}
#mouse-follower{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1500;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	pointer-events: none !important;
	background: var(--color-pink);
	opacity: 0.9;
	filter: drop-shadow(0 0 5px #fb4184) drop-shadow(0 0 15px #fb4184) drop-shadow(0 0 25px #fb4184);
	transition: transform 0.1s ease-out;
}
.text-cursor{
	animation: 0.7s infinite alternate cursorBlinking; 
}
@keyframes cursorBlinking {
	0% {opacity: 0;}
	60% {opacity: 1;}
	100% {opacity: 0;}
}

/** mesh-canvas style */
.mesh-container{
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0.4;
}
#mesh-canvas {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
}

/** binary-code style */
#binary-code-container{
  position: absolute;
  display: inline-block;
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  padding: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.code-col{
  	display: inline-flex;
    font-family: "Space Mono", monospace;
    font-size: 1vw;
    font-weight: 400;
    line-height: 2vw;
    width: 1vw;
    height: 100vh;
    margin: 0;
    padding: 0 1vw;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.code-col .char{
	display: block;
	width: 1vw;
	margin: 0;
	text-align: center;
	border-radius: 2px;
    box-shadow: 0 0 2px #ffffff50;
}
.code-col:first-child{
  margin-left: 0.5vw;
  transition: all 0.3s ease;
}

/** binary-code video */
.home-services-section,
.home-services-section .elementor-background-video-container,
.home-services-section .elementor-background-video-container video{
	mix-blend-mode: screen !important;
	background: transparent !important;
	opacity: 0.9;
}