
.d-flex{
    display: flex;
}
    /* Main Breadcrumb */
    .custom-breadcrumb {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 2px;

        padding: 12px 18px;
        /* margin: 20px 0; */

        /* background: linear-gradient(135deg, var(--skinColor) 0%, var(--primary-light) 100%); */

        border: 1px solid #e3e8ef;
        border-radius: 14px;

        box-shadow:
            0 4px 12px rgba(0,0,0,0.04),
            0 1px 3px rgba(0,0,0,0.06);
            margin-top:  0;
        font-family: 'Noto Kufi Arabic', sans-serif;
    }

    .custom-breadcrumb.breadcrumb {
        margin-bottom: 5px;
         background: white;  
    }

    /* Items */
    .custom-breadcrumb > li {
        display: inline-flex;
        align-items: center;
        font-size: 14px;
        line-height: 1.8;
        color: #4b5563;
        font-weight: bold;
    }

    /* Direction Aware Separator */
    html[dir="ltr"] .custom-breadcrumb > li + li:before {
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #b0b7c3;
        padding: 0 10px;
        font-size: 11px;
    }

    html[dir="rtl"] .custom-breadcrumb > li + li:before {
        content: "\f104";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #b0b7c3;
        padding: 0 10px;
        font-size: 11px;
    }

    /* Links */
    .custom-breadcrumb a {
        position: relative;
        color: #0f4c81;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .custom-breadcrumb a:hover {
        color: var(--skinColor);
    }

    .custom-breadcrumb a:not(.home-link):after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, var(--skinColor) 0%, var(--primary-light) 100%);

        transition: width 0.25s ease;
        border-radius: 10px;
    }

    .custom-breadcrumb a:hover:after {
        width: 100%;
    }

    /* Home Button */
    .custom-breadcrumb .home-link {
        width: 38px;
        height: 38px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background: linear-gradient(135deg, var(--skinColor) 0%, var(--primary-light) 100%);

        color: #fff !important;

        box-shadow:
            0 4px 10px rgba(47,128,237,0.25),
            inset 0 1px 1px rgba(255,255,255,0.2);

        transition: all 0.25s ease;
    }

    .custom-breadcrumb .home-link:hover {
        transform: translateY(-1px);
        box-shadow:
            0 6px 14px rgba(47,128,237,0.35),
            inset 0 1px 1px rgba(255,255,255,0.2);
    }

    .custom-breadcrumb .home-link i {
        font-size: 14px;
    }

    /* Active */
    .custom-breadcrumb > .active {
        color: #1f2937;
        font-weight: 700;
    }

    /* Mobile */
    @media (max-width: 767px) {

        .custom-breadcrumb {
            padding: 10px 14px;
            border-radius: 12px;
        }

        .custom-breadcrumb > li {
            font-size: 12px;
        }

        .custom-breadcrumb > li + li:before {
            padding: 0 6px !important;
        }

        .custom-breadcrumb .home-link {
            width: 32px;
            height: 32px;
        }

        .custom-breadcrumb .home-link i {
            font-size: 12px;
        }
    }

 

    /* =========================
       GLOBAL
    ========================== */

    .service-layout{
        margin-top:20px;
    }

    .kufi,
    .kufi *{
        font-family:'Noto Kufi Arabic',sans-serif;
    }

    .service-card{
        /* background:linear-gradient(135deg, var(--skinColor) 0%, var(--primary-light) 100%); */

        border:1px solid #e4e9f0;
        border-radius:16px;
        padding:20px;
        margin-bottom:20px;

        box-shadow:
            0 4px 12px rgba(0,0,0,0.04),
            0 1px 3px rgba(0,0,0,0.06);

        transition:0.25s ease;
    }

    .service-card:hover{
        transform:translateY(-2px);
        box-shadow:
            0 10px 25px rgba(0,0,0,0.06),
            0 2px 6px rgba(0,0,0,0.05);
    }

    /* =========================
       CONTENT AREA
    ========================== */

    .content-box{
        width:100%;
        min-height:500px;
        border-radius:14px;
        background:
            linear-gradient(135deg,#ffffff 0%,#f8fafc 100%);
        border:1px dashed #d7dee8;

        display:flex;
        align-items:center;
        justify-content:center;

        color:#7b8794;
        font-size:15px;
        text-align:center;
        /* padding:30px; */
    }

    /* =========================
       HEADERS
    ========================== */

    .widget-title{
        position:relative;

        font-size:16px;
        font-weight:700;
        color:#16324f;

        margin:0 0 20px;
        padding-bottom:12px;
    }

    .widget-title:after{
        content:"";
        position:absolute;
        bottom:0;

        width:60px;
        height:3px;
         background:linear-gradient(135deg, var(--skinColor) 0%, var(--primary-light) 100%);

        border-radius:10px;
    }

    html[dir="rtl"] .widget-title:after{
        right:0;
    }

    html[dir="ltr"] .widget-title:after{
        left:0;
    }

    /* =========================
       SERVICE INFO
    ========================== */

    .service-info-link{
        display:flex;
        align-items:center;
        gap:12px;

        padding:14px 16px;
        border-radius:12px;

        background:#f7fafd;
        border:1px solid #e2e8f0;

        color:#0f4c81;
        text-decoration:none !important;

        transition:0.25s ease;
    }

    .service-info-link:hover{
        background:#eef5fc;
        transform:translateY(-1px);
    }

    .service-info-link i{
        width:42px;
        height:42px;

        display:flex;
        align-items:center;
        justify-content:center;

        border-radius:12px;
 
        background:linear-gradient(135deg, var(--skinColor) 0%, var(--primary-light) 100%);

        color:#fff;

        font-size:18px;

        box-shadow:0 4px 12px rgba(47,128,237,0.25);
    }

    /* =========================
       FEEDBACK BOX
    ========================== */

    .feedback-box{
        margin-top:25px;
        padding-top:20px;
        border-top:1px solid #e3e8ef;
    }

    .feedback-question{
        font-size:14px;
        color:#374151;
        margin-bottom:15px;
        font-weight:600;
    }

    .feedback-actions{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
    }

    .custom-btn{
        min-width:90px;
        border:none;
        border-radius:10px;

        padding:10px 18px;

        background: linear-gradient(135deg, var(--skinColor) 0%, var(--primary-light) 100%);

        color:#fff;

        font-size:13px;
        font-weight:600;

        transition:0.25s ease;
    }

    .custom-btn:hover{
        opacity:.92;
        transform:translateY(-1px);
        color:#fff;
    }

    .custom-btn.light{
        background:#fff;
        color:#0f4c81;
        border:1px solid #d6e0eb;
    }

    .custom-btn.light:hover{
        background:#f5f9fd;
    }

    textarea.form-control{
        margin-top:15px;
        border-radius:12px;
        border:1px solid #dbe2ea;
        box-shadow:none;
        resize:none;
        padding:12px;
    }

    textarea.form-control:focus{
        border-color:#2f80ed;
        box-shadow:0 0 0 4px rgba(47,128,237,0.08);
    }

    /* =========================
       SERVICE LIST
    ========================== */

    .service-list{
        margin:0;
        padding:0;
        list-style:none;
    }

    .service-list li{
        margin-bottom:10px;
    }

    .service-item{
        display:flex;
        align-items:center;
        gap:12px;

        padding:12px 14px;

        border-radius:12px;
        border:1px solid #edf1f5;

        background:#fff;

        text-decoration:none !important;
        color:#344054;

        transition:0.25s ease;
    }

    .service-item:hover{
        background:#f8fbff;
        transform:translateX(-2px);
    }

    .service-item img{
        width:42px;
        height:42px;
        object-fit:contain;

        padding:7px;
        border-radius:10px;

        background:#f3f7fb;
        border:1px solid #e3e9f0;
    }

    /* 
        =========================
        RATING
        ========================== 
    */

    .rating-box{
        margin-top:10px;
    }

    .rating-stars{
        display:flex;
        align-items:center;
        gap:5px;
        margin-top:10px;
    }

    .rating-stars span{
        font-size:24px;
        color:#f5b301;
        cursor:pointer;
        transition:0.2s ease;
    }

    .rating-stars span:hover{
        transform:scale(1.1);
    }

    .rating-score{
        margin-top:10px;
        font-weight:700;
        color:#1f2937;
    }

    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:991px){
        .service-card-ctr{
            width: 100%;
        }
        .service-card{
            margin:0 10px 20px;
            margin-inline-end: 0;
         }


        .content-box{
            min-height:300px;
            margin-bottom:20px;
        }

        .service-layout .right{
            margin-top:0;
        }
    }

    @media(max-width:767px){

        .service-card{
            padding:16px;
            border-radius:14px;
        }

        .widget-title{
            font-size:15px;
        }

        .service-item{
            padding:10px 12px;
        }

        .service-item img{
            width:38px;
            height:38px;
        }

        .feedback-actions{
            flex-direction:column;
        }

        .custom-btn{
            width:100%;
        }
    }