/* ============================================
   IMPROVED BREADCRUMB DESIGN
   ============================================ */

/* Modern Breadcrumb Section with Beautiful Styling */
.page-hero {
    background: linear-gradient(157deg, #56b24ca6 20%, #043700d6 57%), url(images/breadcrumb-bg.jpg) center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 30px 0 30px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--primary-color);
    background-position: bottom;
}

/* Glassmorphism Breadcrumb */


.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 7px 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.breadcrumb-item {
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\F285";
    /* Bootstrap Icons Chevron Right */
    font-family: "bootstrap-icons";
    color: rgba(255, 255, 255, 0.6);
    padding: 0 0.75rem;
    font-size: 0.8rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 700;
}

/* Enhanced Page Title */
.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    animation: titleSlideIn 0.6s ease-out;
}

.page-title .color {
    color: #a8e6a0;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 2px 10px rgba(168, 230, 160, 0.4);
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: subtitleFadeIn 0.6s ease-out 0.2s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Responsive Breadcrumb */
@media (max-width: 991px) {
    .page-hero {
        padding: 100px 0 70px;
        background-attachment: scroll;
    }

    .page-title {
        font-size: 3rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .breadcrumb {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .breadcrumb {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 0.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .page-hero {
        padding: 70px 0 50px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .breadcrumb {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}