/* Breadcrumb Styles - Redesigned & Refined */
.it-breadcrumb-area::before {

    background: linear-gradient(216deg, rgb(37 91 121 / 85%) 0%, rgb(227 30 36 / 5%) 100%);

}

.it-breadcrumb-area {
    padding-top: 13px !important;
    padding-bottom: 10px !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.it-breadcrumb-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Gradient removed to show background image clearly */
    z-index: -1;
}

.it-breadcrumb-bg {
    /* Use the new generated background image by default, !important to override JS data-background inline style */
    background-image: url('../img/breadcrumb/breadcrumb-bg-new.png') !important;
}

/* Container text alignment - Force Right Align even if .text-center class exists */
.it-breadcrumb-content,
.it-breadcrumb-content.text-center {
    text-align: right !important;
}

.it-breadcrumb-title {
    font-size: 36px !important;
    color: var(--it-common-white);
    padding-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Breadcrumb List Items */
.it-breadcrumb-list {
    display: inline-block;
}

.it-breadcrumb-list span {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: capitalize;
    display: inline-block;
}

.it-breadcrumb-list span a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

.it-breadcrumb-list span a:hover {
    color: #fff;
    text-decoration: underline;
}

.it-breadcrumb-list .dvdr {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    transform: translateY(0);
}

.it-breadcrumb-list i {
    font-style: normal;
    color: #fff;
    font-size: 14px !important;
    font-weight: 600;
}

/* Reduce SVG icon size in separator */
.it-breadcrumb-list .dvdr svg {
    width: 10px;
    height: 10px;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .it-breadcrumb-area {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .it-breadcrumb-content,
    .it-breadcrumb-content.text-center {
        text-align: center !important;
    }

    .it-breadcrumb-title {
        font-size: 24px !important;
    }
}

@media only screen and (min-width: 768px) {

    .it-breadcrumb-content,
    .it-breadcrumb-content.text-center {
        text-align: right !important;
    }
}