:root {
    --color-1: #0f1724;
    /* deep navy */
    --color-2: #0b3a6b;
    /* royal dark blue */
    --color-3: #276fbf;
    /* mid blue */
}

/*==============================
   Section Base
==============================*/
.business-banner-section {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-2) 0%, var(--color-3) 60%, var(--color-1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/*==============================
   Growth Lines Canvas
==============================*/
#growth-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

/*==============================
   Animated Skyline (Dubai Silhouette)
==============================*/
.animated-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/Dubai_skyline_silhouette.svg') no-repeat center bottom;
    background-size: cover;
    opacity: 0.25;
    animation: skylineGlow 6s ease-in-out infinite alternate;
    z-index: 2;
}

@keyframes skylineGlow {
    from {
        opacity: 0.15;
        filter: brightness(0.8);
    }

    to {
        opacity: 0.35;
        filter: brightness(1.2);
    }
}

/*==============================
   Floating Shimmer
==============================*/
.floating-shimmer {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.0) 80%);
    transform: translateX(-100%);
    animation: shimmerMove 8s linear infinite;
    z-index: 3;
}

@keyframes shimmerMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/*==============================
   Text Content
==============================*/
.banner-content {
    position: relative;
    z-index: 4;
    animation: fadeInUp 1.5s ease;
}

.banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 0 25px rgba(39, 111, 191, 0.4);
}

.page-breadcrumb {
    margin-top: 10px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #aad4ff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}