/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 29 2025 | 00:04:50 */
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%) !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;}
}
/** 1st section SVG logo animation */
.section-hero-svg{
	/*display: block;*/
}
.loder-container {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.fikrah-logo-svg{
	display: flex;
	z-index: 15;
	position: absolute;
	width: 100vw;
	height: 100vh;
}
.fikrah-logo-svg .logo-stroke-path-1 {
    stroke-dasharray: 1000; 
    stroke-dashoffset: 1000; 
    animation: 4s infinite alternate logoStrokeAnimation1; 
    fill: transparent !important;
    stroke: #fc4284;
    stroke-width: 2; 
	/* Add the Glowing Filter */
	filter: drop-shadow(0 0 10px #fc4284)  drop-shadow(0 0 15px #fc4284);
}
.fikrah-logo-svg .logo-stroke-path-2 {
    stroke-dasharray: 1500; 
    stroke-dashoffset: 1500; 
    animation: 5s infinite alternate logoStrokeAnimation2; 
    fill: transparent !important;
    stroke: #a226d6;/*#7c1ca4;*/
    stroke-width: 4;
	/* Add the Glowing Filter */
	filter: drop-shadow(0 0 5px #7c1ca4)  drop-shadow(0 0 15px #7c1ca4);
}

@keyframes logoStrokeAnimation1 {
	0% {
		stroke-dashoffset: 25%;
		stroke-dasharray: 0% 25%;
		fill: transparent;
	}

	100% { 
		stroke-dashoffset: -25%; 
		stroke-dasharray: 40% 0%;
	}
}
@keyframes logoStrokeAnimation2 {
    0% {
        stroke-dashoffset: 25%;
        stroke-dasharray: 0% 25%;
        fill: transparent;
    }

    100% { 
        stroke-dashoffset: -25%; 
        stroke-dasharray: 40% 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;
}