/* ============ PAGE BREADCRUMB ============ */
.page-breadcrumb-section {
    position: relative;
    padding: 100px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: center;
}

/* Gradient overlay on top of the image for readability */
.pb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(160, 20, 75, 0.92) 0%, rgba(106, 27, 154, 0.90) 100%);
    z-index: 0;
}

.pb-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.pb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FCE4EC;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pb-eyebrow i {
    color: #F8BBD0;
}

.pb-title {
    font-family: var(--font-heading);
    font-size: clamp(25px, 3.8vw, 40px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.pb-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.page-breadcrumb-section .breadcrumb {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 9px 24px;
    border-radius: 50px;
}

.page-breadcrumb-section .breadcrumb-item a {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.page-breadcrumb-section .breadcrumb-item a:hover {
    color: #F8BBD0;
}

.page-breadcrumb-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 14px;
}

.page-breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.55);
}

/* Floating decorative icons */
.pb-float {
    position: absolute;
    color: rgba(255, 255, 255, 0.18);
    z-index: 1;
    animation: floaty 7s ease-in-out infinite;
}

.pb-f1 {
    font-size: 46px;
    top: 20%;
    left: 8%;
}

.pb-f2 {
    font-size: 32px;
    top: 65%;
    left: 15%;
    animation-delay: 1.8s;
}

.pb-f3 {
    font-size: 38px;
    top: 24%;
    right: 10%;
    animation-delay: 3.2s;
}

.pb-f4 {
    font-size: 50px;
    bottom: 18%;
    right: 6%;
    animation-delay: 4.6s;
}

.pb-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.pb-wave svg {
    width: 100%;
    height: 70px;
    display: block;
}

@media (max-width: 767px) {
    .page-breadcrumb-section {
        padding: 60px 0 70px;
    }

    .pb-subtext {
        font-size: 14.5px;
    }

    .pb-float {
        display: none;
    }
    .pb-eyebrow{
        padding: 5px 15px;
        font-size: 12px;
    }
}