/* ==========================================================================
   VEERU TECH - WHY CHOOSE US & COUNTERS STYLING (100% PERFECT ALIGNMENT)
   ========================================================================== */

/* Elementor Widget Wrapper Overrides */
.elementor-widget-veeru_tech_why_choose_us,
.elementor-widget-veeru_tech_why_choose_us .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

.veeru-why-choose-us-section {
    width: 100% !important;
    padding: 25px 0;
    box-sizing: border-box;
    background-color: transparent;
}

/* Outer Container Matching Featured Solutions Container 1:1 */
.why-choose-us-container {
    width: 100% !important;
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Rounded Box Wrap Filling 100% Inner Width */
.why-choose-box-wrap {
    width: 100% !important;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    border-radius: 16px;
    overflow: hidden !important; /* Forces right dark column to be 100% flush to rounded corner */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    box-sizing: border-box;
}

/* Left Column */
.why-choose-left-col {
    padding: 40px;
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 25px 0;
    line-height: 1.25;
}

.bullets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet-check-icon {
    font-weight: 900;
    color: #22c55e;
    font-size: 16px;
}

.bullet-text {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
}

/* Right Column (Flush Dark Blue Counter Box) */
.why-choose-right-col {
    padding: 40px 30px;
    background-color: #062040;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.stats-counters-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
    align-items: center;
}

.stat-counter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-custom-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: background-color 0.3s ease;
}

.stat-number-wrap {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.3;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .why-choose-box-wrap {
        grid-template-columns: 1fr !important;
    }

    .stats-counters-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .bullets-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-counters-grid {
        grid-template-columns: 1fr !important;
    }
}