/* ========================================
   SKYNETLABS ENHANCEMENTS - SCROLL ANIMATION
   ======================================== */

.scroll-animation-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-animation-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.scroll-animation-content {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animation-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animation-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.scroll-animation-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.svg-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 3rem 0;
}

.animated-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(79, 172, 254, 0.3));
}

.svg-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 1.5s ease-out;
    stroke-linecap: round;
}

.svg-path.animate {
    stroke-dashoffset: 0;
}

.svg-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(79, 172, 254, 0.5);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.3);
    z-index: 10;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svg-badge.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.badge-icon {
    font-size: 2rem;
    animation: badgePulse 2s infinite;
}

.badge-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.scroll-animation-footer {
    text-align: center;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.5s;
}

.scroll-animation-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animation-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-style: italic;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scroll-animation-title {
        font-size: 2rem;
    }
    
    .scroll-animation-subtitle {
        font-size: 1rem;
    }
    
    .svg-container {
        height: 400px;
    }
    
    .svg-badge {
        padding: 1rem 1.5rem;
    }
    
    .badge-text {
        font-size: 1rem;
    }
}
