/* Start custom CSS for html, class: .elementor-element-4bda5e7 *//* =========================
   DIGIMACS RESOURCE HUB
========================= */

.dm-resource-hub{
    max-width:1280px;
    margin:0 auto;
    padding:40px 32px 80px;
    font-family:Inter,Segoe UI,sans-serif;
    color:#1f2937;
    line-height:1.9;
}

/* =========================
   SMOOTH ANIMATIONS
========================= */

.dm-resource-hub *{
    box-sizing:border-box;
}

.dm-resource-hub section{
    animation:fadeUp .7s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   HERO SECTION
========================= */

.resource-hero{
    text-align:center;
    padding:90px 50px;
    margin-bottom:60px;
    border-radius:32px;
    background:
    linear-gradient(
    135deg,
    #0f172a,
    #1d4ed8,
    #2563eb);
    position:relative;
    overflow:hidden;
    box-shadow:
    0 30px 80px rgba(37,99,235,.25);
}

.resource-hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:
    radial-gradient(
    rgba(255,255,255,.18),
    transparent);
    top:-250px;
    right:-150px;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    background:rgba(255,255,255,.15);
    color:#fff;
    border-radius:100px;
    font-size:.9rem;
    margin-bottom:20px;
    backdrop-filter:blur(8px);
}

.resource-hero h1{
    color:#fff;
    font-size:2.7rem;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:800;
}

.hero-description{
    max-width:850px;
    margin:auto;
    color:#e5e7eb;
    font-size:1.15rem;
}

/* =========================
   GENERAL SECTIONS
========================= */

.dm-resource-hub section:not(.resource-hero){
    margin-bottom:45px;
}

.dm-resource-hub h2{
    font-size:1.8rem;
    margin-bottom:18px;
    color:#0f172a;
    font-weight:700;
    line-height:1.4;
}

.dm-resource-hub h3{
    font-size:1.15rem;
    margin-top:20px;
    margin-bottom:12px;
    color:#1e40af;
    font-weight:600;
    line-height:1.5;
}

.dm-resource-hub p{
    margin-bottom:18px;
    color:#4b5563;
    font-size:1rem;
}

/* =========================
   TOC SECTION
========================= */

.toc-section{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:
    0 12px 40px rgba(0,0,0,.05);
}

.toc-section ul{
    list-style:none;
    padding:0;
}

.toc-section li{
    margin-bottom:12px;
}

.toc-section a{
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
    transition:.3s;
}

.toc-section a:hover{
    padding-left:8px;
    color:#1d4ed8;
}

/* =========================
   FEATURE GRID
========================= */

.feature-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    margin-top:25px;
    margin-bottom:25px;
}

.feature-card{
    background:#fff;
    border-radius:18px;
    padding:22px;
    font-weight:600;
    text-align:center;
    border:1px solid #e5e7eb;
    transition:.35s;
    box-shadow:
    0 10px 25px rgba(0,0,0,.04);
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#2563eb;
    box-shadow:
    0 20px 40px rgba(37,99,235,.15);
}

/* =========================
   BENEFITS
========================= */

.benefit-list{
    padding-left:20px;
}

.benefit-list li{
    margin-bottom:10px;
}

/* =========================
   TOPIC CARDS
========================= */

.topics-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:30px;
}

.topic-card{
    text-decoration:none;
    color:inherit;
    background:#fff;
    padding:28px;
    border-radius:22px;
    border:1px solid #e5e7eb;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.topic-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:
    linear-gradient(
    90deg,
    #2563eb,
    #38bdf8);
}

.topic-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 25px 50px rgba(37,99,235,.12);
}

.topic-card h3{
    color:#111827;
    margin-bottom:10px;
}

/* =========================
   FAQ SECTION
========================= */

.faq-item{
    background:#fff;
    border-radius:18px;
    padding:24px;
    margin-bottom:18px;
    border:1px solid #edf2f7;
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-4px);
    box-shadow:
    0 12px 30px rgba(0,0,0,.06);
}

.faq-item h3{
    margin-top:0;
    color:#0f172a;
}

/* =========================
   RESOURCE MISSION
========================= */

.resource-mission{
    background:
    linear-gradient(
    135deg,
    #eff6ff,
    #f8fbff);
    padding:40px;
    border-radius:24px;
    border:1px solid #dbeafe;
}

/* =========================
   LINKS
========================= */

.dm-resource-hub a{
    transition:.3s;
}

.dm-resource-hub a:hover{
    color:#1d4ed8;
}

/* =========================
   LISTS
========================= */

.dm-resource-hub ul{
    padding-left:22px;
}

.dm-resource-hub li{
    margin-bottom:10px;
}

/* =========================
   PREMIUM SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f5f9;
}

::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{
    background:#1d4ed8;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.resource-hero{
    padding:60px 25px;
}

.resource-hero h1{
    font-size:2rem;
}

.dm-resource-hub{
    padding:25px 18px 50px;
}

.dm-resource-hub h2{
    font-size:1.5rem;
}

.dm-resource-hub h3{
    font-size:1.05rem;
}

.hero-description{
    font-size:1rem;
}

.topics-grid{
    grid-template-columns:1fr;
}

.feature-grid{
    grid-template-columns:1fr;
}

}/* End custom CSS */