/* ===== Header ===== */

.dm-header{
    background:#082A5E;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.dm-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    min-height:85px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.dm-logo img{
    max-height:60px;
    width:auto;
}

..dm-logo{
    display:flex;
    align-items:center;
    gap:15px;
    flex-shrink:0;
    text-align:right;
}

.dm-menu{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.dm-menu li{
    position:relative;
}

.dm-menu li a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.dm-menu li a:hover{
    color:#F6C453;
}

.dm-menu .current-menu-item>a{
    color:#F6C453;
}

/* زر الحجز */

.dm-book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:48px;
    padding:0 28px;
    background:#F6C453;
    color:#082A5E;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.dm-book-btn:hover{
    background:#ffffff;
    transform:translateY(-2px);
}

.dm-header-actions{
    display:flex;
    align-items:center;
    gap:20px;
}

/* زر الموبايل */

.dm-mobile-toggle{
    display:none;
    width:45px;
    height:45px;
    border:none;
    background:transparent;
    cursor:pointer;
    padding:0;
}

.dm-mobile-toggle span{
    display:block;
    width:28px;
    height:3px;
    background:#fff;
    margin:5px auto;
    border-radius:20px;
    transition:.3s;
}

/* الهاتف */

@media(max-width:991px){

    .dm-mobile-toggle{
        display:block;
    }

    .dm-nav{
        position:fixed;
        top:85px;
        right:-100%;
        width:300px;
        height:calc(100vh - 85px);
        background:#082A5E;
        transition:.4s;
        overflow:auto;
        box-shadow:-10px 0 30px rgba(0,0,0,.15);
    }

    .dm-nav.active{
        right:0;
    }

    .dm-menu{
        flex-direction:column;
        align-items:flex-start;
        gap:0;
    }

    .dm-menu li{
        width:100%;
    }

    .dm-menu li a{
        display:block;
        width:100%;
        padding:18px 25px;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .dm-book-btn{
        display:none;
    }
}
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
a,
li {
    font-family: 'Tajawal', sans-serif;
}

/* القائمة الفرعية */

.dm-menu .menu-item-has-children{
    position: relative;
}

/* السهم */

.dm-menu .menu-item-has-children > a::after{
    content: "\25BE";
    font-size: 12px;
    margin-right: 8px;
    display: inline-block;
    transition: .3s;
}

/* تدوير السهم */

.dm-menu .menu-item-has-children:hover > a::after{
    transform: rotate(180deg);
}

/* القائمة المنسدلة */

.dm-menu .sub-menu{
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 230px;
    background: #082A5E;
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    margin: 15px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    z-index: 999;
}

.dm-menu .menu-item-has-children:hover > .sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dm-menu .sub-menu li{
    width: 100%;
}

.dm-menu .sub-menu li a{
    display: block;
    padding: 12px 20px;
    color: #fff;
    font-size: 15px;
    transition: .3s;
}

.dm-menu .sub-menu li a:hover{
    background: rgba(255,255,255,.08);
    color: #F6C453;
}

@media(max-width:991px){

    .dm-menu .sub-menu{
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
        background: rgba(255,255,255,.05);
    }

    .dm-menu .menu-item-has-children.active > .sub-menu{
        display: block;
    }

    .dm-menu .menu-item-has-children > a::after{
        float: left;
    }

}

/* ===== الشعار واسم الموقع ===== */

.dm-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-right:0;
    margin-left:auto;
    white-space:nowrap;
}

.dm-logo .custom-logo-link{
    display:flex;
    align-items:center;
}

.dm-logo img{
    max-height:60px;
    width:auto;
}

.dm-site-branding{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    text-align:right;
}

.dm-site-title{
    color:#fff;
    text-decoration:none;
    font-size:32px;
    font-weight:700;
    line-height:1.2;
}

.dm-site-title:hover{
    color:#F6C453;
}

.dm-site-description{
    color:rgba(255,255,255,.75);
    font-size:14px;
    font-weight:400;
    margin-top:4px;
    line-height:1.5;
}

@media(max-width:991px){

    .dm-logo{
        margin-left:0;
        gap:10px;
    }

    .dm-logo img{
        max-height:50px;
    }

    .dm-site-title{
        font-size:24px;
    }

    .dm-site-description{
        font-size:12px;
    }
}
.dm-nav{
    flex:1;
    display:flex;
    justify-content:center;
    min-width:0;
}

/* ==================================
   Hero Section
================================== */

.dm-hero{
    background: linear-gradient(135deg,#082A5E 0%,#0D3B7D 100%);
    padding: 90px 0;
    overflow: hidden;
    position: relative;
}

.dm-hero::before{
    content:'';
    position:absolute;
    top:-150px;
    left:-150px;
    width:350px;
    height:350px;
    background:rgba(246,196,83,.08);
    border-radius:50%;
}

.dm-hero::after{
    content:'';
    position:absolute;
    bottom:-150px;
    right:-150px;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
}

.dm-hero .dm-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:2;
}

.dm-hero-content{
    flex:1;
    text-align:right;
}

.dm-hero-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    line-height:1.3;
    margin:0 0 25px;
}

.dm-hero-description{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:2;
    margin-bottom:35px;
    max-width:650px;
}

.dm-hero-buttons{
    display:flex;
    justify-content:flex-end;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.dm-hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    height:55px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.dm-btn-primary{
    background:#F6C453;
    color:#082A5E;
}

.dm-btn-primary:hover{
    background:#fff;
    transform:translateY(-3px);
}

.dm-btn-secondary{
    border:2px solid rgba(255,255,255,.3);
    color:#fff;
}

.dm-btn-secondary:hover{
    background:#fff;
    color:#082A5E;
}

.dm-hero-stats{
    display:flex;
    justify-content:flex-end;
    gap:20px;
    flex-wrap:wrap;
}

.dm-stat-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    padding:25px;
    border-radius:18px;
    min-width:150px;
    text-align:center;
    transition:.3s;
}

.dm-stat-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.12);
}

.dm-stat-number{
    display:block;
    color:#F6C453;
    font-size:32px;
    font-weight:800;
    margin-bottom:8px;
}

.dm-stat-label{
    display:block;
    color:#fff;
    font-size:15px;
}

.dm-hero-image{
    flex:0 0 450px;
    text-align:center;
}

.dm-hero-image img{
    max-width:100%;
    border-radius:30px;
    box-shadow:0 25px 50px rgba(0,0,0,.25);
    animation:dmFloat 4s ease-in-out infinite;
}

@keyframes dmFloat{
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }
}

/* ==========================
   Tablet
========================== */

@media(max-width:991px){

    .dm-hero{
        padding:70px 0;
    }

    .dm-hero .dm-container{
        flex-direction:column-reverse;
        text-align:center;
    }

    .dm-hero-content{
        text-align:center;
    }

    .dm-hero-title{
        font-size:40px;
    }

    .dm-hero-description{
        margin-right:auto;
        margin-left:auto;
    }

    .dm-hero-buttons{
        justify-content:center;
    }

    .dm-hero-stats{
        justify-content:center;
    }

    .dm-hero-image{
        flex:unset;
        width:100%;
    }

    .dm-hero-image img{
        max-width:380px;
    }

}

/* ==========================
   Mobile
========================== */

@media(max-width:576px){

    .dm-hero{
        padding:50px 0;
    }

    .dm-hero-title{
        font-size:30px;
    }

    .dm-hero-description{
        font-size:16px;
    }

    .dm-hero-btn{
        width:100%;
    }

    .dm-hero-buttons{
        flex-direction:column;
    }

    .dm-stat-card{
        width:100%;
    }

    .dm-hero-image img{
        max-width:280px;
    }

}


==================================
=         Services Section         =
==================================*/

.dm-services{
    padding:100px 0;
    background:#F8FAFC;
}

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

.dm-section-title{
    font-size:42px;
    font-weight:800;
    color:#082A5E;
    margin-bottom:15px;
    line-height:1.3;
}

.dm-section-description{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    font-size:17px;
    line-height:2;
}

/* شبكة الخدمات */

.dm-services-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

/* كارت الخدمة */

.dm-service-card{
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    border:1px solid #EDF2F7;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:all .3s ease;
}

.dm-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/* الأيقونة */

.dm-service-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:22px;
    background:#082A5E;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.dm-service-icon i{
    font-size:38px;
    color:#F6C453;
}

.dm-service-card:hover .dm-service-icon{
    transform:rotate(-8deg);
}

/* عنوان الخدمة */

.dm-service-title{
    font-size:24px;
    color:#082A5E;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.5;
}

/* وصف الخدمة */

.dm-service-description{
    color:#6B7280;
    font-size:15px;
    line-height:1.9;
    margin-bottom:25px;
}

/* زر الخدمة */

.dm-service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:48px;
    padding:12px 20px;
    background:#082A5E;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.dm-service-btn:hover{
    background:#F6C453;
    color:#082A5E;
}

/*=========================
=         Tablet          =
=========================*/

@media(max-width:991px){

    .dm-services{
        padding:80px 0;
    }

    .dm-section-title{
        font-size:36px;
    }

    .dm-services-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

/*=========================
=         Mobile          =
=========================*/

@media(max-width:767px){

    .dm-services{
        padding:60px 0;
    }

    .dm-section-heading{
        margin-bottom:40px;
        padding:0 15px;
    }

    .dm-section-title{
        font-size:30px;
    }

    .dm-section-description{
        font-size:15px;
    }

    .dm-services-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:15px;
    }

    .dm-service-card{
        padding:20px 15px;
        border-radius:18px;
    }

    .dm-service-icon{
        width:65px;
        height:65px;
        margin-bottom:15px;
        border-radius:18px;
    }

    .dm-service-icon i{
        font-size:28px;
    }

    .dm-service-title{
        font-size:18px;
        margin-bottom:10px;
    }

    .dm-service-description{
        display:none;
    }

    .dm-service-btn{
        min-height:42px;
        font-size:13px;
        padding:10px;
    }

}

/*=========================
=      Small Mobile       =
=========================*/

@media(max-width:480px){

    .dm-services-grid{
        grid-template-columns:1fr;
    }

}

/*==================================
=       Latest Posts Section       =
==================================*/

.dm-latest-posts{
    padding:100px 0;
    background:#F8FAFC;
}

.dm-posts-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.dm-posts-subtitle{
    display:block;
    color:#22C55E;
    font-size:15px;
    font-weight:700;
    margin-bottom:15px;
}

.dm-posts-description{
    color:#082A5E;
    font-size:20px;
    font-weight:600;
    line-height:2;
}

/* شبكة المقالات */

.dm-posts-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:35px;
}

/* كارت المقال */

.dm-post-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:all .35s ease;
}

.dm-post-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

/* صورة المقال */

.dm-post-image{
    display:block;
    overflow:hidden;
}

.dm-post-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.dm-post-card:hover .dm-post-image img{
    transform:scale(1.05);
}

/* محتوى الكارت */

.dm-post-content{
    padding:30px;
}

/* التصنيف */

.dm-post-category{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    border-radius:50px;
    background:#ECFDF5;
    color:#16A34A;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

/* عنوان المقال */

.dm-post-title{
    margin:0 0 18px;
}

.dm-post-title a{
    color:#082A5E;
    text-decoration:none;
    font-size:28px;
    font-weight:800;
    line-height:1.5;
    transition:.3s;
}

.dm-post-title a:hover{
    color:#F6C453;
}

/* التاريخ */

.dm-post-date{
    display:block;
    color:#9CA3AF;
    font-size:14px;
    margin-bottom:25px;
}

/* اقرأ المزيد */

.dm-post-readmore{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#16A34A;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.dm-post-readmore:hover{
    color:#082A5E;
}

/*=========================
=         Tablet          =
=========================*/

@media(max-width:991px){

    .dm-posts-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .dm-posts-description{
        font-size:18px;
    }

    .dm-post-title a{
        font-size:24px;
    }

}

/*=========================
=         Mobile          =
=========================*/

@media(max-width:767px){

    .dm-latest-posts{
        padding:70px 0;
    }

    .dm-posts-heading{
        margin-bottom:40px;
        padding:0 15px;
    }

    .dm-posts-subtitle{
        font-size:14px;
    }

    .dm-posts-description{
        font-size:16px;
        line-height:1.9;
    }

    .dm-posts-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .dm-post-image img{
        height:220px;
    }

    .dm-post-content{
        padding:22px;
    }

    .dm-post-title a{
        font-size:22px;
    }

}

.dm-latest-posts-wrapper{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

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

.dm-posts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

@media(max-width:991px){
    .dm-posts-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .dm-posts-grid{
        grid-template-columns:1fr;
    }
}

.dm-services-wrapper{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.dm-section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.dm-section-title{
    color:#082A5E;
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.dm-section-description{
    color:#6B7280;
    font-size:18px;
    line-height:2;
}

.dm-services-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

@media(max-width:991px){
    .dm-services-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:767px){

    .dm-section-title{
        font-size:30px;
    }

    .dm-section-description{
        font-size:16px;
    }

    .dm-services-grid{
        grid-template-columns:1fr;
    }

}

/*==================================
=         About Section            =
==================================*/

.dm-about{
    padding:100px 0;
    background:#F8FAFC;
}

.dm-about-wrapper{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* الصورة */

.dm-about-image img{
    width:100%;
    border-radius:30px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/* المحتوى */

.dm-about-subtitle{
    display:inline-block;
    background:#ECFDF5;
    color:#16A34A;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.dm-about-title{
    color:#082A5E;
    font-size:44px;
    font-weight:800;
    line-height:1.4;
    margin-bottom:20px;
}

.dm-about-description{
    color:#6B7280;
    font-size:17px;
    line-height:2;
    margin-bottom:30px;
}

/* المميزات */

.dm-about-features{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.dm-about-features li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
    color:#082A5E;
    font-size:17px;
    font-weight:600;
}

.dm-about-features i{
    color:#F6C453;
    font-size:20px;
}

/* الأزرار */

.dm-about-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.dm-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:160px;
    height:52px;
    padding:0 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

/* الزر الأساسي */

.dm-about-btn-primary{
    background:#F6C453;
    color:#082A5E;
}

.dm-about-btn-primary:hover{
    transform:translateY(-3px);
    background:#e8b63d;
}

/* الزر الثانوي */

.dm-about-btn-secondary{
    background:#082A5E;
    color:#fff;
}

.dm-about-btn-secondary:hover{
    transform:translateY(-3px);
    background:#0b387b;
}

/*=========================
=         Tablet          =
=========================*/

@media(max-width:991px){

    .dm-about-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .dm-about-title{
        font-size:36px;
    }

}

/*=========================
=         Mobile          =
=========================*/

@media(max-width:767px){

    .dm-about{
        padding:70px 0;
    }

    .dm-about-title{
        font-size:28px;
    }

    .dm-about-description{
        font-size:15px;
    }

    .dm-about-buttons{
        flex-direction:column;
    }

    .dm-about-btn{
        width:100%;
    }

}

/*==================================
=       Service Areas Section      =
==================================*/

.dm-service-areas{
    padding:100px 0;
    background:#ffffff;
}

.dm-service-areas-wrapper{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.dm-service-areas-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.dm-service-areas-title{
    color:#082A5E;
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
    line-height:1.4;
}

.dm-service-areas-description{
    color:#6B7280;
    font-size:17px;
    line-height:2;
}

/* شبكة المناطق */

.dm-service-areas-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:25px;
}

/* الكارت */

.dm-service-area-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:24px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.dm-service-area-card:hover{
    transform:translateY(-8px);
    border-color:#F6C453;
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

/* الأيقونة */

.dm-service-area-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#082A5E;
    display:flex;
    align-items:center;
    justify-content:center;
}

.dm-service-area-icon i{
    color:#F6C453;
    font-size:30px;
}

/* اسم المنطقة */

.dm-service-area-name{
    color:#082A5E;
    font-size:20px;
    font-weight:700;
    margin:0;
}

/*=========================
=         Tablet          =
=========================*/

@media(max-width:991px){

    .dm-service-areas-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .dm-service-areas-title{
        font-size:34px;
    }

}

/*=========================
=         Mobile          =
=========================*/

@media(max-width:767px){

    .dm-service-areas{
        padding:70px 0;
    }

    .dm-service-areas-heading{
        margin-bottom:40px;
    }

    .dm-service-areas-title{
        font-size:28px;
    }

    .dm-service-areas-description{
        font-size:15px;
    }

    .dm-service-areas-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .dm-service-area-card{
        padding:25px 15px;
    }

    .dm-service-area-icon{
        width:60px;
        height:60px;
    }

    .dm-service-area-icon i{
        font-size:24px;
    }

    .dm-service-area-name{
        font-size:18px;
    }

}
/*==================================
=     Category Posts Section       =
==================================*/

.dm-category-posts{
    padding:100px 0;
    background:#F8FAFC;
}

.dm-category-posts-wrapper{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

.dm-category-posts-heading{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.dm-category-posts-title{
    color:#082A5E;
    font-size:42px;
    font-weight:800;
    line-height:1.5;
    margin-bottom:15px;
}

.dm-category-posts-description{
    color:#6B7280;
    font-size:18px;
    line-height:2;
}

/* الشبكة */

.dm-category-posts-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

/* الكارت */

.dm-category-box{
    background:#fff;
    border-radius:30px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    border:1px solid #E5E7EB;
    transition:.3s;
}

.dm-category-box:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

.dm-category-box-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.dm-category-box-title{
    color:#082A5E;
    font-size:30px;
    font-weight:800;
    margin:0;
}

.dm-category-box-subtitle{
    display:block;
    color:#6B7280;
    font-size:14px;
    margin-top:5px;
}

.dm-category-box-header i{
    color:#082A5E;
    font-size:30px;
}

.dm-category-box hr{
    border:none;
    height:1px;
    background:#E5E7EB;
    margin:20px 0;
}

/* المقال */

.dm-category-post-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    text-decoration:none;
    padding:15px 0;
    border-bottom:1px solid #F1F5F9;
    transition:.3s;
}

.dm-category-post-item:last-child{
    border-bottom:none;
}

.dm-category-post-item:hover{
    padding-right:10px;
}

.dm-category-post-title{
    color:#082A5E;
    font-size:20px;
    font-weight:600;
    line-height:1.7;
    flex:1;
}

.dm-category-post-thumb{
    width:85px;
    height:85px;
    object-fit:cover;
    border-radius:18px;
    flex-shrink:0;
}

/* Tablet */

@media(max-width:991px){

    .dm-category-posts-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .dm-category-posts-title{
        font-size:34px;
    }

}

/* Mobile */

@media(max-width:767px){

    .dm-category-posts{
        padding:70px 0;
    }

    .dm-category-posts-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .dm-category-posts-title{
        font-size:28px;
    }

    .dm-category-posts-description{
        font-size:15px;
    }

    .dm-category-box{
        padding:20px;
        border-radius:24px;
    }

    .dm-category-box-title{
        font-size:24px;
    }

    .dm-category-post-title{
        font-size:17px;
    }

    .dm-category-post-thumb{
        width:70px;
        height:70px;
    }

}
/*==================================
=         FAQ Section              =
==================================*/

.dm-faq{
    padding:100px 0;
    background:#F8FAFC;
}

.dm-faq-wrapper{
    max-width:900px;
    margin:auto;
    padding:0 20px;
}

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

.dm-faq-title{
    color:#082A5E;
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.dm-faq-description{
    color:#6B7280;
    font-size:17px;
    line-height:2;
}

/* العنصر */

.dm-faq-item{
    background:#fff;
    border-radius:22px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    overflow:hidden;
    border:1px solid #E5E7EB;
}

/* السؤال */

.dm-faq-question{
    width:100%;
    background:none;
    border:none;
    padding:25px 30px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:right;
    font-family:'Tajawal',sans-serif;
    color:#082A5E;
    font-size:20px;
    font-weight:700;
}

/* علامة + */

.dm-faq-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#F6C453;
    color:#082A5E;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    flex-shrink:0;
    transition:.3s;
}

/* الإجابة */

.dm-faq-answer{
    display:none;
    padding:0 30px 30px;
}

.dm-faq-answer p{
    color:#6B7280;
    font-size:16px;
    line-height:2;
    margin:0;
}

/* عند الفتح */

.dm-faq-item.active .dm-faq-answer{
    display:block;
}

.dm-faq-item.active .dm-faq-icon{
    transform:rotate(45deg);
}

/* Tablet */

@media(max-width:991px){

    .dm-faq-title{
        font-size:34px;
    }

}

/* Mobile */

@media(max-width:767px){

    .dm-faq{
        padding:70px 0;
    }

    .dm-faq-heading{
        margin-bottom:40px;
    }

    .dm-faq-title{
        font-size:28px;
    }

    .dm-faq-description{
        font-size:15px;
    }

    .dm-faq-question{
        padding:20px;
        font-size:17px;
    }

    .dm-faq-answer{
        padding:0 20px 20px;
    }

    .dm-faq-icon{
        width:34px;
        height:34px;
        font-size:24px;
    }

}

/*==================================
=            Footer                =
==================================*/

.dm-footer{
    background:#082A5E;
    color:#fff;
    margin-top:0;
}

/* الجزء العلوي */

.dm-footer-top{
    padding:80px 0 50px;
}

.dm-footer-wrapper{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

/* العناوين */

.dm-footer-widget-title{
    color:#F6C453;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

/* وصف الشركة */

.dm-footer-about{
    color:rgba(255,255,255,.85);
    line-height:2;
    margin-top:20px;
}

/* الشعار */

.dm-footer-logo img{
    max-width:180px;
    height:auto;
}

/* القوائم */

.dm-footer-menu{
    list-style:none;
    margin:0;
    padding:0;
}

.dm-footer-menu li{
    margin-bottom:12px;
}

.dm-footer-menu a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:.3s;
}

.dm-footer-menu a:hover{
    color:#F6C453;
    padding-right:5px;
}

/* التواصل */

.dm-footer-contact{
    list-style:none;
    margin:0;
    padding:0;
}

.dm-footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    color:rgba(255,255,255,.85);
    line-height:1.8;
}

.dm-footer-contact i{
    color:#F6C453;
    margin-top:4px;
}

/* السوشيال */

.dm-footer-socials{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.dm-footer-socials a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.dm-footer-socials a:hover{
    background:#F6C453;
    color:#082A5E;
    transform:translateY(-3px);
}

/* الجزء السفلي */

.dm-footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    padding:25px 20px;
    text-align:center;
}

.dm-footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:15px;
}

/*=========================
=         Tablet          =
=========================*/

@media(max-width:991px){

    .dm-footer-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }

}

/*=========================
=         Mobile          =
=========================*/

@media(max-width:767px){

    .dm-footer-top{
        padding:60px 0 30px;
    }

    .dm-footer-wrapper{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .dm-footer-contact li{
        justify-content:center;
    }

    .dm-footer-socials{
        justify-content:center;
    }

    .dm-footer-widget-title{
        font-size:20px;
    }

}

/* إزالة نقاط القوائم من فوتر ووردبريس */

.dm-footer-menu,
.dm-footer-menu ul{
    list-style:none !important;
    margin:0;
    padding:0;
}

.dm-footer-menu li{
    list-style:none !important;
    margin-bottom:12px;
    display:block;
}

.dm-footer-menu li::marker{
    display:none;
    content:"";
}

/* لو فيه عناصر فرعية */

.dm-footer-menu .sub-menu{
    margin-top:10px;
    padding-right:15px;
}

.dm-footer-menu .sub-menu li{
    margin-bottom:8px;
}


/*==================================
=          Blog Hero               =
==================================*/

.dm-blog-hero{
    background:linear-gradient(135deg,#082A5E,#0D4AA8);
    padding:120px 20px;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.dm-blog-hero::before{
    content:'';
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    position:absolute;
    top:-120px;
    left:-120px;
}

.dm-blog-hero::after{
    content:'';
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    position:absolute;
    bottom:-100px;
    right:-100px;
}

.dm-blog-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

.dm-blog-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:700;
}

.dm-blog-hero h1{
    color:#fff;
    font-size:60px;
    margin:20px 0;
    font-weight:800;
}

.dm-blog-hero p{
    color:#E5E7EB;
    font-size:18px;
    line-height:2;
}

.dm-breadcrumb{
    margin-top:25px;
}

.dm-breadcrumb a{
    color:#F6C453;
    text-decoration:none;
}

.dm-breadcrumb span{
    color:#fff;
}

/*==================================
=        Blog Layout               =
==================================*/

.dm-blog{
    padding:80px 0;
    background:#F8FAFC;
}

.dm-blog-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/*==================================
=        Blog Grid                 =
==================================*/

.dm-blog-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

/*==================================
=        Blog Card                 =
==================================*/

.dm-blog-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.dm-blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.dm-blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.dm-blog-content{
    padding:25px;
}

.dm-blog-category{
    display:inline-block;
    background:#ECFDF5;
    color:#16A34A;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:15px;
}

.dm-blog-title{
    margin:0 0 15px;
}

.dm-blog-title a{
    color:#082A5E;
    text-decoration:none;
    font-size:24px;
    line-height:1.6;
    font-weight:700;
}

.dm-blog-title a:hover{
    color:#F6C453;
}

.dm-blog-excerpt{
    color:#6B7280;
    line-height:2;
    margin-bottom:20px;
}

.dm-blog-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.dm-blog-date{
    color:#9CA3AF;
    font-size:14px;
}

.dm-blog-btn{
    background:#082A5E;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.dm-blog-btn:hover{
    background:#F6C453;
    color:#082A5E;
}

/*==================================
=         Pagination               =
==================================*/

.dm-pagination{
    margin-top:50px;
}

.navigation.pagination{
    text-align:center;
}

.navigation.pagination .nav-links{
    display:flex;
    justify-content:center;
    gap:10px;
}

.navigation.pagination a,
.navigation.pagination span{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    background:#fff;
    color:#082A5E;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.navigation.pagination .current{
    background:#082A5E;
    color:#fff;
}

/*==================================
=          Tablet                  =
==================================*/

@media(max-width:991px){

    .dm-blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .dm-blog-hero h1{
        font-size:42px;
    }

}

/*==================================
=          Mobile                  =
==================================*/

@media(max-width:767px){

    .dm-blog{
        padding:50px 0;
    }

    .dm-blog-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .dm-blog-image img{
        height:220px;
    }

    .dm-blog-hero{
        padding:80px 20px;
    }

    .dm-blog-hero h1{
        font-size:32px;
    }

    .dm-blog-title a{
        font-size:20px;
    }

}


/*==================================
=      Premium Single Post         =
==================================*/

.dm-single{
    background:#F8FAFC;
    padding:80px 0;
}

.dm-single-wrapper{
    max-width:1500px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:40px;
    align-items:start;
}

/* المقال */

.dm-single-content{
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

/* الصورة البارزة */

.dm-single-featured-image{
    padding:40px;
}

.dm-single-featured-image img{
    display:block;
    width:100%;
    max-width:1000px;
    margin:auto;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

/* المحتوى */

.dm-single-entry{
    padding:0 45px 45px;
    color:#374151;
    line-height:2.2;
    font-size:18px;
}

/* الصور داخل المقال */

.dm-single-entry img{
    display:block;
    max-width:90%;
    margin:40px auto;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* H2 احترافي */

.dm-single-entry h2{
    position:relative;
    background:linear-gradient(
        135deg,
        #082A5E,
        #0D4AA8
    );
    color:#fff;
    padding:18px 25px;
    border-radius:15px;
    margin:50px 0 25px;
    font-size:30px;
    font-weight:800;
}

.dm-single-entry h2::before{
    content:'';
    position:absolute;
    right:0;
    top:0;
    width:8px;
    height:100%;
    background:#F6C453;
    border-radius:15px;
}

/* H3 */

.dm-single-entry h3{
    color:#082A5E;
    font-size:24px;
    font-weight:800;
    margin:35px 0 20px;
    padding-right:15px;
    border-right:5px solid #F6C453;
}

/* فقرات */

.dm-single-entry p{
    margin-bottom:22px;
}

/* قوائم */

.dm-single-entry ul,
.dm-single-entry ol{
    background:#F8FAFC;
    border-radius:20px;
    padding:25px 35px;
    margin:30px 0;
}

.dm-single-entry li{
    margin-bottom:12px;
}

/* Blockquote */

.dm-single-entry blockquote{
    background:#F8FAFC;
    border-right:6px solid #F6C453;
    padding:30px;
    border-radius:20px;
    margin:40px 0;
    color:#082A5E;
    font-size:22px;
    font-weight:700;
}

/* الجداول */

.dm-single-entry table{
    width:100%;
    border-collapse:collapse;
    margin:40px 0;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.dm-single-entry table th{
    background:#082A5E;
    color:#fff;
    padding:18px;
    text-align:center;
}

.dm-single-entry table td{
    padding:15px;
    border:1px solid #E5E7EB;
    text-align:center;
}

.dm-single-entry table tr:nth-child(even){
    background:#F8FAFC;
}

/* روابط */

.dm-single-entry a{
    color:#0D4AA8;
    font-weight:700;
}

/* Sidebar */

.dm-sidebar{
    position:sticky;
    top:30px;
}

.dm-sidebar-widget{
    background:#fff;
    border-radius:30px;
    padding:25px;
    margin-bottom:30px;
    border:1px solid #EEF2F7;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.dm-sidebar-title{
    color:#082A5E;
    font-size:24px;
    font-weight:800;
    margin-bottom:25px;
}

/* أحدث المقالات */

.dm-sidebar-post{
    display:flex;
    gap:15px;
    text-decoration:none;
    margin-bottom:20px;
}

.dm-sidebar-thumb{
    width:85px;
    height:85px;
    border-radius:18px;
    object-fit:cover;
}

.dm-sidebar-post-title{
    display:block;
    color:#082A5E;
    font-weight:700;
    line-height:1.7;
    margin-bottom:8px;
}

.dm-sidebar-post-date{
    color:#9CA3AF;
    font-size:13px;
}

/* التصنيفات */

.dm-sidebar-categories{
    list-style:none;
    padding:0;
    margin:0;
}

.dm-sidebar-categories li{
    border-bottom:1px solid #EEF2F7;
}

.dm-sidebar-categories li:last-child{
    border:none;
}

.dm-sidebar-categories a{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    text-decoration:none;
    color:#082A5E;
    transition:.3s;
}

.dm-sidebar-categories a:hover{
    color:#F6C453;
    padding-right:8px;
}

/* واتساب */

.dm-whatsapp-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:15px;
    border-radius:15px;
    font-weight:700;
}

/* اخفاء البحث */

.widget_search,
.search-form,
.wp-block-search{
    display:none !important;
}

/* الهاتف */

@media(max-width:991px){

    .dm-single-wrapper{
        grid-template-columns:1fr;
    }

    .dm-sidebar{
        position:static;
    }

}

@media(max-width:767px){

    .dm-single{
        padding:50px 0;
    }

    .dm-single-entry{
        padding:0 25px 25px;
        font-size:16px;
    }

    .dm-single-entry h2{
        font-size:24px;
    }

    .dm-single-entry h3{
        font-size:20px;
    }

    .dm-single-featured-image{
        padding:20px;
    }

}

/* ==========================
   Single Hero Premium
========================== */

.dm-single-hero{
    background:linear-gradient(
        135deg,
        #082A5E,
        #0D4AA8
    );
    padding:120px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.dm-single-hero::before{
    content:'';
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    position:absolute;
    left:-120px;
    top:-120px;
}

.dm-single-hero::after{
    content:'';
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    position:absolute;
    right:-120px;
    bottom:-120px;
}

.dm-single-hero-content{
    max-width:1000px;
    margin:auto;
    position:relative;
    z-index:2;
}

.dm-single-category{
    background:#F6C453;
    color:#082A5E;
    padding:10px 25px;
    border-radius:50px;
    display:inline-block;
    font-weight:700;
    margin-bottom:25px;
}

.dm-single-hero h1{
    color:#fff;
    font-size:55px;
    line-height:1.6;
    margin-bottom:25px;
    font-weight:800;
}

.dm-single-meta{
    display:flex;
    justify-content:center;
    gap:25px;
    color:#fff;
    margin-bottom:30px;
}

.dm-single-meta span{
    background:rgba(255,255,255,.12);
    padding:10px 20px;
    border-radius:50px;
}

.dm-breadcrumb{
    display:inline-flex;
    gap:10px;
    background:rgba(255,255,255,.12);
    padding:12px 25px;
    border-radius:50px;
}

.dm-breadcrumb a{
    color:#F6C453;
    text-decoration:none;
}

.dm-breadcrumb span{
    color:#fff;
}


/*==================================
=        About Hero                =
==================================*/

.dm-about-hero{
    background:linear-gradient(135deg,#082A5E,#0D4AA8);
    padding:120px 20px;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.dm-about-hero::before{
    content:'';
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    position:absolute;
    left:-120px;
    top:-120px;
}

.dm-about-hero::after{
    content:'';
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    position:absolute;
    right:-120px;
    bottom:-120px;
}

.dm-about-hero-content{
    max-width:900px;
    margin:auto;
    position:relative;
    z-index:2;
}

.dm-about-badge{
    display:inline-block;
    background:#F6C453;
    color:#082A5E;
    padding:10px 25px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;
}

.dm-about-hero h1{
    color:#fff;
    font-size:60px;
    font-weight:800;
    margin-bottom:20px;
}

.dm-about-hero p{
    color:#E5E7EB;
    font-size:20px;
    line-height:2;
    max-width:800px;
    margin:auto;
}

.dm-breadcrumb{
    margin-top:35px;
}

.dm-breadcrumb a{
    color:#F6C453;
    text-decoration:none;
}

.dm-breadcrumb span{
    color:#fff;
}

/*==================================
=       Company Section            =
==================================*/

.dm-about-company{
    padding:100px 0;
    background:#F8FAFC;
}

.dm-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

.dm-about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.dm-about-image img{
    width:100%;
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.dm-about-content h2{
    color:#082A5E;
    font-size:42px;
    font-weight:800;
    margin-bottom:25px;
}

.dm-about-text{
    color:#6B7280;
    line-height:2.2;
    font-size:18px;
    margin-bottom:35px;
}

.dm-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#082A5E;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:15px;
    font-weight:700;
    transition:.3s;
}

.dm-about-btn:hover{
    background:#F6C453;
    color:#082A5E;
}

/*==================================
=         Counters                 =
==================================*/

.dm-counters-section{
    padding:90px 0;
    background:#fff;
}

.dm-counters{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.dm-counter-box{
    background:#F8FAFC;
    padding:40px 20px;
    text-align:center;
    border-radius:30px;
    transition:.3s;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.dm-counter-box:hover{
    transform:translateY(-10px);
}

.dm-counter{
    display:block;
    font-size:55px;
    color:#082A5E;
    font-weight:800;
    margin-bottom:15px;
}

.dm-counter-box h3{
    color:#6B7280;
    font-size:18px;
    margin:0;
}

/*==================================
=       Why Choose Us             =
==================================*/

.dm-features{
    padding:100px 0;
    background:#F8FAFC;
}

.dm-features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.dm-feature-card{
    background:#fff;
    padding:35px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.3s;
}

.dm-feature-card:hover{
    transform:translateY(-10px);
}

.dm-feature-icon{
    width:80px;
    height:80px;
    margin:auto auto 25px;
    border-radius:50%;
    background:#082A5E;
    color:#F6C453;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.dm-feature-card h3{
    color:#082A5E;
    margin-bottom:15px;
}

.dm-feature-card p{
    color:#6B7280;
    line-height:2;
}

/*==================================
=        CTA Section               =
==================================*/

.dm-about-cta{
    padding:100px 20px;
    background:linear-gradient(135deg,#082A5E,#0D4AA8);
    text-align:center;
    color:#fff;
}

.dm-about-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.dm-about-cta p{
    color:#E5E7EB;
    margin-bottom:30px;
    line-height:2;
}

.dm-about-cta a{
    display:inline-block;
    background:#F6C453;
    color:#082A5E;
    padding:15px 35px;
    border-radius:15px;
    text-decoration:none;
    font-weight:700;
}

/*==================================
=          Tablet                  =
==================================*/

@media(max-width:991px){

    .dm-about-grid{
        grid-template-columns:1fr;
    }

    .dm-counters{
        grid-template-columns:repeat(2,1fr);
    }

    .dm-features-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/*==================================
=          Mobile                  =
==================================*/

@media(max-width:767px){

    .dm-about-hero{
        padding:80px 20px;
    }

    .dm-about-hero h1{
        font-size:36px;
    }

    .dm-about-hero p{
        font-size:16px;
    }

    .dm-about-company{
        padding:60px 0;
    }

    .dm-about-content h2{
        font-size:30px;
    }

    .dm-counters{
        grid-template-columns:1fr;
    }

    .dm-features-grid{
        grid-template-columns:1fr;
    }

    .dm-counter{
        font-size:42px;
    }

    .dm-about-cta h2{
        font-size:30px;
    }

}



/*==================================
=      Featured Image Mobile       =
==================================*/

.dm-single-featured-image{
    width:100%;
    margin-bottom:30px;
}

.dm-single-featured-image img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
    margin:auto;
    border-radius:20px;
    object-fit:cover;
}

/* الصور داخل المقال */

.dm-single-entry img{
    max-width:100%;
    height:auto;
    display:block;
    margin:25px auto;
    border-radius:15px;
}

/* الهاتف */

@media (max-width:767px){

    .dm-single-featured-image{
        margin-bottom:20px;
    }

    .dm-single-featured-image img{
        border-radius:15px;
    }

    .dm-single-content{
        padding:15px;
    }

}
html,body{overflow-x:hidden!important;width:100%;}.dm-container,.container{max-width:100%;box-sizing:border-box;}img{max-width:100%;} @media(max-width:767px){*{max-width:100vw;} .dm-services-grid,.dm-features-grid,.dm-counters{grid-template-columns:1fr!important;} .dm-service-card,.dm-feature-card{margin:0!important;width:100%!important;}}
