/* =========================================
   STATISTIK SKEMA
========================================= */

.scheme-stats-section{
    padding:20px 0 10px;
}

.stat-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s ease;
    height:100%;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.stat-card i{
    font-size:42px;
    color:#D71920;
    margin-bottom:15px;
}

.stat-card h3{
    font-size:30px;
    font-weight:800;
    margin-bottom:8px;
    color:#111827;
}

.stat-card p{
    margin:0;
    color:#6B7280;
    font-weight:500;
}

/* =========================================
   FEATURED SCHEME
========================================= */

.featured-scheme-section{
    padding:20px 0 80px;
}

.featured-scheme-section .featured-news{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.featured-scheme-section img{
    width:100%;
    height:100%;
    min-height:420px;
    object-fit:cover;
}

.featured-scheme-section h2{
    font-size:34px;
    font-weight:800;
    line-height:1.3;
    margin:20px 0;
}

.featured-meta{
    display:flex;
    align-items:center;
    gap:10px;
    color:#D71920;
    font-weight:600;
    margin-bottom:15px;
}

.featured-meta i{
    font-size:18px;
}

.featured-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#D71920;
    color:#fff;
    padding:14px 26px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.featured-btn:hover{
    background:#B51218;
    color:#fff;
    transform:translateY(-3px);
}

/* =========================================
   GRID SKEMA
========================================= */

.scheme-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s ease;
}

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

.scheme-card-body{
    padding:30px;
}

.scheme-icon{
    width:90px;
    height:90px;
    background:linear-gradient(
        135deg,
        #D71920,
        #B51218
    );
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin:30px auto 10px;
}

.scheme-code{
    display:inline-block;
    background:#F3F4F6;
    color:#D71920;
    font-size:13px;
    font-weight:700;
    padding:6px 14px;
    border-radius:50px;
    margin-bottom:15px;
}

.scheme-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.scheme-card p{
    color:#6B7280;
    line-height:1.8;
    min-height:90px;
}

.scheme-category{
    margin:15px 0;
    color:#374151;
    font-size:14px;
    font-weight:600;
}

.scheme-category i{
    color:#D71920;
    margin-right:8px;
}

.scheme-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    height:55px;
    background:#D71920;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s ease;
}

.scheme-btn:hover{
    background:#B51218;
    color:#fff;
    transform:translateY(-2px);
}

/* =========================================
   EMPTY SEARCH
========================================= */

.empty-search{
    text-align:center;
    padding:80px 20px;
}

.empty-search-icon{
    width:110px;
    height:110px;
    border-radius:50%;
    background:#F3F4F6;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.empty-search-icon i{
    font-size:50px;
    color:#D71920;
}

.empty-search h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.empty-search p{
    color:#6B7280;
    margin-bottom:25px;
}

/* ==========================
SEARCH PREMIUM
========================== */

.scheme-search-section{
    margin:10px 0;
}

.search-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:
    0 15px 50px rgba(0,0,0,.08);
    border:1px solid #f1f1f1;
}

.search-header{
    text-align:center;
    margin-bottom:25px;
}

.search-header h3{
    font-size:28px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.search-header i{
    color:#D71920;
}

.search-header p{

    color:#6B7280;
    margin-bottom:0;
}

.search-input-wrapper{
    position:relative;
}

.search-input-wrapper i{
    position:absolute;
    left:18px;
    top:50%;
    transform:
    translateY(-50%);
    color:#D71920;
    font-size:18px;
}

.search-input{
    width:100%;
    height:60px;
    border:none;
    border-radius:16px;
    background:#F9FAFB;
    padding-left:55px;
    padding-right:20px;
    transition:.3s;
}

.search-input:focus{
    outline:none;
    background:#fff;
    box-shadow:
    0 0 0 4px rgba(215,25,32,.12);
}

.search-select{
    width:100%;
    height:60px;
    border:none;
    border-radius:16px;
    background:#F9FAFB;
    padding:0 20px;
}

.search-select:focus{
    outline:none;
    box-shadow:
    0 0 0 4px rgba(215,25,32,.12);
}

.search-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:16px;
    background:#D71920;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.search-btn:hover{
    transform:translateY(-2px);
    box-shadow:
    0 10px 25px rgba(215,25,32,.25);
}


/* =========================================
   CTA SECTION
========================================= */

.scheme-cta-section{
    padding:0px 70;
    margin-bottom: 100px;
}

.scheme-cta-card{
    background:
    linear-gradient(
        135deg,
        #D71920,
        #A51015
    );
    color:#fff;
    padding:70px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
}

.scheme-cta-card::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

.scheme-cta-card h2{
    font-size:42px;
    font-weight:800;
    margin:15px 0;
}

.scheme-cta-card p{
    font-size:18px;
    line-height:1.8;
    opacity:.95;
}

.scheme-cta-card .btn{
    min-width:180px;
    margin-top:10px;
}
.cta-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:
    rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    margin-bottom:20px;
}

/* =========================================
   PAGINATION
========================================= */

.pagination-wrapper{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:60px;
}

.pagination-wrapper a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:#F3F4F6;
    color:#111827;
    font-weight:700;
    transition:.3s ease;
}

.pagination-wrapper a:hover,
.pagination-wrapper a.active{
    background:#D71920;
    color:#fff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .featured-scheme-section img{
        min-height:280px;
    }

    .featured-scheme-section h2{
        font-size:28px;
    }

    .scheme-cta-card{
        padding:40px;
        text-align:center;
    }

    .scheme-cta-card h2{
        font-size:32px;
    }
}

@media(max-width:768px){

    .scheme-icon{
        width:80px;
        height:80px;
        font-size:34px;
    }

    .scheme-card-body{
        padding:25px;
    }

    .scheme-cta-card{
        padding:30px;
    }

    .scheme-cta-card h2{
        font-size:28px;
    }

    .scheme-cta-card .btn{
        width:100%;
        margin-top:12px;
    }
}


/* =========================================
   DETAIL SKEMA
========================================= */

.scheme-content-block h2{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
    color:#111827;
}

.scheme-content-block h2 i{
    color:#D71920;
}

.scheme-description,
.scheme-requirement,
.scheme-career{
    color:#4B5563;
    line-height:1.9;
    font-size:16px;
}

.scheme-description p,
.scheme-requirement p,
.scheme-career p{
    margin-bottom:18px;
}

/* =========================================
   SIDEBAR INFO
========================================= */

.scheme-info-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    border-bottom:1px solid #E5E7EB;
}

.scheme-info-item:last-child{
    border-bottom:none;
}

.scheme-info-item span{
    color:#6B7280;
    font-size:14px;
}

.scheme-info-item strong{
    color:#111827;
    font-size:14px;
    font-weight:700;
    text-align:right;
}
.scheme-info-item h4{
    padding: 0px;
}

/* =========================================
   RELATED SCHEME
========================================= */

.scheme-related-icon{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        #D71920,
        #B51218
    );
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.related-item:hover .scheme-related-icon{
    transform:scale(1.08);
}

.scheme-related-icon{
    transition:.3s ease;
}

/* =========================================
   CTA SIDEBAR
========================================= */

.sidebar-cta{
    background:
    linear-gradient(
        135deg,
        #D71920,
        #B51218
    );
    color:white;
    border-radius:24px;
    padding:35px 30px;
    margin-top:30px;
    position:relative;
    overflow:hidden;
}

.sidebar-cta::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-70px;
    right:-70px;
}

.cta-label{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:white;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.sidebar-cta h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:white;
}

.sidebar-cta p{
    color:rgba(255,255,255,.9);
    line-height:1.8;
    margin-bottom:25px;
}

.sidebar-cta-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    height:56px;
    border-radius:50px;
    background:white;
    color:#D71920;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.sidebar-cta-btn:hover{
    background:#F3F4F6;
    color:#D71920;
    transform:translateY(-3px);
}

.sidebar-cta-btn i{
    font-size:20px;
}

/* =========================================
   SHARE BUTTON
========================================= */

.share-news{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.share-title{
    font-weight:700;
    margin-right:10px;
}

.share-btn{
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s ease;
    font-size:18px;
}

.share-btn:hover{
    transform:translateY(-3px);
}

.share-btn.whatsapp{
    background:#25D366;
    color:white;
}

.share-btn.facebook{
    background:#1877F2;
    color:white;
}

.share-btn.linkedin{
    background:#0A66C2;
    color:white;
}

.share-btn.copy-link{
    background:#6B7280;
    color:white;
}

/* =========================================
   BUTTON BACK
========================================= */


.btn-back-news{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#D71920;
    color:#ffffff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:50px;
    transition:.35s ease;
    padding:14px 28px;
    font-size:15px;
    font-weight:600;

}

.btn-back-news:hover{
    background:#D71920;
    color:#ffffff;
    transform:
    translateY(-1px);
    box-shadow:
    0 15px 30px rgba(215,25,32,.25);
}

/* =========================================
   RESPONSIVE DETAIL SKEMA
========================================= */

@media(max-width:991px){

    .scheme-content-block h2{
        font-size:24px;
    }

    .sidebar-wrapper{
        margin-top:40px;
    }

}

@media(max-width:768px){

    .scheme-content-block h2{
        font-size:22px;
    }

    .share-news{
        justify-content:center;
    }

    .share-title{
        width:100%;
        text-align:center;
        margin-bottom:10px;
    }

}