
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


.counter-container_smart {
    --primary-color: #007bff; 
    --secondary-color: #ffffff;
    --text-color: #333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    --hover-shadow: 0 15px 45px rgba(0, 123, 255, 0.4);

  
    display: flex;
    flex-wrap: wrap; 
    gap: 30px; 
    max-width: 1200px;
    width: 100%;
    
    
    margin: 40px auto;
    justify-content: center; 
    
   
    font-family: 'Poppins', sans-serif;
    
    background-color: transparent; 
}


.counter-container_smart * {
    box-sizing: border-box;
    
}



.counter-box_smart {
    background: var(--secondary-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 40px 20px;
    text-align: center;
    flex: 1;
    min-width: 250px; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: default;
}

.counter-box_smart:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}


.icon-svg_smart {
    display: block;
    margin: 0 auto 15px auto;
    width: 60px;
    height: 60px;
    transition: transform 0.3s;
}

.counter-box_smart:hover .icon-svg_smart {
    transform: scale(1.05);
}

.count_smart {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1;
}

.label_smart {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}


@media (max-width: 1024px) {
    .counter-container_smart { justify-content: center; }
    .counter-box_smart { flex-basis: calc(50% - 30px); }
}
@media (max-width: 600px) {
    .counter-box_smart { flex-basis: 100%; }
}
