/* ===================================
   CAPACITY BUILDING HERO
=================================== */

.capacity-hero{
    padding:140px 0 100px;
    background:#f8fbf8;
    overflow:hidden;
}

.capacity-hero-wrapper{
    display:flex;
    align-items:center;
    gap:80px;
}

.capacity-hero-content{
    flex:1;
}

.capacity-hero-content .hero-badge{
    display:inline-block;
    background:#e8f5e9;
    color:#2e7d32;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
}

.capacity-hero-content h1{
    font-size:48px;
    line-height:1.15;
    color:#111;
    margin-bottom:25px;
    font-weight:800;
}

.capacity-hero-content p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:650px;
}

.capacity-buttons{
    display:flex;
    gap:15px;
    margin-bottom:50px;
}

.capacity-btn-primary{
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.capacity-btn-primary:hover{
    transform:translateY(-4px);
}

.capacity-btn-secondary{
    background:#fff;
    color:#111;
    text-decoration:none;
    padding:16px 30px;
    border-radius:12px;
    border:1px solid #ddd;
    font-weight:600;
}

.capacity-stats{
    display:flex;
    gap:40px;
}

.capacity-stat h3{
    font-size:34px;
    color:#2e7d32;
    margin-bottom:5px;
}

.capacity-stat span{
    color:#666;
    font-size:14px;
}

.capacity-hero-image{
    flex:1;
}

.capacity-image-box{
    position:relative;
}

.capacity-image-box img{
    width:100%;
    height:680px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:18px 22px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:floatCard 3s ease-in-out infinite;
}

.floating-card strong{
    display:block;
    margin-bottom:5px;
}

.floating-card span{
    color:#666;
    font-size:14px;
}

.card-one{
    top:40px;
    right:-20px;
}

.card-two{
    left:-20px;
    bottom:50px;
}

@keyframes floatCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}
@media(max-width:991px){

    .capacity-hero{
        padding:120px 0 80px;
    }

    .capacity-hero-wrapper{
        gap:40px;
    }

    .capacity-hero-content h1{
        font-size:48px;
    }

    .capacity-image-box img{
        height:500px;
    }

    .capacity-stats{
        gap:20px;
    }

}
@media(max-width:767px){

    .capacity-hero{
        padding:110px 0 70px;
    }

    .capacity-hero-wrapper{
        flex-direction:column;
        gap:35px;
    }

    .capacity-hero-content{
        order:1;
    }

    .capacity-hero-image{
        order:2;
        width:100%;
    }

    .capacity-hero-content h1{
        font-size:36px;
        line-height:1.15;
    }

    .capacity-hero-content p{
        font-size:15px;
    }

    .capacity-buttons{
        flex-direction:column;
    }

    .capacity-btn-primary,
    .capacity-btn-secondary{
        width:100%;
        text-align:center;
    }

    .capacity-stats{
        justify-content:space-between;
        gap:10px;
    }

    .capacity-stat h3{
        font-size:22px;
    }

    .capacity-image-box img{
        height:320px;
        border-radius:20px;
    }

    .floating-card{
        padding:12px 15px;
    }

    .card-one{
        top:10px;
        right:10px;
    }

    .card-two{
        left:10px;
        bottom:10px;
    }

}
/* ===================================
   LEARNING SOLUTIONS
=================================== */

.learning-solutions{
    padding:30px 0;
    background:#fff;
}

.learning-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.learning-header h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    margin:20px 0;
    color:#111;
}

.learning-header p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.learning-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.learning-image{
    position:relative;
}

.learning-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
}

.learning-badge{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.learning-badge strong{
    display:block;
    font-size:42px;
    color:#2e7d32;
}

.learning-badge span{
    color:#666;
}

.learning-cards{
    display:grid;
    gap:25px;
}

.learning-card{
    display:flex;
    gap:20px;
    padding:28px;
    background:#f8fbf8;
    border-radius:22px;
    transition:.35s;
    border:1px solid transparent;
}

.learning-card:hover{
    transform:translateX(10px);
    border-color:#2e7d32;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.learning-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#2e7d32;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    flex-shrink:0;
}

.learning-card h3{
    font-size:24px;
    margin-bottom:8px;
}

.learning-card p{
    color:#666;
    line-height:1.8;
}
@media(max-width:991px){

    .learning-wrapper{
        grid-template-columns:1fr;
    }

    .learning-header h2{
        font-size:40px;
    }

    .learning-image img{
        height:500px;
    }

}
@media(max-width:767px){

    .learning-solutions{
        padding:20px 0;
    }

    .learning-header h2{
        font-size:30px;
    }

    .learning-header p{
        font-size:15px;
    }

    .learning-image img{
        height:320px;
    }

    .learning-card{
        padding:20px;
    }

    .learning-icon{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .learning-card h3{
        font-size:20px;
    }

    .learning-badge{
        left:10px;
        bottom:10px;
        padding:15px;
    }

}
/* ===================================
   TRAINING DASHBOARD
=================================== */

.training-dashboard{
    padding:30px 0;
    background:#f8fbf8;
}

.dashboard-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
    align-items:center;
}

.dashboard-content h2{
    font-size:42px;
     line-height:1.2;
    font-weight:800;
    margin:20px 0;
}

.dashboard-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
    font-size:16px;
}

.impact-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.impact-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
}

.impact-card:hover{
    transform:translateY(-8px);
}

.impact-card h3{
    color:#2e7d32;
    font-size:36px;
    margin-bottom:8px;
}

.impact-card span{
    color:#666;
}

.graph-card{
    background:#111;
    color:#fff;
    border-radius:30px;
    padding:40px;
}

.graph-card h3{
    font-size:24px;
    margin-bottom:10px;
}

.graph-card p{
    color:#bdbdbd;
    margin-bottom:30px;
}

.graph-container svg{
    width:100%;
    height:auto;
}

.graph-container line{
    stroke:#333;
    stroke-width:1;
}

.graph-container text{
    fill:#999;
    font-size:13px;
}

.growth-line{
    fill:none;
    stroke:#2563eb;
    stroke-width:4;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:1000;
    stroke-dashoffset:1000;
    animation:drawLine 3s ease forwards;
}

.graph-container circle{
    fill:#2563eb;
}

@keyframes drawLine{

    to{
        stroke-dashoffset:0;
    }

}@media(max-width:991px){

    .dashboard-wrapper{
        grid-template-columns:1fr;
    }

    .dashboard-content h2{
        font-size:40px;
    }

}@media(max-width:767px){

    .training-dashboard{
        padding:20px 0;
    }

    .dashboard-content h2{
        font-size:30px;
    }

    .impact-stats{
        grid-template-columns:1fr;
    }

    .graph-card{
        padding:25px;
    }

}
/* ===================================
   CAPACITY FRAMEWORK
=================================== */

.capacity-framework{
    padding:30px 0;
    background:#ffffff;
}

.framework-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}

.framework-header h2{
    font-size:42px;
     line-height:1.2;
    font-weight:800;
    margin:20px 0;
    color:#111;
}

.framework-header p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.framework-timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    position:relative;
}

.framework-timeline::before{
    content:'';
    position:absolute;
    top:140px;
    left:10%;
    width:80%;
    height:4px;
    background:#2e7d32;
    z-index:0;
}

.framework-card{
    position:relative;
    z-index:1;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s;
}

.framework-card:hover{
    transform:translateY(-12px);
}

.framework-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.5s;
}

.framework-card:hover img{
    transform:scale(1.08);
}

.step-no{
    position:absolute;
    top:15px;
    right:15px;
    width:60px;
    height:60px;
    background:#2e7d32;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
}

.framework-card h3{
    padding:25px 25px 10px;
    font-size:24px;
}

.framework-card p{
    padding:0 25px 30px;
    color:#666;
    line-height:1.8;
}
@media(max-width:991px){

    .framework-timeline{
        grid-template-columns:repeat(2,1fr);
    }

    .framework-timeline::before{
        display:none;
    }

    .framework-header h2{
        font-size:40px;
    }

}
@media(max-width:767px){

    .capacity-framework{
        padding:20px 0;
    }

    .framework-timeline{
        grid-template-columns:1fr;
    }

    .framework-header h2{
        font-size:30px;
    }

    .framework-card img{
        height:200px;
    }

}
/* ===================================
   CAPACITY OUTCOMES
=================================== */

.capacity-outcomes{
    padding:30px 0;
    background:#f8fbf8;
}

.outcomes-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.outcomes-image{
    position:relative;
}

.outcomes-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:30px;
}

.success-badge{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.success-badge strong{
    display:block;
    font-size:42px;
    color:#2e7d32;
}

.success-badge span{
    color:#666;
}

.outcomes-content h2{
    font-size:42px;
    margin:20px 0;
    line-height:1.2;
}

.outcomes-content p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:35px;
}

.outcomes-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.outcome-card{
    display:flex;
    gap:15px;
    background:#fff;
    padding:20px;
    border-radius:20px;
    transition:.35s;
}

.outcome-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.outcome-icon{
    width:60px;
    height:60px;
    background:#2e7d32;
    color:#fff;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.outcome-card h4{
    margin-bottom:6px;
    font-size:18px;
}

.outcome-card p{
    margin:0;
    font-size:14px;
    line-height:1.6;
}
@media(max-width:991px){

    .outcomes-wrapper{
        grid-template-columns:1fr;
    }

    .outcomes-content h2{
        font-size:40px;
    }

    .outcomes-image img{
        height:500px;
    }

}
@media(max-width:767px){

    .capacity-outcomes{
        padding:20px 0;
    }

    .outcomes-content h2{
        font-size:30px;
    }

    .outcomes-grid{
        grid-template-columns:1fr;
    }

    .outcomes-image img{
        height:320px;
    }

    .success-badge{
        left:10px;
        bottom:10px;
        padding:15px;
    }

}
/* ===================================
   CAPACITY CTA
=================================== */

.capacity-cta{
    position:relative;
    padding:140px 0;
    background:url('../images/capacity/cta-bg.jpg')
    center center/cover no-repeat;
    overflow:hidden;
}

.capacity-cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.capacity-cta-content{
    position:relative;
    z-index:2;
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.capacity-cta-content .section-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:25px;
}

.capacity-cta-content h2{
    color:#fff;
    font-size:42px;
    line-height:1.2;

    font-weight:800;
    margin-bottom:25px;
}

.capacity-cta-content p{
    color:rgba(255,255,255,.85);
    font-size:16px;
    line-height:1.9;
    max-width:850px;
    margin:0 auto 50px;
}

.cta-highlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:50px;
}

.cta-highlight{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(12px);
    padding:25px;
    border-radius:20px;
    transition:.35s;
}

.cta-highlight:hover{
    transform:translateY(-8px);
}

.cta-highlight strong{
    display:block;
    color:#fff;
    font-size:34px;
    margin-bottom:8px;
}

.cta-highlight span{
    color:rgba(255,255,255,.8);
    font-size:14px;
}

.capacity-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.capacity-primary-btn{
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.capacity-primary-btn:hover{
    transform:translateY(-4px);
}

.capacity-secondary-btn{
    background:#fff;
    color:#111;
    text-decoration:none;
    padding:18px 35px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.capacity-secondary-btn:hover{
    transform:translateY(-4px);
}
@media(max-width:991px){

    .capacity-cta-content h2{
        font-size:48px;
    }

    .cta-highlights{
        grid-template-columns:repeat(2,1fr);
    }

}
@media(max-width:767px){

    .capacity-cta{
        padding:80px 0;
    }

    .capacity-cta-content h2{
        font-size:34px;
    }

    .capacity-cta-content p{
        font-size:15px;
    }

    .cta-highlights{
        grid-template-columns:1fr;
    }

    .capacity-cta-buttons{
        flex-direction:column;
    }

    .capacity-primary-btn,
    .capacity-secondary-btn{
        width:100%;
    }

}

.capacity-hero-content h1{
    font-size:clamp(2.5rem,4vw,4rem);
}

.learning-header h2,
.dashboard-content h2,
.framework-header h2,
.outcomes-content h2,
.capacity-cta-content h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
}

.capacity-hero-content p,
.learning-header p,
.dashboard-content p,
.framework-header p,
.outcomes-content p,
.capacity-cta-content p{
    font-size:16px;
    line-height:1.8;
}
@media(max-width:767px){

    .capacity-hero-content h1{
        font-size:34px;
    }

    .learning-header h2,
    .dashboard-content h2,
    .framework-header h2,
    .outcomes-content h2,
    .capacity-cta-content h2{
        font-size:28px;
    }

    .capacity-hero-content p,
    .learning-header p,
    .dashboard-content p,
    .framework-header p,
    .outcomes-content p,
    .capacity-cta-content p{
        font-size:15px;
    }

}