body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-image: url('https://www.myscheme.gov.in/_next/image?url=https%3A%2F%2Fcdn.myscheme.in%2Fimages%2Fslideshow%2Findependence-day.webp&w=1920&q=75'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: rgba(255, 255, 255, 0.485); /* Transparent overlay */
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 0 1rem;
}

.action {
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7); /* Transparent white base */
    background: linear-gradient(145deg, rgba(255, 153, 51, 0.7), rgba(255, 255, 255, 0.5), rgba(19, 136, 8, 0.7)); /* Indian tricolor gradient */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    border: 2px solid #d4af37; /* Gold border for a royal touch */
    transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
    position: relative;
    overflow: hidden;
}

.action::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.3), rgba(255, 255, 255, 0));
    transform: rotate(25deg);
    z-index: 1;
    transition: opacity 0.4s;
    opacity: 0;
}

.action:hover::before {
    opacity: 1;
}

.action:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.6);
    background: linear-gradient(145deg, rgba(255, 153, 51, 0.8), rgba(255, 255, 255, 0.6), rgba(19, 136, 8, 0.8));
}

.action:active {
    transform: scale(0.97);
}

.action h2 {
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: #b8860b; /* Rich golden color */
    text-transform: uppercase;
    border-bottom: 3px solid #e0e0e0;
    padding-bottom: 0.5rem;
    letter-spacing: 1px;
}

.action p, .action ul li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* SDG Section */
.sdg {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 223, 186, 0.2); /* Light gold background */
    border-left: 4px solid #b8860b; /* Gold accent */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sdg img {
    height: 60px;
    margin-right: 1rem;
}

.sdg span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #b8860b;
    margin-right: 0.5rem;
}

.sdg p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

/* Footer styling */
footer {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem 0;
    text-align: center;
}
