.placement-stats-section {
    padding: 80px 0;
    position: relative;
}

.glass-stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 58, 138, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.glass-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.glass-stat-card:hover::before {
    transform: scaleX(1);
}

.glass-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.stat-icon-orb {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.glass-stat-card:hover .stat-icon-orb {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.5rem 0;
    line-height: 1.2;
}

.stat-label {
    font-size: 1.0rem;
    color: #555;
    font-weight: 600;
    line-height: 1.4;
}

.stat-label small {
    font-weight: 400;
    font-size: 0.8rem;
    color: #777;
    display: block;
    margin-top: 4px;
    text-transform: none;
}

.glass-stat-card.success .stat-icon-orb {
    background: var(--accent);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

.glass-stat-card.success:hover .stat-icon-orb {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.placement-stats-section .row > div {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .placement-stats-section .row > div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .placement-stats-section .row > div {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 1400px) {
    .placement-stats-section .row > div {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 480px) {
    .glass-stat-card {
        padding: 2rem 1.8rem;
    }
    .stat-value {
        font-size: .80rem;
    }


@media (max-width: 767px) {
    .stat-value {
        font-size: .80rem !important;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .stat-value {
        font-size: .80rem !important;
    }
}



}