#where-we-build {
    background-color: #000000;
}
#where-we-build .text-gold {
    color: #d4af37 !important;
}
#where-we-build .bg-black {
    background-color: #000000 !important;
}
#where-we-build .wwb-card {
    background-color: #111111 !important;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #333333 !important;
}
#where-we-build .wwb-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15) !important;
    border-color: #d4af37 !important;
}
#where-we-build .wwb-img-wrapper {
    overflow: hidden;
    position: relative;
}
#where-we-build .wwb-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(17,17,17,0) 0%, rgba(17,17,17,1) 100%);
    pointer-events: none;
}
#where-we-build .wwb-img {
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
#where-we-build .wwb-card:hover .wwb-img {
    transform: scale(1.08);
}
#where-we-build .border-secondary {
    border-color: #333333 !important;
}
