/* Conclusion Section */
.conclusion-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0b16 0%, #1a1b2e 100%);
    overflow: hidden;
    z-index: 1;
}

.conclusion-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    text-align: center;
}

.conclusion-content {
    background: rgba(30, 33, 58, 0.6);
    border: 1px solid rgba(74, 108, 247, 0.2);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.conclusion-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 108, 247, 0.4);
}

.conclusion-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(90deg, #fff, #b8c1ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.conclusion-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a6cf7, #6c63ff);
    border-radius: 3px;
}

.conclusion-text {
    color: #b8c1ec;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    direction: ltr;
    text-align: left;
}

.conclusion-highlight {
    color: #4a6cf7;
    font-weight: 600;
}

.conclusion-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(74, 108, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.conclusion-content:hover .conclusion-glow {
    opacity: 1;
}

/* Animated Elements */
.conclusion-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

#conclusion-particle-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 108, 247, 0.1) 0%, rgba(74, 108, 247, 0) 70%);
    top: 10%;
    right: 10%;
    animation: float 15s ease-in-out infinite;
}

#conclusion-particle-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(108, 99, 255, 0) 70%);
    bottom: 15%;
    left: 8%;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .conclusion-section {
        padding: 80px 0;
    }
    
    .conclusion-content {
        padding: 40px 30px;
    }
    
    .conclusion-content h2 {
        font-size: 32px;
    }
    
    .conclusion-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .conclusion-section {
        padding: 60px 0;
    }
    
    .conclusion-content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .conclusion-content h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .conclusion-text {
        font-size: 16px;
        line-height: 1.7;
    }
    
    #conclusion-particle-1,
    #conclusion-particle-2 {
        display: none;
    }
}
