﻿.tool-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 50px;
    border: 2px solid #3498db;
    min-height: 350px;
    width: 105%;
    margin: 3px;
    height: 100%;
}

    .tool-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        border-color: #1a2a6c;
    }

.tool-icon {
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1);
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

    .feature-badge.bg-info {
        background: #17a2b8;
    }

.tool-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,42,108,0.95), rgba(42,82,152,0.95));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
    padding: 2rem;
}

.tool-card:hover .tool-overlay {
    opacity: 1;
}

.overlay-content h5 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.overlay-content ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.stat-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.page-header.bg-gradient {
    background: linear-gradient(135deg, #1a2a6c 0%, #2a5298 50%, #1a2a6c 100%) !important;
}

@@media (max-width: 768px) {
    .tool-card {
        margin-bottom: 2rem;
    }

    .stat-badge {
        margin-bottom: 0.5rem;
    }
}
