.about-hero {
    position: relative;
    background: url('/assets/images/about/5c9b109fc0abbb637a681ca1e6d870e086c92453.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
}

/* Dark Overlay */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.66);
}

/* Breadcrumb Container */
.breadcrumb-container {
    position: relative;
    z-index: 1;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: none;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    margin: 0;
    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-family: 'Parkinsans', sans-serif;
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

/* Separator Icon using Bootstrap Icon or Font Awesome */
.breadcrumb li + li::before {
    content: "\f285"; /* Unicode for Bootstrap Icon: bi-chevron-right */
    font-family: "bootstrap-icons"; /* Make sure Bootstrap Icons CSS is loaded */
    margin: 0 10px;
    color: #fff;
    font-size: 20px;
}

/* Link Styling */
.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #DFE121;
}

.breadcrumb li.active {
    color: #fff;
}

.breadcrumb i {
    margin-right: 8px;
    color: white;
    font-size: 40px;
}

/* Responsive */
@media (max-width: 767px) {
    .about-hero {
        height: 300px;
    }
    .breadcrumb {
        padding: 8px 15px;
    }
    .breadcrumb li {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .about-hero {
        height: 250px;
    }
    .breadcrumb {
        padding: 6px 12px;
    }
    .breadcrumb li {
        font-size: 12px;
    }
    .breadcrumb li + li::before {
        margin: 0 5px;
    }
    .breadcrumb i {
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    .more_det {
        padding: 0px 3px;
    }

    .Discover_btn_center {
        display: flex;
        justify-content: center;
    }

    .about-company-details {
        width: 80%;
    }

    .date-number {
        margin: 0px 0px;
    }
}