.tech-breadcrumb-wrapper {

    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center; 
    padding: 80px 40px;
    background-position: top;

}


.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px; 
}

.breadcrumb-item a {
    color: #aaa;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}


.breadcrumb-separator {
    color: rgb(238, 9, 9); 
    flex-shrink: 0;
}

.breadcrumb-item.active {
    color: var(--primary-color, #50a5e2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1rem, 3vw, 1.9rem);
    
}



