/* What We Do / Projects Hero - Remove animations, keep only hero-specific styles */
.wwd-hero {
    height: 85vh;
    min-height: 650px;
    position: relative;
}

.wwd-hero-bg img {
    filter: brightness(0.65) saturate(1.15) contrast(1.1);
    object-position: center;
    transition: transform 0.8s ease;
}

.wwd-hero:hover .wwd-hero-bg img {
    transform: scale(1.03);
    /* optional subtle zoom */
}

.wwd-hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(11, 83, 148, 0.65) 100%);
    z-index: 1;
}

.wwd-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.letter-spacing-wide {
    letter-spacing: 0.35em;
    font-size: 1.4rem;
}

.text-light-blue {
    color: #c3d9ff;
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wwd-hero .btn-outline-light {
    border-width: 2px;
    transition: all 0.35s ease;
}

.wwd-hero .btn-outline-light:hover {
    background-color: #ffffff;
    color: #074e8c;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
}

/* Responsive  */
@media (max-width: 992px) {
    .wwd-hero {
        height: 75vh;
        min-height: 550px;
    }

    h1.display-4 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .wwd-hero {
        height: 70vh;
        min-height: 500px;
    }

    h5.letter-spacing-wide {
        font-size: 1.1rem;
        letter-spacing: 0.25em;
    }

    .btn-lg {
        padding: 0.8rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    h1.display-4 {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    .wwd-hero-content {
        padding: 2rem 1rem;
    }

    .lead {
        font-size: 1.25rem;
    }
}