/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@400;700&display=swap');

/* Cyberpunk background with animated effect */
body {
    background: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(20,20,20,0.95)),
                url('images/cybersecurity-futuristic-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    text-align: center;
    overflow-x: hidden;
}

@keyframes backgroundMove {
    0% { background-position: center top; }
    100% { background-position: center bottom; }
}

@media screen and (max-width: 768px) {
    body {
        background-size: contain;
    }
    .hero{
        height: auto;
        font-size: 14px;
        padding: 10px;
    }
    .service-container {
        padding: 10px;
        max-width: 90%;
    }
    .service-card {
        max-width: 95%;
        font-size: 20px;
        padding: 10px;
        border-radius: 12px;
    } 
    
    .btn-submit {
        font-size: 13px;
        padding: 10px;
    }
    input, textarea {
        font-size: 11px;
        padding: 7px;
    }
    h1 {
        font-size: 20px;
    }
  
  	h2 {
        font-size: 16px;
    }
  
    p {
        font-size: 11px;
        word-wrap: break-word;
    }
  .stats-container {
    padding: 10px;
  }
  .stats-info {
    font-size: 14px;
    word-wrap: break-word;
    text-align: center;
  }
  .stats-call {
    margin-top: 10px;
  }
}




/* Header modern glass effect */
header {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    padding: 0px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    /* font-size: 12px; */
    font-weight: bold;
    z-index: 1000;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 2px 15px rgba(0, 255, 255, 0.7);
    font-family: 'Rajdhani', sans-serif;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: color 0.3s, transform 0.2s;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px #00eaff;
}

nav ul li a:hover {
    color: #00eaff;
    transform: scale(1.15);
    text-shadow: 0 0 20px #00eaff;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-shadow: 2px 2px 15px black;
    font-size: 26px;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
}



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

/* Glowing Button */
.cta {
    display: inline-block;
    background: linear-gradient(45deg, #00eaff, #0077ff);
    color: white;
    padding: 20px 35px;
    border-radius: 15px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    transition: background 0.10s, transform 0.5s;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.9);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta:hover {
    background: linear-gradient(45deg, #008cff, #0044ff);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(0, 255, 255, 1);
}

.button-home{
    list-style-type: none;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: color 0.3s, transform 0.2s;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px #00eaff;
}

.button-home:hover {
    color: #00eaff;
    transform: scale(1.15);
    text-shadow: 0 0 20px #00eaff;
}

/* Animated Glitch Effect */
@keyframes glitch {
    0% { transform: translate(0); opacity: 1; }
    25% { transform: translate(-2px, 2px); opacity: 0.8; }
    50% { transform: translate(2px, -2px); opacity: 1; }
    75% { transform: translate(-2px, 2px); opacity: 0.8; }
    100% { transform: translate(0); opacity: 1; }
}

.cta:hover {
    animation: glitch 0s infinite;
}

/* Services Cards */
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 80px 20px;
}

.service-card {
    background: rgba(10, 10, 10, 0.95);
    padding: 30px;
    border-radius: 60px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
    max-width: 340px;
    font-size: 22px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(0, 255, 255, 0.7);
}

.service-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(0, 255, 255, 1);
}

/* Contact Form */
form {
    background: rgba(15, 15, 15, 0.95);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.9);
    max-width: 90%;
    margin: auto;
    text-align: center;
}

input, textarea {
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-align: center;
    width: 95%;
    margin-bottom: 8px;
}

.btn-submit {
    background: linear-gradient(45deg, #00eaff, #0077ff);
    color: white;
    padding: 12px 18px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    font-weight: bold;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #008cff, #0044ff);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 1);
}

.stats-alert {
    font-size: 30px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

.highlight {
    color: #ffeb00;
    font-size: 36px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 1);
}

.stats-warning {
    font-size: 22px;
    margin-top: 20px;
}

.cta-danger {
    display: inline-block;
    background: linear-gradient(45deg, #ff0000, #990000);
    color: white;
    padding: 20px 35px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    text-decoration: none;
}

.cta-danger:hover {
    background: linear-gradient(45deg, #cc0000, #770000);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 1);
}

.about {
    background: rgba(10, 10, 10, 0.9);
    padding: 80px 20px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
    text-align: center;
    color: white;
    font-size: 22px;
    font-family: 'Orbitron', sans-serif;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0px 0px;
}

.about-text {
    max-width: 600px;
    line-height: 1.6;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

/* Stile aggiornato per la sezione di sicurezza */
.stats-updated {
    background: linear-gradient(135deg, #001f3f, #003366);
    color: white;
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    text-align: center;
    font-size: 18px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.stats-info {
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.9);
}

.stats-call {
    font-size: 20px;
    margin-top: 20px;
}

.cta-secure {
    display: inline-block;
    background: linear-gradient(45deg, #00eaff, #0077ff);
    color: white;
    padding: 20px 35px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    text-decoration: none;
}

.cta-secure:hover {
    background: linear-gradient(45deg, #008cff, #0044ff);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 1);
}

.certifications {
    display: flex;
    justify-content: center; /* Allinea al centro */
    align-items: center;
    gap: 15px; /* Distanza tra le immagini */
    flex-wrap: wrap; /* Se lo schermo è piccolo, manda a capo le immagini */
}

.cert-icon {
    width: 60px; /* Imposta una dimensione più piccola */
    height: 60px;
    object-fit: contain; /* Evita distorsioni */
}


footer {
    background: #0d0d0d;
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.footer-wrapper {
    width: 80%;
    max-width: 1100px;
    position: relative;
}

.footer-card {
    background: #1f1f1f;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.6); /* Ombra più marcata */
    text-align: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1); /* Bordo chiaro per separarlo */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    gap: 30px;
}

.footer-logo h2 {
    color: #00bcd4;
    font-size: 2rem;
}

.footer-logo p {
    max-width: 300px;
    color: #bbb;
}

.footer-contact h3,
.footer-social h3 {
    color: #00bcd4;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin: 8px 0;
    color: #ddd;
}

.footer-contact i {
    color: #00bcd4;
    margin-right: 10px;
}

.footer-contact a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #00bcd4;
}

.social-icons {
    display: flex;
    gap: 40px; /* Maggiore distanza tra icone */
    justify-content: center;
}

.social-icons a {
    font-size: 30px;
    color: white;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    color: white;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    padding-top: 30px;
}

.certifications {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.certifications h3 {
    font-size: 20px;
    color: #121826;
    margin-bottom: 15px;
}

.certifications-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certifications-container img {
    width: 100px; /* Aumenta la larghezza */
    height: auto;
    transition: transform 0.3s ease;
}

.certifications-container img:hover {
    transform: scale(1.1);
}