.about-approach {
    /* added for video bg */
    position: relative;
    overflow: hidden;

    /* og styles */
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 6rem;
    color: #fff;
    text-align: center;
    z-index: 0;
}

.approach-videoBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.approach-videoBg video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ✅ makes video cover the entire section */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    filter: brightness(0.4); /* darken for readability */
}

.approach-content {
    position: relative;
    z-index: 2;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.work-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.work-red {
    background: linear-gradient(to bottom, #e42b2b 0%, rgba(190, 17, 17, 0.8) 100%);
    color: white;
}

.work-white {
    background: linear-gradient(to bottom, #eaecf0 0%, rgba(199, 203, 207, 0.8) 100%);
    color: #0000009d
}

.work-blue {
    background: linear-gradient(to bottom, #2056eb 0%, rgba(19, 74, 155, 0.8) 100%);
    color: white;
}

[data-fade] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-fade].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 970px) {
    .about-approach {
        padding: 4rem 2rem;
    }
}