.about-us-title {
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .about-us-title::after {
        background: #019442 none repeat scroll 0 0;
        content: "";
        display: block;
        height: 1px;
        margin-top: 10px;
        width: 250px;
        position: relative;
        left: 37%;
        border-radius: 5px;
    }

    .contact-us-title {
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .contact-us-title::after {
        background: #019442 none repeat scroll 0 0;
        content: "";
        display: block;
        height: 5px;
        margin-top: 10px;
        width: 300px;
        position: relative;
        left: 135px;
        border-radius: 5px;
    }

    p{
        margin-bottom: 15px;
    }

    .islamic-ul{
        list-style: square;
        padding: 0;
    }

    .islamic-ul li{
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
        margin-left: 20px;
    }

    .product-title {
        padding: 10px 5px 10px 5px;
        text-align: center;
        background: #00793f;
    }

    .product-title h4 {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin-top: 35px;
        text-align: center;
    }

    .product-cat-div img{
        transition: all 500ms ease;
    }

    .product-cat-div:hover img{
        transform: scale(1.1);
    }

    .contact-detail p{
        font-size: 22px;
        font-weight: 700;
        line-height: 40px;
        text-align: center;
        color:#00793f;
    }

    .panel-default>.panel-heading {
        color: #fff;
        background-color: #00793f;
        border-color: #00793f;
        padding: 20px;
    }


.custom-bg-prop{
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    background-color: #0b5e3a;
    background-blend-mode: multiply;
    
    /* layout & spacing */
    min-height: 320px;
    padding: 48px 24px;
    display: flex; 
    align-items: center;
    justify-content: flex-start;

    /* typography */
    color: #ffffff;
    text-align: left; 

    /* stacking context for overlay pseudo-element */
    position: relative;
    overflow: hidden;
}

.custom-bg-prop::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.28); /* opacity সমন্বয় করে টেক্সট contrast বাড়ান */
    pointer-events: none;
}

.custom-bg-prop > *{
    position: relative;
    z-index: 1;
}


.panel-title a:hover,.panel-title a:focus{
    text-decoration: none !important;
    color: #fff !important;
}

.panel-body p, .panel-body li{
    color: #696969;
}


    @media only screen and (max-width: 768px){
        .custom-bg-prop{
            background-attachment: scroll;
            background-position: center;
            padding: 32px 16px;
            min-height: 260px;
        }

        .about-us-title{
            font-size: 22px;
        }

        .about-us-title::after {
            background: #019442 none repeat scroll 0 0;
            content: "";
            display: block;
            height: 1px;
            margin-top: 10px;
            width: 200px;
            position: relative;
            left: 23%;
            border-radius: 5px;
        }

    }