.page-banner {
    position: relative;
    padding: 30px 0 0;
    background: linear-gradient(135deg, #021e49 0%, #03326f 100%);
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.banner-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: auto auto;
    margin-bottom: 20px;
}

.banner-badge-wrapper {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
}

.banner-badge {
    max-width: 140px;
    height: auto;
}

.banner-content h1 {
    font-size: 2.5rem;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-content p {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 400;
}

/* Background Bubbles */
.page-banner .bg-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    z-index: 1;
}

.page-banner .bg-bubble-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -100px;
    animation: bubblePop 6s infinite;
}

.page-banner .bg-bubble-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 35%;
    animation: bubblePop 8s infinite 1s;
}

.page-banner .bg-bubble-3 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
    animation: bubblePop 9s infinite 2s;
}

.page-banner .bg-bubble-4 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 15%;
    animation: bubblePop 5s infinite 0.5s;
}

.page-banner .bg-bubble-5 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 10%;
    animation: bubblePop 7s infinite 2.5s;
}

@keyframes bubblePop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.breadcrumb-nav {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    width: 100%;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    /* Bold Home text */
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav .divider {
    color: var(--primary-color);
    /* Teal divider */
    margin: 0 10px;
}

.breadcrumb-nav .active {
    color: var(--primary-color);
    /* Teal active page */
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .banner-badge {
        max-width: 110px;
    }
}

@media (max-width: 767px) {
    .page-banner {
        padding: 40px 0 0;
    }

    .banner-badge-wrapper {
        position: static;
        margin-bottom: 20px;
        order: -1;
    }

    .banner-content h1 {
        font-size: 1.75rem;
        margin: 10px 0;
        letter-spacing: 1px;
    }

    .banner-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .breadcrumb-nav {
        padding: 12px 0;
        font-size: 13px;
    }

    .page-banner .bg-bubble-1 { width: 300px; height: 300px; }
    .page-banner .bg-bubble-2 { width: 200px; height: 200px; }
    .page-banner .bg-bubble-3 { width: 250px; height: 250px; }
    .page-banner .bg-bubble-4 { display: none; }
    .page-banner .bg-bubble-5 { display: none; }
}