/* ===================================
   HERO SECTION
=================================== */

.hero-section{
    padding:110px 0;
    background:#f8fbf8;
    overflow:hidden;
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.hero-content{
    flex:1;
}

.hero-tag{
    display:inline-block;
    background:#e8f5e9;
    color:#2e7d32;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:48px;
    line-height:1.1;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#2e7d32;
}

.hero-content p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    max-width:650px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.btn-primary{
    background:#2e7d32;
    color:#fff;
    padding:15px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #2e7d32;
    color:#2e7d32;
    padding:15px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:#2e7d32;
    color:#fff;
}

.hero-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stat-box{
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    min-width:140px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.stat-box h3{
    color:#2e7d32;
    font-size:28px;
    margin-bottom:5px;
}

.stat-box span{
    color:#666;
    font-size:14px;
}

.hero-image{
    flex:1;
}

.video-card{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.video-card video{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
    border-radius:30px;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border:none;
    border-radius:50%;
    background:#2e7d32;
    color:#fff;
    font-size:32px;
    cursor:pointer;
    transition:.3s;
    z-index:2;
}

.play-btn:hover{
    transform:translate(-50%,-50%) scale(1.08);
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:18px 22px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.floating-card strong{
    display:block;
    color:#2e7d32;
    font-size:26px;
}

.floating-card span{
    font-size:14px;
    color:#666;
}

.card-1{
    top:40px;
    left:-20px;
}

.card-2{
    bottom:40px;
    right:-20px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.hero-wrapper{
    flex-direction:column;
}

.hero-content h1{
    font-size:42px;
}

.video-card video{
        height:500px;
    }


}
@media (max-width:768px){

    .hero-section{
        padding:40px 0 60px;
    }

    .hero-wrapper{
        flex-direction:column;
        gap:30px;
    }

    .hero-content{
        order:1;
    }

    .hero-image{
        order:2;
        width:100%;
    }

    .hero-content h1{
        font-size:38px;
        line-height:1.15;
        margin-bottom:18px;
    }

    .hero-content p{
        font-size:18px;
        line-height:1.6;
        margin-bottom:25px;
    }

    .video-card{
        border-radius:24px;
    }

    .video-card video{
        width:100%;
        height:260px;
        object-fit:cover;
        border-radius:24px;
    }

    .play-btn{
        width:70px;
        height:70px;
        font-size:24px;
    }

    .hero-buttons{
        margin-top:25px;
    }

    .hero-stats{
        display:none;
    }

}

@media(max-width:576px){

.hero-section{
    padding:70px 0;
}

.hero-content h1{
    font-size:32px;
}

.hero-content p{
    font-size:15px;
}

.hero-stats{
    grid-template-columns:1fr;
}

.stat-box{
    width:100%;
}

   .video-card video{
        height:350px;
    }

    .play-btn{
        width:70px;
        height:70px;
        font-size:24px;
    }

.card-1,
.card-2{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    margin-top:15px;
}

}


/* ===================================
   PARTNERS SECTION
=================================== */

.partners-section{
    padding:30px 0;
    background:#fff;
    overflow:hidden;
}

.partners-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    color:#2e7d32;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.partners-header h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.partners-header p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* ==================
   LOGO MARQUEE
================== */

.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.logo-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:scrollLogo 22s linear infinite;
    will-change:transform;
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

.logo-item{
    width:220px;
    height:120px;
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    margin:0 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:.3s;
}

.logo-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.logo-item img{
    max-width:140px;
    max-height:70px;
    object-fit:contain;
    filter:none;
    opacity:1;
    transition:.3s;
}

/* .logo-item:hover img{
    filter:none;
    opacity:1;
} */

@keyframes scrollLogo{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}@media(max-width:768px){

.partners-section{
    padding:20px 0;
}

.partners-header h2{
    font-size:30px;
}

.partners-header p{
    font-size:15px;
}

.logo-item{
    width:160px;
    height:90px;
    margin:0 10px;
}

.logo-item img{
    max-width:90px;
}

.logo-track{
    animation-duration:20s;
}

}



/* ===================================
   ABOUT HOME
=================================== */

.about-home{
    padding:30px 0;
    background:#f8fbf8;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:80px;
}

.about-image{
    flex:1;
    position:relative;
}

.about-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
}

.about-badge{
    position:absolute;
    right:-20px;
    bottom:40px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.about-badge strong{
    display:block;
    font-size:36px;
    color:#2e7d32;
}

.about-badge span{
    color:#666;
    font-size:14px;
}

.about-content{
    flex:1;
}

.about-content h2{
    font-size:42px;
    line-height:1.2;
    color:#111;
    margin-bottom:25px;
}

.about-content p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    margin-top:40px;
}

.feature-item{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}

.feature-icon{
    width:60px;
    height:60px;
    background:#e8f5e9;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.feature-item h4{
    margin-bottom:6px;
    color:#111;
}

.feature-item p{
    margin:0;
    font-size:15px;
}

.about-btn{
    display:inline-block;
    margin-top:20px;
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    transform:translateY(-3px);
}
@media(max-width:991px){

.about-wrapper{
    flex-direction:column;
}

.about-content h2{
    font-size:38px;
}

.about-image img{
    height:500px;
}

}

@media(max-width:576px){

.about-home{
    padding:20px 0;
}

.about-content h2{
    font-size:30px;
}

.about-content p{
    font-size:15px;
}

.about-image img{
    height:350px;
}

.about-badge{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:15px;
}

.feature-item{
    gap:15px;
}

.feature-icon{
    width:50px;
    height:50px;
    font-size:22px;
}

}

/* ===================================
   IMPACT SOLUTIONS
=================================== */

.impact-solutions{
    padding:30px 0;
    background:#fafafa;
}

.impact-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.impact-header h2{
    font-size:42px;
     line-height:1.2;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.impact-header p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.impact-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.impact-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:45px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.45s ease;
}

.impact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#2e7d32;
    transform:scaleX(0);
    transition:.45s;
}

.impact-card:hover::before{
    transform:scaleX(1);
}

.impact-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.impact-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#e8f5e9;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    transition:.4s;
}

.impact-card:hover .impact-icon{
    transform:rotate(12deg) scale(1.15);
}

.impact-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#111;
}

.impact-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}
.impact-solutions{
    padding:20px 0;
    background:#fafafa;
}

.impact-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.impact-header h2{
    font-size:52px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.impact-header p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.impact-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:24px;
    padding:45px;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.impact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#2e7d32;
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.impact-card:hover::before{
    transform:scaleX(1);
}

.impact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.impact-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:#f1f8f1;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2e7d32;
    margin-bottom:25px;
    transition:.4s;
}

.impact-icon svg{
    width:42px;
    height:42px;
}

.impact-card:hover .impact-icon{
    transform:rotate(8deg) scale(1.08);
    background:#2e7d32;
    color:#fff;
}

.impact-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#111;
}

.impact-card p{
    color:#666;
    line-height:1.8;
}
/* Tablet */

@media(max-width:991px){

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .impact-header h2{
        font-size:40px;
    }

}

/* Mobile */

@media(max-width:767px){

    .impact-grid{
        grid-template-columns:1fr;
    }

    .impact-card{
        padding:30px;
    }

    .impact-header h2{
        font-size:30px;
    }

    .impact-card h3{
        font-size:22px;
    }

}
.impact-cta{
    text-align:center;
    margin-top:60px;
}

.impact-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 40px;
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    border-radius:14px;
    transition:.35s ease;
}

.impact-cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(46,125,50,.25);
}
/* ===================================
   IDF DEMO SECTION
=================================== */

.idf-demo-section{
    padding:30px 0;
    background:#ffffff;
    overflow:hidden;
}

.idf-demo-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.idf-demo-content h2{
    font-size:42px;
    line-height:1.2;
    margin:20px 0;
    font-weight:800;
    color:#111;
}

.idf-demo-content p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.demo-btn{
    display:inline-block;
    margin-top:15px;
    padding:16px 32px;
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.demo-btn:hover{
    transform:translateY(-4px);
}

.video-box{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
}

.video-box video{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.video-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:110px;
    height:110px;
    border:none;
    border-radius:50%;
    background:#2e7d32;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 0 rgba(46,125,50,.5);
    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(46,125,50,.5);
    }

    70%{
        box-shadow:0 0 0 25px rgba(46,125,50,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(46,125,50,0);
    }

}

/* Reveal Animation */

.reveal-left{
    opacity:0;
    transform:translateX(-80px);
    transition:1s;
}

.reveal-right{
    opacity:0;
    transform:translateX(80px);
    transition:1s;
}

.reveal-active{
    opacity:1;
    transform:translateX(0);
}
@media(max-width:991px){

    .idf-demo-wrapper{
        grid-template-columns:1fr 1fr;
        gap:35px;
    }

    .idf-demo-content h2{
        font-size:36px;
    }

    .idf-demo-content p{
        font-size:16px;
    }

    .video-box video{
        height:320px;
    }

}
@media(max-width:767px){

    .idf-demo-section{
        padding:20px 0;
    }

    .idf-demo-wrapper{
        display:flex;
        flex-direction:column;
    }

    .idf-demo-content{
        order:1;
    }

    .idf-demo-video{
        order:2;
        width:100%;
        margin:25px 0;
    }

    .idf-demo-content h2{
        font-size:34px;
    }

    .video-box video{
        height:240px;
    }

    .video-play-btn{
        width:80px;
        height:80px;
    }

}
.sector-showcase{
    padding:30px 0;
    background:#fff;
}

.showcase-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.showcase-header h2{
    font-size:42px;
     line-height:1.2;
    font-weight:800;
    margin-bottom:20px;
}

.showcase-header p{
    color:#666;
    line-height:1.8;
}

.sector-tabs{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:70px;
}

.sector-tab{
    width:170px;
    text-align:center;
    cursor:pointer;
    padding:20px;
    border-radius:20px;
    transition:.35s;
}

.sector-tab svg{
    width:55px;
    height:55px;
    color:#2e7d32;
    margin-bottom:15px;
}

.sector-tab:hover{
    background:#f5f9f5;
}

.sector-tab.active{
    background:#2e7d32;
    color:#fff;
}

.sector-tab.active svg{
    color:#fff;
}

.sector-content{
    display:none;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    animation:fadeUp .5s ease;
}

.sector-content.active{
    display:grid;
}

.sector-left h3{
    font-size:42px;
    margin-bottom:20px;
}

.sector-left p{
    color:#666;
    line-height:1.9;
}

.sector-left ul{
    margin:30px 0;
    padding-left:20px;
}

.sector-left li{
    margin-bottom:12px;
}

.sector-right img{
    width:100%;
    border-radius:28px;
    height:500px;
    object-fit:cover;
}

.sector-btn{
    display:inline-block;
    padding:15px 30px;
    background:#2e7d32;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media(max-width:991px){

    .sector-content{
        grid-template-columns:1fr 1fr;
        gap:30px;
    }

    .sector-left h3{
        font-size:32px;
    }

}

@media(max-width:767px){

    .sector-tabs{
        justify-content:flex-start;
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:10px;
    }

    .sector-tab{
        min-width:170px;
        flex-shrink:0;
    }

    .sector-content{
        grid-template-columns:1fr;
    }

    .sector-right{
        order:1;
    }

    .sector-left{
        order:2;
    }

    .sector-left h3{
        font-size:28px;
    }

    .sector-right img{
        height:280px;
    }

}
/* ===================================
   TESTIMONIALS
=================================== */

.impact-testimonials{
    padding:30px 0;
    background:#f8f8f8;
}

.testimonial-slider{
    position:relative;
    max-width:1100px;
    margin:auto;
    min-height:260px;
}

.testimonial-item{
    position:absolute;
    width:100%;
    text-align:center;
    opacity:0;
    visibility:hidden;
    transition:.6s ease;
}

.testimonial-item.active{
    opacity:1;
    visibility:visible;
}

.testimonial-logo{
    height:90px;
    width:auto;
    object-fit:cover;
    margin-bottom:40px;
}

.testimonial-item p{
    max-width:1000px;
    margin:auto;
    font-size:34px;
    line-height:1.5;
    color:#222;
    font-weight:400;
}

.testimonial-dots{
    margin-top:60px;
    display:flex;
    justify-content:center;
    gap:12px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#cfcfcf;
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:#2e7d32;
}
@media(max-width:991px){

    .testimonial-item p{
        font-size:24px;
    }

}

@media(max-width:767px){

    .impact-testimonials{
        padding:20px 0;
    }

    .testimonial-logo{
        height:60px;
    }

    .testimonial-item p{
        font-size:18px;
        line-height:1.8;
    }

}
/* ===================================
   SUCCESS STORIES
=================================== */

.success-stories-section{
    padding:30px 0;
    background:#fff;
}

.success-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.success-header h2{
      font-size:42px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:20px;
}

.success-header p{
    color:#666;
    line-height:1.8;
     font-size:16px;
}

.stories-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.story-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:30px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.story-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#2e7d32;
    transform:scaleX(0);
    transition:.35s;
}

.story-card:hover::before{
    transform:scaleX(1);
}

.story-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.story-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.story-top img{
    height:50px;
    object-fit:cover;
}

.story-badge{
    background:#eef8ef;
    color:#2e7d32;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.story-card h3{
    font-size:24px;
    line-height:1.4;
    margin-bottom:15px;
}

.story-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.story-link{
    color:#2e7d32;
    text-decoration:none;
    font-weight:700;
}

.success-btn-wrap{
    text-align:center;
    margin-top:60px;
}

.success-btn{
    display:inline-block;
    padding:18px 40px;
    background:#2e7d32;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.success-btn:hover{
    transform:translateY(-4px);
}
@media(max-width:991px){

    .stories-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .success-header h2{
        font-size:38px;
    }

}

@media(max-width:767px){

    .stories-grid{
        grid-template-columns:1fr;
    }

    .success-header h2{
        font-size:30px;
    }

    .story-card{
        padding:25px;
    }

}

/* ===================================
   FLAGSHIP INITIATIVES
=================================== */

.initiatives-section{
    padding:120px 0;
    background:#fafafa;
}

.initiatives-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.initiatives-header h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;
}

.initiatives-header p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.initiatives-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.initiative-card{
    transition:.4s;
}

.initiative-card:hover{
    transform:translateY(-10px);
}

.initiative-image{
    overflow:hidden;
    border-radius:24px;
    margin-bottom:25px;
}

.initiative-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.initiative-card:hover img{
    transform:scale(1.08);
}

.initiative-card h3{
    font-size:34px;
    margin-bottom:15px;
    line-height:1.3;
}

.initiative-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.initiative-btn{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.initiative-btn:hover{
    transform:translateY(-3px);
}

/* ===================================
   BLOG SECTION
=================================== */

.blog-section{
    padding:30px 0;
    background:#fafafa;
}

.blog-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.blog-header h2{
     font-size:42px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:20px;
}

.blog-header p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

.blog-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#2e7d32;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.blog-content{
    padding:25px;
}

.blog-content h3{
    font-size:24px;
    line-height:1.4;
    margin-bottom:15px;
}

.blog-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.blog-link{
    color:#2e7d32;
    text-decoration:none;
    font-weight:700;
}

.blog-btn-wrap{
    text-align:center;
    margin-top:60px;
}

.blog-btn{
    display:inline-block;
    padding:18px 40px;
    background:#2e7d32;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.blog-btn:hover{
    transform:translateY(-4px);
}
@media(max-width:991px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .blog-header h2{
        font-size:40px;
    }

}

@media(max-width:767px){

    .blog-section{
        padding:20px 0;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-header h2{
        font-size:30px;
    }

    .blog-content h3{
        font-size:22px;
    }

}

@media(max-width:767px){

    .hero-content h1{
        font-size:34px;
    }

    .partners-header h2,
    .about-content h2,
    .impact-header h2,
    .idf-demo-content h2,
    .showcase-header h2,
    .success-header h2,
    .blog-header h2{
        font-size:28px;
    }

}