/* Enhanced Creative Inner Banner */
.inner-page-banner {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-top: 100px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(120deg, #0d3b1f, #14492A, #1F6231, #2A8341);
    background-size: 30px 30px, 30px 30px, 300% 300%;
    animation: gradientShift 10s ease infinite;
    overflow: hidden;
}

/* Decorative abstract shapes */
.inner-page-banner::before,
.inner-page-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: floatShape 8s ease-in-out infinite;
}

.inner-page-banner::before {
    width: 400px;
    height: 400px;
    background: rgba(163, 230, 53, 0.15);
    /* Light green accent */
    top: -150px;
    left: -100px;
}

.inner-page-banner::after {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    /* White subtle accent */
    bottom: -100px;
    right: -50px;
    animation-delay: 2s;
}

.banner-content {
    width: 50%;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    animation: contentReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.banner-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #A3E635, #4ADE80);
    margin: 24px auto 0;
    border-radius: 2px;
    transition: width 0.8s ease;
    animation: underlineExpand 1s 0.5s ease forwards;
}

.banner-breadcrumbs {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 24px;
    border-radius: 30px;
}

.banner-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.banner-breadcrumbs a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #A3E635;
    transition: width 0.3s ease;
}

.banner-breadcrumbs a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.banner-breadcrumbs a:hover::after {
    width: 100%;
}

.banner-breadcrumbs .current {
    color: #A3E635;
    font-weight: 700;
}

.banner-breadcrumbs span.sep {
    margin: 0 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    line-height: 1;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%, 0% 50%, 0% 50%;
    }

    50% {
        background-position: 0% 50%, 0% 50%, 100% 50%;
    }

    100% {
        background-position: 0% 50%, 0% 50%, 0% 50%;
    }
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes contentReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineExpand {
    to {
        width: 80px;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .inner-page-banner {
        height: 280px;
        margin-top: 80px;
    }

    .banner-content {
        padding: 30px 20px;
        width: 90%;
    }

    .banner-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .banner-title::after {
        margin-top: 16px;
    }

    .banner-breadcrumbs {
        font-size: 12px;
        letter-spacing: 1px;
        padding: 8px 16px;
    }

    .banner-breadcrumbs span.sep {
        margin: 0 10px;
    }
}