/* ===============================
   YOUTH QUOTA DASHBOARD
================================*/

.yqipd-section{

    padding:70px 0;

    background:#f5f7f4;

    font-family:'Segoe UI',sans-serif;

}

.yqipd-container{

    width:min(1450px,95%);

    margin:auto;

}

/* HEADER */

.yqipd-header{

    display:grid;

    grid-template-columns:260px 1fr 260px;

    gap:25px;

    align-items:center;

    margin-bottom:35px;

}

.yqipd-logo{

    width:100%;

}

.yqipd-title{

    margin:0;

    font-size:35px;

    line-height:1;

    color:#015d22;

    font-weight:700;

}

.yqipd-title span{

    color:#073060;

}

.yqipd-subtitle{

    margin-top:12px;

    font-size:23px;

    color:#555;

}

.yqipd-assembly{

    background:#015d22;

    color:#fff;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    padding:22px;

}

.yqipd-assembly-icon{

    font-size:36px;

}

.yqipd-assembly-small{

    font-size:18px;

    font-weight:700;

}

.yqipd-assembly-year{

    font-size:34px;

    font-weight:900;

}

/* TOP GRID */

/*=====================================
TOP STATISTICS
=====================================*/

.yqipd-stats{

    display:grid;

    grid-template-columns:repeat(8,minmax(170px,1fr));

    gap:18px;

    margin-bottom:30px;

}

.yqipd-stat-card{
border-radius: 8px;
    min-height:250px;
    text-align:center;
padding-top: 16px !important;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    background:#fff;
    transition:.35s;

}

.yqipd-stat-card:hover{

    transform:translateY(-5px);

}

.yqipd-icon{
    width:52px;

    height:52px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:26px;

    margin-bottom:12px;

}

.green{

    background:#046728;

}

.gold{

    background:#c69309;

}

.purple{

    background:#6b2ca0;

}

.navy{

    background:#062e6d;

}

.yqipd-number{

    font-size:44px;

    font-weight:600;

    line-height:1;

    color:#015d22;

}

.gold-text{

    color:#be8b09;

}

.purple-text{

    color:#6b2ca0;

}

.green-text{

    color:#1b7d2a;

}

.yqipd-label{

    margin-top:12px;

    font-size:14px;

    font-weight:400;

    color:#222;

    text-transform:uppercase;

    line-height:1.35;

}

.yqipd-percent{

    margin-top:8px;

    font-size:21px;

    font-weight:800;

}

/* RESPONSIVE */


@media(max-width:900px){

    .yqipd-header{

        grid-template-columns:1fr;

        text-align:center;

    }

    .yqipd-title{

        font-size:42px;

    }

    .yqipd-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .yqipd-stats{

        grid-template-columns:1fr;

    }

    .yqipd-title{

        font-size:30px;

    }

    .yqipd-number{

        font-size:48px;

    }

}
/*==============================
DASHBOARD GRID
===============================*/

.yqipd-dashboard-grid{

    display:grid;

    grid-template-columns:1fr 1fr 1fr;

    gap:22px;

    margin-top:30px;

}

.yqipd-panel{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.yqipd-panel-header{

    background:#015d22;

    color:#fff;

    padding:4px 22px;

    font-size:18px;

    font-weight:600;

    display:flex;

    gap:14px;

    align-items:center;

}

.yqipd-panel-header i{

    font-size:24px;

}

.yqipd-divider{

    height:1px;

    background:#ececec;

}

.yqipd-rep-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:8px;

}

.yqipd-rep-left{

    display:flex;

    gap:18px;

    align-items:center;

}

.yqipd-small-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:22px;

}

.yqipd-rep-number{

    font-size:48px;

    font-weight:700;

    color:#015d22;

    line-height:1;

}

.yqipd-rep-text{

    font-size:12px;

    font-weight:400;

    color:#444;

    line-height:1;

}

.yqipd-ring{

    width:80px;

    height:80px;

    position:relative;

}

.yqipd-ring svg{

    transform:rotate(-90deg);

    width:100%;

    height:100%;

}

.yqipd-ring-bg{

    fill:none;

    stroke:#e8e8e8;

    stroke-width:10;

}

.yqipd-ring-green{

    fill:none;

    stroke:#0a7b31;

    stroke-width:10;

    stroke-linecap:round;

}

.yqipd-ring-blue{

    fill:none;

    stroke:#123b87;

    stroke-width:10;

    stroke-linecap:round;

}

.yqipd-ring-label{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    font-weight:900;

    font-size:24px;

    color:#0a7b31;

}

.yqipd-state-center{

    padding:35px;

    text-align:center;

}

.yqipd-large-ring{

    width:200px;

    height:200px;

    margin:auto;

    position:relative;

}

.yqipd-large-ring svg{

    width:100%;

    height:100%;

    transform:rotate(-90deg);

}

.yqipd-large-bg{

    fill:none;

    stroke:#e8e8e8;

    stroke-width:18;

}

.yqipd-large-green{

    fill:none;

    stroke:#0b7b32;

    stroke-width:18;

    stroke-linecap:round;

}

.yqipd-large-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

}

.yqipd-large-number{

    font-size:58px;

    font-weight:700;

    color:#015d22;

}

.yqipd-large-label{

    font-size:12px;

    font-weight:600;

}

.yqipd-state-footer{
    font-size:16px;

    font-weight:600;

}

.yqipd-state-footer strong{

    display:block;

    font-size:42px;

    color:#015d22;

}

.yqipd-panel-footer{

    padding:12px 16px;

    background:#edf6ec;

    font-size:14px;

    line-height:1.1;

    display:flex;

    gap:12px;

    align-items:flex-start;

    color:#275427;

}

.yqipd-highlight-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

    padding:25px;

}

.yqipd-small-title{

    text-align:center;

    font-size:14px;

    font-weight:600;

    margin-bottom:12px;

}

.yqipd-ring-large{

    width:150px;

    height:150px;

    position:relative;

    margin:auto;

}

.yqipd-ring-large svg{

    transform:rotate(-90deg);

}

.yqipd-ring-center{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

}

.yqipd-ring-center strong{

    display:block;

    font-size:32px;

    color:#123b87;

}

.yqipd-ring-center span{

    font-size:12px;

    font-weight:400;

}

.yqipd-highlight-percent{

    text-align:center;

    margin-top:8px;

    font-size:18px;

    font-weight:700;

    color:#123b87;

}

.yqipd-seat-grid{

    display:grid;

    grid-template-columns:repeat(10,1fr);

    gap:6px;

    margin-top:15px;

}

.yqipd-seat-grid i{

    color:#d8d8d8;

    font-size:15px;

    text-align:center;

}

.yqipd-seat-grid .active{

    color:#c69309;

}

.yqipd-seat-result{

    margin-top:18px;

    text-align:center;

    font-weight:700;

}

.yqipd-seat-result strong{

    font-size:34px;

    color:#c69309;

}

.yqipd-seat-result span{

    display:block;

    font-size:26px;

    color:#c69309;

    font-weight:900;

}

.yqipd-goal-box{

    margin:0 20px;

    background:#fff5d8;

    border-radius:12px;

    padding:8px;

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.yqipd-goal-icon{

    font-size:36px;

    color:#c69309;

}
/*==========================================
BOTTOM BAR
==========================================*/

.yqipd-bottom-row{

    display:grid;

    grid-template-columns:2.2fr 1.3fr 1.2fr 180px;

    gap:18px;

    margin-top:18px;

    align-items:stretch;

}

/* Shared */

.yqipd-why-box,
.yqipd-data-box,
.yqipd-web-box,
.yqipd-qr-box{

    background:#fff;

    border-radius:14px;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

    padding:22px;

}

/* WHY */

.yqipd-why-box{

    display:flex;

    align-items:center;

    gap:22px;

    background:#0d5f23;

    color:#fff;

}

.yqipd-why-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#c8960d;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    color:#fff;

    flex-shrink:0;

}

.yqipd-bottom-title{

    font-size:21px;

    font-weight:800;

    margin-bottom:10px;

    text-transform:uppercase;

}

.yqipd-bottom-text{

    font-size:18px;

    line-height:1.6;

}

/* DATA */

.yqipd-data-box{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.yqipd-data-box .yqipd-bottom-title{

    color:#015d22;

}

.yqipd-data-list{

    margin:0;

    padding-left:18px;

    line-height:2;

    font-size:17px;

    color:#444;

}

/* WEBSITE */

.yqipd-web-box{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.yqipd-web-box .yqipd-bottom-title{

    color:#0b6a2c;

}

.yqipd-web-link{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

    font-size:18px;

    font-weight:700;

    color:#0b6a2c;

    word-break:break-word;

}

.yqipd-web-link i{

    font-size:28px;

}

/* QR */

.yqipd-qr-box{

    display:flex;

    justify-content:center;

    align-items:center;

}

.yqipd-qr-placeholder{

    width:120px;

    height:120px;

    border:6px solid #0d5f23;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:8px;

    background:#fff;

}

.yqipd-qr-placeholder i{

    font-size:72px;

    color:#111;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:1200px){

    .yqipd-dashboard-grid{

        grid-template-columns:1fr;

    }

    .yqipd-bottom-row{

        grid-template-columns:1fr;

    }

}

/*==============================
TABLET
==============================*/

@media (max-width:1200px){

    .yqipd-stats{

        display:flex;

        flex-wrap:nowrap;

        overflow-x:auto;

        overflow-y:hidden;

        gap:18px;

        padding-bottom:15px;

        scroll-snap-type:x mandatory;

        -webkit-overflow-scrolling:touch;

    }

    .yqipd-stat-card{

        flex:0 0 220px;

        scroll-snap-align:start;

    }

    .yqipd-stats::-webkit-scrollbar{

        height:8px;

    }

    .yqipd-stats::-webkit-scrollbar-thumb{

        background:#0a6d2f;

        border-radius:20px;

    }

}





@media(max-width:768px){

    .yqipd-bottom-title{

        font-size:18px;

    }

    .yqipd-bottom-text{

        font-size:16px;

    }

    .yqipd-web-link{

        font-size:16px;

    }

}
/*======================================
FINAL POLISH
======================================*/

.yqipd-panel,
.yqipd-stat-card,
.yqipd-bottom-row>div{

    transition:.35s;

}

.yqipd-panel:hover{

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.yqipd-panel-header{

    letter-spacing:.4px;

}

.yqipd-number{

    letter-spacing:-2px;

}

.yqipd-title{

    letter-spacing:-2px;

}

.yqipd-stat-card{

    border:1px solid rgba(0,0,0,.05);

}

.yqipd-panel{

    border:1px solid rgba(0,0,0,.04);

}

.yqipd-ring svg,
.yqipd-ring-large svg,
.yqipd-large-ring svg{

    overflow:visible;

}

.yqipd-ring-green,
.yqipd-large-green,
.yqipd-ring-blue{

    transition:stroke-dashoffset 2s ease;

}

.yqipd-panel-header{

    background:linear-gradient(
            90deg,
            #005c24,
            #117534
    );

}

.yqipd-goal-box{

    border-left:7px solid #c99609;

}

.yqipd-why-box{

    background:linear-gradient(
            90deg,
            #005c24,
            #167739
    );

}

.yqipd-stat-card:hover .yqipd-icon{

    transform:scale(1.08);

    transition:.3s;

}

.yqipd-icon{

    transition:.3s;

}

.yqipd-small-icon{

    transition:.3s;

}

.yqipd-panel:hover .yqipd-small-icon{

    transform:rotate(8deg);

}

.yqipd-seat-grid i{

    transition:.25s;

}

.yqipd-seat-grid i:hover{

    transform:scale(1.25);

}
