/* 
   Jagam Technologies - Industries Page Styles
*/

/* Grid layout for 10 industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-column: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.industry-card:nth-child(even):hover {
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
}

.industry-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.industry-card:nth-child(even):hover .industry-icon {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.industry-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.industry-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.industry-highlight {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: auto;
}
.industry-card:nth-child(even) .industry-highlight {
    color: var(--primary);
}
