/* Technology Stack Section Styling */
.tech-stack-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(37, 99, 235, 0.04) 100%);
    position: relative;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.tech-icon {
    font-size: 3.5rem;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.25));
    display: inline-block;
    transition: all 0.3s ease;
}

.tech-stack-section h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.tech-stack-section .text-muted.small {
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Add subtle hover effect to tech items */
.tech-stack-section .col-md-3 {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    border-radius: 12px;
}

.tech-stack-section .col-md-3:hover {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-6px);
}

.tech-stack-section .col-md-3:hover .tech-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 16px rgba(139, 92, 246, 0.35));
}

/* Automation examples cards with accent colors */
.examples-section .card {
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.examples-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.examples-section .card:hover::before {
    transform: scaleX(1);
}

.examples-section .card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    transform: translateY(-6px);
}

.examples-section .card-title {
    color: var(--text-primary);
    font-weight: 600;
}

/* Add gradient accent to specific example cards */
.examples-section .card:nth-child(3n+1):hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.examples-section .card:nth-child(3n+2):hover {
    border-color: var(--tertiary);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.examples-section .card:nth-child(3n+3):hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
}
