body {
    background-image: url('../images/ChatGPT Image Feb 11, 2026, 10_29_23 AM.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Custom Grid for Business Locations to center items */
.business-locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.business-locations-grid .feature-card {
    flex: 1 1 250px;
    max-width: 350px;
}

/* Styles for cards with background images */
.feature-card.has-bg {
    background-size: cover;
    background-position: center;
    color: white !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.feature-card.has-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    /* Gradient overlay */
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card.has-bg:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
}

.feature-card.has-bg .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.feature-card.has-bg h3 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-card.has-bg p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Make all text white in the #why-dubai section */
#why-dubai,
#why-dubai h2,
#why-dubai p,
#why-dubai span,
#why-dubai div {
    color: white !important;
}