/* ========================================
   EMPOWERING BUSINESSES SECTION - COMPLETE REBUILD
   Clean, simple, and working 3-column layout
   ======================================== */

/* Section Container */
.empowering-businesses-section-new {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.empowering-businesses-section-new .container {
    max-width: 1400px;
}

/* Section Title */
.section-title-new {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 3rem;
}

/* Bootstrap Row - using g-4 for gap */
.empowering-businesses-section-new .row {
    margin-left: 0;
    margin-right: 0;
}

/* Stat Card - White card with shadow */
.stat-card-new {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.stat-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.1), 0 6px 12px -2px rgba(0, 0, 0, 0.05);
    border-color: #93c5fd;
}

/* Icon Container */
.stat-icon-new {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.stat-icon-new svg {
    width: 3rem;
    height: 3rem;
    color: #1E5CAA;
}

/* Stat Number */
.stat-number-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

/* Stat Label */
.stat-label-new {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .empowering-businesses-section-new {
        padding: 4rem 0;
    }
    
    .stat-card-new {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .empowering-businesses-section-new {
        padding: 3rem 0;
    }
    
    .stat-icon-new {
        width: 4.5rem;
        height: 4.5rem;
        margin-bottom: 1.25rem;
    }
    
    .stat-icon-new svg {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .stat-number-new {
        font-size: 2rem;
    }
    
    .stat-label-new {
        font-size: 0.9375rem;
    }
}

