    /* --- TECHNOLOGY SOLUTIONS STYLES --- */
    .tech-solutions {
        position: relative;
        padding: 120px 5%;
        background: var(--bg-color);
        overflow: hidden;
    }

    .tech-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .tech-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .tech-title {
        font-size: clamp(2.2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        color: var(--text-main);
    }

    .tech-subtitle {
        color: var(--text-muted);
        max-width: 650px;
        margin: 0 auto;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* --- TECH GRID & CARDS --- */
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .tech-card {
        position: relative;
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        border-radius: 24px;
        padding: 45px 35px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    /* Subtle Hover: Soft Shadow Glow and Border Highlight */
    .tech-card:hover {
        border-color: var(--primary-orange);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
                    0 0 20px rgba(255, 123, 0, 0.08);
        transform: translateY(-5px);
    }

    .tech-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 25px;
        color: var(--primary-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 123, 0, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 123, 0, 0.1);
        transition: all 0.3s ease;
    }

    .tech-card:hover .tech-icon {
        background: var(--gradient);
        color: white;
        border-color: transparent;
        box-shadow: 0 8px 15px rgba(255, 123, 0, 0.2);
    }

    .tech-icon svg {
        width: 28px;
        height: 28px;
    }

    .tech-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--text-main);
    }

    .tech-card p {
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .tech-card-footer {
        margin-top: auto;
    }

    .tech-accent-line {
        width: 40px;
        height: 3px;
        background: var(--gradient);
        border-radius: 2px;
        transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .tech-card:hover .tech-accent-line {
        width: 100%;
    }

    /* Background Abstract Accent */
    .tech-bg-accent {
        position: absolute;
        top: 0;
        left: 50%;
        width: 100vw;
        height: 100%;
        background: radial-gradient(circle at 50% 0%, rgba(255, 123, 0, 0.04), transparent 70%);
        transform: translateX(-50%);
        z-index: 1;
        pointer-events: none;
    }

    /* --- RESPONSIVE ADJUSTMENTS --- */
    @media (max-width: 1024px) {
        .tech-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .tech-solutions {
            padding: 80px 5%;
        }
        .tech-grid {
            grid-template-columns: 1fr;
        }
        .tech-card {
            padding: 35px 25px;
        }
        .tech-header {
            margin-bottom: 50px;
        }
    }