/* =====================================================
   छत्रपती शिवाजी महाराज चषक - Quick Stats Section
   ===================================================== */

/* Quick Stats Section - Matching Upcoming Section Style */
.quick-stats {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 1rem; /* Extra space for hover effect */
}

/* Stat Card - Same Style as Timeline Items */
.stat-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Decorative corner accent */
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 0 15px 0 100%;
}

/* Hover effect - minimal and elegant */
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
    overflow: visible;
}

/* Stat Icon - Same as Timeline Icons */
.stat-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3);
    transition: transform 0.3s ease;
    margin: 0 auto 1.5rem;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

/* Stat Number */
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

/* Stat Label */
.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Hide stat-glow (not needed with new design) */
.stat-glow {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}
