/*--------------------------------------------------------------
# IMPORT CSS
--------------------------------------------------------------*/
@import url('default.epaphrodites.style.css');

/*--------------------------------------------------------------
  # MAIN
--------------------------------------------------------------*/
        :root{
        --color_p:#00ffff;
        --color_c1:#C71617;
        --color_c2:#ff00ff;
        --color:#000;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Orbitron', 'Rajdhani', 'Exo 2', sans-serif;
            background: #000000;
            color: #00ffff;
            overflow-x: hidden;
            position: relative;
        }

        #matrix-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.15;
            pointer-events: none;
        }

        .holo-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(0deg, transparent 24%, rgba(0, 255, 255, 0.05) 25%, rgba(0, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, 0.05) 75%, rgba(0, 255, 255, 0.05) 76%, transparent 77%, transparent),
                linear-gradient(90deg, transparent 24%, rgba(0, 255, 255, 0.05) 25%, rgba(0, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, 0.05) 75%, rgba(0, 255, 255, 0.05) 76%, transparent 77%, transparent);
            background-size: 50px 50px;
            transform: perspective(500px) rotateX(60deg);
            transform-origin: 50% 100%;
            z-index: 1;
            pointer-events: none;
            animation: gridScroll 20s linear infinite;
        }

        @keyframes gridScroll {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }



        @keyframes scan {
            0% { top: -2px; opacity: 0; }
            10%, 90% { opacity: 0.8; }
            100% { top: 100%; opacity: 0; }
        }

        .glitch-container {
            position: relative;
        }

        .glitch {
            position: relative;
            animation: glitch-skew 1s infinite linear alternate-reverse;
        }

        @keyframes glitch-skew {
            0% { transform: skew(0deg); }
            10% { transform: skew(-2deg); }
            20% { transform: skew(2deg); }
            30% { transform: skew(0deg); }
        }

        .holo-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 3;
        }

        .holo-particle {
            position: absolute;
            width: 4px;
            height: 4px;
           
            border-radius: 50%;
           
            animation: float-particle 8s infinite ease-in-out;
        }

        @keyframes float-particle {
            0%, 100% { 
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
            50% { 
                transform: translateY(-100vh) translateX(50px);
            }
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
         
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
        }

        nav::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            animation: nav-shimmer 3s infinite;
        }

        @keyframes nav-shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .logo img {
            width: 37%;
            z-index: 1;
        }


        .nav-links {
            display: flex;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .nav-links a {
            color: #00ffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
            padding: 10px 20px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid #00ffff;
            transform: scale(0);
            transition: all 0.3s;
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        }

        .nav-links a:hover::before {
            transform: scale(1);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }

        .nav-links a:hover {
            color: #000;
            background: #00ffff;
            box-shadow: 0 0 30px #00ffff;
        }

/*--------------------------------------------------------------
  # BODY
--------------------------------------------------------------*/

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 60px 60px;
            overflow: hidden;
        }

        .hex-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 4;
        }

        .hexagon {
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px solid rgba(0, 255, 255, 0.3);
            clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
            animation: hex-rotate 20s linear infinite;
        }

        @keyframes hex-rotate {
            0% { transform: rotate(0deg); opacity: 0.3; }
            50% { opacity: 0.6; }
            100% { transform: rotate(360deg); opacity: 0.3; }
        }

        .hero-content {
            max-width: 1200px;
            position: relative;
            z-index: 10;
            text-align: center;
        }

        h1 {
            font-size: 90px;
            line-height: 1.1;
            margin-bottom: 40px;
            font-weight: 900;
            letter-spacing: -2px;
            color: #00ffff;

        }

        @keyframes title-glitch {
            0%, 90%, 100% { transform: translate(0, 0); }
            91% { transform: translate(-2px, 2px); }
            92% { transform: translate(2px, -2px); }
            93% { transform: translate(-2px, -2px); }
            94% { transform: translate(2px, 2px); }
            95% { transform: translate(0, 0); }
        }

        .highlight {
            color: #C71617;

        }

        @keyframes highlight-flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .subtitle {
            font-size: 20px;
            color: #00ffff;
            margin-bottom: 50px;
            line-height: 1.9;
            opacity: 0.8;
            text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
        }

        .cta-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-holo {
            padding: 20px 50px;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: transparent;
            color: #00ffff;
            border: 2px solid #00ffff;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
        }

        .btn-holo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
            transition: left 0.5s;
        }

        .btn-holo:hover::before {
            left: 100%;
        }

        .btn-holo:hover {
            background: rgba(0, 255, 255, 0.2);
            box-shadow: 
                0 0 20px #00ffff,
                inset 0 0 20px rgba(0, 255, 255, 0.3);
            transform: translateY(-5px);
        }

        .btn-holo-alt {
            background: rgba(255, 0, 255, 0.1);
            border-color: #C71617;
            color: #C71617;
        }

        .btn-holo-alt:hover {
            background: rgba(255, 0, 255, 0.3);
            box-shadow: 
                0 0 20px #C71617,
                inset 0 0 20px rgba(255, 0, 255, 0.3);
        }

        .section {
            padding: 130px 60px;
            position: relative;
            z-index: 10;
        }

        #ourTarget{
            z-index: 1;
            background: linear-gradient(  #000000, transparent);
            border-top: 3px solid #00ffff;
            border-bottom: 0.5px solid #00ffff;
        }



        #environement p{
            font-size: 17px;
        }

        .section-title {
            text-align: center;
            font-size: 65px;
            font-weight: 900;
            margin-bottom: 90px;
            color: #00ffff;
            text-transform: uppercase;
            position: relative;
            letter-spacing: 5px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00ffff, transparent);
            box-shadow: 0 0 20px #00ffff;
        }

        .illustrationImg img{
            width: 100%;
        }

        .illustrationsTitle{
            width: 50%;
            margin: auto;
        }

        .whyChooseUs li{
            font-size: 18px;
            padding-bottom: 20px;
            list-style: none;
        }

       .whyChooseUs li strong {
            color: #00ffff;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-right: 10px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
            max-width: 1500px;
            margin: 0 auto;
        }

        .feature-card {
            background: rgba(0, 255, 255, 0.05);
            border: 2px solid #00ffff;
            padding: 40px;
            position: relative;
            overflow: hidden;
            clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
            transition: all 0.5s;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            animation: card-scan 3s infinite;
        }

        @keyframes card-scan {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 0 40px rgba(0, 255, 255, 0.5),
                inset 0 0 40px rgba(0, 255, 255, 0.1);
            border-color: #C71617;
        }

        .feature-card strong {
            color: #00ffff;
            font-size: 20px;
            display: block;
            margin-bottom: 15px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            color: rgba(0, 255, 255, 0.8);
            line-height: 1.8;
            font-size: 15px;
            position: relative;
            z-index: 1;
        }

        .team-cards {
            display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes fixes */
    gap: 50px;
    max-width: 1500px;
    margin: 90px auto 0;
        }

        .team-card {
            background: rgba(0, 255, 255, 0.05);
            border: 2px solid #00ffff;
            padding: 40px;
            text-align: center;
            position: relative;
            clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
            transition: all 0.5s;
        }

        .team-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid #C71617;
            clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
            opacity: 0;
            transition: all 0.5s;
        }

        .team-card:hover::after {
            opacity: 1;
            transform: scale(1.05);
        }

        .team-card:hover {
            box-shadow: 
                0 0 50px rgba(0, 255, 255, 0.5),
                inset 0 0 50px rgba(0, 255, 255, 0.1);
        }

        .team-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin-bottom: 25px;
            border: 3px solid #00ffff;
            box-shadow: 0 0 30px #00ffff;
            transition: all 0.5s;
            filter: grayscale(50%);
        }

        .team-card:hover img {
            transform: scale(1.1) rotate(5deg);
            filter: grayscale(0%);
            box-shadow: 0 0 50px #C71617;
            border-color: #C71617;
        }

        .team-card h3 {
            color: #00ffff;
            margin-bottom: 10px;
            font-size: 24px;
        }

        .team-card span {
            color: #C71617;
            display: block;
            margin: 15px 0;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            text-shadow: 0 0 5px #C71617;
        }

        .team-card p {
            color: rgba(0, 255, 255, 0.7);
            font-size: 14px;
            margin-bottom: 25px;
        }

        @media (max-width: 1200px) {
    .team-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Retour au comportement initial pour petits écrans */
    }
}

        .data-stream {
            position: fixed;
            font-family: 'Courier New', monospace;
            font-size: 12px;
            color: #00ffff;
            opacity: 0.3;
            white-space: nowrap;
            pointer-events: none;
            z-index: 2;
            animation: stream-flow 15s linear infinite;
        }

        @keyframes stream-flow {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100vw); }
        }

        .energy-core {
            position: fixed;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent 70%);
            filter: blur(80px);
            pointer-events: none;
            z-index: 2;
            animation: core-pulse 4s ease-in-out infinite;
        }

        @keyframes core-pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.5); opacity: 0.5; }
        }


        .btn-back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: rgba(0, 255, 255, 0.1);
            border: 2px solid #00ffff;
            color: #00ffff;
            font-size: 24px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: all 0.3s;
            border-radius: 50px;
        }

        .btn-back-to-top.visible {
            display: flex;
        }

        .btn-back-to-top:hover {
            background: rgba(0, 255, 255, 0.3);
            box-shadow: 0 0 30px #00ffff;
            transform: translateY(-10px);
        }

        @media (max-width: 768px) {
            h1 { font-size: 50px; }
            .section-title { font-size: 40px; }
            nav { padding: 20px; flex-direction: column; gap: 20px; }
            .nav-links { gap: 20px; flex-wrap: wrap; }
            .cta-buttons { flex-direction: column; }
        }

/*--------------------------------------------------------------
  # FOOTER
--------------------------------------------------------------*/

        footer {
            position: relative;
            background: linear-gradient(180deg, #000000 0%, #001a2e 50%, #000814 100%);
            border-top: 3px solid #00ffff;
            box-shadow: 0 -20px 80px rgba(0, 255, 255, 0.4);
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0, 255, 255, 0.03) 40px, rgba(0, 255, 255, 0.03) 41px),
                repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(255, 0, 255, 0.03) 40px, rgba(255, 0, 255, 0.03) 41px),
                repeating-linear-gradient(-60deg, transparent, transparent 40px, rgba(0, 255, 255, 0.03) 40px, rgba(0, 255, 255, 0.03) 41px);
            animation: hexMove 30s linear infinite;
            pointer-events: none;
        }

        @keyframes hexMove {
            0% { transform: translateY(0) translateX(0); }
            100% { transform: translateY(40px) translateX(40px); }
        }

        .scan-line {
            position: absolute;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00ffff 20%, #00ffff 50%, #00ffff 80%, transparent);
            box-shadow: 0 0 10px #00ffff;
            opacity: 0;
            animation: footerScan 20s ease-in-out infinite;
            pointer-events: none;
            z-index: 99;
        }

        @keyframes footerScan {
            0% { top: 0; opacity: 0; }
            10% { opacity: 0.8; }
            90% { opacity: 0.8; }
            100% { top: 100%; opacity: 0; }
        }

        .hexagon {
            position: absolute;
            width: 180px;
            height: 180px;
            border: 2px solid rgba(0, 255, 255, 0.3);
            clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
            animation: hex-rotate 20s linear infinite;
            pointer-events: none;
            z-index: 2;
        }

        @keyframes hex-rotate {
            0% { transform: rotate(0deg); opacity: 0.3; }
            50% { opacity: 0.6; }
            100% { transform: rotate(360deg); opacity: 0.3; }
        }

        .footer-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.2;
            pointer-events: none;
            animation: orb-float 12s ease-in-out infinite;
            z-index: 1;
        }

        .footer-orb-1 {
            top: 10%;
            left: 5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #00ffff, transparent 70%);
            animation-delay: 0s;
        }

        .footer-orb-2 {
            bottom: 15%;
            right: 8%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #00ffff, transparent 70%);
            animation-delay: 4s;
        }

        .footer-orb-3 {
            top: 50%;
            left: 50%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, #00ff88, transparent 70%);
            animation-delay: 8s;
        }

        @keyframes orb-float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -50px) scale(1.3); }
            66% { transform: translate(-40px, 40px) scale(0.9); }
        }

        .footer-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 100px 60px 50px;
            position: relative;
            z-index: 10;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.3fr;
            gap: 80px;
            margin-bottom: 80px;
        }

        .footer-brand {
            position: relative;
        }

        .footer-logo {
            position: relative;
            display: inline-block;
        }

        .footer-logo img {
            width: 50%;
        }

        .footer-tagline {
            color: rgba(0, 255, 255, 0.9);
            font-size: 15px;
            line-height: 2;
            margin-bottom: 35px;
            font-weight: 300;
        }

        .footer-social {
            display: flex;
            gap: 18px;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(6, 6, 6, 0.05);
            border: 2px solid #00ffff;
            color: #00ffff;
            text-decoration: none;
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            font-size: 22px;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.4), transparent);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .social-link:hover::before {
            width: 200px;
            height: 200px;
        }

        .social-link:hover {
            background: rgba(0, 255, 255, 0.2);
            border-color: #00ffff;
            color: #00ffff;
            transform: translateY(-10px) rotate(15deg) scale(1.15);
            box-shadow: 
                0 15px 40px rgba(0, 255, 255, 0.6),
                inset 0 0 20px rgba(255, 0, 255, 0.3);
        }

        .social-link i {
            position: relative;
            z-index: 1;
        }

        .footer-section h3 {
            font-size: 22px;
            color: #00ffff;
            text-transform: uppercase;
            letter-spacing: 4px;
            text-shadow: 0 0 15px #00ffff;
            position: relative;
            padding-bottom: 20px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #00ffff, #C71617);
            box-shadow: 0 0 15px #00ffff;
            animation: underline-grow 3s ease-out forwards;
        }

        @keyframes underline-grow {
            to { width: 60px; }
        }

        .footer-section h3::before {
            content: '//';
            position: absolute;
            left: -25px;
            color: #00ffff;
            font-size: 18px;
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 49%, 100% { opacity: 1; }
            50%, 99% { opacity: 0; }
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            position: relative;
        }

        .footer-links a {
            color: rgba(0, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.4s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            padding: 8px 0;
        }

        .footer-links a::before {
            content: '▸';
            color: #ff00ff;
            transition: all 0.3s;
            opacity: 0;
            transform: translateX(-10px);
            font-weight: bold;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00ffff, #ff00ff);
            box-shadow: 0 0 10px #00ffff;
            transition: width 0.4s;
        }

        .footer-links a:hover {
            color: #00ffff;
            text-shadow: 0 0 15px #00ffff;
            padding-left: 15px;
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        /* Contact Section */
        .footer-section p {
            color: rgba(0, 255, 255, 0.8);
            font-size: 14px;
            line-height: 2;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .footer-section p:hover {
            color: #00ffff;
            text-shadow: 0 0 10px #00ffff;
            transform: translateX(5px);
        }

        .footer-section p::before {
            content: '⚡';
            font-size: 16px;
            filter: drop-shadow(0 0 10px #00ffff);
            animation: electric-pulse 1.5s ease-in-out infinite;
        }

        @keyframes electric-pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .footer-bottom {
            padding-top: 50px;
            border-top: 2px solid rgba(0, 255, 255, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            position: relative;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ffff, #ff00ff, #00ffff, transparent);
            animation: border-flow 3s linear infinite;
        }

        @keyframes border-flow {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .footer-copyright {
            color: rgba(0, 255, 255, 0.8);
            font-size: 14px;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-copyright::before {
            content: '◆';
            color: #ff00ff;
            font-size: 12px;
            animation: rotate-diamond 4s linear infinite;
        }

        @keyframes rotate-diamond {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .footer-legal {
            display: flex;
            gap: 35px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: rgba(0, 255, 255, 0.7);
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }

        .footer-legal a::before {
            content: '[';
            position: absolute;
            left: -10px;
            opacity: 0;
            transition: all 0.3s;
            color: #ff00ff;
        }

        .footer-legal a::after {
            content: ']';
            position: absolute;
            right: -10px;
            opacity: 0;
            transition: all 0.3s;
            color: #ff00ff;
        }

        .footer-legal a:hover {
            color: #00ffff;
            text-shadow: 0 0 15px #00ffff;
            padding: 5px 15px;
        }

        .footer-legal a:hover::before,
        .footer-legal a:hover::after {
            opacity: 1;
        }

        .footer-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #00ffff;
            border-radius: 50%;
            box-shadow: 0 0 15px #00ffff;
            animation: particle-rise 15s infinite ease-in-out;
            pointer-events: none;
        }

        @keyframes particle-rise {
            0% { transform: translateY(100%) translateX(0) scale(0); opacity: 0; }
            10% { opacity: 1; }
            50% { transform: translateY(-50vh) translateX(50px) scale(1.5); }
            90% { opacity: 1; }
            100% { transform: translateY(-800px) translateX(0) scale(0); opacity: 0; }
        }

        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 80px 30px 40px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .footer-logo img {
                max-width: 150px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                flex-direction: column;
                gap: 20px;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-section h3::before {
                left: 0;
            }
        }    

/*--------------------------------------------------------------
  # INFOLINE
--------------------------------------------------------------*/
    .cyberSection {
        color: #0ff;
        font-family: 'Courier New', monospace;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        perspective: 1000px;
        margin-top: 190px; 
    }

    .neonCore {
        position: relative;
        width: 80%;
        max-width: 1200px;
        text-align: center;
        transform-style: preserve-3d;
        animation: orbitGlow 20s infinite linear;
    }

        @keyframes orbitGlow {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

  .cyberSection > h1 {
            font-size: 4em;
            text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #00f, 0 0 40px #00f;
            animation: pulseNeon 2s infinite alternate;
        }

        @keyframes pulseNeon {
            0% { text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
            100% { text-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 60px #00f; }
        }

        .cyberSection > p {
            font-size: 1.5em;
            text-shadow: 0 0 5px #0ff;
            animation: fadeInMatrix 3s ease-in-out;
        }

        @keyframes fadeInMatrix {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .holoSphere {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotateX(30deg);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0,255,255,0.2), transparent);
            border-radius: 50%;
            animation: holoPulse 5s infinite;
            box-shadow: 0 0 50px #0ff;
        }

        @keyframes holoPulse {
            0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1) rotateX(30deg); }
            50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2) rotateX(30deg); }
            100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1) rotateX(30deg); }
        }

        .quantumField {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .quantumBit {
            position: absolute;
            background: #0ff;
            border-radius: 50%;
            animation: quantumDrift 10s infinite linear;
        }

        @keyframes quantumDrift {
            0% { transform: translate(0, 0); opacity: 1; }
            100% { transform: translate(100vw, 100vh); opacity: 0; }
        }

        /* Contact Section Styles */
        .commPanel {
            width: 80%;
            max-width: 1200px;
            margin: 50px 0;
            padding: 40px;
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid #0ff;
            border-radius: 10px;
            box-shadow: 0 0 20px #0ff;
            animation: fadeInMatrix 2s ease-in-out;
            text-align: center;
        }

        .commPanel h2 {
            font-size: 2.5em;
            text-shadow: 0 0 10px #0ff;
            margin-bottom: 20px;
        }

        .transmitForm {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .transmitForm input,
        .transmitForm textarea {
            background: transparent;
            border: 1px solid #0ff;
            padding: 10px;
            color: #0ff;
            font-family: 'Courier New', monospace;
            font-size: 1em;
            border-radius: 5px;
            outline: none;
            transition: box-shadow 0.3s ease;
        }

        .transmitForm input:focus,
        .transmitForm textarea:focus {
            box-shadow: 0 0 10px #0ff, 0 0 20px #00f;
        }

        .transmitForm textarea {
            resize: vertical;
            min-height: 100px;
        }

        .transmitForm button {
            background: transparent;
            border: 1px solid #0ff;
            padding: 10px 20px;
            color: #0ff;
            font-family: 'Courier New', monospace;
            font-size: 1.2em;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .transmitForm button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(0,255,255,0.3), transparent);
            transform: translate(-50%, -50%) rotate(45deg);
            transition: all 0.5s ease;
            opacity: 0;
        }

        .transmitForm button:hover::before {
            opacity: 1;
            width: 100%;
            height: 100%;
        }

        .transmitForm button:hover {
            box-shadow: 0 0 20px #0ff, 0 0 30px #00f;
            transform: scale(1.05);
        }

    .cartes_cont {
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .features-grid {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1200px;
    }

    .feature-card {
        background-color: #333;
        color: #0ff;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        width: 30%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-card p {
        font-size: 1.2em;
        margin-top: 10px;
        line-height: 1.5;
    }

    .feature-card ul li{
        text-align: left;
    }

    .feature-card a {
        color: #0ff;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .feature-card a:hover {
        color: #fff;
    }

    .icons_c {
        font-size: 3em;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .icons_c:hover {
        transform: scale(1.2);
    }

    @media (max-width: 768px) {
        .feature-card {
            width: 100%;
        }

        .features-grid {
            flex-direction: column;
            gap: 10px;
        }

        .icons_c {
            font-size: 2.5em;
        }
    }

    @media (max-width: 480px) {
        .feature-card {
            padding: 15px;
        }

        .icons_c {
            font-size: 2em;
        }

        .feature-card p {
            font-size: 1em;
        }
    }




/*--------------------------------------------------------------
  # Project
--------------------------------------------------------------*/

.cyberSections {
    color: #0ff;
    font-family: 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    perspective: 1000px;
}


 .transmissionSection {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            padding: 50px;
            max-width: 1200px;
            width: 100%;
        }

        .imageContainer {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
            order: 1; /* Image on the left */
        }

        .transmissionImage {
            max-width: 100%;
            height: auto;
            border: 2px solid #0ff;
            border-radius: 10px;
            box-shadow: 0 0 20px #0ff;
            animation: fadeInMatrix 2s ease-in-out;
        }

        .textContainer {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            animation: fadeInMatrix 2s ease-in-out;
            order: 2; /* Text content on the right */
        }

        @keyframes fadeInMatrix {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .textContainer h2 {
            font-size: 2.5em;
            text-shadow: 0 0 10px #0ff, 0 0 20px #00f;
            margin: 0;
        }

        .textContainer p {
            font-size: 1.2em;
            text-shadow: 0 0 5px #0ff;
            line-height: 1.5;
        }

        .transmissionIcons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .iconBox {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid #0ff;
            padding: 10px 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px #0ff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .iconBox:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px #0ff, 0 0 30px #00f;
        }

        .iconBox svg {
            width: 30px;
            height: 30px;
            fill: none;
            stroke: #0ff;
            stroke-width: 2;
            filter: drop-shadow(0 0 5px #0ff);
        }

        .iconBox span {
            font-size: 1em;
            text-shadow: 0 0 5px #0ff;
        }

        .buttonSpace {
            margin-top: 20px;
        }

        .buttonSpace button {
            background: transparent;
            border: 1px solid #0ff;
            padding: 10px 20px;
            color: #0ff;
            font-family: 'Courier New', monospace;
            font-size: 1.2em;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .buttonSpace button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(0,255,255,0.3), transparent);
            transform: translate(-50%, -50%) rotate(45deg);
            transition: all 0.5s ease;
            opacity: 0;
        }

        .buttonSpace button:hover::before {
            opacity: 1;
            width: 100%;
            height: 100%;
        }

        .buttonSpace button:hover {
            box-shadow: 0 0 20px #0ff, 0 0 30px #00f;
            transform: scale(1.05);
        }