 a {
        text-decoration: none
    }
    
    .news marquee {
        font-size: 15px;
        margin-top: 12px
    }
    .news-content p {
        margin-right: 41px;
        display: inline
    }




/* ===============================
   KP-RAP COMPLETE SECTION
================================ */
/* ===== PAGE GRADIENT HEADER ===== */

.page-gradient-header{
    width:100vw;
    height:150px;
    background:linear-gradient(
        135deg,
        #0D8C60 0%,     /* primary KP green */
        #0FA37A 35%,    /* fresh green lift */
        #0B6E8A 65%,    /* subtle blue transition */
        #084C61 100%    /* deep calm base */
    );
    margin-left:calc(-50vw + 50%);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* Title */
.page-gradient-header h1{
    font-size:42px;
    font-weight:600;
    color:#ffffff;
    letter-spacing:0.5px;
    position:relative;
    z-index:1;
}

/* Optional subtitle */
.page-gradient-header p{
    font-size:16px;
    color:rgba(255,255,255,0.85);
    margin-top:8px;
}

/* Responsive */
@media(max-width:768px){
    .page-gradient-header{
        height:200px;
    }
    .page-gradient-header h1{
        font-size:30px;
    }
}
.kprap-section{
    padding:60px 0;
    background:#ffffff;
    font-family:"Space Grotesk", sans-serif;
}

.kprap-container{
    max-width:1200px;
    margin:0 auto;
}

/* ===== HEADINGS ===== */
.kprap-heading{
    opacity:0;
    transform:translateY(22px);
    transition:all .6s ease;
}
.kprap-heading.show{
    opacity:1;
    transform:none;
}

.kprap-title{
    font-size:32px;
    font-weight:600;
    margin-bottom:10px;
}
.kprap-title .green{color:#0D8C60;}
.kprap-title .gold{color:#D4A017;}

.kprap-divider{
    width:120px;
    height:2px;
    background:#E5E7EB;
    position:relative;
    margin-bottom:26px;
}
.kprap-divider::after{
    content:"";
    width:10px;
    height:10px;
    background:#0D8C60;
    border-radius:50%;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

/* ===== TEXT ===== */
.kprap-text{
    font-size:16px;
    line-height:1.85;
    color:#475569;
    margin-bottom:22px;
}

.kprap-subtitle{
    font-size:20px;
    font-weight:600;
    color:#0F172A;
    margin:36px 0 14px;
}

/* ===== INFO BOX ===== */
.kprap-info{
    background:#F8FAFC;
    border-left:4px solid #0D8C60;
    padding:18px 22px;
    border-radius:8px;
    margin-bottom:16px;
}

/* ===== KPI CARDS (ABOUT CARD STYLE) ===== */
.kprap-kpis{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:40px;
}

.kpi-card{
    background:#ffffff;
    border-radius:18px;
    padding:34px 26px 32px;
    text-align:center;
    box-shadow:0 8px 22px rgba(0,0,0,0.06);
    position:relative;
    opacity:0;
    transform:translateY(28px);
    transition:opacity .6s ease, transform .6s ease;
    overflow:hidden;
}

.kpi-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    border-radius:18px 18px 0 0;
}

.kpi-roads::before{background:#10B981;}
.kpi-bridges::before{background:#06B6D4;}
.kpi-districts::before{background:#3B82F6;}

.kpi-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.bg-roads{background:#D1FAE5;}
.bg-bridges{background:#CFFAFE;}
.bg-districts{background:#DBEAFE;}

.kpi-icon svg{
    width:34px;
    height:34px;
    stroke-width:2;
}

.icon-roads{stroke:#059669;}
.icon-bridges{stroke:#0891B2;}
.icon-districts{stroke:#2563EB;}

.kpi-card h3{
    font-size:28px;
    font-weight:700;
    color:#0F172A;
    margin-bottom:6px;
}

.kpi-card p{
    font-size:14.5px;
    color:#475569;
    margin:0;
}

.kpi-card.show{
    opacity:1;
    transform:none;
}

/* Responsive */
@media(max-width:992px){
    .kprap-kpis{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:576px){
    .kprap-kpis{grid-template-columns:1fr;}
}

/* ===== OBJECTIVES & JUSTIFICATION (EXTENSION ONLY) ===== */

.kprap-content-block{
    margin-top:80px;
}

.kprap-list{
    margin:0;
    padding-left:22px;
}

.kprap-list li{
    font-size:16px;
    line-height:1.75;
    color:#475569;
    margin-bottom:12px;
    opacity:0;
    transform:translateY(20px);
    transition:.6s ease;
}

.kprap-list li.show{
    opacity:1;
    transform:none;
}

.kprap-justification-box{
    margin-top:32px;
    background:#F8FAFC;
    border-left:4px solid #0D8C60;
    padding:26px 30px;
    border-radius:10px;
    font-size:16px;
    line-height:1.85;
    color:#475569;
    opacity:0;
    transform:translateY(24px);
    transition:.6s ease;
}

.kprap-justification-box.show{
    opacity:1;
    transform:none;
}

/* ===============================
   COMPONENTS – KPI ENHANCED
================================ */

.kprap-component-enhanced{
    background:#ffffff;
    border-radius:16px;
    padding:34px 32px;
    margin-top:40px;
    box-shadow:0 12px 32px rgba(0,0,0,0.08);
    opacity:0;
    transform:translateY(36px);
    transition:.6s ease;
}

.kprap-component-enhanced.show{
    opacity:1;
    transform:none;
}

/* Header */
.component-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:14px;
}

.component-no{
    font-size:38px;
    font-weight:800;
    color:#0D8C60;
    opacity:.25;
}

.component-title{
    font-size:26px;
    font-weight:600;
    color:#0F172A;
}

/* KPI ROW */
.component-kpi-row{
    display:flex;
    gap:18px;
    margin-top:22px;
    flex-wrap:wrap;
}

.mini-kpi{
    min-width:140px;
    padding:16px 18px;
    border-radius:14px;
    background:#F8FAFC;
    text-align:center;
}

.mini-kpi strong{
    font-size:20px;
    display:block;
    margin-bottom:4px;
}

.mini-kpi span{
    font-size:13px;
    color:#64748B;
}

/* Color accents */
.mini-kpi.green{border-top:4px solid #0D8C60;}
.mini-kpi.teal{border-top:4px solid #14B8A6;}
.mini-kpi.blue{border-top:4px solid #3B82F6;}
.mini-kpi.gold{border-top:4px solid #D4A017;}
.mini-kpi.red{border-top:4px solid #EF4444;}


/* ===============================
   DOWNLOADS DATATABLE – KP-RAP
================================ */

.news-page-details{
    padding-top:70px;
}

.news-page-details,
.kprap-section{
    position: relative;
    z-index: 2;
}

.downloads-card{
    background:#ffffff;
    border-radius:16px;
    padding:26px 26px 20px;
    box-shadow:0 12px 32px rgba(0,0,0,0.08);
}

/* Table spacing */
.downloads-table{
    border-collapse:separate;
    border-spacing:0 10px;
}

/* Header */
.downloads-table thead th{
    background:#F8FAFC;
    color:#0F172A;
    font-weight:600;
    border:none;
    padding:14px 16px;
}

/* Rows */
.downloads-table tbody tr{
    background:#ffffff;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
    border-radius:10px;
}

.downloads-table tbody td{
    padding:16px;
    border:none;
}

/* Hover */
.downloads-table tbody tr:hover{
    box-shadow:0 8px 22px rgba(0,0,0,0.10);
}

/* Title */
.download-title{
    font-size:16px;
    font-weight:500;
    color:#0F172A;
}

/* Improved Download Button */
.btn-download{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:999px;               /* pill shape */
    background:linear-gradient(
        135deg,
        #0D8C60 0%,
        #0FA37A 100%
    );
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    letter-spacing:.2px;
    text-decoration:none;
    box-shadow:0 6px 16px rgba(13,140,96,0.35);
    transition:all .25s ease;
    border:none;
}

/* Hover effect */
.btn-download:hover{
    background:linear-gradient(
        135deg,
        #0B6E4D 0%,
        #0D8C60 100%
    );
    color:#ffffff;
    transform:translateY(-1px);
    box-shadow:0 10px 24px rgba(13,140,96,0.45);
}

/* Active (click) */
.btn-download:active{
    transform:translateY(0);
    box-shadow:0 4px 10px rgba(13,140,96,0.35);
}


/* Datatable search spacing */
.dataTables_wrapper .dataTables_filter{
    margin-bottom:16px;
}

/* ===============================
   DATATABLE PAGINATION – KP-RAP
================================ */

.dataTables_wrapper .dataTables_paginate{
    margin-top:18px;
    display:flex;
    justify-content:flex-end;
}

/* Button base */
.dataTables_wrapper .dataTables_paginate .paginate_button{
    padding:8px 14px;
    margin:0 4px;
    border-radius:8px;
    border:1px solid #0D8C60;
    background:#ffffff;
    color:#0D8C60 !important;
    font-weight:500;
    font-size:14px;
    transition:all .2s ease;
}

/* Hover */
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    background:#0D8C60;
    color:#ffffff !important;
}

/* Active page */
.dataTables_wrapper .dataTables_paginate .paginate_button.current{
    background:#0D8C60;
    color:#ffffff !important;
    border-color:#0D8C60;
}

/* Disabled */
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled{
    opacity:.45;
    cursor:not-allowed;
    background:#F3F4F6;
    color:#9CA3AF !important;
    border-color:#E5E7EB;
}

/* ===============================
   NEWS – PREMIUM CARD DESIGN
================================ */

.news-card-pro{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    box-shadow:0 14px 36px rgba(0,0,0,0.08);
    transition:transform .35s ease, box-shadow .35s ease;
}

.news-card-pro:hover{
    transform:translateY(-8px);
    box-shadow:0 26px 54px rgba(0,0,0,0.14);
}

/* Image */
.news-img-pro{
    height:230px;
    background-size:cover;
    background-position:center;
    position:relative;
}

/* Date badge */
.news-date-pro{
    position:absolute;
    bottom:-26px;
    left:22px;
    background:#0D8C60;
    color:#fff;
    padding:12px 16px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 10px 24px rgba(13,140,96,.4);
}

.news-date-pro span{
    font-size:20px;
    font-weight:700;
    display:block;
    line-height:1;
}

.news-date-pro small{
    font-size:11px;
    letter-spacing:.6px;
    text-transform:uppercase;
}

/* Body */
.news-body-pro{
    padding:40px 24px 26px;
}

/* Category */
.news-tag{
    display:inline-block;
    font-size:12px;
    font-weight:600;
    color:#0D8C60;
    text-transform:uppercase;
    margin-bottom:6px;
}

/* Title */
.news-title-pro{
    font-size:19px;
    font-weight:600;
    line-height:1.35;
    margin-bottom:10px;
}

.news-title-pro a{
    color:#0F172A;
    text-decoration:none;
}

.news-title-pro a:hover{
    color:#0D8C60;
}

/* Excerpt */
.news-excerpt-pro{
    font-size:14.5px;
    color:#475569;
    line-height:1.65;
    margin-bottom:18px;
}

/* CTA */
.news-cta{
    font-size:14px;
    font-weight:600;
    color:#0D8C60;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.news-cta span{
    transition:transform .25s ease;
}

.news-cta:hover span{
    transform:translateX(4px);
}


/* ===============================
   NEWS DETAIL – PREMIUM DESIGN
================================ */

/* Hero */
.news-hero{
    min-height:360px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.news-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.65) 100%
    );
    display:flex;
    align-items:center;
}

.news-hero-category{
    color:#A7F3D0;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.8px;
    font-size:13px;
}

.news-hero-title{
    color:#ffffff;
    font-size:42px;
    font-weight:700;
    margin:10px 0 6px;
}

.news-hero-meta{
    color:#E5E7EB;
    font-size:14px;
}

/* Main card */
.news-detail-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 14px 36px rgba(0,0,0,0.08);
}

.news-feature-img{
    width:100%;
    height:auto;
}

.news-content{
    padding:32px 34px;
    font-size:16px;
    line-height:1.9;
    color:#374151;
}

/* Sidebar */
.news-side-card{
    background:#ffffff;
    border-radius:16px;
    padding:22px 22px;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

.side-title{
    font-size:18px;
    font-weight:600;
    margin-bottom:14px;
}

.side-list .side-item{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    text-decoration:none;
    color:#0F172A;
    border-bottom:1px solid #E5E7EB;
}

.side-list .side-item:hover{
    color:#0D8C60;
}

.side-item .count{
    color:#6B7280;
}

/* Popular */
.popular-item{
    display:flex;
    gap:12px;
    margin-bottom:14px;
    text-decoration:none;
}

.popular-item img{
    width:64px;
    height:64px;
    object-fit:cover;
    border-radius:10px;
}

.popular-item h4{
    font-size:14px;
    font-weight:600;
    margin:0;
    color:#0F172A;
}

.popular-item span{
    font-size:12px;
    color:#6B7280;
}


    
/* ===============================
   NEWS DETAIL – FIXED & STRONG
================================ */

/* Main content card */
.news-detail-card{
    background:#ffffff;
    border-radius:18px;
    padding:30px 32px 36px;
    box-shadow:0 14px 36px rgba(0,0,0,0.08);
}

/* Meta */
.news-meta{
    font-size:14px;
    color:#6B7280;
    margin-bottom:14px;
}

/* Fixed image ratio */
.news-image-frame{
    width:100%;
    aspect-ratio:16/9;          /* 🔥 KEY FIX */
    overflow:hidden;
    border-radius:14px;
    margin-bottom:22px;
}

.news-image-frame img{
    width:100%;
    height:100%;
    object-fit:cover;           /* 🔥 UNIFORM IMAGES */
}

/* Main title */
.news-main-title{
    font-size:28px;
    font-weight:600;
    color:#0F172A;
    margin-bottom:18px;
}

/* Content */
.news-content{
    font-size:16px;
    line-height:1.9;
    color:#374151;
}

/* Sidebar */
.news-side-card{
    background:#ffffff;
    border-radius:16px;
    padding:20px 22px;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

.side-title{
    font-size:17px;
    font-weight:600;
    margin-bottom:14px;
}

/* Category links */
.side-link{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    text-decoration:none;
    color:#0F172A;
    border-bottom:1px solid #E5E7EB;
}

.side-link:hover{
    color:#0D8C60;
}

.side-link .count{
    color:#6B7280;
}

/* Popular news */
.popular-item{
    display:flex;
    gap:12px;
    margin-bottom:14px;
    text-decoration:none;
}

.popular-item .thumb{
    width:64px;
    height:64px;
    border-radius:10px;
    overflow:hidden;
    flex-shrink:0;
}

.popular-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.p-title{
    font-size:14px;
    font-weight:600;
    color:#0F172A;
}

.p-date{
    font-size:12px;
    color:#6B7280;
}






/* ===============================
   CONTACT US – AWESOME DESIGN
================================ */

.contact-info-card,
.contact-form-card{
    background:#ffffff;
    border-radius:18px;
    padding:28px 30px;
    box-shadow:0 14px 36px rgba(0,0,0,0.08);
    height:100%;
}

.contact-title{
    font-size:22px;
    font-weight:600;
    margin-bottom:18px;
    color:#0F172A;
}

/* Info items */
.contact-item{
    margin-bottom:18px;
}

.contact-item .label{
    display:block;
    font-size:13px;
    font-weight:600;
    color:#0D8C60;
    text-transform:uppercase;
    margin-bottom:4px;
}

.contact-item p{
    margin:0;
    font-size:15px;
    color:#374151;
}

.contact-item a{
    color:#0D8C60;
    text-decoration:none;
}

.contact-item a:hover{
    text-decoration:underline;
}

/* Note */
.contact-note{
    margin-top:22px;
    font-size:14px;
    color:#6B7280;
    border-left:4px solid #0D8C60;
    padding-left:14px;
}

/* ===============================
   CONTACT MAP CARD
================================ */

.contact-map-card{
    background:#ffffff;
    border-radius:18px;
    padding:22px;
    box-shadow:0 14px 36px rgba(0,0,0,0.08);
    height:100%;
}

.map-frame{
    width:100%;
    height:360px;
    border-radius:14px;
    overflow:hidden;
}

.map-frame iframe{
    width:100%;
    height:100%;
    border:0;
}
