﻿
.stats-section {
   /* background: #352e15;
    color: #fff;*/
    padding: 80px 20px;
    text-align: center;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.section-header h3 {
    font-size: 20px;
    margin-bottom: 50px;
}

.gold {
    color: #d4af37;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}


    .stat-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 45px rgb(253 253 253 / 30%);
    }

.stats-counter {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
    color: #919191;    
    margin: 5px 0;
}

.stat-box span {
    font-size: 14px;
    color: #727070;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #d4af37;
    transition: 0.3s; 
}

/* Hover Effect */
.stat-box:hover .icon {
    background: rgba(212, 175, 55, 0.5);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* حركة خفيفة */
.stat-box:hover {
    transform: translateY(-8px);
}