/* --- Interactive Cards --- */
.interactive-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.interactive-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.interactive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.interactive-card i {
    font-size: 40px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.interactive-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.interactive-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.interactive-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* --- Stats Counter Section --- */
.stats-section {
    padding: 60px 20px;
    background: #f9f9f9;
    margin-top: 50px;
    border-radius: 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Theme Colors for cards (can be overridden) */
.card-theme-orange i {
    color: #FF6600;
}

.card-theme-orange h3 {
    color: #111;
}

.card-theme-orange:hover {
    border-bottom: 4px solid #FF6600;
}

.card-theme-pink i {
    color: #a94899e1;
}

.card-theme-pink h3 {
    color: #111;
}

.card-theme-pink:hover {
    border-bottom: 4px solid #b42b86;
}

.card-theme-blue i {
    color: #a94899e1;
}

.card-theme-blue h3 {
    color: #111;
}

.card-theme-blue:hover {
    border-bottom: 4px solid #a94899e1;
}

.card-theme-yellow i {
    color: #FFD700;
}

.card-theme-yellow h3 {
    color: #111;
}

.card-theme-yellow:hover {
    border-bottom: 4px solid #FFD700;
}

/* Text Colors for Stats */
.text-orange {
    color: #FF6600;
}

.text-pink {
    color:#a94899e1;
}

.text-blue {
    color: #a94899e1;
}

.text-yellow {
    color: #FFD700;
}