/* =====================================================
   GRAM VIKAS SAMITI
===================================================== */

#gram-vikas-samiti {
    font-family: "Poppins", sans-serif;
}


/* =====================================================
   FOCUS CARDS
===================================================== */

.samiti-focus-card {
    position: relative;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 20px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.samiti-focus-card:hover {
    transform: translateY(-5px);

    border-color: rgba(23, 132, 63, 0.25);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.10);
}


/* Icon */

.samiti-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 15px;

    font-size: 22px;
}


.samiti-focus-card h3 {
    margin: 0;

    color: #0f172a;

    font-size: 17px;

    font-weight: 800;
}


.samiti-focus-card p {
    margin-top: 7px;

    color: #64748b;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   OBJECTIVE CARDS
===================================================== */

.samiti-objective-card {
    position: relative;

    padding: 24px;

    min-height: 210px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 7px 22px rgba(15, 23, 42, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.samiti-objective-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -45px;
    bottom: -45px;

    border-radius: 50%;

    background: rgba(22, 163, 74, 0.06);

    transition: transform 0.4s ease;
}


.samiti-objective-card:hover {
    transform: translateY(-5px);

    border-color: rgba(22, 163, 74, 0.25);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.09);
}


.samiti-objective-card:hover::after {
    transform: scale(1.8);
}


/* Number */

.samiti-objective-number {
    position: absolute;

    top: 18px;
    right: 20px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.12em;

    color: #cbd5e1;
}


/* Objective Icon */

.samiti-objective-icon {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 15px;

    background: #f0fdf4;

    font-size: 22px;
}


.samiti-objective-card h3 {
    margin: 0;

    color: #0f172a;

    font-size: 17px;

    font-weight: 800;
}


.samiti-objective-card p {
    margin-top: 8px;

    max-width: 320px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.samiti-bottom {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 25px 28px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #0b4335,
            #126b32
        );

    overflow: hidden;
}


.samiti-bottom::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -90px;
    top: -100px;

    border-radius: 50%;

    background: rgba(255,255,255,0.07);
}


.samiti-bottom span {
    position: relative;
    z-index: 1;

    display: block;

    color: #a7f3d0;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.samiti-bottom h3 {
    position: relative;
    z-index: 1;

    margin-top: 6px;

    color: #ffffff;

    font-size: 20px;

    font-weight: 800;
}


.samiti-cta-button {
    position: relative;
    z-index: 2;

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 12px;

    background: #ffffff;

    color: #0b4335;

    font-size: 13px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.samiti-cta-button:hover {
    transform: translateY(-2px);

    background: #ecfdf5;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 767px) {

    .samiti-focus-card {
        padding: 19px;
    }

    .samiti-objective-card {
        min-height: 190px;

        padding: 20px;
    }

    .samiti-bottom {
        align-items: flex-start;

        flex-direction: column;

        padding: 22px;
    }

    .samiti-bottom h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    .samiti-cta-button {
        width: 100%;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .samiti-focus-card {
        border-radius: 16px;
    }

    .samiti-objective-card {
        border-radius: 16px;
    }

    .samiti-icon,
    .samiti-objective-icon {
        width: 44px;
        height: 44px;

        border-radius: 13px;

        font-size: 19px;
    }

    .samiti-focus-card h3,
    .samiti-objective-card h3 {
        font-size: 15px;
    }

    .samiti-focus-card p,
    .samiti-objective-card p {
        font-size: 11.5px;
    }

}