/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f4f7fb;
    font-family:Arial,sans-serif;
    color:#1e293b;
    overflow-x:hidden;
    line-height:1.7;
}

/* =========================================
   CONTAINER
========================================= */

.mdh-container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* =========================================
   HERO SLIDER
========================================= */

.mdh-slider{
    position:relative;
    width:100%;
    height:92vh;
    overflow:hidden;
    background:#000;
}

/* SLIDE */

.mdh-slide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    opacity:0;
    visibility:hidden;

    transition:all .8s ease;

    background-size:cover !important;
    background-position:center !important;
    background-repeat:no-repeat !important;

    display:flex;
    align-items:center;
}

/* ACTIVE */

.mdh-slide.active{
    opacity:1;
    visibility:visible;
    z-index:5;
}

/* OVERLAY */

.mdh-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

/* CONTENT */

.mdh-content{
    position:relative;
    z-index:10;

    width:92%;
    max-width:1300px;

    margin:auto;

    color:#fff;
}

/* TITLE */

.mdh-content h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:18px;
    color:#fff;
    font-weight:700;
    max-width:750px;
}

/* DESC */

.mdh-content p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:28px;
    color:#e2e8f0;
    max-width:700px;
}

/* BUTTON */

.mdh-button{
    display:inline-block;

    padding:15px 34px;

    background:#0284c7;

    color:#fff;
    text-decoration:none;

    border-radius:12px;

    font-size:17px;
    font-weight:600;

    transition:.3s;
}

.mdh-button:hover{
    background:#0369a1;
    transform:translateY(-3px);
    color:#fff;
}

/* NAVIGATION */

.mdh-prev,
.mdh-next{

    position:absolute;

    top:50%;
    transform:translateY(-50%);

    z-index:20;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(8px);

    color:#fff;

    font-size:22px;

    cursor:pointer;

    transition:.3s;

}

.mdh-prev:hover,
.mdh-next:hover{
    background:#0284c7;
}

.mdh-prev{
    left:25px;
}

.mdh-next{
    right:25px;
}

/* =========================================
   SECTION TITLE
========================================= */

.mdh-section-title{
    text-align:center;
    margin-bottom:35px;
}

.mdh-section-title h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:10px;
    font-weight:700;
}

.mdh-section-title p{
    color:#64748b;
    font-size:17px;
}

/* =========================================
   STATS
========================================= */

.mdh-stats{
    padding:60px 40px;
    background:#f4f7fb;
}

/* GRID */

.mdh-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}

/* CARD */

.mdh-card{

    background:#ffffff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    transition:.3s;

    box-shadow:
    0 8px 24px rgba(0,0,0,.06);

}

.mdh-card:hover{
    transform:translateY(-6px);
}

/* NUMBER */

.mdh-card h3{
    font-size:52px;
    color:#0284c7;
    margin-bottom:10px;
}

/* LABEL */

.mdh-card p{
    color:#334155;
    font-size:19px;
    font-weight:600;
}

/* =========================================
   SERVICES
========================================= */

.mdh-services{
    padding:60px 40px;
    background:#ffffff;
}

.mdh-services .mdh-grid{
    grid-template-columns:
    repeat(3,1fr);
}

.mdh-service{

    background:#f8fafc;

    padding:30px;

    border-radius:22px;

    transition:.3s;

    box-shadow:
    0 8px 24px rgba(0,0,0,.05);

}

.mdh-service:hover{
    transform:translateY(-6px);
}

.mdh-service h4{
    font-size:26px;
    margin-bottom:14px;
    color:#0f172a;
}

.mdh-service p{
    color:#475569;
    line-height:1.8;
}

/* =========================================
   POSTS
========================================= */

.mdh-posts{
    padding:60px 40px;
    background:#f4f7fb;
}

/* GRID */

.mdh-post-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}

/* CARD */

.mdh-post-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    transition:.3s;

    box-shadow:
    0 8px 24px rgba(0,0,0,.06);

}

.mdh-post-card:hover{
    transform:translateY(-6px);
}

/* IMAGE */

.mdh-post-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

/* CONTENT */

.mdh-post-content{
    padding:24px;
}

.mdh-post-content h3{
    font-size:22px;
    line-height:1.5;
    margin-bottom:12px;
}

.mdh-post-content h3 a{
    color:#0f172a;
    text-decoration:none;
}

.mdh-post-content p{
    color:#475569;
    line-height:1.7;
    margin-bottom:22px;
}

/* BUTTON */

.mdh-readmore{
    display:inline-block;

    padding:11px 22px;

    background:#0284c7;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.mdh-readmore:hover{
    background:#0369a1;
    color:#fff;
}

/* PAGINATION */

.mdh-pagination{
    margin-top:40px;

    display:flex;
    justify-content:center;
    gap:10px;
}

.mdh-pagination a,
.mdh-pagination span{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    background:#ffffff;

    color:#0f172a;

    text-decoration:none;

    box-shadow:
    0 5px 14px rgba(0,0,0,.06);

}

.mdh-pagination .current{
    background:#0284c7;
    color:#fff;
}

/* =========================================
   MAP
========================================= */

.mdh-map-wrap{
    padding:60px 40px;
    background:#ffffff;
}

#mdh-map{
    height:500px;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 8px 24px rgba(0,0,0,.06);
}

/* =========================================
   FOOTER
========================================= */

.mdh-footer{
    padding:25px;
    text-align:center;
    background:#e2e8f0;
    color:#334155;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:1024px){

    .mdh-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .mdh-services .mdh-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .mdh-post-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .mdh-content h1{
        font-size:52px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .mdh-slider{
        height:75vh;
    }

    .mdh-content{
        text-align:center;
    }

    .mdh-content h1{
        font-size:38px;
    }

    .mdh-content p{
        font-size:17px;
    }

    .mdh-grid,
    .mdh-services .mdh-grid,
    .mdh-post-grid{
        grid-template-columns:1fr;
    }

    .mdh-section-title h2{
        font-size:30px;
    }

    .mdh-prev,
    .mdh-next{
        width:45px;
        height:45px;
    }

    .mdh-stats,
    .mdh-services,
    .mdh-posts,
    .mdh-map-wrap{
        padding:40px 20px;
    }

}