/* Advantages Section Background Styles */

.technical-features-section {
    background-color: #f5f9ff;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

/* Decorative circular elements */
.technical-features-section::before,
.technical-features-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: rgba(0, 102, 204, 0.05);
    z-index: 0;
}

.technical-features-section::before {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.technical-features-section::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

.technical-features-container {
    position: relative;
    z-index: 1;
}

.technical-section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.technical-section-title {
    color: var(--primary);
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.technical-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.technical-section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Ensure cards stand out against the background */
.technical-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.technical-feature-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.technical-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .technical-features-section {
        padding: 3rem 0;
    }
    
    .technical-section-title {
        font-size: 2rem;
    }
    
    .technical-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .technical-feature-card {
        padding: 1.5rem;
    }
}