/* Container & Depth */
.mission-section {
    background-color: #f8fafc;
    /* min-height: 90vh; */
    display: flex;
    align-items: center;
}

/* Advanced mesh background */
.mesh-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(at 0% 0%, rgba(46, 204, 113, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(52, 152, 219, 0.1) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(155, 89, 182, 0.08) 0px, transparent 50%);
    z-index: 0;
}

/* Left Content Styles */
.text-content h1 {
    letter-spacing: -2px;
}

.accent-text {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pill-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    border-color: #10b98155;
}

/* Subtle glow effect on hover */
.glass-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #10b98155;
}

.glass-card:hover::after {
    opacity: 1;
}

/* Specific Card Text Styles */
.card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 15px;
    font-weight: 500;
    color: #00b09b;
    margin: 0;
    line-height: 1.4;
}

/* Modern Icon styling with soft backgrounds */
.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}

.bg-soft-emerald  { background: #e8f8f0; color: #10b981; }
.bg-soft-blue     { background: #eaf4fb; color: #3b82f6; }
.bg-soft-gold     { background: #fdf2e9; color: #f59e0b; }
.bg-soft-platinum { background: #f5eef8; color: #9b59b6; }

/* Special styling for the recognition trophy card */
.featured-platinum {
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(240, 248, 255, 0.7) 100%);
    border-color: rgba(155, 89, 182, 0.15);
}


/* public value section */
.public-value-section {
  background-color: #fbf7f7;
  font-family: 'Inter', -apple-system, sans-serif;
}
.lead{
  font-size:15px !important;
  color:#000 !important;
}
.public-value-section h2{
  color:#1f6c48 !important;
}
.public-value-sub-head{
  font-size:15px !important;
  color:#ae4656 !important;
}
/* Custom Card Styling */
.custom-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #f1f3f5 !important;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06) !important;
  border-color: #e9ecef !important;
}

/* Icon Box Styling */
.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.4rem;
}

/* Soft Backgrounds for Icons */
.bg-soft-primary { background-color: #e7f1ff; color: #0d6efd; }
.bg-soft-success { background-color: #e6fcf5; color: #0ca678; }
.bg-soft-warning { background-color: #fff9db; color: #f08c00; }
.bg-soft-danger  { background-color: #fff5f5; color: #fa5252; }

/* Typography tweaks */
h2 {
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.card{
  margin-right:0px !important;
}
.card-body p{
  margin-left:0px !important;
}
.text-muted {
  line-height: 1.6;
}

/* Policy alignment CSS */
:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --primary-grad: linear-gradient(135deg, #00b09b, #96c93d);
    --text-main: #1e293b;
}

.policy-alignment {
    background-color: #f8fafc;
    overflow: hidden;
}

.text-gradient {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.line-accent {
    width: 40px;
    height: 4px;
    background: var(--primary-grad);
    border-radius: 10px;
}

/* The Alignment Card */
.alignment-card {
    position: relative;
    padding: 15px 13px;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Background Abstract Shape using :before */
.alignment-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-grad);
    opacity: 0.05;
    border-radius: 0 24px 0 100%;
    transition: all 0.4s ease;
}

.alignment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 176, 155, 0.1);
    background: #fff;
    border-color: #00b09b33;
}

.alignment-card:hover::before {
    width: 120px;
    height: 120px;
    opacity: 0.1;
}

/* Modern Icon Wrapper */
.icon-wrapper {
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #00b09b;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Icon indicator label (The "IN" or dots) */
.icon-wrapper::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: var(--primary-grad);
    border: 2px solid #fff;
    border-radius: 50%;
}

.alignment-card h4 {
    /* font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem; */
    font-size: 16px;
    font-weight: 700;
    color: #ae4656;
    margin-bottom: 4px;
}

.alignment-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .alignment-card {
        padding: 1.5rem;
    }
}

/* analytics section css */
/* Light Theme Premium Styling */
.analytics-section {
    background-color: #fcfdfe;
}

.chart-card {
    background: #ffffff;
    border-radius: 20px;
    transition: transform 0.3s ease;
}
.chart-card-table-data{
    min-height:400px;
    overflow-y: auto;
}

.chart-card:hover {
    transform: translateY(-5px);
}

.bg-soft-primary {
    background-color: #eef2ff;
}

.text-primary {
    color: #4361ee !important;
}

h3 {
    letter-spacing: -0.5px;
    font-size: 1.5rem;
}

/* Tooltip Styling */
#chartjs-tooltip {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    color: white;
    opacity: 1;
    pointer-events: none;
    position: absolute;
}

/* outcomes section css */

.public-value-advanced {
    background-color: #fcfdfe;
}
.public-value-advanced h2{
  color:#1f6c48 !important;
}
.ls-2 { letter-spacing: 2px; }

/* The Base Card */
.value-card {
    position: relative;
    height: 400px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Dark Gradient Overlay for text readability */
.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

/* The Glassmorphic Content Area */
.value-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 2;
    transition: all 0.5s ease;
}

/* Content sliding effect */
.description {
    opacity: 0;
    max-height: 0;
    transition: all 0.5s ease;
    margin-top: 0;
}

/* Hover States */
.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-card:hover .value-overlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-card:hover .description {
    opacity: 1;
    max-height: 100px;
    margin-top: 15px;
}

/* Badge Styling */
.value-card .badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
}

/* recognition section */
/* 1. Deep Mesh Background */
.premium-dashboard-section {
    position: relative;
    background: #f8fafc;
    overflow: hidden;
    /* min-height: 100vh; */
}

.mesh-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(at 0% 0%, rgba(46, 204, 113, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(52, 152, 219, 0.1) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(155, 89, 182, 0.08) 0px, transparent 50%);
    z-index: 0;
}

/* 2. Bento Card & Glassmorphism */
.glass-morph {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.04);
}

.accent-text {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3. High-Fidelity Tier Cards */
.tier-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 28px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #edf2f7;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.tier-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.tier-card.featured {
    background: linear-gradient(145deg, #ffffff, #fffdf0);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.tier-icon {
    font-size: 2.8rem;
    width:80px;
    height:auto;
    margin-right: 25px;
    filter: drop-shadow(0 10px 8px rgba(0,0,0,0.1));
}

.tier-content h5 { font-weight: 800; color: #1e293b; margin-bottom: 4px; }
.tier-content p { font-size: 0.95rem; color: #64748b; margin: 0; line-height: 1.5; }

.featured-tag {
    position: absolute;
    top: -12px; right: 30px;
    background: #f59e0b;
    color: white;
    padding: 4px 15px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
}
/* 2. Glassmorphism Bento Card */
.glass-bento {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.glass-bento:hover {
    transform: translateY(-5px);
}

.tracking-wider { letter-spacing: 2px; }

/* Evaluation Parameters CSS */
/* Container & Wrapper */
.bento-table-wrapper {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.table-header-glass {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #f1f5f9;
}

/* Premium Table Styling */
.premium-table thead th {
    background: #caf6e1;
    color: #394250;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    padding: 20px 15px;
    border: none;
}

.premium-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8fafc;
}

/* .premium-table tbody tr:hover {
    background-color: #f8fafc;
    transform: scale(1.002);
} */

.premium-table td {
    padding: 25px 15px;
    vertical-align: middle;
    border: none;
}

/* Typography Details */
.area-title {
    font-weight: 600;
    color: #448a69;
    font-size: 14px;
    display: block;
}
.reg-pro{
  border-radius:20px !important;
}
.review-text, .evidence-text {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 300px;
}

/* Advanced Tag Styling */
.tag {
  background-color:#448a69 !important;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px !important;
    border-radius: 100px;
    display: inline-block;
    white-space: nowrap;
    float:left;
    width:fit-content !important;
}

/* Premium Button */
.btn-premium {
    background: #1e293b;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background: #334155;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Impact Report CSS */
/* --- DASHBOARD SHELL --- */
.impact-report-section{
    background: radial-gradient(at 0% 0%, rgba(46, 204, 113, 0.12) 0px, transparent 50%), radial-gradient(at 100% 0%, rgba(52, 152, 219, 0.1) 0px, transparent 50%), radial-gradient(at 50% 100%, rgba(155, 89, 182, 0.08) 0px, transparent 50%);
}
        .glass-container {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 15px 17px;
            border: 1px solid #ffffff;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
            max-width: 1300px;
            margin: auto;
        }
        .glass-container h2{
            font-weight: 800;
    font-size: 2rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        }
        .header-badge {
            background: #ecfdf5;
            color: #10b981;
            padding: 8px 20px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            border: 1px solid #d1fae5;
        }

        /* --- THE RESOURCE CARDS --- */
        .resource-card {
            background:  #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 28px;
            padding: 30px;
            height: 100%;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            z-index: 1;
        }

        /* Hover: Lift and Glow */
        .resource-card:hover {
            transform: translateY(-12px);
            border-color: #e2e8f0;
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
        }

        /* --- THE ::BEFORE ANIMATION (Glow Underlay) --- */
        .resource-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 28px;
            padding: 2px; /* Border thickness */
            background: linear-gradient(135deg, #10b981, #3b82f6);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .resource-card:hover::before { opacity: 1; }

        /* --- THE ::AFTER ANIMATION (Progress Line) --- */
        .resource-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 10%;
            width: 80%; height: 4px;
            background: #10b981;
            border-radius: 10px 10px 0 0;
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .resource-card:hover::after { transform: scaleX(1); }

        /* Icon Styling */
        .icon-wrapper {
            width: 40px;
            height: 40px;
            background: #f8fafc;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #10b981;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        .resource-card:hover .icon-wrapper {
            background: #10b981;
            color: white;
            transform: scale(1.1) rotate(-5deg);
        }

        .resource-card .card-title {
            color: #10b981;
            font-weight: 800;
            font-size: 17px;
            margin-bottom: 12px;
        }

        .card-desc {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        /* Action Link */
        .action-link {
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            color: #10b981;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
            color:#ae4656 !important;
        }
        .resource-card:hover .action-link {
            gap: 12px;
            color: #059669;
        }


        /* Section */
.activity-section{
    padding:40px 0;
    background: linear-gradient(180deg,#f7fafc,#eef5f1);
    position:relative;
    overflow:hidden;
}

/* Background shapes */
.activity-section::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:#22c55e20;
    border-radius:50%;
    top:-80px;
    left:-80px;
}

.activity-section::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:#16a34a20;
    border-radius:50%;
    bottom:-120px;
    right:-120px;
}

/* Title */
.title{
    font-size:21px;
    font-weight:400;
    color:#0f172a;
}

.title span{
    color:#16a34a;
}

.subtitle{
    color:#64748b;
    max-width:700px;
    margin:15px auto 50px;
}

/* Cards */
.activity-card{
    background:#ffffff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
}

.activity-card:hover{
    transform:translateY(-10px);
}

/* Circle */
.circle-wrap{
    position:relative;
    width:120px;
    height:120px;
    margin:auto;
}

.circle-wrap img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #fff;
}

/* Arc */
.circle-wrap::before{
    content:'';
    position:absolute;
    width:130px;
    height:130px;
    border-radius:50%;
    border:4px solid transparent;
    top:-5px;
    left:-5px;
}

/* Different colors */
.arc-green::before{border-top-color:#22c55e;}
.arc-teal::before{border-top-color:#14b8a6;}
.arc-orange::before{border-top-color:#f97316;}
.arc-pink::before{border-top-color:#f43f5e;}
.arc-purple::before{border-top-color:#8b5cf6;}

/* Icon badge */
.badge-icon{
    position:absolute;
    bottom:-8px;
    right:-8px;
    width:45px;
    height:45px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    display:none;
}

.green{background:#22c55e;}
.teal{background:#14b8a6;}
.orange{background:#f97316;}
.pink{background:#f43f5e;}
.purple{background:#8b5cf6;}

/* Text */
.card-title{
    font-weight:500;
    margin-top:16px;
    color:#0f172a;
    font-size: 15px;
}

.card-text{
    font-size:13px;
    color:#64748b;
}

/* Bottom line */
.line{
    width:40px;
    height:4px;
    border-radius:10px;
    margin:15px auto 0;
}

.l-green{background:#22c55e;}
.l-teal{background:#14b8a6;}
.l-orange{background:#f97316;}
.l-pink{background:#f43f5e;}
.l-purple{background:#8b5cf6;}

/* Responsive */
@media(max-width:768px){
    .title{font-size:28px;}
}
/* .eco-card{
    min-height: 116px !important;
} */
.eco-number {
    font-size: 28px;
    font-weight: 500;
    color: #0f5132;
    margin: 0;
}
.eco-title{
    color:#000 !important;
    font-weight:500 !important;
}

