.elementor-2532 .elementor-element.elementor-element-bf8ebab{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2532 .elementor-element.elementor-element-c23e81d{--display:flex;}.elementor-2532 .elementor-element.elementor-element-1325605{--display:flex;}.elementor-2532 .elementor-element.elementor-element-c374dac{--display:flex;}.elementor-2532 .elementor-element.elementor-element-5f696e9{--display:flex;}.elementor-2532 .elementor-element.elementor-element-3d7d3dc{color:#7A7A7A;}.elementor-2532 .elementor-element.elementor-element-0ea6964{--display:flex;}.elementor-2532 .elementor-element.elementor-element-09fca30{--display:flex;}.elementor-2532 .elementor-element.elementor-element-e3b2b3c{--display:flex;}.elementor-2532 .elementor-element.elementor-element-9000f56{--display:flex;}.elementor-2532 .elementor-element.elementor-element-ce61a05{--display:flex;}.elementor-2532 .elementor-element.elementor-element-7002bf2{--n-accordion-title-font-size:1rem;--n-accordion-item-title-space-between:0px;--n-accordion-item-title-distance-from-content:0px;--n-accordion-title-normal-color:#7A7A7A;--n-accordion-title-hover-color:#7A7A7A;--n-accordion-title-active-color:#7A7A7A;--n-accordion-icon-size:15px;}.elementor-2532 .elementor-element.elementor-element-59772ba{--display:flex;}/* Start custom CSS for html, class: .elementor-element-982fe7a */:root{
    --primary:#6C3FE8;
    --primary-light:#8B5CF6;
    --dark:#0F172A;
    --dark-light:#1E293B;
    --text:#F8FAFC;
    --text-light:#CBD5E1;
    --border:rgba(255,255,255,.08);
    --success:#22C55E;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--dark);
    color:var(--text);
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:80px 0;
}

.section-title{
    font-size:48px;
    font-weight:800;
    text-align:center;
    margin-bottom:20px;
}

.section-subtitle{
    text-align:center;
    color:var(--text-light);
    max-width:700px;
    margin:auto;
    margin-bottom:50px;
}

.card{
    background:var(--dark-light);
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
    border-color:var(--primary);
}

.btn-primary{
    display:inline-block;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.badge{
    display:inline-block;
    background:rgba(108,63,232,.15);
    color:#BFA8FF;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.du-table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:20px;
    background:var(--dark-light);
}

.du-table thead{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
}

.du-table th{
    color:#fff;
    padding:20px;
    text-align:left;
    font-size:18px;
}

.du-table td{
    padding:20px;
    border-bottom:1px solid var(--border);
}

.du-table tr:hover{
    background:rgba(108,63,232,.08);
}

.high{
    color:#22C55E;
    font-weight:700;
}

.medium{
    color:#F59E0B;
    font-weight:700;
}

.low{
    color:#94A3B8;
    font-weight:700;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    text-align:center;
}

.hero h1{
    font-size:72px;
    font-weight:900;
    line-height:1.1;
}

.hero h1 span{
    color:var(--primary-light);
}

.hero p{
    max-width:700px;
    margin:20px auto 30px;
    color:var(--text-light);
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:60px;
}

.stat-box{
    background:var(--dark-light);
    border-radius:20px;
    padding:25px;
    text-align:center;
}

.stat-box h3{
    color:var(--primary-light);
    font-size:42px;
}

@media(max-width:768px){

    .hero h1{
        font-size:42px;
    }

    .section-title{
        font-size:32px;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .du-table{
        min-width:700px;
    }

    .table-responsive{
        overflow-x:auto;
    }
}/* End custom CSS */