/* Counter Block Styles */
.counter-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px 0;
    padding:    0;
  
}

.counter-block__inner {
    background-color: var(--bg-color, #1e3a8a);
    color: var(--text-color, #ffffff);
    border-radius: 0;
    padding: 30px 10px;
    text-align: center;
	width:100%;
    
   height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
      aspect-ratio: 1/1;
    clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 35px, 100% 100%, 35px 100%, 0 calc(100% - 35px));
}
@media only screen and (max-width:1024px) {
    .counter-block__inner {
        max-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
}


.counter-block__inner:hover {
    transform: translateY(-5px);
   
}

.counter-block__icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-block__icon img {
    width: auto;
    height: 72px;   
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.counter-block__inner:hover .counter-block__icon img {
    transform: scale(1.1);
}

.counter-block__number {
    margin-bottom: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    letter-spacing: -0.02em;
    align-items: end;
    justify-content: center;
}

.counter-number {
    display: inline-block;
    transition: all 0.3s ease;
}

.counter-suffix {
    font-size: 36px;
    font-weight: 700;
    opacity: 0.9;
    margin-left: 2px;
     white-space: nowrap;
    word-wrap: normal;
    word-break: normal;
    overflow-wrap: normal;
   
}

.counter-block__title {
    margin: 0 auto;
    max-width: 90%;
}
.counter-block__title h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
	text-align:center;
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}





/* Align variants */
.counter-block.alignleft {
    justify-content: flex-start;
}

.counter-block.alignright {
    justify-content: flex-end;
}

.counter-block.aligncenter {
    justify-content: center;
}

.counter-block.alignwide,
.counter-block.alignfull {
    justify-content: center;
}

/* Animation for counting */
.counter-number.counting {
    animation: pulse 0.1s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Loading state */
.counter-block__inner.loading .counter-number {
    opacity: 0.7;
}

.counter-block__inner.loading .counter-block__icon img {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}