.page-title .bg-layer,
.page-title .bg-layer:before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}
.page-title .bread-crumb li,
.page-title .bread-crumb li a {
    display: inline-block;
    color: #fff
}
.page-title {
    position: relative;
    padding: 80px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden
}
.page-title .bg-layer {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw
}
.page-title .bg-layer:before {
    content: '';
    background: #000;
    opacity: .25  /* Reduced from 0.5 to 0.25 for lighter overlay */
}
.page-title .pattern-layer .pattern-1 {
    position: absolute;
    left: 0;
    bottom: 83px;
    width: 86px;
    height: 170px;
    background-repeat: no-repeat
}
.page-title .pattern-layer .pattern-2 {
    position: absolute;
    top: 0;
    right: 120px;
    width: 279px;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-animation: 15s linear infinite service_hexagon_2;
    -moz-animation: 15s linear infinite service_hexagon_2;
    -o-animation: 15s linear infinite service_hexagon_2;
    animation: 15s linear infinite service_hexagon_2
}
.page-title h1 {
    position: relative;
    display: block;
    font-size: 64px;
    line-height: 74px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 19px
}
.page-title .bread-crumb li {
    position: relative;
    font-size: 18px;
    line-height: 32px;
    padding-right: 15px;
    margin-right: 5px
}
.page-title .bread-crumb li:last-child {
    padding: 0 !important;
    margin: 0 !important
}
.page-title .bread-crumb li a:hover {
    color: var(--theme-color)
}
.page-title .bread-crumb li:before {
    position: absolute;
    content: '/';
    top: 0;
    right: 0
}
.page-title .bread-crumb li:last-child:before {
    display: none
}
.rtl .page-title .bread-crumb li {
    padding-right: 0;
    padding-left: 15px;
    margin-right: 0;
    margin-left: 5px
}
.rtl .page-title .bread-crumb li:before {
    right: inherit;
    left: 0
}

/* Mobile Styles */
@media only screen and (max-width:767px) {
    .page-title {
        padding: 60px 0;
        background-color: transparent; /* Removed dark background */
    }
    .page-title .bg-layer {
        background-size: cover; /* Keep cover for desktop-like appearance */
        background-position: center center;
        width: 100%;
        left: 0;
        transform: none;
    }
    .page-title .bg-layer:before {
        opacity: .3; /* Lighter overlay on mobile */
    }
    .page-title h1 {
        font-size: 40px;
        line-height: 50px
    }
    .page-title .pattern-layer .pattern-1 {
        bottom: 30px
    }
}