.akg-counter-box {
    border: 1px solid #F5F5F5;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    transition: transform 0.3s ease;
    backdrop-filter: blur(30px);
}

.akg-counter-box:hover {
    transform: translateY(-5px);
}

.akg-counter-icon img {
    width: 50px;
    height: auto;
    filter: brightness(0) invert(1); /* Agar icons black hon toh white karne ke liye */
}

.akg-number-wrapper {
    display: flex;
    align-items: baseline;
}

.akg-counter-number {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.akg-suffix {
    font-size: 30px;
    font-weight: 700;
    margin-left: 2px;
}

.akg-title {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}