/* --- Section Styling --- */
.programs-section {
    background-color: #ffffff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* --- Typography --- */

.max-w-3xl {
    max-width: 48rem;
}

/* --- Program Card --- */
.program-card {
    display: block;
    background-color: #ffffff;
    border-radius: 1rem; /* rounded-2xl */
    border: 1px solid #e8edeb;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
    transition: all 0.5s ease;
    height: 100%;
}

.program-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* hover:shadow-2xl */
    transform: translateY(-8px); /* hover:-translate-y-2 */
    border-color: #a8bdb4;
}

/* --- Image Container --- */
.card-img-wrapper {
    aspect-ratio: 1 / 1; /* aspect-square */
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.program-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover .img-overlay {
    opacity: 1;
}

/* --- Card Content --- */
.card-content {
    padding: 2rem; /* p-8 */
}

.card-title1 {
    color: #2d3f37;
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    font-family: var(--font-02);
}

.program-card:hover .card-title {
    color: #5c8272;
}

.card-desc1 {
    color: #4a6b5e;
    line-height: 1.75;
    margin-bottom: 0;
    font-family: var(--font-01);
}

.explore-link {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5c8272;
    font-weight: 600;
}

.explore-link i {
    transition: transform 0.3s ease;
    color: #5c8272!important;
}

.program-card:hover .explore-link i {
    transform: translateX(8px);
}

/* --- Support Banner --- */
.support-banner {
    border-radius: 1.5rem; /* rounded-3xl */
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fecdd3 0%, #bae6fd 50%, #e8edeb 100%);
}

.banner-heading {
    color: #2d3f37;
    font-size: 2rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.banner-desc {
    color: #3d574d;
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75;
    max-width: 42rem;
    margin-bottom: 2rem;
}

.btn-banner {
    background-color: #f43f5e;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem; /* text-lg */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.btn-banner:hover {
    background-color: #e11d48;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
    .programs-section {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem;
    }
    .support-banner {
        padding: 4rem;
    }
}