/* Industrial Automation Section */
.industrial-automation-section {
    padding: 80px 0;
    font-family: 'DM Sans', sans-serif;
    background-color: #ffffff;
}

.ind-auto-badge {
    display: inline-flex;
    align-items: center;
    background-color: #ebf3ff;
    color: #007bff;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.ind-auto-badge i {
    margin-right: 8px;
}

.ind-auto-title {
    font-size: 40px;
    font-weight: 800;
    color: #172059;
    margin-bottom: 30px;
}

.ind-info-block {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
}

.ind-info-icon {
    width: 55px;
    height: 55px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.ind-info-block:hover .ind-info-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.ind-info-heading {
    font-size: 22px;
    font-weight: 700;
    color: #172059;
    margin-bottom: 10px;
}

.ind-info-text {
    color: #5a6270;
    font-size: 15px;
    line-height: 1.8;
}

.ind-info-text.mb-15 {
    margin-bottom: 15px;
}

.ind-image-wrapper {
    background-color: #f7f9fc;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eef2f6;
    transition: all 0.4s ease;
}

.ind-image-wrapper:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ind-features-wrapper {
    background-color: #f9fbfd;
    border: 1px solid #eaedf3;
    border-radius: 12px;
    padding: 30px;
}

.ind-feature-item {
    display: flex;
    align-items: flex-start;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.ind-feature-item:hover {
    transform: translateY(-5px);
}

.ind-feature-icon {
    width: 45px;
    height: 45px;
    background-color: #172059;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.ind-feature-item:hover .ind-feature-icon {
    background-color: #007bff;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.ind-feature-icon i {
    font-size: 20px;
}

.ind-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #172059;
    margin-bottom: 8px;
}

.ind-feature-text {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

.feature-border-right {
    border-right: 1px solid #eaedf3;
}

/* Animations */
@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animated-gear {
    animation: spinSlow 8s linear infinite;
    display: inline-block;
}
.animated-icon-glow {
    animation: pulseGlow 2s infinite;
    border-radius: 50%;
}
.animated-float {
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 991px) {
    .feature-border-right {
        border-right: none;
        border-bottom: 1px solid #eaedf3;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .feature-last-item {
        border-bottom: none !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
}
