.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay effect */
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb-content .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.breadcrumb-content .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-content .breadcrumb-link a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-content .breadcrumb-link a:hover {
    text-decoration: underline;
}

.for-capital{
    text-transform: capitalize;
}

@media screen and (max-width: 480px) {
    .breadcrumb-section {
        padding: 122px 0 50px;
    }

    .breadcrumb-content h1 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 10px;
    }
}