/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.3.0.1746709031
Updated: 2025-05-08 12:57:11

*/

:root {
    --dark-blue: #0a192f;
    --electric-blue: #29b6f6;
    --light-blue: #81d4fa;
    --italian-green: #009246;
    --italian-white: #ffffff;
    --italian-red: #ce2b37;
    --neon-green: #39ff14;
    --warning-red: #ff3860;
    --alert-orange: #ffaa33;
    --text-color: #e6f1ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-blue);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Enhanced Animated Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    overflow: hidden;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-line {
    position: absolute;
    background-color: rgba(41, 182, 246, 0.1);
}

.horizontal-line {
    width: 100%;
    height: 1px;
    left: 0;
}

.vertical-line {
    height: 100%;
    width: 1px;
    top: 0;
}

.packet {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--electric-blue);
    animation: packetAnimation 3s linear infinite;
    z-index: 5;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    z-index: 10;
}

.cybercon-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--electric-blue);
    background-color: rgba(10, 25, 47, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(41, 182, 246, 0.5), 
                inset 0 0 10px rgba(41, 182, 246, 0.3);
}

.logo-inner {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 2px solid var(--electric-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: inset 0 0 10px rgba(41, 182, 246, 0.5);
}

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--electric-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--electric-blue);
}

.node-center {
    width: 15px;
    height: 15px;
}

.node-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: nodePulse 1.5s infinite 0.2s;
}

.node-right {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    animation: nodePulse 1.5s infinite 0.4s;
}

.node-bottom {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    animation: nodePulse 1.5s infinite 0.6s;
}

.node-left {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    animation: nodePulse 1.5s infinite 0.8s;
}

.connector {
    position: absolute;
    background-color: var(--electric-blue);
    box-shadow: 0 0 5px var(--electric-blue);
}

.connector-horizontal {
    height: 2px;
    width: 40%;
}

.connector-vertical {
    width: 2px;
    height: 40%;
}

.connector-diagonal {
    width: 2px;
    height: 60%;
    transform-origin: center;
}

.connector-top-left {
    top: 30%;
    left: 30%;
    transform: rotate(-45deg);
}

.connector-top-right {
    top: 30%;
    right: 30%;
    transform: rotate(45deg);
}

.connector-bottom-left {
    bottom: 30%;
    left: 30%;
    transform: rotate(45deg);
}

.connector-bottom-right {
    bottom: 30%;
    right: 30%;
    transform: rotate(-45deg);
}

.connector-horizontal-left {
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
}

.connector-horizontal-right {
    top: 50%;
    right: 30%;
    transform: translateY(-50%);
}

.connector-vertical-top {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.connector-vertical-bottom {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.data-transfer {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--electric-blue);
    border-radius: 50%;
    opacity: 0;
}

.transfer-top-right {
    top: 0;
    right: 0;
    animation: transferAnimation 2s infinite 0.1s;
}

.transfer-bottom-left {
    bottom: 0;
    left: 0;
    animation: transferAnimation 2s infinite 0.6s;
}

.transfer-bottom-right {
    bottom: 0;
    right: 0;
    animation: transferAnimation 2s infinite 1.1s;
}

.transfer-top-left {
    top: 0;
    left: 0;
    animation: transferAnimation 2s infinite 1.6s;
}

.logo-text {
    position: absolute;
    bottom: -40px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-align: center;
    width: 100%;
    text-shadow: 0 0 10px rgba(41, 182, 246, 0.7);
}

.italian-flag {
    position: absolute;
    bottom: -60px;
    width: 60%;
    height: 4px;
    display: flex;
    left: 20%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.flag-green, .flag-white, .flag-red {
    flex: 1;
    height: 100%;
}

.flag-green {
    background-color: var(--italian-green);
}

.flag-white {
    background-color: var(--italian-white);
}

.flag-red {
    background-color: var(--italian-red);
}

.tagline {
    margin-top: 70px;
    color: var(--text-color);
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1s;
    text-shadow: 0 0 10px rgba(41, 182, 246, 0.7);
}

/* Terminal Prompt Animation */
.terminal-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    padding: 15px;
    font-family: monospace;
    color: var(--neon-green);
    border: 1px solid rgba(41, 182, 246, 0.5);
    box-shadow: 0 0 15px rgba(41, 182, 246, 0.5);
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 1.5s;
}

.terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--text-color);
}

.terminal-title {
    margin-left: 5px;
}

.terminal-dots {
    display: flex;
    margin-right: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.dot-red {
    background-color: var(--warning-red);
}

.dot-yellow {
    background-color: var(--alert-orange);
}

.dot-green {
    background-color: var(--neon-green);
}

.terminal-prompt {
    position: relative;
    display: flex;
}

.prompt-sign {
    color: var(--electric-blue);
    margin-right: 10px;
}

.prompt-text {
    color: var(--neon-green);
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing 3s steps(60, end) forwards;
    animation-delay: 2s;
}

.cursor {
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 18px;
    background-color: var(--neon-green);
    animation: blink 1s step-end infinite;
}

.terminal-response {
    color: var(--text-color);
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 5s;
    margin-top: 10px;
    line-height: 1.4;
}

.success-text {
    color: var(--neon-green);
}

.warning-text {
    color: var(--warning-red);
}

@keyframes packetAnimation {
    0% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: translate(calc(100vw - 8px), calc(100vh - 8px));
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(41, 182, 246, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(41, 182, 246, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(41, 182, 246, 0);
    }
}

@keyframes nodePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 5px var(--electric-blue);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.6;
        box-shadow: 0 0 15px var(--electric-blue);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 5px var(--electric-blue);
    }
}

@keyframes transferAnimation {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}