body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at 50% 50%, #0473bdf8, #001627);
}

.welfare_main_section{
    position: relative;
}
.header {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 30px;
    width: 100%;
}
h1 {
    color: #f5f5f5;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(12, 12, 12, 0.137);
    z-index: 2;
    position: relative;
}
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    animation: twinkle 2s infinite alternate;
}
@keyframes twinkle {
    from { opacity: 0.2; }
    to { opacity: 1; }
}
.orbit {
    position: absolute;
    top: 52%;
    left: 50%;
    width: 380px;
    height: 380px;
    background: linear-gradient(#74dbe9b0,#3569a31a,#b7df04bd);
    box-shadow: 0 0 70px -10px #65c1f7ec;
    /* border: 1px solid rgba(168, 214, 231, 0.575); */
    border: 1px solid #67992691;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.satellite {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(#74dbe9b0,#3569a31a,#b7df04bd);
    box-shadow: 0 0 25px -5px #c2e8ffb7;
    border: 1px solid rgba(168, 214, 231, 0.575);
    border-radius: 50%;
    top: 35%;
    left: 35%;
    right: 0%;
    animation: orbit 10s linear infinite;
}
@keyframes orbit {
    from { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
    margin-bottom: 20px;
}

.card {
    position: relative;
    background-color: #ffffff;
    width: 250px;
    height: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 15px;
    cursor: pointer;
    /* box-shadow: 0 0 2rem -0.3rem #195fa1be; */
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.title {
    color: rgba(236, 236, 236, 0.979);
    font-size: 20px;
    margin: 10px 0;
    text-align: center;
}


.footer {
    color: #3583a180;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 190px;
    margin-bottom: 50px;
}

@media (max-width:780px) {
    body {
        height: auto;
        overflow: auto;
    }
    .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15rem;
        margin-top: auto;
    }
    
}
