.elite-accounting-banner {
    background: linear-gradient(135deg, #00172d, #003366, #005580);
    min-height: 40vh;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: url("assets/img/bg/accounting-pattern.png") center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.banner-content {
    z-index: 3;
    position: relative;
}

.banner-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ffffff, #7effb2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeSlideUp 1.2s ease-out;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    animation: fadeSlideUp 1.6s ease-out;
}

.breadcrumb {
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #ffffff;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Floating currency animation */
.floating-symbols {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-symbols span {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2rem;
    font-weight: bold;
    animation: floatSymbols 12s linear infinite;
}

.floating-symbols span:nth-child(1) {
    top: 80%;
    left: 10%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.floating-symbols span:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    font-size: 3rem;
}

.floating-symbols span:nth-child(3) {
    top: 20%;
    left: 40%;
    animation-delay: 6s;
    font-size: 2.8rem;
}

.floating-symbols span:nth-child(4) {
    top: 10%;
    left: 70%;
    animation-delay: 9s;
    font-size: 2.2rem;
}

@keyframes floatSymbols {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Fade & slide animation */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

.accounting-banner {
    position: relative;
    height: 75vh;
    overflow: hidden;
    background: linear-gradient(120deg, #001f3f, #004080);
    color: #fff;
}

#accountingCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}




@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

.accounting-banner {
    position: relative;
    height: 55vh;
    /* ↓ reduced height */
    overflow: hidden;
    background: linear-gradient(135deg, #002147, #004080);
    color: #fff;
}

#accountingCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 15px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    /* pure white text */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.breadcrumb {
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}


/* Responsive */
@media (max-width: 992px) {
    .accounting-banner {
        height: 50vh;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .accounting-banner {
        height: 45vh;
    }

    .banner-title {
        font-size: 1.6rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }
}