/* Industries Page Specific Styles */

/* Hero Section */
.industries-hero {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.industries-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.industries-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.industries-hero p {
    font-size: 1.25rem;
    max-width: 550px;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: block;
}

.breadcrumbs a {
    color: var(--primary-blue);
    font-weight: 500;
}

.industries-hero-illustration {
    position: relative;
    height: 400px;
    display: flex;
    /* Center alignment if using background image or flexible items */
    align-items: center;
    justify-content: center;
}

.ind-icon-float {
    position: absolute;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    color: var(--secondary-blue);
    animation: floatInd 5s ease-in-out infinite;
    z-index: 2;
}

.ind-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    color: var(--primary-blue);
}

.ind-icon-2 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.5s;
    color: #10b981;
}

.ind-icon-3 {
    top: 20%;
    right: 10%;
    animation-delay: 2.5s;
    color: #f59e0b;
}

.ind-icon-4 {
    bottom: 10%;
    left: 20%;
    animation-delay: 1s;
    color: #6366f1;
}

.ind-icon-main {
    width: 140px;
    height: 140px;
    font-size: 4rem;
    z-index: 1;
    animation: none;
    background: linear-gradient(135deg, var(--white) 0%, #f0f9ff 100%);
}

@keyframes floatInd {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Industries Overview Grid */
.industry-card-overview {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-card-overview:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.ind-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-blue);
    font-size: 1.5rem;
    transition: 0.3s;
}

.industry-card-overview:hover .ind-card-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.industry-card-overview h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.industry-card-overview p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.ind-link {
    font-weight: 600;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.ind-link:hover {
    gap: 0.8rem;
}

/* Detailed Industry Sections */
.industry-detail-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.ind-detail-header {
    margin-bottom: 3rem;
}

.ind-detail-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-blue);
}

.ind-detail-desc {
    font-size: 1.1rem;
    max-width: 800px;
    color: var(--text-dark);
}

.ind-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.needs-list,
.solutions-list {
    list-style: none;
}

.needs-list li,
.solutions-list li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
}

.needs-list li::before {
    content: '\f071';
    /* Warning/Need icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f59e0b;
}

.solutions-list li::before {
    content: '\f00c';
    /* Check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
}

.ind-highlight-card {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-blue);
}

.ind-highlight-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ind-highlight-card a {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Process Section */
.ind-process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.ind-process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #cbd5e1;
    z-index: 0;
}

.ind-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--white);
    /* Match section bg */
    padding: 0 15px;
    flex: 1;
}

.process-bg-light .ind-process-step {
    background: var(--accent-gray);
}

.ind-step-marker {
    width: 50px;
    height: 50px;
    background: var(--secondary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    border: 4px solid var(--white);
    /* Visual gap for line */
}

.ind-process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ind-process-step p {
    font-size: 0.9rem;
}

.ind-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.ind-stat-item {
    text-align: center;
}

.ind-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .industries-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .industries-hero h1 {
        font-size: 2.5rem;
    }

    .industries-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .ind-solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ind-process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .ind-process-timeline::before {
        display: none;
    }

    .ind-process-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .ind-step-marker {
        margin: 0;
        flex-shrink: 0;
    }
}