  .dm-results-section{
    padding:80px 0;
    background:#f7f7f7;
    font-family:Arial,sans-serif;
}

.dm-heading{
    text-align:center;
    margin-bottom:50px;
}

.dm-heading h2{
    font-size:50px;
    color:#009cea;
    margin-bottom:10px;
    font-weight:700;
}

.dm-heading p{
    font-size:24px;
    font-weight:600;
}

.dm-slider-wrapper{
    max-width:1200px;
    margin:auto;
    position:relative;
}

.dm-slide{
    display:none;
}

.dm-slide.active{
    display:block;
}

.dm-content{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    min-height:430px;
    position:relative;
    overflow:hidden;
}

.dm-left-content{
    width:55%;
    padding:70px 50px;
}

.dm-left-content h3{
    font-size:48px;
    color:#ff5a00;
    margin-bottom:20px;
}

.dm-left-content p{
    color:#444;
    line-height:1.8;
    font-size:16px;
}

.dm-read-btn{
    display:inline-block;
    margin-top:10px;
    padding:14px 35px;
    background:#009cea;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
}

.dm-right-image{
    position:absolute;
    top:0;
    right:0;
    width:40%;
    height:100%;
}

.dm-right-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.dm-result-box{
    position:absolute;
    Right:50px;
    bottom:25px;
    width:65%;
    background:#fff;
    display:flex;
    justify-content:space-between;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    border-radius:10px;
    padding:5px;
}

.dm-result-item{
    flex:1;
    text-align:center;
    border-right:1px solid #ddd;
}

.dm-result-item:last-child{
    border-right:none;
}

.dm-result-item h4{
    font-size:48px;
    margin-bottom:10px;
    font-weight: 700;
}

.dm-result-item span{
    color:#777;
}

.dm-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    background:#fff;
    border-radius:50%;
    font-size:28px;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    z-index:10;
}

.dm-prev{
    left:-70px;
}

.dm-next{
    right:-70px;
}

@media(max-width:991px){

    .dm-left-content{
        width:100%;
        padding:30px;
    }

    .dm-right-image{
        position:relative;
        width:100%;
        height:250px;
    }

    .dm-result-box{
        position:relative;
        width:100%;
        left:0;
        bottom:0;
        flex-direction:column;
        gap:15px;
        margin-top:20px;
    }

    .dm-result-item{
        border:none;
    }

    .dm-prev{
        left:10px;
    }

    .dm-next{
        right:10px;
    }
}