﻿/* ================= HERO ================= */

.initiatives-hero-banner {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
}

.bg-hero {
    position: relative;
    background: url('/images2/mandir_image.webp') center/cover no-repeat;
    padding: 70px 80px;
    min-height: 420px;
    display: flex;
    align-items: center;
}

/* OVERLAY */
.bg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.9) 30%,
        rgba(255,255,255,0.4) 55%,
        rgba(0,0,0,0.55) 100%
    );
    backdrop-filter: blur(3px);
}

/* INNER */
.initiatives-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT */
.initiatives-hero-left {
    max-width: 650px;
}

.tag-line {
    color: #2bb673;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.initiatives-hero-left h1 {
    font-size: 48px;
    font-weight: 700;
}

.initiatives-hero-left h1 span {
    color: #2bb673;
}

.hero-sub {
    font-size: 16px;
    margin: 20px 0 30px;
}

/* STATS */
.initiatives-stats-horizontal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255,255,255,0.9);
    padding: 15px 18px;
    border-radius: 14px;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-box i {
    color: #2bb673;
    margin-bottom: 6px;
}

.stat-box span {
    font-size: 12px;
    color: #666;
}

/* RIGHT CARD */
.premium-card {
    width: 300px;
    background: linear-gradient(135deg,#2bb673,#1fa463);
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* ================= GRID ================= */

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

/* CARD */
.initiative-card-v2 {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.initiative-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.card-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.card-icon-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #2bb673;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* BUTTON */
.view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    background: linear-gradient(135deg,#2bb673,#1fa463);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .bg-hero {
        padding: 40px 20px;
    }

    .initiatives-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .premium-card {
        margin-top: 25px;
    }

    .initiatives-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){

    .initiatives-grid {
        grid-template-columns: 1fr;
    }

    .initiatives-hero-left h1 {
        font-size: 32px;
    }
}