/* ========================================
   Outcomes Section with Particles & Waves
   ======================================== */

.outcomes-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #5b9bd5 0%, #4a8ac4 50%, #5b9bd5 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Animated Wave Background */
.outcomes-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230066cc' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,154.7C672,160,768,192,864,197.3C960,203,1056,181,1152,165.3C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
    animation: wave 15s ease-in-out infinite;
    z-index: 0;
}

.outcomes-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300d9ff' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    background-position: bottom;
    opacity: 0.4;
    animation: wave 20s ease-in-out infinite reverse;
    z-index: 0;
}

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

/* Particle Background Container */
#particles-outcomes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#particles-outcomes canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Content Layer */
.outcomes-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Outcome Items */
.outcome-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.outcome-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.outcome-icon {
    font-size: 2rem;
    color: #00d9ff;
    margin-right: 20px;
    flex-shrink: 0;
}

.outcome-item h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.outcome-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lead Text */
.lead {
    font-weight: 500;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 991px) {
    .outcomes-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .outcome-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .outcome-item {
        padding: 20px;
    }
    
    .outcome-icon {
        font-size: 1.5rem;
        margin-right: 15px;
    }
    
    .outcome-item h5 {
        font-size: 1.125rem;
    }
    
    .outcome-item p {
        font-size: 0.875rem;
    }
}

