/* Industries Page Specific Styles */

/* Industry card animation and styling */
.industry-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0);
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1), 0 8px 10px -6px rgba(59, 130, 246, 0.1);
}

.industry-icon-wrapper {
    transition: all 0.3s ease;
    background-color: rgba(219, 234, 254, 0.8);
}

.industry-card:hover .industry-icon-wrapper {
    transform: scale(1.1);
    background-color: rgba(191, 219, 254, 1);
}

/* Feature list animations */
.feature-item {
    transition: all 0.25s ease;
}

.industry-card:hover .feature-item {
    transform: translateX(5px);
}

/* Staggered animations for items */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stagger-animation.show > *:nth-child(1) {
    transition-delay: 0ms;
}

.stagger-animation.show > *:nth-child(2) {
    transition-delay: 100ms;
}

.stagger-animation.show > *:nth-child(3) {
    transition-delay: 200ms;
}

.stagger-animation.show > *:nth-child(4) {
    transition-delay: 300ms;
}

.stagger-animation.show > * {
    opacity: 1;
    transform: translateY(0);
}

/* Hero section styling */
.industry-hero-bg {
    position: relative;
}

.industry-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    z-index: -1;
}

/* Industry capabilities section */
.capability-card {
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.capability-icon {
    transition: all 0.3s ease;
}

.capability-card:hover .capability-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Pill badge styling */
.industry-badge {
    transition: all 0.3s ease;
}

.industry-card:hover .industry-badge {
    background-color: #2563eb;
    color: white;
}

/* Responsive image handling */
.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.industry-card:hover .industry-image {
    transform: scale(1.05);
}

/* Benefits list styling */
.benefit-list li {
    transition: all 0.3s ease;
}

.benefit-list li:hover {
    color: #2563eb;
}
