/* ========================================================
   ACHIEVEMENTS & COUNTER SECTION STYLING
   ======================================================== */

.py-100 {
    padding: 90px 0;
}

.bg-black {
    background-color: #0B0B0B !important;
}

/* Ambient Red Glow */
.counter-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(circle, rgba(177, 18, 38, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Badge Styling */
.counter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.counter-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #B11226;
    border-radius: 50%;
    box-shadow: 0 0 8px #B11226;
}

.counter-badge .badge-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
}

/* Section Title 35px */
.section-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.3;
}

/* Counter Glass Card */
.counter-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 24px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.counter-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #B11226;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(177, 18, 38, 0.25);
}

.counter-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #B11226 0%, #8E0E1C 100%);
    color: #FFFFFF;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 15px rgba(177, 18, 38, 0.3);
}

.counter-number {
    font-size: 48px; /* H2 Size Scale */
    font-weight: 700;
    color: #FFFFFF;
}

.counter-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.counter-desc {
    font-size: 13px;
    color: #AAAAAA;
    line-height: 1.6;
    margin-bottom: 0;
}