body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e0e0e0;
    overflow-x: hidden;
}
.windows-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.windows-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}
.windows-button:hover::before {
    left: 100%;
}
.windows-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 120, 212, 0.4);
}
.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.card-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 120, 212, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.card-hover:hover::after {
    opacity: 1;
}
.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 120, 212, 0.3);
}
.floating {
    animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
.typing {
    overflow: hidden;
    border-right: .15em solid #0078d4;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 4s steps(60, end), blink-caret 1s step-end infinite;
}
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #0078d4 }
}
.progress-bar {
    height: 6px;
    background: rgba(0, 120, 212, 0.3);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0078d4, #00bfff);
    width: 0%;
    transition: width 1.5s ease;
    position: relative;
}
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 50%,
        transparent 100%
    );
    background-size: 40px 100%;
    animation: progress-animation 2s linear infinite;
}
@keyframes progress-animation {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}
.menu-item {
    transition: all 0.3s ease;
    position: relative;
}
.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0078d4;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.menu-item:hover::after {
    width: 70%;
}
.menu-item:hover {
    background: rgba(0, 120, 212, 0.15);
    transform: translateX(8px);
    color: #00bfff;
}
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2.5s infinite;
    cursor: pointer;
    border: 3px solid white;
}
@keyframes pulse {
    0% { transform: scale(1) rotate(0deg); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.1) rotate(5deg); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(37, 211, 102, 0.6); }
    100% { transform: scale(1) rotate(0deg); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 211, 102, 0.4); }
}
.whatsapp-float:hover {
    transform: scale(1.2) rotate(10deg) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 40px rgba(37, 211, 102, 0.8);
}
.testimony-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.testimony-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0078d4, #00bfff);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}
.testimony-card:hover::before {
    transform: scaleY(1);
}
.testimony-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 120, 212, 0.35);
}
.tech-icon {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}
.tech-icon:hover {
    transform: scale(1.2) rotate(10deg) translateY(-5px);
    filter: drop-shadow(0 10px 15px rgba(0, 120, 212, 0.4));
}
.comparison-row {
    transition: all 0.3s ease;
    position: relative;
}
.comparison-row:hover {
    background: rgba(0, 120, 212, 0.15);
    transform: translateX(10px);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
.comparison-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to right, #0078d4, #00bfff);
    opacity: 0;
    transition: opacity 0.3s;
}
.comparison-row:hover::before {
    opacity: 1;
}
.faq-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 120, 212, 0.2);
}
.faq-item.active {
    background: rgba(0, 120, 212, 0.1);
    border-left: 4px solid #0078d4;
    box-shadow: 0 10px 30px rgba(0, 120, 212, 0.2);
    transform: scale(1.02);
}
.specs-grid {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
    border-radius: 16px;
    padding: 2px;
    position: relative;
    overflow: hidden;
}
.specs-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(145deg, #0078d4, #00bfff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.specs-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.floating-element {
    animation: floatAnimation 6s ease-in-out infinite;
}
@keyframes floatAnimation {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
.glow-effect {
    box-shadow: 0 0 20px rgba(0, 120, 212, 0.6);
    transition: box-shadow 0.3s ease;
}
.glow-effect:hover {
    box-shadow: 0 0 30px rgba(0, 120, 212, 0.8), 0 0 40px rgba(0, 187, 255, 0.6);
}
.stagger-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.stagger-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.parallax-bg {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    overflow: hidden;
    position: relative;
}
.animated-gradient {
    background: linear-gradient(-45deg, #0f3460, #16213e, #1a1a2e, #0f3460);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.holographic-effect {
    position: relative;
}
.holographic-effect::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #0078d4, #00bfff, #8a2be2, #0078d4);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 16px;
    animation: gradientShift 8s ease infinite;
    opacity: 0.6;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 120, 212, 0.5);
    border-radius: 50%;
    animation: pulseRing 2s linear infinite;
    opacity: 0;
}
@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}
.interactive-demo {
    cursor: pointer;
    transition: all 0.3s ease;
}
.interactive-demo:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 120, 212, 0.3);
}
.live-counter {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 120, 212, 0.3);
    border-radius: 12px;
    padding: 12px;
    font-weight: bold;
    color: #00bfff;
    text-shadow: 0 0 5px rgba(0, 187, 255, 0.5);
}
.floating-chat {
    position: fixed;
    bottom: 120px;
    right: 40px;
    width: 350px;
    height: 450px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 120, 212, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
    overflow: hidden;
    display: none;
    animation: slideIn 0.5s ease-out;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.floating-chat-header {
    background: linear-gradient(90deg, #0f3460, #16213e);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 120, 212, 0.3);
}
.floating-chat-body {
    height: 350px;
    overflow-y: auto;
    padding: 15px;
}
.floating-chat-footer {
    padding: 15px;
    border-top: 1px solid rgba(0, 120, 212, 0.3);
}
.chat-message {
    margin-bottom: 15px;
    max-width: 80%;
}
.chat-message.assistant {
    margin-left: auto;
    background: rgba(0, 120, 212, 0.2);
    padding: 10px 15px;
    border-radius: 18px 18px 0 18px;
    color: #e0e0e0;
}
.chat-message.user {
    margin-right: auto;
    background: rgba(0, 187, 255, 0.2);
    padding: 10px 15px;
    border-radius: 18px 18px 18px 0;
    color: #e0e0e0;
}
.chat-input {
    display: flex;
    gap: 10px;
}
.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(0, 120, 212, 0.3);
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    outline: none;
}
.chat-input button {
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s;
}
.chat-input button:hover {
    background: #005a9e;
}
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff3b30;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulseNotification 2s infinite;
}
@keyframes pulseNotification {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.video-popup.open {
    opacity: 1;
    visibility: visible;
}
.video-container {
    position: relative;
    width: 80%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.video-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}
.video-close:hover {
    background: rgba(255, 0, 0, 0.7);
    transform: rotate(90deg);
}
.form-floating {
    position: relative;
    margin-bottom: 20px;
}
.form-floating input,
.form-floating textarea,
.form-floating select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 120, 212, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}
.form-floating input:focus,
.form-floating textarea:focus,
.form-floating select:focus {
    outline: none;
    border-color: #0078d4;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.2);
}
.form-floating label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    pointer-events: none;
}
.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:focus ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label,
.form-floating select:focus ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: #1a1a2e;
    padding: 0 5px;
    color: #0078d4;
}
.submit-button {
    background: linear-gradient(90deg, #0078d4, #00bfff);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 120, 212, 0.3);
}
.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 120, 212, 0.4);
}
.submit-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}
.submit-button:hover::after {
    left: 100%;
}
.particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}
.testimonial-slide {
    transition: transform 0.5s ease;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.carousel-control {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.carousel-control:hover {
    background: rgba(0, 120, 212, 0.8);
    transform: scale(1.1);
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}
.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.carousel-indicator.active {
    background: #0078d4;
    transform: scale(1.2);
}
.live-demo-button {
    position: relative;
    overflow: hidden;
    border: 2px solid #0078d4;
    border-radius: 12px;
    padding: 15px 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    background: rgba(0, 120, 212, 0.2);
}
.live-demo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}
.live-demo-button:hover::before {
    left: 100%;
}
.live-demo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 120, 212, 0.4);
    background: rgba(0, 120, 212, 0.3);
}
.countdown-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}
.countdown-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 120, 212, 0.3);
    border-radius: 12px;
    padding: 15px;
    min-width: 80px;
    text-align: center;
}
.countdown-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00bfff;
    text-shadow: 0 0 10px rgba(0, 187, 255, 0.5);
}
.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}
.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(0, 120, 212, 0.2);
}
.social-proof-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0078d4, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.social-proof-content {
    flex: 1;
}
.social-proof-title {
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
}
.social-proof-text {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}
.trust-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}
.trust-badge {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 120, 212, 0.3);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.trust-badge i {
    color: #00bfff;
    font-size: 20px;
}
.ai-assistant {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8a2be2, #0078d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s;
    animation: pulseAI 3s infinite;
}
@keyframes pulseAI {
    0% { transform: scale(1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4); }
    100% { transform: scale(1); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); }
}
.ai-assistant:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.5);
}
.ai-chat {
    position: fixed;
    bottom: 120px;
    left: 40px;
    width: 350px;
    height: 450px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
    overflow: hidden;
    display: none;
    animation: slideInLeft 0.5s ease-out;
}
@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.ai-chat-header {
    background: linear-gradient(90deg, #8a2be2, #0078d4);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}
.ai-chat-body {
    height: 350px;
    overflow-y: auto;
    padding: 15px;
}
.ai-chat-footer {
    padding: 15px;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
}
.ai-message {
    margin-bottom: 15px;
    max-width: 80%;
}
.ai-message.assistant {
    margin-left: auto;
    background: rgba(138, 43, 226, 0.2);
    padding: 10px 15px;
    border-radius: 18px 18px 0 18px;
    color: #e0e0e0;
}
.ai-message.user {
    margin-right: auto;
    background: rgba(0, 187, 255, 0.2);
    padding: 10px 15px;
    border-radius: 18px 18px 18px 0;
    color: #e0e0e0;
}
.ai-input {
    display: flex;
    gap: 10px;
}
.ai-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    outline: none;
}
.ai-input button {
    background: #8a2be2;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s;
}
.ai-input button:hover {
    background: #7a22c0;
}
.holographic-display {
    position: relative;
    height: 400px;
    perspective: 1000px;
}
.holographic-content {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: holographicRotate 20s linear infinite;
}
.holographic-layer {
    position: absolute;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border: 2px solid;
    border-radius: 20px;
    opacity: 0.6;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
}
.holographic-layer:nth-child(1) {
    --z: 0px;
    --x: 25deg;
    --y: 25deg;
    border-color: rgba(0, 120, 212, 0.8);
}
.holographic-layer:nth-child(2) {
    --z: 20px;
    --x: 15deg;
    --y: 15deg;
    border-color: rgba(0, 187, 255, 0.8);
}
.holographic-layer:nth-child(3) {
    --z: 40px;
    --x: 5deg;
    --y: 5deg;
    border-color: rgba(138, 43, 226, 0.8);
}
@keyframes holographicRotate {
    0% { transform: rotateX(25deg) rotateY(25deg) rotateZ(0deg); }
    100% { transform: rotateX(25deg) rotateY(25deg) rotateZ(360deg); }
}
.neural-network {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}
.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #0078d4;
    border-radius: 50%;
    box-shadow: 0 0 10px #0078d4;
}
.connection {
    position: absolute;
    height: 2px;
    background: rgba(0, 120, 212, 0.5);
    transform-origin: 0 50%;
    opacity: 0.3;
}
.active-connection {
    background: #00bfff;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(0, 187, 255, 0.5);
    height: 3px;
}
.quantum-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00bfff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00bfff;
    opacity: 0.7;
}
.security-shield {
    width: 200px;
    height: 200px;
    position: relative;
    margin: 40px auto;
}
.shield-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid;
    border-radius: 20px;
    opacity: 0.4;
    animation: pulseShield 3s infinite;
}
.shield-layer:nth-child(1) {
    border-color: #0078d4;
    animation-delay: 0s;
}
.shield-layer:nth-child(2) {
    border-color: #00bfff;
    animation-delay: 1s;
    transform: rotate(30deg);
}
.shield-layer:nth-child(3) {
    border-color: #8a2be2;
    animation-delay: 2s;
    transform: rotate(60deg);
}
@keyframes pulseShield {
    0% { transform: scale(1) rotate(0deg); opacity: 0.4; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
    100% { transform: scale(1) rotate(360deg); opacity: 0.4; }
}
.eco-energy {
    height: 200px;
    position: relative;
    margin: 40px 0;
}
.energy-wave {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00bfff, transparent);
    border-radius: 2px;
    opacity: 0.6;
    animation: energyWave 3s infinite linear;
}
.energy-wave:nth-child(1) {
    top: 30%;
    animation-delay: 0s;
}
.energy-wave:nth-child(2) {
    top: 50%;
    animation-delay: 1s;
}
.energy-wave:nth-child(3) {
    top: 70%;
    animation-delay: 2s;
}
@keyframes energyWave {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}
.adaptive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}
.grid-item {
    background: rgba(0, 120, 212, 0.1);
    border: 1px solid rgba(0, 120, 212, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}
.grid-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 120, 212, 0.2);
    box-shadow: 0 15px 30px rgba(0, 120, 212, 0.3);
}
.devops-pipeline {
    height: 150px;
    position: relative;
    margin: 40px 0;
}
.pipeline-step {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #0078d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 120, 212, 0.4);
    transition: all 0.3s;
}
.pipeline-step:hover {
    transform: scale(1.2) translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 120, 212, 0.6);
}
.pipeline-connector {
    position: absolute;
    top: 28px;
    height: 4px;
    background: rgba(0, 120, 212, 0.3);
    z-index: -1;
}
.pipeline-connector.active {
    background: #00bfff;
    height: 6px;
    box-shadow: 0 0 10px rgba(0, 187, 255, 0.5);
}
.ai-insight {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}
.ai-insight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(138, 43, 226, 0.2));
    z-index: -1;
}
.ai-insight-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: rgba(138, 43, 226, 0.3);
}
.real-time-data {
    height: 300px;
    position: relative;
    margin: 40px 0;
}
.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00bfff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00bfff;
    opacity: 0.8;
    animation: pulseData 2s infinite;
}
@keyframes pulseData {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}
.holographic-interface {
    height: 400px;
    position: relative;
    background: linear-gradient(135deg, #0f3460, #16213e);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.interface-layer {
    position: absolute;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border: 2px solid;
    border-radius: 15px;
    opacity: 0.5;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatLayer 6s ease-in-out infinite;
}
.interface-layer:nth-child(1) {
    --z: 0px;
    --x: 20deg;
    --y: 20deg;
    border-color: #0078d4;
    animation-delay: 0s;
}
.interface-layer:nth-child(2) {
    --z: 30px;
    --x: 10deg;
    --y: 10deg;
    border-color: #00bfff;
    animation-delay: 2s;
}
.interface-layer:nth-child(3) {
    --z: 60px;
    --x: 0deg;
    --y: 0deg;
    border-color: #8a2be2;
    animation-delay: 4s;
}
@keyframes floatLayer {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-20px); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0); }
}
.neural-processing {
    height: 250px;
    position: relative;
    margin: 40px 0;
}
.neuron {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #0078d4;
    border-radius: 50%;
    box-shadow: 0 0 15px #0078d4;
    opacity: 0.7;
    animation: pulseNeuron 2s infinite;
}
.synapse {
    position: absolute;
    height: 2px;
    background: rgba(0, 120, 212, 0.4);
    transform-origin: 0 50%;
    opacity: 0.4;
}
.active-synapse {
    background: #00bfff;
    opacity: 0.9;
    height: 3px;
    box-shadow: 0 0 10px rgba(0, 187, 255, 0.5);
}
@keyframes pulseNeuron {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}
.quantum-encryption {
    height: 300px;
    position: relative;
    margin: 40px 0;
}
.qubit {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #8a2be2;
    border-radius: 50%;
    box-shadow: 0 0 20px #8a2be2;
    opacity: 0.8;
    animation: quantumSpin 4s infinite linear;
}
.entanglement {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #0078d4);
    transform-origin: 0 50%;
    opacity: 0.6;
}
@keyframes quantumSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}
.eco-management {
    height: 200px;
    position: relative;
    margin: 40px 0;
}
.energy-bar {
    position: absolute;
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 120, 212, 0.3);
}
.energy-fill {
    height: 100%;
    background: linear-gradient(90deg, #0078d4, #00bfff);
    width: 0%;
    transition: width 2s ease;
    position: relative;
}
.energy-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 50%,
        transparent 100%
    );
    background-size: 40px 100%;
    animation: energyFlow 2s linear infinite;
}
@keyframes energyFlow {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}
.adaptive-collaboration {
    height: 300px;
    position: relative;
    margin: 40px 0;
}
.user-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #00bfff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 187, 255, 0.4);
    animation: pulseUser 3s infinite;
}
.connection-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #0078d4, #00bfff);
    transform-origin: 0 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(0, 187, 255, 0.3);
}
@keyframes pulseUser {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 187, 255, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 8px 20px rgba(0, 187, 255, 0.6); }
    100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0, 187, 255, 0.4); }
}
.devops-integration {
    height: 250px;
    position: relative;
    margin: 40px 0;
}
.devops-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #0078d4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 120, 212, 0.4);
    transition: all 0.3s;
}
.devops-node:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 120, 212, 0.6);
}
.devops-connection {
    position: absolute;
    height: 4px;
    background: rgba(0, 120, 212, 0.4);
    z-index: -1;
}
.devops-connection.active {
    background: #00bfff;
    height: 6px;
    box-shadow: 0 0 15px rgba(0, 187, 255, 0.5);
}
.real-time-analytics {
    height: 350px;
    position: relative;
    margin: 40px 0;
}
.data-stream {
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, #0078d4, #00bfff, #8a2be2);
    opacity: 0.6;
    animation: dataFlow 2s infinite linear;
}
.data-pulse {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00bfff;
    border-radius: 50%;
    box-shadow: 0 0 15px #00bfff;
    opacity: 0.8;
}
@keyframes dataFlow {
    0% { height: 0%; top: 100%; }
    100% { height: 100%; top: 0%; }
}
.ai-assistant-interface {
    height: 400px;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.assistant-layer {
    position: absolute;
    width: 70%;
    height: 70%;
    left: 15%;
    top: 15%;
    border: 2px solid;
    border-radius: 15px;
    opacity: 0.4;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatAssistant 8s ease-in-out infinite;
}
.assistant-layer:nth-child(1) {
    --z: 0px;
    --x: 15deg;
    --y: 15deg;
    border-color: #8a2be2;
    animation-delay: 0s;
}
.assistant-layer:nth-child(2) {
    --z: 40px;
    --x: 5deg;
    --y: 5deg;
    border-color: #0078d4;
    animation-delay: 3s;
}
.assistant-layer:nth-child(3) {
    --z: 80px;
    --x: 0deg;
    --y: 0deg;
    border-color: #00bfff;
    animation-delay: 6s;
}
@keyframes floatAssistant {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(0deg); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-30px) rotate(180deg); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(360deg); }
}
.quantum-security-system {
    height: 300px;
    position: relative;
    margin: 40px 0;
}
.security-node {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #8a2be2;
    border-radius: 50%;
    box-shadow: 0 0 20px #8a2be2;
    opacity: 0.8;
    animation: quantumPulse 3s infinite;
}
.security-link {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #0078d4);
    transform-origin: 0 50%;
    opacity: 0.6;
}
@keyframes quantumPulse {
    0% { transform: scale(1); box-shadow: 0 0 20px #8a2be2; }
    50% { transform: scale(1.3); box-shadow: 0 0 30px #8a2be2, 0 0 40px rgba(138, 43, 226, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 20px #8a2be2; }
}
.holographic-workspace {
    height: 450px;
    position: relative;
    background: linear-gradient(135deg, #0f3460, #16213e, #1a1a2e);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.workspace-layer {
    position: absolute;
    width: 85%;
    height: 85%;
    left: 7.5%;
    top: 7.5%;
    border: 2px solid;
    border-radius: 18px;
    opacity: 0.5;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatWorkspace 10s ease-in-out infinite;
}
.workspace-layer:nth-child(1) {
    --z: 0px;
    --x: 20deg;
    --y: 20deg;
    border-color: #0078d4;
    animation-delay: 0s;
}
.workspace-layer:nth-child(2) {
    --z: 50px;
    --x: 10deg;
    --y: 10deg;
    border-color: #00bfff;
    animation-delay: 4s;
}
.workspace-layer:nth-child(3) {
    --z: 100px;
    --x: 0deg;
    --y: 0deg;
    border-color: #8a2be2;
    animation-delay: 8s;
}
@keyframes floatWorkspace {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(0deg); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-40px) rotate(180deg); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(360deg); }
}
.neural-optimization {
    height: 280px;
    position: relative;
    margin: 40px 0;
}
.neuron-node {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #0078d4;
    border-radius: 50%;
    box-shadow: 0 0 18px #0078d4;
    opacity: 0.7;
    animation: neuralPulse 2.5s infinite;
}
.neural-connection {
    position: absolute;
    height: 2.5px;
    background: rgba(0, 120, 212, 0.5);
    transform-origin: 0 50%;
    opacity: 0.4;
}
.active-neural-connection {
    background: #00bfff;
    opacity: 0.9;
    height: 3.5px;
    box-shadow: 0 0 12px rgba(0, 187, 255, 0.6);
}
@keyframes neuralPulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}
.eco-efficiency-system {
    height: 220px;
    position: relative;
    margin: 40px 0;
}
.efficiency-bar {
    position: absolute;
    width: 100%;
    height: 35px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 120, 212, 0.3);
}
.efficiency-fill {
    height: 100%;
    background: linear-gradient(90deg, #0078d4, #00bfff, #0078d4);
    width: 0%;
    transition: width 2.5s ease;
    position: relative;
    background-size: 200% 100%;
    animation: efficiencyGradient 3s ease infinite;
}
@keyframes efficiencyGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.adaptive-collaboration-network {
    height: 320px;
    position: relative;
    margin: 40px 0;
}
.collaborator-node {
    position: absolute;
    width: 55px;
    height: 55px;
    background: #00bfff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(0, 187, 255, 0.5);
    animation: collaboratorPulse 3.5s infinite;
}
.collaboration-line {
    position: absolute;
    height: 3.5px;
    background: linear-gradient(90deg, #0078d4, #00bfff);
    transform-origin: 0 50%;
    opacity: 0.7;
    box-shadow: 0 0 12px rgba(0, 187, 255, 0.4);
}
@keyframes collaboratorPulse {
    0% { transform: scale(1); box-shadow: 0 6px 18px rgba(0, 187, 255, 0.5); }
    50% { transform: scale(1.15); box-shadow: 0 10px 25px rgba(0, 187, 255, 0.7); }
    100% { transform: scale(1); box-shadow: 0 6px 18px rgba(0, 187, 255, 0.5); }
}
.devops-automation {
    height: 270px;
    position: relative;
    margin: 40px 0;
}
.automation-node {
    position: absolute;
    width: 75px;
    height: 75px;
    background: #0078d4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0, 120, 212, 0.5);
    transition: all 0.4s;
}
.automation-node:hover {
    transform: scale(1.12) translateY(-12px);
    box-shadow: 0 18px 35px rgba(0, 120, 212, 0.7);
}
.automation-connection {
    position: absolute;
    height: 4.5px;
    background: rgba(0, 120, 212, 0.5);
    z-index: -1;
}
.active-automation-connection {
    background: #00bfff;
    height: 7px;
    box-shadow: 0 0 18px rgba(0, 187, 255, 0.6);
}
.real-time-monitoring {
    height: 380px;
    position: relative;
    margin: 40px 0;
}
.monitoring-stream {
    position: absolute;
    width: 5px;
    background: linear-gradient(180deg, #0078d4, #00bfff, #8a2be2, #0078d4);
    opacity: 0.7;
    animation: monitoringFlow 2.2s infinite linear;
}
.monitoring-pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00bfff;
    border-radius: 50%;
    box-shadow: 0 0 18px #00bfff;
    opacity: 0.9;
}
@keyframes monitoringFlow {
    0% { height: 0%; top: 100%; }
    100% { height: 100%; top: 0%; }
}
.ai-driven-insights {
    height: 420px;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #0f3460, #16213e);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.insight-layer {
    position: absolute;
    width: 75%;
    height: 75%;
    left: 12.5%;
    top: 12.5%;
    border: 2.5px solid;
    border-radius: 18px;
    opacity: 0.45;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatInsight 12s ease-in-out infinite;
}
.insight-layer:nth-child(1) {
    --z: 0px;
    --x: 18deg;
    --y: 18deg;
    border-color: #8a2be2;
    animation-delay: 0s;
}
.insight-layer:nth-child(2) {
    --z: 60px;
    --x: 8deg;
    --y: 8deg;
    border-color: #0078d4;
    animation-delay: 5s;
}
.insight-layer:nth-child(3) {
    --z: 120px;
    --x: 0deg;
    --y: 0deg;
    border-color: #00bfff;
    animation-delay: 10s;
}
@keyframes floatInsight {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(0deg); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-50px) rotate(200deg); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(360deg); }
}
.quantum-encryption-network {
    height: 350px;
    position: relative;
    margin: 40px 0;
}
.qubit-node {
    position: absolute;
    width: 28px;
    height: 28px;
    background: #8a2be2;
    border-radius: 50%;
    box-shadow: 0 0 25px #8a2be2;
    opacity: 0.9;
    animation: qubitSpin 4.5s infinite linear;
}
.quantum-link {
    position: absolute;
    height: 3.5px;
    background: linear-gradient(90deg, #8a2be2, #0078d4);
    transform-origin: 0 50%;
    opacity: 0.7;
}
@keyframes qubitSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.25); }
    100% { transform: rotate(360deg) scale(1); }
}
.holographic-productivity {
    height: 500px;
    position: relative;
    background: linear-gradient(135deg, #0f3460, #16213e, #1a1a2e, #0f3460);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.productivity-layer {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    border: 3px solid;
    border-radius: 20px;
    opacity: 0.55;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatProductivity 15s ease-in-out infinite;
}
.productivity-layer:nth-child(1) {
    --z: 0px;
    --x: 22deg;
    --y: 22deg;
    border-color: #0078d4;
    animation-delay: 0s;
}
.productivity-layer:nth-child(2) {
    --z: 80px;
    --x: 12deg;
    --y: 12deg;
    border-color: #00bfff;
    animation-delay: 7s;
}
.productivity-layer:nth-child(3) {
    --z: 160px;
    --x: 0deg;
    --y: 0deg;
    border-color: #8a2be2;
    animation-delay: 14s;
}
@keyframes floatProductivity {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(0deg); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-60px) rotate(240deg); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(360deg); }
}
.neural-performance {
    height: 320px;
    position: relative;
    margin: 40px 0;
}
.performance-neuron {
    position: absolute;
    width: 22px;
    height: 22px;
    background: #0078d4;
    border-radius: 50%;
    box-shadow: 0 0 22px #0078d4;
    opacity: 0.8;
    animation: performancePulse 3s infinite;
}
.performance-connection {
    position: absolute;
    height: 3px;
    background: rgba(0, 120, 212, 0.6);
    transform-origin: 0 50%;
    opacity: 0.5;
}
.active-performance-connection {
    background: #00bfff;
    opacity: 1;
    height: 4px;
    box-shadow: 0 0 15px rgba(0, 187, 255, 0.7);
}
@keyframes performancePulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}
.eco-intelligence-system {
    height: 260px;
    position: relative;
    margin: 40px 0;
}
.intelligence-bar {
    position: absolute;
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 120, 212, 0.35);
}
.intelligence-fill {
    height: 100%;
    background: linear-gradient(90deg, #0078d4, #00bfff, #0078d4, #00bfff);
    width: 0%;
    transition: width 3s ease;
    position: relative;
    background-size: 250% 100%;
    animation: intelligenceGradient 4s ease infinite;
}
@keyframes intelligenceGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.adaptive-collaboration-hub {
    height: 360px;
    position: relative;
    margin: 40px 0;
}
.hub-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #00bfff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 7px 22px rgba(0, 187, 255, 0.6);
    animation: hubPulse 4s infinite;
}
.hub-connection {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #0078d4, #00bfff);
    transform-origin: 0 50%;
    opacity: 0.8;
    box-shadow: 0 0 15px rgba(0, 187, 255, 0.5);
}
@keyframes hubPulse {
    0% { transform: scale(1); box-shadow: 0 7px 22px rgba(0, 187, 255, 0.6); }
    50% { transform: scale(1.18); box-shadow: 0 12px 30px rgba(0, 187, 255, 0.8); }
    100% { transform: scale(1); box-shadow: 0 7px 22px rgba(0, 187, 255, 0.6); }
}
.devops-orchestration {
    height: 300px;
    position: relative;
    margin: 40px 0;
}
.orchestration-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #0078d4;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(0, 120, 212, 0.6);
    transition: all 0.5s;
}
.orchestration-node:hover {
    transform: scale(1.15) translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 120, 212, 0.8);
}
.orchestration-connection {
    position: absolute;
    height: 5px;
    background: rgba(0, 120, 212, 0.6);
    z-index: -1;
}
.active-orchestration-connection {
    background: #00bfff;
    height: 8px;
    box-shadow: 0 0 20px rgba(0, 187, 255, 0.7);
}
.real-time-analytics-dashboard {
    height: 450px;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #0f3460, #16213e, #1a1a2e);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.dashboard-layer {
    position: absolute;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    border: 3px solid;
    border-radius: 20px;
    opacity: 0.5;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatDashboard 18s ease-in-out infinite;
}
.dashboard-layer:nth-child(1) {
    --z: 0px;
    --x: 20deg;
    --y: 20deg;
    border-color: #0078d4;
    animation-delay: 0s;
}
.dashboard-layer:nth-child(2) {
    --z: 100px;
    --x: 10deg;
    --y: 10deg;
    border-color: #00bfff;
    animation-delay: 9s;
}
.dashboard-layer:nth-child(3) {
    --z: 200px;
    --x: 0deg;
    --y: 0deg;
    border-color: #8a2be2;
    animation-delay: 18s;
}
@keyframes floatDashboard {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(0deg); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-70px) rotate(270deg); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(360deg); }
}
.ai-optimization-engine {
    height: 550px;
    position: relative;
    background: linear-gradient(135deg, #0f3460, #16213e, #1a1a2e, #0f3460, #16213e);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.engine-layer {
    position: absolute;
    width: 95%;
    height: 95%;
    left: 2.5%;
    top: 2.5%;
    border: 3.5px solid;
    border-radius: 22px;
    opacity: 0.6;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatEngine 20s ease-in-out infinite;
}
.engine-layer:nth-child(1) {
    --z: 0px;
    --x: 24deg;
    --y: 24deg;
    border-color: #0078d4;
    animation-delay: 0s;
}
.engine-layer:nth-child(2) {
    --z: 120px;
    --x: 14deg;
    --y: 14deg;
    border-color: #00bfff;
    animation-delay: 12s;
}
.engine-layer:nth-child(3) {
    --z: 240px;
    --x: 0deg;
    --y: 0deg;
    border-color: #8a2be2;
    animation-delay: 24s;
}
@keyframes floatEngine {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(0deg); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-80px) rotate(300deg); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(360deg); }
}
.quantum-security-infrastructure {
    height: 400px;
    position: relative;
    margin: 40px 0;
}
.infrastructure-node {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #8a2be2;
    border-radius: 50%;
    box-shadow: 0 0 30px #8a2be2;
    opacity: 0.95;
    animation: infrastructurePulse 5s infinite;
}
.infrastructure-link {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #8a2be2, #0078d4);
    transform-origin: 0 50%;
    opacity: 0.8;
}
@keyframes infrastructurePulse {
    0% { transform: scale(1); box-shadow: 0 0 30px #8a2be2; }
    50% { transform: scale(1.35); box-shadow: 0 0 40px #8a2be2, 0 0 50px rgba(138, 43, 226, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 30px #8a2be2; }
}
.holographic-productivity-suite {
    height: 600px;
    position: relative;
    background: linear-gradient(135deg, #0f3460, #16213e, #1a1a2e, #0f3460, #16213e, #1a1a2e);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.suite-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid;
    border-radius: 24px;
    opacity: 0.65;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatSuite 25s ease-in-out infinite;
}
.suite-layer:nth-child(1) {
    --z: 0px;
    --x: 26deg;
    --y: 26deg;
    border-color: #0078d4;
    animation-delay: 0s;
}
.suite-layer:nth-child(2) {
    --z: 200px;
    --x: 18deg;
    --y: 18deg;
    border-color: #00bfff;
    animation-delay: 20s;
}
.suite-layer:nth-child(3) {
    --z: 400px;
    --x: 0deg;
    --y: 0deg;
    border-color: #8a2be2;
    animation-delay: 40s;
}
@keyframes floatSuite {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(0deg); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-100px) rotate(310deg); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(360deg); }
}
.neural-optimization-framework {
    height: 360px;
    position: relative;
    margin: 40px 0;
}
.framework-neuron {
    position: absolute;
    width: 26px;
    height: 26px;
    background: #0078d4;
    border-radius: 50%;
    box-shadow: 0 0 26px #0078d4;
    opacity: 0.85;
    animation: frameworkPulse 3.5s infinite;
}
.framework-connection {
    position: absolute;
    height: 3.5px;
    background: rgba(0, 120, 212, 0.65);
    transform-origin: 0 50%;
    opacity: 0.55;
}
.active-framework-connection {
    background: #00bfff;
    opacity: 1;
    height: 4.5px;
    box-shadow: 0 0 18px rgba(0, 187, 255, 0.75);
}
@keyframes frameworkPulse {
    0% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.6); opacity: 1; }
    100% { transform: scale(1); opacity: 0.85; }
}
.eco-intelligence-ecosystem {
    height: 300px;
    position: relative;
    margin: 40px 0;
}
.ecosystem-bar {
    position: absolute;
    width: 100%;
    height: 45px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 22px;
    overflow: hidden;
    border: 2.5px solid rgba(0, 120, 212, 0.4);
}
.ecosystem-fill {
    height: 100%;
    background: linear-gradient(90deg, #0078d4, #00bfff, #0078d4, #00bfff, #0078d4);
    width: 0%;
    transition: width 3.5s ease;
    position: relative;
    background-size: 300% 100%;
    animation: ecosystemGradient 5s ease infinite;
}
@keyframes ecosystemGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.adaptive-collaboration-platform {
    height: 400px;
    position: relative;
    margin: 40px 0;
}
.platform-node {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #00bfff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 26px rgba(0, 187, 255, 0.7);
    animation: platformPulse 4.5s infinite;
}
.platform-connection {
    position: absolute;
    height: 4.5px;
    background: linear-gradient(90deg, #0078d4, #00bfff);
    transform-origin: 0 50%;
    opacity: 0.85;
    box-shadow: 0 0 18px rgba(0, 187, 255, 0.6);
}
@keyframes platformPulse {
    0% { transform: scale(1); box-shadow: 0 8px 26px rgba(0, 187, 255, 0.7); }
    50% { transform: scale(1.22); box-shadow: 0 14px 35px rgba(0, 187, 255, 0.9); }
    100% { transform: scale(1); box-shadow: 0 8px 26px rgba(0, 187, 255, 0.7); }
}
.devops-orchestration-system {
    height: 350px;
    position: relative;
    margin: 40px 0;
}
.system-node {
    position: absolute;
    width: 85px;
    height: 85px;
    background: #0078d4;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 15px 35px rgba(0, 120, 212, 0.7);
    transition: all 0.6s;
}
.system-node:hover {
    transform: scale(1.18) translateY(-18px);
    box-shadow: 0 25px 50px rgba(0, 120, 212, 0.9);
}
.system-connection {
    position: absolute;
    height: 5.5px;
    background: rgba(0, 120, 212, 0.65);
    z-index: -1;
}
.active-system-connection {
    background: #00bfff;
    height: 9px;
    box-shadow: 0 0 25px rgba(0, 187, 255, 0.8);
}
.real-time-analytics-ecosystem {
    height: 500px;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #0f3460, #16213e, #1a1a2e, #0f3460);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.ecosystem-layer {
    position: absolute;
    width: 85%;
    height: 85%;
    left: 7.5%;
    top: 7.5%;
    border: 3.5px solid;
    border-radius: 22px;
    opacity: 0.55;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatEcosystem 22s ease-in-out infinite;
}
.ecosystem-layer:nth-child(1) {
    --z: 0px;
    --x: 22deg;
    --y: 22deg;
    border-color: #0078d4;
    animation-delay: 0s;
}
.ecosystem-layer:nth-child(2) {
    --z: 140px;
    --x: 12deg;
    --y: 12deg;
    border-color: #00bfff;
    animation-delay: 14s;
}
.ecosystem-layer:nth-child(3) {
    --z: 280px;
    --x: 0deg;
    --y: 0deg;
    border-color: #8a2be2;
    animation-delay: 28s;
}
@keyframes floatEcosystem {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(0deg); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-90px) rotate(310deg); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(360deg); }
}
.ai-optimization-ecosystem {
    height: 650px;
    position: relative;
    background: linear-gradient(135deg, #0f3460, #16213e, #1a1a2e, #0f3460, #16213e, #1a1a2e, #0f3460);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.ecosystem-engine-layer {
    position: absolute;
    width: 105%;
    height: 105%;
    left: -2.5%;
    top: -2.5%;
    border: 4.5px solid;
    border-radius: 26px;
    opacity: 0.7;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatEcosystemEngine 30s ease-in-out infinite;
}
.ecosystem-engine-layer:nth-child(1) {
    --z: 0px;
    --x: 28deg;
    --y: 28deg;
    border-color: #0078d4;
    animation-delay: 0s;
}
.ecosystem-engine-layer:nth-child(2) {
    --z: 200px;
    --x: 18deg;
    --y: 18deg;
    border-color: #00bfff;
    animation-delay: 20s;
}
.ecosystem-engine-layer:nth-child(3) {
    --z: 400px;
    --x: 0deg;
    --y: 0deg;
    border-color: #8a2be2;
    animation-delay: 40s;
}
@keyframes floatEcosystemEngine {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(0deg); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-120px) rotate(340deg); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(360deg); }
}
.quantum-security-ecosystem {
    height: 450px;
    position: relative;
    margin: 40px 0;
}
.ecosystem-infrastructure-node {
    position: absolute;
    width: 36px;
    height: 36px;
    background: #8a2be2;
    border-radius: 50%;
    box-shadow: 0 0 35px #8a2be2;
    opacity: 0.98;
    animation: ecosystemInfrastructurePulse 6s infinite;
}
.ecosystem-infrastructure-link {
    position: absolute;
    height: 4.5px;
    background: linear-gradient(90deg, #8a2be2, #0078d4);
    transform-origin: 0 50%;
    opacity: 0.85;
}
@keyframes ecosystemInfrastructurePulse {
    0% { transform: scale(1); box-shadow: 0 0 35px #8a2be2; }
    50% { transform: scale(1.4); box-shadow: 0 0 45px #8a2be2, 0 0 60px rgba(138, 43, 226, 0.7); }
    100% { transform: scale(1); box-shadow: 0 0 35px #8a2be2; }
}
.holographic-productivity-ecosystem {
    height: 700px;
    position: relative;
    background: linear-gradient(135deg, #0f3460, #16213e, #1a1a2e, #0f3460, #16213e, #1a1a2e, #0f3460, #16213e);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.ecosystem-suite-layer {
    position: absolute;
    width: 110%;
    height: 110%;
    left: -5%;
    top: -5%;
    border: 5px solid;
    border-radius: 28px;
    opacity: 0.75;
    transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y));
    animation: floatEcosystemSuite 35s ease-in-out infinite;
}
.ecosystem-suite-layer:nth-child(1) {
    --z: 0px;
    --x: 30deg;
    --y: 30deg;
    border-color: #0078d4;
    animation-delay: 0s;
}
.ecosystem-suite-layer:nth-child(2) {
    --z: 240px;
    --x: 20deg;
    --y: 20deg;
    border-color: #00bfff;
    animation-delay: 24s;
}
.ecosystem-suite-layer:nth-child(3) {
    --z: 480px;
    --x: 0deg;
    --y: 0deg;
    border-color: #8a2be2;
    animation-delay: 48s;
}
@keyframes floatEcosystemSuite {
    0% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(0deg); }
    50% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(-150px) rotate(350deg); }
    100% { transform: translateZ(var(--z)) rotateX(var(--x)) rotateY(var(--y)) translateY(0) rotate(360deg); }
}