
         .buddhist-section {
        max-width: 1200px;
        margin: auto;
        padding: 50px 20px;
    }

    .place {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 50px;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    .place:hover {
        transform: translateY(-5px);
    }

    .place img {
        width: 100%;
        max-width: 500px;
        border-radius: 10px;
        margin-right: 20px;
        height: 280px;
    }

    .place-text {
        flex: 1;
        min-width: 300px;
    }

    .place h2 {
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .place p {
        color: #555;
        line-height: 1.6;
    }

    /* Alternate layout for even sections */
    .place.even {
        flex-direction: row-reverse;
    }

    /* Responsive */
    @media(max-width: 768px) {
        .place {
            flex-direction: column;
            text-align: center;
        }

        .place img {
            margin: 0 0 20px 0;
        }
    }
.eg{
    font-size: 35px;
}/* Overall tab section */
#tab-1 {
    padding: 40px 20px 80px;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    font-family: 'Poppins', sans-serif;
}

/* Heading */
#tab-1 h2 {
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Cards wrapper */
.scheme-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Individual card */
.scheme-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gradient border glow */
.scheme-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* Hover effect */
.scheme-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.scheme-card:hover::before {
    opacity: 1;
}

/* Card title */
.scheme-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

/* Detail rows */
.scheme-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 15px;
}

.scheme-detail:last-child {
    border-bottom: none;
}

/* Label */
.scheme-detail span:first-child {
    color: #64748b;
    font-weight: 500;
}

/* Value */
.scheme-detail span:last-child {
    color: #0f766e;
    font-weight: 600;
    text-align: right;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    #tab-1 h2 {
        font-size: 30px;
    }

    .scheme-card {
        padding: 22px 20px;
    }
}

   