/* Container styling with prefix */
.bs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

/* Card styling */
.bs-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    overflow: hidden; /* Number-bg baher janar nahi */
}

.bs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 100, 0, 0.12);
    border-color: #006400;
}

/* Green Icon Box */
.bs-icon-box {
    background-color: #006400; 
    color: #ffffff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 6px;
    font-size: 22px;
    position: relative;
    z-index: 3;
}

/* Large background number */
.bs-number-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 110px;
    font-weight: 800;
    color: rgba(255, 235, 59, 0.25); /* Faint gold effect */
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Text styles */
.bs-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.bs-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bs-container {
        flex-direction: column;
        align-items: center;
    }
    .bs-card {
        width: 100%;
        max-width: 350px;
    }
}