/* Container Background & Layout */
div.raj-counter-wrapper {
    /* Gradient matching your design with 90% opacity (0.9) */
    background: linear-gradient(to right, rgba(207, 49, 49, 0.9), rgba(181, 34, 34, 0.9)) !important;
    padding: 25px 15px !important;
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden !important;
    /* 30px rounded corners */
    border-radius: 30px !important; 
}

.raj-counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Counter Block */
.raj-counter-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 10px;
    flex: 1;
    min-width: 220px;
}

/* Icon Styling */
.rc-icon i {
    font-size: 42px;
    color: #ffffff;
}

/* Text & Number Styling */
.rc-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rc-number-wrapper {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.rc-text {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .raj-counter-item {
        min-width: 40%;
    }
}

/* Mobile View: 2 Columns & No Rounded Corners */
@media (max-width: 576px) {
    /* Remove rounded corners on mobile */
    div.raj-counter-wrapper {
        border-radius: 0 !important;
    }

    .raj-counter-item {
        /* Force 2 columns (50% width minus a small margin to fit) */
        min-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
        justify-content: flex-start;
        margin: 10px;
        gap: 12px;
    }
    
    /* Scale sizes down slightly so two columns fit perfectly on small screens */
    .rc-icon i {
        font-size: 28px;
    }
    .rc-number-wrapper {
        font-size: 24px;
    }
    .rc-text {
        font-size: 13px;
    }
}