/* ================= */
/* BREADCRUMB */
/* ================= */

/* ====== Breadcrumb Section ====== */
.breadcrumb-section {
    /* Dark overlay with an abstract/corporate background */
    background: linear-gradient(rgba(10, 28, 58, 0.85), rgba(10, 28, 58, 0.85)), url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    padding: 90px 0;
    position: relative;
    border-bottom: 4px solid var(--primary-color); /* Golden Yellow bottom line */
}

.breadcrumb-title {
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.breadcrumb-custom {
    background: transparent;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom .breadcrumb-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--primary-color);
}

/* Custom separator using FontAwesome */
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105"; /* Angle Right Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    padding: 0 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 2.2rem;
    }
    .breadcrumb-section {
        padding: 60px 0;
    }
}