/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

* :focus {
    outline: none!important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0a0b0e;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 110, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 220, 232, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}
button {

    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; 
}
a:focus, button:focus{
    outline: none!important;
}


header {   
    transition: all 0.3s ease;
}
.brand-logo {
    background: linear-gradient(45deg, #fff, #fff, #fff);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -0.02em;
    animation: gradientShift 3s ease infinite;
}
header .bricks-nav-menu > li > a{
    transition: all 0.3s ease;
}
header .bricks-nav-menu > li > a:hover,header .bricks-nav-menu > li.menu-item-has-children .brx-submenu-toggle a:hover {
    color: #00d4ff!important;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    border-radius: 8px;
}
.btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-large {
    padding: 16px 30px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #0a0b0e;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-2px);
}
.btn-white {
    background: white;
    color: #0a0b0e;
    font-weight: 600;
}

.btn-white:hover {
    background: #f1f5f9;
}

.btn-small{
    padding: 10px 20px;
    font-size: 14px;
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.title-primary {
    display: block;
    background: linear-gradient(45deg, #00d4ff, #8cdd59);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-secondary {
    display: block;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-tertiary {
    display: block;
    color: #94a3b8;
    font-weight: 600;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(120, 119, 198, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.stat-number {
    background: linear-gradient(45deg, #00d4ff, #8cdd59);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feature-card{
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
}
.feature-card ul{
        padding-left: 10px;
        margin-top: 20px;
}
.feature-card .icon{
     font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
}
.feature-card .brxe-icon-box{
        align-items: center;
}
.proof-link {
    display: inline-block;
    margin-top: 20px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.proof-link:hover {
    color: #ff00ff;
    transform: translateX(4px);
}

.proof-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    transition: width 0.3s ease;
}

.proof-link:hover::after {
    width: 100%;
}
.logos-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.logos-wrapper::before,
.logos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logos-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(10, 11, 14, 1) 0%, transparent 100%);
}

.logos-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 11, 14, 1) 100%);
}

.logos-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-item {
    flex-shrink: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 60px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}
.process-flow .brxe-div:hover h4{
    opacity: 1!important;
}
/* Integration Hero - Unique Centered Design */
.integration-hero {
    padding: 180px 0 140px;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 11, 14, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(1deg); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.node-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1s; }
.node-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 2s; }
.node-4 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 3s; }

.floating-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-nodes .node {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
    animation: float 10s ease-in-out infinite;
}

.node-1 { top: 10%; left: 10%; animation-delay: 0s; }
.node-2 { top: 20%; right: 15%; animation-delay: 2s; }
.node-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
.node-4 { bottom: 20%; right: 10%; animation-delay: 6s; }


.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}
.insight-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 119, 198, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.insight-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.insight-card:hover::before {
    transform: scaleX(1);
}

.insight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.insight-category li {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(120, 119, 198, 0.2);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #00d4ff;
    margin-bottom: 15px;
    align-self: flex-start;
}

.insight-title {
    font-size: 22px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.insight-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.insight-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    color: #64748b;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.insight-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.insight-link:hover {
    color: #8cdd59 ;
    transform: translateX(4px);
}

.insights-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.hero-stats-bar{
    backdrop-filter: blur(10px);
}

.automation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(115deg, transparent 40%, rgba(46, 213, 115, 0.08) 50%, rgba(0, 212, 255, 0.1) 60%, rgba(139, 92, 246, 0.08) 70%, transparent 80%),
        linear-gradient(240deg, transparent 30%, rgba(34, 211, 238, 0.08) 45%, rgba(168, 85, 247, 0.1) 55%, rgba(59, 130, 246, 0.08) 65%, transparent 75%),
        linear-gradient(180deg, #0a0f1b 0%, rgba(15, 23, 42, 0.95) 40%, rgba(30, 41, 59, 0.9) 70%, #0a0f1b 100%);
    animation: aurora 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.hero-visual-box{
    backdrop-filter: blur(10px);
}
.automation-hero::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    background: 
        radial-gradient(ellipse at 25% 45%, rgba(34, 211, 238, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 75% 55%, rgba(168, 85, 247, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 30%, rgba(46, 213, 115, 0.06) 0%, transparent 50%);
    animation: aurora-rotate 20s linear infinite;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}
.workflow-item {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #cbd5e1;
    transition: all 0.3s 
ease;
    white-space: nowrap;
}

.workflow-item.ai-enhanced {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 255, 0.15));
    border-color: rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}
.efficiency-bar {
    margin-bottom: 24px;
    position: relative;
    width: 100%;
}

.bar-label {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}
.bar-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.bar-track {
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #8cdd59);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    line-height: 1;
    position: relative;
    min-width: 60px;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0 !important; }
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #8cdd59 100%);
    border-radius: 2px;
    transition: width 0.6s 
ease;
}

/* Benefits Wheel */


.benefits-wheel {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 20px auto;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(120, 119, 198, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}



.wheel-items {
    position: relative;
    width: 100%;
    height: 100%;
}

.wheel-item {
    position: absolute;
    width: 180px;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(var(--rotation)) translateX(250px) rotate(calc(-1 * var(--rotation)));

}

.item-content {
    background: rgba(15, 23, 42, 0.8);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(120, 119, 198, 0.2);
    transition: all 0.3s ease;
}

.item-content:hover {
    background: rgba(15, 23, 42, 0.95);
    border-color: #00d4ff;
    transform: scale(1.05);
}

.wheel-items .wheel-item:nth-child(1){
    --rotation: 0deg;
}
.wheel-item:nth-child(2){
    --rotation: 76deg;
}
.wheel-item:nth-child(3){
    --rotation: 144deg;
}

.wheel-item:nth-child(4){
    --rotation:216deg;
}

.wheel-item:nth-child(5){
    --rotation: 288deg;
}
.platform .platform-box{
    backdrop-filter: blur(10px);
}
.platform .platform-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s 
ease;
    pointer-events: none;
    z-index: 1;
}

.platform .platform-box:hover:before {
    opacity: 1;
}



@keyframes aurora {
    0%, 100% { 
        opacity: 0.6;
        transform: translateY(0) scale(1);
    }
    25% { 
        opacity: 0.8;
        transform: translateY(-20px) scale(1.05);
    }
    50% { 
        opacity: 0.7;
        transform: translateY(10px) scale(0.98);
    }
    75% { 
        opacity: 0.8;
        transform: translateY(-10px) scale(1.02);
    }
}

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


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logos-wrapper:hover .logos-track {
    animation-play-state: paused;
}

.automation-hero h1 span,.virsaic-hero h1 span, .platform-benefits h2 span,
.contact-hero h1 span,.cases-hero h1 span{
    background: linear-gradient(45deg, #00d4ff, #8cdd59);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
 .platform-benefits .brxe-text strong{
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
 }
 .benefit-icon-large {  
       display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.benefit-card{
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card-explosion,
.card-pulse,
.card-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card-explosion {
    background: radial-gradient(circle, rgba(255, 0, 128, 0.1), transparent);
    animation: explode 2s infinite ease-in-out;
}

.card-pulse {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    animation: pulsate 3s infinite ease-in-out;
}

.card-waves {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent);
    animation: wave 4s infinite ease-in-out;
}

.benefit-card:hover .card-explosion,
.benefit-card:hover .card-pulse,
.benefit-card:hover .card-waves {
    opacity: 1;
}
.center-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}


@keyframes explode {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
}

@keyframes pulsate {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

@keyframes wave {
    0%, 100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.15; }
    33% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.25; }
    66% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.2; }
}


@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.4; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.8; }
}

@keyframes diagonalMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(60px, 60px) rotate(360deg); }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.3; }
    25% { transform: translate(-10px, -15px) rotate(90deg) scale(1.05); opacity: 0.6; }
    50% { transform: translate(15px, -10px) rotate(180deg) scale(0.95); opacity: 0.8; }
    75% { transform: translate(-5px, 10px) rotate(270deg) scale(1.1); opacity: 0.5; }
}

@keyframes floatQuote {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.4; }
}


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

@keyframes float-2 {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(-30px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes float-3 {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes float-4 {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(-40px) rotate(270deg);
        opacity: 0;
    }
}

@keyframes float-5 {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    82% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(35px) rotate(-180deg);
        opacity: 0;
    }
}

@keyframes float-6 {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(-15px) rotate(90deg);
        opacity: 0;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent 0px, transparent 40px, rgba(0, 255, 255, 0.03) 42px, rgba(0, 255, 255, 0.03) 46px, transparent 48px, transparent 88px, rgba(0, 255, 255, 0.03) 90px, rgba(0, 255, 255, 0.03) 94px),
        repeating-linear-gradient(-45deg, transparent 0px, transparent 40px, rgba(255, 0, 128, 0.03) 42px, rgba(255, 0, 128, 0.03) 46px, transparent 48px, transparent 88px, rgba(255, 0, 128, 0.03) 90px, rgba(255, 0, 128, 0.03) 94px),
        radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 180px 180px, 180px 180px, 80px 80px, 80px 80px;
    animation: techFlow 25s linear infinite, techPulse 6s ease-in-out infinite alternate;
    pointer-events: none;
    opacity: 0.4;
}
footer a{
    transition: color 0.3s ease;
}
footer a:hover{
    color: #00d4ff!important;
}

/* Cosmic Hero Section Styles */
.cosmic-hero {
    position: relative;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(249, 5, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 95, 230, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #0a0b0e 0%, #1a1b2e 100%);
    overflow: hidden;
}

.cosmic-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(249, 5, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 40%, rgba(139, 95, 230, 0.03) 0%, transparent 50%);
    animation: cosmic-shift 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cosmic-shift {
    0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.6; transform: scale(1.1) rotate(2deg); }
}

.hero-cosmic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.energy-swirl {
    position: absolute;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg, 
        transparent,
        rgba(0, 212, 255, 0.2),
        rgba(139, 95, 230, 0.25),
        rgba(249, 5, 255, 0.2),
        transparent
    );
    animation: spin 15s linear infinite;
}

.swirl-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    left: -100px;
    animation-duration: 40s;
}

.swirl-2 {
    width: 400px;
    height: 400px;
    top: 100px;
    right: -100px;
    animation-duration: 35s;
    animation-direction: reverse;
}

.swirl-3 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: 20%;
    animation-duration: 45s;
}

.swirl-4 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 20%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.swirl-5 {
    width: 350px;
    height: 350px;
    bottom: 20%;
    right: -50px;
    animation-duration: 38s;
}

.hero-floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 212, 255, 0.8), 
        rgba(0, 212, 255, 0.4), 
        rgba(0, 212, 255, 0.1));
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.orb-1 { width: 12px; height: 12px; top: 15%; left: 10%; animation-delay: 0s; }
.orb-2 { width: 8px; height: 8px; top: 25%; left: 85%; animation-delay: 1s; }
.orb-3 { width: 15px; height: 15px; top: 45%; left: 5%; animation-delay: 2s; }
.orb-4 { width: 10px; height: 10px; top: 65%; left: 75%; animation-delay: 3s; }
.orb-5 { width: 6px; height: 6px; top: 35%; left: 45%; animation-delay: 4s; }
.orb-6 { width: 18px; height: 18px; top: 75%; left: 25%; animation-delay: 0.5s; 
    background: radial-gradient(circle at 30% 30%, 
        rgba(249, 5, 255, 0.8), 
        rgba(249, 5, 255, 0.4), 
        rgba(249, 5, 255, 0.1));
    box-shadow: 
        0 0 20px rgba(249, 5, 255, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}
.orb-7 { width: 14px; height: 14px; top: 20%; left: 60%; animation-delay: 1.5s; }
.orb-8 { width: 9px; height: 9px; top: 40%; left: 90%; animation-delay: 2.5s; }
.orb-9 { width: 11px; height: 11px; top: 80%; left: 60%; animation-delay: 3.5s; }
.orb-10 { width: 7px; height: 7px; top: 30%; left: 30%; animation-delay: 4.5s; }
.orb-11 { width: 13px; height: 13px; top: 10%; left: 40%; animation-delay: 5s; }
.orb-12 { width: 9px; height: 9px; top: 55%; left: 20%; animation-delay: 5.5s; }
.orb-13 { width: 16px; height: 16px; top: 85%; left: 45%; animation-delay: 6s; 
    background: radial-gradient(circle at 30% 30%, 
        rgba(139, 95, 230, 0.8), 
        rgba(139, 95, 230, 0.4), 
        rgba(139, 95, 230, 0.1));
    box-shadow: 
        0 0 20px rgba(139, 95, 230, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}
.orb-14 { width: 8px; height: 8px; top: 50%; left: 95%; animation-delay: 6.5s; }
.orb-15 { width: 12px; height: 12px; top: 70%; left: 5%; animation-delay: 7s; }
.orb-16 { width: 10px; height: 10px; top: 60%; left: 35%; animation-delay: 7.5s; }
.orb-17 { width: 14px; height: 14px; top: 90%; left: 80%; animation-delay: 8s; }
.orb-18 { width: 7px; height: 7px; top: 5%; left: 70%; animation-delay: 8.5s; }
.orb-19 { width: 11px; height: 11px; top: 40%; left: 15%; animation-delay: 9s; }
.orb-20 { width: 15px; height: 15px; top: 95%; left: 15%; animation-delay: 9.5s; 
    background: radial-gradient(circle at 30% 30%, 
        rgba(0, 212, 255, 0.9), 
        rgba(0, 212, 255, 0.5), 
        rgba(0, 212, 255, 0.1));
    box-shadow: 
        0 0 25px rgba(0, 212, 255, 0.7),
        inset 0 0 12px rgba(255, 255, 255, 0.3);
}

.hero-central-vortex {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 3;
}

.vortex-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid;
    transform-origin: center;
    animation: vortex-spin 8s linear infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-color: rgba(0, 212, 255, 0.4);
    animation-duration: 8s;
}

.ring-2 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    border-color: rgba(139, 95, 230, 0.3);
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    border-color: rgba(249, 5, 255, 0.3);
    animation-duration: 15s;
}

.ring-4 {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    border-color: rgba(0, 212, 255, 0.2);
    animation-duration: 20s;
    animation-direction: reverse;
}

.vortex-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(0, 212, 255, 0.8) 30%,
        rgba(139, 95, 230, 0.6) 60%,
        rgba(249, 5, 255, 0.4) 100%);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.8),
        0 0 60px rgba(139, 95, 230, 0.6),
        0 0 90px rgba(249, 5, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.hero-energy-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.energy-stream {
    stroke-dasharray: 15 8;
    animation: stream-flow 6s linear infinite;
}

.stream-1 { animation-delay: 0s; }
.stream-2 { animation-delay: 1.5s; }
.stream-3 { animation-delay: 3s; }
.stream-4 { animation-delay: 4.5s; }
.stream-5 { animation-delay: 6s; }

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 14, 0.3);
    z-index: 4;
    pointer-events: none;
}
.hero-container {
    position: relative;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 6;
}

/* Hero Content Grid Layout */
.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 240px;
    align-items: center;
    min-height: 600px;
}

.hero-main-content {
    position: relative;
    z-index: 6;
}

/* AI Pillars Section */
.hero-pillars {
    position: relative;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pillars-container {
    width: 100%;
    max-width: 500px;
    margin-top: 100px;
}

.pillar-title {
    text-align: center;
    margin-bottom: 30px;
}

.pillar-main-text {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.pillar-sub-text {
    background: linear-gradient(45deg, #00d4ff, #8cdd59, #FF8C00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* AI Pillars Layout */
.ai-pillars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 99;
    height: 320px;
    margin-bottom: 10px;
    gap: 40px;
    padding: 0 20px;
}

/* Individual Pillar Styles */
.ai-pillar {
    position: relative;
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.ai-pillar .pillar-label {
    pointer-events: auto;
}

.ai-pillar .pillar-structure,
.ai-pillar .pillar-crown,
.ai-pillar .pillar-foundation {
    pointer-events: none;
}

/* Pillar Foundation */
.pillar-foundation {
    position: absolute;
    bottom: 0;
    width: 90px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, 
        rgba(0, 212, 255, 0.3) 0%, 
        rgba(0, 212, 255, 0.1) 50%, 
        transparent 100%);
    animation: foundation-glow 4s ease-in-out infinite;
}

.foundation-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.8);
    animation: particle-float 3s ease-in-out infinite;
}

.foundation-particle.particle-1 { left: 20%; animation-delay: 0s; }
.foundation-particle.particle-2 { left: 50%; animation-delay: 1s; }
.foundation-particle.particle-3 { left: 80%; animation-delay: 2s; }

/* Pillar Structure */
.pillar-structure {
    position: relative;
    width: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.pillar-segment {
    width: 100%;
    height: 30px;
    margin-bottom: 2px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
}

.pillar-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.pillar-segment::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: segment-shine 2s ease-in-out infinite;
}

/* Pillar Colors */
.pillar-1 .pillar-segment {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.8) 0%, 
        rgba(0, 212, 255, 0.4) 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.pillar-1 .pillar-foundation {
    background: radial-gradient(ellipse at center, 
        rgba(0, 212, 255, 0.4) 0%, 
        rgba(0, 212, 255, 0.2) 50%, 
        transparent 100%);
}

.pillar-2 .pillar-segment {
    background: linear-gradient(135deg, 
        rgba(139, 95, 230, 0.8) 0%, 
        rgba(139, 95, 230, 0.4) 100%);
    box-shadow: 0 0 20px rgba(139, 95, 230, 0.3);
}

.pillar-2 .pillar-foundation {
    background: radial-gradient(ellipse at center, 
        rgba(139, 95, 230, 0.4) 0%, 
        rgba(139, 95, 230, 0.2) 50%, 
        transparent 100%);
}

.pillar-3 .pillar-segment {
    background: linear-gradient(135deg, 
        rgba(140, 221, 89, 0.8) 0%, 
        rgba(140, 221, 89, 0.4) 100%);
    box-shadow: 0 0 20px rgba(140, 221, 89, 0.3);
}

.pillar-3 .pillar-foundation {
    background: radial-gradient(ellipse at center, 
        rgba(140, 221, 89, 0.4) 0%, 
        rgba(140, 221, 89, 0.2) 50%, 
        transparent 100%);
}

/* Pillar Crown */
.pillar-crown {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    opacity: 0;
    transform: scale(0);
}

.crown-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    animation: crown-pulse 3s ease-in-out infinite;
}

.pillar-icon {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

/* Integration Pillars */
.integration-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pillar {
    text-align: center;
    padding: 40px 30px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(120, 119, 198, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-radius: 20px;
}

.pillar-icon svg {
    color: #00d4ff;
}

.pillar h3 {
    font-size: 24px;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.pillar p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pillar-stat {
    padding-top: 20px;
    border-top: 1px solid rgba(120, 119, 198, 0.2);
}

.stat-big {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-small {
    color: #64748b;
    font-size: 14px;
}

/* Pillar Labels */
.pillar-label {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
}

.pillar-number {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.pillar-name {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    cursor: pointer;
}

.pillar-name:hover {
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.pillar-label {
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.pillar-description {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    transition: all 0.3s ease;
}

/* Hover Effects for Entire Pillar */
.ai-pillar {
    transition: all 0.4s ease;
}

.ai-pillar:hover {
    transform: translateY(-5px);
}


.ai-pillar:hover .pillar-description {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.ai-pillar:hover .pillar-crown {
    transform: scale(1.1);
    animation: crown-glow-hover 0.5s ease-in-out infinite alternate;
}

.ai-pillar:hover .pillar-segment {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Pillar-specific hover glows */
.pillar-1:hover .pillar-segment {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.pillar-2:hover .pillar-segment {
    box-shadow: 0 0 30px rgba(139, 95, 230, 0.6);
}

.pillar-3:hover .pillar-segment {
    box-shadow: 0 0 30px rgba(140, 221, 89, 0.6);
}

/* Connection Lines */
.pillar-connections {
    position: absolute;
    bottom: 60px;
    left: 0;
    opacity: 0;
}

.connection-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.line-1 { width: 150px; top: 50%; left: 180px; transform: rotate(-20deg); }
.line-2 { width: 150px; top: 50%; left: 180px; transform: rotate(0deg); }
.line-3 { width: 150px; top: 50%; left: 180px; transform: rotate(20deg); }

/*.bricks-nav-menu>li a:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}*/
header .bricks-nav-menu li.menu-item-36 .sub-menu{
     min-width: 150px!important;
}
header .bricks-nav-menu>li>.sub-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%)!important;
    background: rgba(15, 23, 42, 0.95)!important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(120, 119, 198, 0.2);
    border-radius: 12px;
    padding: 30px;
    min-width: 600px;   
    transform: translateX(-50%) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    column-gap: 20px;
    left: 30px;
    
}

.brxe-nav-menu li a:focus{
    outline: none;
}
.sub-menu li .sub-menu{
    position: relative;
      left: 0px !important;
    visibility: visible;
    opacity: 1;
   background: transparent;
}
.brxe-nav-menu .icon-right button{
    display: none;
}
.brxe-nav-menu .sub-menu .sub-menu li a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
    padding-left: 12px;
    margin-left: -12px;
    line-height: 22px;
}
.brxe-nav-menu .sub-menu .sub-menu li a:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(8px);
}


.brxe-nav-menu .sub-menu .icon-right a{
    color: rgb(0, 212, 255);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    pointer-events:text;
    line-height: 1;
    padding: 0px;
}
.service-hero .hero-title  span{
    display: block;
    background: linear-gradient(45deg, #00d4ff, #8cdd59);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero .hero-graphic {
    animation: float 6s ease-in-out infinite;
}

/* Integration Process - Vertical Timeline */
.integration-process {
    position: relative;
}

.process-track {
    position: relative;
    padding: 0 40px;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    min-width: 2px;
    background: linear-gradient(180deg, #00d4ff, #ff00ff);
    opacity: 0.3;
}

.process-node {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-node:nth-child(even) {
    flex-direction: row-reverse;
}

.node-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.node-marker span {
    color: #0a0b0e;
    font-size: 24px;
    font-weight: 700;
}

.node-content {
    width: 45%;
    padding: 30px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(120, 119, 198, 0.2);
}

.process-node:nth-child(odd) .node-content {
    margin-right: auto;
}

.process-node:nth-child(even) .node-content {
    margin-left: auto;
}

.impact-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.impact-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(120, 119, 198, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-stat {
    text-align: center;
}

.circle-stat .big {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.circle-stat .small {
    color: #64748b;
    font-size: 14px;
}

.impact-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.impact-lines .line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transform-origin: left center;
}

.line-1 { width: 150px; top: 50%; left: 180px; transform: rotate(-20deg); }
.line-2 { width: 150px; top: 50%; left: 180px; transform: rotate(0deg); }
.line-3 { width: 150px; top: 50%; left: 180px; transform: rotate(20deg); }


.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00d4ff, #ff00ff);
    opacity: 0;
    transition: opacity 0.3s 
ease;
}
.benefit-item:hover::before {
    opacity: 1;
}
.virsaic-hero{
     background: 
        radial-gradient(ellipse at top, rgba(15, 23, 42, 0.9) 0%, #0a0f1b 70%),
        linear-gradient(180deg, #0a0f1b 0%, #1a1f2e 100%);
}

.virsaic-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(circle at 20% 40%, rgba(0, 212, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(255, 0, 255, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(100, 50, 255, 0.03) 0%, transparent 60%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

.insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.primary-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
}
.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.insight-card:hover::before {
    transform: scaleX(1);
}


@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  
   
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid rgba(100, 50, 255, 0.4);
    border-radius: 30px;
    animation: pulse-expand 2s ease-out infinite;
}
.power-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.power-pulse {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: powerSweep 2s ease-in-out infinite;
}

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

/* Interactive Workflow Cards */
.workflow-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.workflow-card {
    position: absolute;
    width: 120px;
    height: 140px;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    border: 2px solid rgba(100, 50, 255, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.workflow-card:hover {
    /*transform: translateY(-10px) scale(1.05);*/
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 212, 255, 0.3);
}

/* Success Metrics Display */
.metrics-display {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.metric-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 15px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: metricFloat 6s ease-in-out infinite;
}

.metric-1 {
    top: 20px;
    right: 80px;
    animation-delay: 0s;
}

.metric-2 {
    bottom: 20px;
    right: 20px;
    animation-delay: 2s;
}

.metric-3 {
    bottom: 80px;
    left: 20px;
    animation-delay: 4s;
}

@keyframes metricFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.metric-icon {
    font-size: 1.2rem;
}

.metric-value {
    font-size: 16px;
    font-weight: 800;
    color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #00d4ff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 8px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Network Lines SVG */
.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.network-svg {
    width: 100%;
    height: 100%;
}

/* Hover Effects for Different Card Types */
.card-engage:hover {
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 193, 7, 0.3);
}

.card-convert:hover {
    border-color: rgba(40, 167, 69, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(40, 167, 69, 0.3);
}

.card-prosper:hover {
    border-color: rgba(220, 53, 69, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(220, 53, 69, 0.3);
}

.card-navigate:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(139, 92, 246, 0.3);
}


.card-engage {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.card-convert {
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

.card-prosper {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.card-navigate {
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
}

.card-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
    animation: cardIconPulse 3s ease-in-out infinite;
}

@keyframes cardIconPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.card-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #00d4ff;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.card-description {
    font-size: 10px;
    color: #94a3b8;
    text-align: center;
    line-height: 1.3;
}

/* Connection Beams */
.connection-beam {
    position: absolute;
    width: 2px;
    background: linear-gradient(45deg, transparent, #00d4ff, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-card:hover .connection-beam {
    opacity: 1;
    animation: beamPulse 1.5s ease-in-out infinite;
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.beam-1 {
    bottom: -70px;
    left: 50%;
    height: 70px;
    transform: translateX(-50%);
}

.beam-2 {
    top: 50%;
    left: -70px;
    width: 70px;
    height: 2px;
    transform: translateY(-50%) rotate(90deg);
}

.beam-3 {
    top: -70px;
    left: 50%;
    height: 70px;
    transform: translateX(-50%);
}

.beam-4 {
    top: 50%;
    right: -70px;
    width: 70px;
    height: 2px;
    transform: translateY(-50%) rotate(90deg);
}

/* Platform Visualization */
.platform-visualization {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.platform-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.virsaic-hero .core-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.3;
}

.virsaic-hero .ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 212, 255, 0.5);
    animation: pulse-expand 4s ease-out infinite;
}

.virsaic-hero .ring-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-color: rgba(139, 92, 246, 0.4);
    animation: pulse-expand 4s ease-out infinite 1.3s;
}

.virsaic-hero .ring-3 {
    width: 180%;
    height: 180%;
    top: -40%;
    left: -40%;
    border-color: rgba(255, 0, 255, 0.3);
    animation: pulse-expand 4s ease-out infinite 2.6s;
}

.virsaic-hero .core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #ff00ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.6);
}
.core-center span {
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.platform-connections {
    position: absolute;
    width: 100%;
    height: 100%;
}

.connection-node {
    position: absolute;
    width: 60px;
    height: 60px;
}

.node-1 { top: 20%; left: 10%; }
.node-2 { top: 20%; right: 10%; }
.node-3 { bottom: 20%; left: 10%; }
.node-4 { bottom: 20%; right: 10%; }

.node-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #00d4ff, #8b5cf6);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.node-line {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    top: 50%;
    transform-origin: left center;
}

.node-1 .node-line { transform: rotate(45deg); }
.node-2 .node-line { transform: rotate(135deg); left: auto; right: 60px; transform-origin: right center; }
.node-3 .node-line { transform: rotate(-45deg); }
.node-4 .node-line { transform: rotate(-135deg); left: auto; right: 60px; transform-origin: right center; }

.connection-node::after {
    content: attr(data-label);
    position: absolute;
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
}

.node-1::after { top: -25px; left: 50%; transform: translateX(-50%); }
.node-2::after { top: -25px; left: 50%; transform: translateX(-50%); }
.node-3::after { bottom: -25px; left: 50%; transform: translateX(-50%); }
.node-4::after { bottom: -25px; left: 50%; transform: translateX(-50%); }

.why-virsaic .pillar-icon{
        margin-left: 0;
}

.capability-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #8b5cf6, #ff00ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.capability-card:hover::before {
    transform: scaleX(1);
}
.why-virsaic .pillar-icon, .platform .pillar-icon{
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.workflow-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    border-radius: 3px 0 0 3px;
    transition: background 0.3s ease;
}

.workflow-step:hover {
    background: rgba(139, 92, 246, 0.05)!important;
    border-color: rgba(139, 92, 246, 0.3)!important;
}

.workflow-step:hover::before {
    background: linear-gradient(180deg, #00d4ff, #8b5cf6);
}

.workflow-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-diagram {
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.flow-path {
    animation: dash 3s linear infinite;
    stroke-dasharray: 5, 10;
}

.flow-node {
    animation: pulse 2s ease-in-out infinite;
}

.feature-content li {
    padding: 12px 0;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-content li::before {
    content: '→';
    color: #8b5cf6;
    font-weight: bold;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-shield {
    position: relative;
    color: #8b5cf6;
  /*  animation: float 6s ease-in-out infinite;*/
}

.security-shield svg {
    width: 180px;
    height: 180px;
}

.integration-nodes {
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.integration-nodes .node-grid {
    display: grid;
    grid-template-columns: repeat(3, 48px);
    grid-template-rows: repeat(3, 48px);
    gap: 24px;
}

.grid-node {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.grid-node.active {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.grid-node.center {
    background: linear-gradient(135deg, #00d4ff, #8b5cf6);
    border: none;
}

.monitoring-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
    height: 225px;
    width: 375px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
}

.monitoring-chart::before {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.chart-bar {
    width: 45px;
    height: 0;
    background: linear-gradient(180deg, #8b5cf6 0%, rgba(139, 92, 246, 0.3) 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    animation: growBar 1.5s ease-out forwards;
    animation-delay: calc(var(--index, 0) * 0.15s);
}

@keyframes growBar {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: var(--height, 60%);
        opacity: 1;
    }
}

.chart-bar:hover {
    transform: scaleY(1.1);
    background: linear-gradient(180deg, #00d4ff 0%, rgba(0, 212, 255, 0.3) 100%);
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #8b5cf6;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover::after {
    opacity: 1;
}

/* Page Hero */
.page-hero {
    background: 
        radial-gradient(ellipse at top, rgba(15, 23, 42, 0.9) 0%, #0a0f1b 70%),
        linear-gradient(180deg, #0a0f1b 0%, #1a1f2e 100%);
    text-align: center;
}

/* Platform Visualization */
.platform-visualization {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.platform-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.platform-visualization .core-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    opacity: 0.3;
}

.platform-visualization .ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 212, 255, 0.5);
    animation: pulse-expand 4s ease-out infinite;
}

.platform-visualization .ring-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-color: rgba(139, 92, 246, 0.4);
    animation: pulse-expand 4s ease-out infinite 1.3s;
}

.platform-visualization .ring-3 {
    width: 180%;
    height: 180%;
    top: -40%;
    left: -40%;
    border-color: rgba(255, 0, 255, 0.3);
    animation: pulse-expand 4s ease-out infinite 2.6s;
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #ff00ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.6);
}

.core-center span {
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.platform-connections {
    position: absolute;
    width: 100%;
    height: 100%;
}

.connection-node {
    position: absolute;
    width: 60px;
    height: 60px;
}

/* Agency Hub Platform Visualization */
.agency-hub {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

.hub-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}


/* Central Command Center */
.command-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: 
        radial-gradient(circle at center, rgba(0, 212, 255, 0.2) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
    border: 3px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    animation: centralPulse 4s ease-in-out infinite;
    z-index: 10;
}
    



@keyframes centralPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 40px rgba(0, 212, 255, 0.3),
            inset 0 0 30px rgba(0, 212, 255, 0.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 
            0 0 60px rgba(0, 212, 255, 0.5),
            inset 0 0 40px rgba(0, 212, 255, 0.2);
    }
}

.center-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    border-radius: 50%;
    animation: glowRotate 8s linear infinite;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.center-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.brand-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    animation: slideGlow 3s infinite;
}

@keyframes slideGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.platform-benefits {
    position: relative;   
    background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.08) 0%, transparent 60%), radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.06) 0%, transparent 60%), linear-gradient(180deg, #0a0f1b 0%, #1a1f2e 100%);
    overflow: hidden;
}

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

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 10%;
    animation-delay: 15s;
}

.metric-orbits {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    animation: rotate 30s linear infinite reverse;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.metric-satellite {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 15px 20px;
    text-align: center;
    min-width: 100px;
}

.metric-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.metric-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.featured-article .post-categories{
    display: flex;
    column-gap: 15px;
}

.article-tags {
    display: flex
;
    gap: 10px;
    margin-bottom: 30px;
}
 .post-categories li{
        list-style-type: none;
}
.article-tags .tag{
    font-size: 0;
    display: flex;
    column-gap: 5px;
    flex-wrap: wrap;
    row-gap: 5px;
}
.article-tags .tag a {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    pointer-events: none;
}
.featured-article h2{
      font-size: 32px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 20px;
    line-height: 1.3;
}
.feature-list .btn {
    padding: 12px 24px;
}
.meta-date, .meta-read-time {
    color: #64748b;
}
.feature-list .insight-title{
    font-size: 32px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 20px;
    line-height: 1.3;
}
.feature-list .meta-category {
    color: #00d4ff;
    font-weight: 600;
}
.featured-article p{
     font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 25px;
}
.subscribe-box .sub-form {
   display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 20px;
 
}
.subscribe-box input[type="email"] {
    padding: 5px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px!important;
    color: #e2e8f0;
    font-size: 16px;
    border-radius: 0px;
    appearance: none;
       width: 354px;  
    text-align: left;
}
.subscribe-box input[type=submit] {
    padding: 12px 24px;
    border-radius: 8px!important;
      font-weight: 600;
      height: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
   background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #0a0b0e;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    border-radius: 0px;
    appearance: none;
}
.subscribe-box .wpcf7-spinner{
    position: absolute;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
        border-color: #00d4ff!important;
        border-radius: 5px;
}

.article-hero { 
    background: radial-gradient(ellipse at top, rgba(15, 23, 42, 0.9) 0%, #0a0f1b 70%), linear-gradient(180deg, #0a0f1b 0%, #1a1f2e 100%);
}
.article-content{
  line-height: 1.8;
    font-size: 16px;
}

.article-content p{
    margin-bottom: 20px;
    color: #cbd5e1;
}
.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #e2e8f0;
    margin: 60px 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
}
.article-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #e2e8f0;
    margin: 40px 0 20px;
}
.article-content h4,.article-content h5{
    margin-bottom: 20px;
}
.article-content .brxe-accordion{
    padding-left: 0px;
}

.article-content  ul,.article-content ol{
    padding-left: 20px;
    margin-bottom: 20px;
}
.article-content li{
    margin-bottom: 10px;
    color: #cbd5e1;
}
.article-content .brxe-post-sharing{
    margin-bottom: 0px!important;
} 
.article-hero .categories{
    flex-wrap: wrap;
}


.article-hero .categories a {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}
.artical-tags{
    font-size: 0px;
}
.artical-tags .brxe-text-basic{
        flex-wrap: wrap;
    display: flex;
    row-gap: 10px;
    column-gap: 5px;
}
.artical-tags a{
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}
.article-content a{
    text-decoration: underline;
     text-underline-offset: 2px;
}
.article-content .brxe-post-sharing ul, .article-content .brxe-post-sharing li{
    margin-bottom: 0px;
}
.brxe-post-comments .form-group label{
    color: #fff;
}
.brxe-post-comments .form-submit .bricks-button{
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #0a0b0e;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    border-radius: 8px;
     padding: 12px 22px;
}
.article-content  hr {

}
.article-hero .brxe-breadcrumbs a{
        color: #00d4ff;
        text-decoration: none;
}
.brxe-post-comments .input, .brxe-post-comments input:not([type=submit]),.brxe-post-comments select, .brxe-post-comments textarea{
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 16px;
}

.four-block {
    display: flex;
    padding: 0 !important;
    column-gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
}
.four-block li{
    list-style-type: none;
    text-align: center;
}
.four-block li img{
    display: block;
}
.category-top h1{
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #00d4ff, #8b5cf6, #8cdd59);
    margin-bottom: 30px;
    max-width: 800px;

}

.category-top p{
    font-size: 20px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 750px;
}


/* Contact Animation */
.connection-animation {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}
.form-blok .wpcf7-form{
        display: flex;
        flex-wrap: wrap;
        column-gap: 10px;
            row-gap: 30px;
        justify-content: space-between;
       
}
.form-blok .wpcf7-form div{
     width:48%;
     position: relative;
}
.form-blok .wpcf7-form div.full-width{
    width: 100%;
}
.form-blok input, .form-blok select, .form-blok textarea {
    background: rgba(10, 11, 14, 0.8);
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 8px;
    padding: 1px 16px;
    color: #e2e8f0;
    font-size: 16px;
    transition: all 0.3s ease;
}
.form-blok label {
    position: absolute!important;
    left: 16px;
    top:10px;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
        z-index: 99;
}
.form-blok input:focus + label,
.form-blok textarea:focus + label
 {
    top: -15px!important;
    left: 12px!important;
    font-size: 12px!important;
    color: #00d4ff!important;
    background: rgba(15, 23, 42, 0.9)!important;
    padding: 2px 8px!important;
    border-radius: 4px!important;
}

.form-blok .wpcf7-form-control-wrap {
    position: inherit;
}
.form-blok textarea {
    resize: vertical;
    height: 120px;
    padding: 20px 16px;
}


.form-blok input:focus,
.form-blok select:focus,
.form-blok textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.form-blok .wpcf7-submit {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #0a0b0e;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.form-blok .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}
.contact-right .brxe-icon-box{
  align-items: center;  
}
.contact-right .brxe-icon-box .icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex
;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 12px;
}
.contact-right .brxe-text p strong{
    color: #fff;
    font-size: 16px;
}
.contact-right .brxe-text p{
    margin-bottom: 18px;
}
.contact-right .brxe-text p:last-child{
    margin-bottom: 0px;
}

.contact-right .prominse .brxe-icon-box .icon{
    background: none!important;
}
.action-list{
    display: block;
}
.action-list .brxe-icon-box .icon{
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex
;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 8px;
    flex-shrink: 0;
}

.form-blok select{
   background-image: url(images/down-arrow.png);
   background-repeat: no-repeat;
   background-position: right 10px center;
}
.form-blok .wpcf7-form .wpcf7-response-output{
    width: 100%!important;
}
.faq-accordion .accordion-title{
    width: 100%;
}
.faq-accordion .accordion-item {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s 
ease;
}
.faq-accordion .accordion-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.1);
}
 .faq-accordion .accordion-content-wrapper {
    padding: 0 30px 30px;
    animation: fadeInDown 0.3s ease;
}
.faq-accordion .accordion-title-wrapper {
    padding: 25px 30px;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(30, 41, 59, 0.2);
    transition: background 0.3s 
ease;
}
.faq-accordion .icon  {
    font-size: 24px;
    font-weight: bold;
    color: #00d4ff;
    transition: transform 0.3s 
ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
}

.whitepaper-highlights li {
    padding: 8px 0;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex
;
    align-items: center;
    gap: 12px;
}
.whitepaper-highlights li::before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    width: 16px;
    text-align: center;
}
.whitepaper-highlights li:last-child {
    border-bottom: none;
}
.whitepaper-icon .icon{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    flex-shrink: 0;
    position: relative;
}
.whitepaper-hero {   
    background: radial-gradient(ellipse at top, rgba(15, 23, 42, 0.9) 0%, #0a0f1b 70%), linear-gradient(180deg, #0a0f1b 0%, #1a1f2e 100%);
}
.document-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    position: relative;
}
.form-blok .download-form input, .form-blok .download-form select{
    font-size: 14px;
    color: #fff;
       
}
.download-form input::placeholder{
    color:#64748b

}
.whitepaper-overview .prominse h4{
    margin-bottom: 15px;
}

.toc-chapter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.toc-chapter li {
    padding: 8px 0;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.toc-chapter li:last-child {
    border-bottom: none;
}

.real-world .icon{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
    flex-shrink: 0;
}
.authors-sec .brxe-icon-box h4{
    margin-bottom: 5px;
}
.cases-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(34, 211, 238, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.cases-filter .tab-menu {
    padding: 60px 0 40px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.cases-filter .tab-content{
  
    background: rgba(10, 11, 14, 0.9);
}
.cases-filter .tab-pane{
    max-width: 1160px;
    margin: 0 auto;
}
.cases-filter .tab-title{
    transition: all 0.3s ease;
}
.cases-filter .tab-title:hover {
    border-color: rgba(0, 212, 255, 0.5);
    color: #00d4ff!important;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.cases-filter .tab-menu .brx-open {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #0a0b0e!important;
    border-color: #00d4ff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}
.cases-box {
    backdrop-filter: blur(10px);
    opacity: 1;
    position: relative;
        overflow: hidden;
}
.cases-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.cases-box .brxe-text p{
    margin-bottom: 24px;
}
.cases-box .brxe-icon-box h4{
    margin-bottom:3px;
}
.cases-box .brxe-text ul{
    padding-left: 20px;
    margin-bottom: 24px;
}

.cases-box .brxe-icon-box .icon{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
}
.wpcf7 form .wpcf7-response-output{
    font-size: 14px;
    text-align: center;
}

.benefits-intro {
    position: sticky;
    top: 100px;
}




@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}



@keyframes pulse-expand {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: -15;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Animation Keyframes */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes vortex-spin {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    to { transform: rotate(360deg) scale(1); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.8),
            0 0 60px rgba(139, 95, 230, 0.6),
            0 0 90px rgba(249, 5, 255, 0.4);
    }
    50% { 
        transform: scale(1.3);
        box-shadow: 
            0 0 40px rgba(0, 212, 255, 1),
            0 0 80px rgba(139, 95, 230, 0.8),
            0 0 120px rgba(249, 5, 255, 0.6);
    }
}

@keyframes stream-flow {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -30; }
}

/* Pillar Animation Keyframes */
@keyframes foundation-glow {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-10px) scale(1.2); 
        opacity: 1; 
    }
}

@keyframes segment-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes crown-pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.6; 
    }
}

/* Pillar Building Animation Sequence */
.ai-pillar {
    animation: pillar-reveal 1.5s ease-out forwards;
}

.pillar-1 { animation-delay: 1s; }
.pillar-2 { animation-delay: 3s; }
.pillar-3 { animation-delay: 5s; }

@keyframes pillar-reveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Segment Building Animation */
.pillar-1 .segment-1 { animation: segment-build 0.8s ease-out 2s forwards; }
.pillar-1 .segment-2 { animation: segment-build 0.8s ease-out 2.6s forwards; }
.pillar-1 .segment-3 { animation: segment-build 0.8s ease-out 3.2s forwards; }

.pillar-2 .segment-1 { animation: segment-build 0.8s ease-out 4s forwards; }
.pillar-2 .segment-2 { animation: segment-build 0.8s ease-out 4.6s forwards; }
.pillar-2 .segment-3 { animation: segment-build 0.8s ease-out 5.2s forwards; }
.pillar-2 .segment-4 { animation: segment-build 0.8s ease-out 5.8s forwards; }

.pillar-3 .segment-1 { animation: segment-build 0.8s ease-out 6s forwards; }
.pillar-3 .segment-2 { animation: segment-build 0.8s ease-out 6.6s forwards; }
.pillar-3 .segment-3 { animation: segment-build 0.8s ease-out 7.2s forwards; }
.pillar-3 .segment-4 { animation: segment-build 0.8s ease-out 7.8s forwards; }
.pillar-3 .segment-5 { animation: segment-build 0.8s ease-out 8.4s forwards; }

@keyframes segment-build {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.8); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* Crown Animation */
.pillar-1 .pillar-crown { animation: crown-appear 1s ease-out 3.8s forwards; }
.pillar-2 .pillar-crown { animation: crown-appear 1s ease-out 6.4s forwards; }
.pillar-3 .pillar-crown { animation: crown-appear 1s ease-out 9s forwards; }

@keyframes crown-appear {
    0% { 
        opacity: 0; 
        transform: scale(0) rotate(-180deg); 
    }
    70% { 
        opacity: 1; 
        transform: scale(1.2) rotate(-10deg); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
}

/* Label Animation */
.pillar-1 .pillar-label { animation: label-appear 0.8s ease-out 4.5s forwards; }
.pillar-2 .pillar-label { animation: label-appear 0.8s ease-out 7.1s forwards; }
.pillar-3 .pillar-label { animation: label-appear 0.8s ease-out 9.7s forwards; }

@keyframes label-appear {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Connection Lines Animation */
.pillar-connections { animation: connections-appear 1.2s ease-out 10.5s forwards; }
.connection-line.line-1 { animation: line-draw 2s ease-out 11s forwards; }
.connection-line.line-2 { animation: line-draw 2s ease-out 11.5s forwards; }


@keyframes connections-appear {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes line-draw {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0; }
}

/* Matrix/Digital Rain Animations */
@keyframes matrix-decode {
    0% { 
        opacity: 0; 
        transform: translateY(-20px); 
        content: attr(data-random);
    }
    20% { 
        opacity: 0.3; 
        transform: translateY(-10px); 
    }
    40% { 
        opacity: 0.6; 
        transform: translateY(-5px); 
    }
    60% { 
        opacity: 0.8; 
        transform: translateY(-2px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes matrix-glitch {
    0%, 100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
    25% { 
        opacity: 0.7; 
        transform: translateX(-1px); 
    }
    50% { 
        opacity: 1; 
        transform: translateX(1px); 
    }
    75% { 
        opacity: 0.8; 
        transform: translateX(-0.5px); 
    }
}

@keyframes binary-appear {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 0.6; 
        transform: translateY(0); 
    }
}

@keyframes binary-scroll {
    0% { transform: translateX(0); }
    50% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

@keyframes crown-glow-hover {
    from { 
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); 
    }
    to { 
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)); 
    }
}


/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes moveGrid {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

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

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    100% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.6); }
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes dash {
    to { stroke-dashoffset: -15; }
}

@keyframes techBackgroundShift {
    0% { background-position: 0% 0%, 0px 0px, 0px 0px; }
    33% { background-position: 50% 25%, 50px 25px, 25px 50px; }
    66% { background-position: 75% 75%, 100px 50px, 50px 100px; }
    100% { background-position: 100% 100%, 0px 0px, 0px 0px; }
}

@keyframes circuitFlow {
    0% { background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px; }
    25% { background-position: 50px 25px, 25px 50px, 10px 10px, 15px 15px; }
    50% { background-position: 100px 50px, 50px 100px, 20px 20px, 30px 30px; }
    75% { background-position: 150px 75px, 75px 150px, 30px 30px, 45px 45px; }
    100% { background-position: 200px 100px, 100px 200px, 40px 40px, 60px 60px; }
}

@keyframes dataPoints {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes techFlow {
    0% { background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px; }
    25% { background-position: 45px 45px, -45px 45px, 20px 20px, 60px 60px; }
    50% { background-position: 90px 90px, -90px 90px, 40px 40px, 120px 120px; }
    75% { background-position: 135px 135px, -135px 135px, 60px 60px, 180px 180px; }
    100% { background-position: 180px 180px, -180px 180px, 80px 80px, 240px 240px; }
}

@keyframes techPulse {
    0% { opacity: 0.2; }
    100% { opacity: 0.6; }
}

@keyframes dataFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -30; }
}

@keyframes nodePulse {
    0%, 100% { 
        opacity: 0.6; 
        r: 3; 
    }
    50% { 
        opacity: 1; 
        r: 6; 
    }
}

@keyframes particleFlow1 {
    0% { 
        opacity: 0; 
        cx: 50; 
        cy: 50; 
    }
    10% { 
        opacity: 1; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        opacity: 0; 
        cx: 450; 
        cy: 50; 
    }
}

@keyframes particleFlow2 {
    0% { 
        opacity: 0; 
        cx: 50; 
        cy: 100; 
    }
    10% { 
        opacity: 1; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        opacity: 0; 
        cx: 450; 
        cy: 100; 
    }
}

@keyframes particleFlow3 {
    0% { 
        opacity: 0; 
        cx: 50; 
        cy: 150; 
    }
    10% { 
        opacity: 1; 
    }
    30% { 
        cx: 150; 
        cy: 125; 
    }
    50% { 
        cx: 250; 
        cy: 150; 
    }
    70% { 
        cx: 350; 
        cy: 175; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        opacity: 0; 
        cx: 450; 
        cy: 150; 
    }
}

@keyframes particleFlow4 {
    0% { 
        opacity: 0; 
        cx: 50; 
        cy: 200; 
    }
    10% { 
        opacity: 1; 
    }
    25% { 
        cx: 200; 
        cy: 200; 
    }
    35% { 
        cx: 200; 
        cy: 250; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        opacity: 0; 
        cx: 450; 
        cy: 250; 
    }
}

@keyframes particleFlow5 {
    0% { 
        opacity: 0; 
        cx: 50; 
        cy: 300; 
    }
    10% { 
        opacity: 1; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        opacity: 0; 
        cx: 450; 
        cy: 300; 
    }
}

@keyframes particleFlow6 {
    0% { 
        opacity: 0; 
        cx: 50; 
        cy: 350; 
    }
    10% { 
        opacity: 1; 
    }
    20% { 
        cx: 150; 
        cy: 350; 
    }
    25% { 
        cx: 150; 
        cy: 320; 
    }
    65% { 
        cx: 350; 
        cy: 320; 
    }
    70% { 
        cx: 350; 
        cy: 350; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        opacity: 0; 
        cx: 450; 
        cy: 350; 
    }
}


@keyframes float {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(50px) translateY(-20px); }
    66% { transform: translateX(-30px) translateY(20px); }
}