﻿body {
}

/* Enhanced Network Transformation Page Styles */
.network-objectives {
    background: #f4f8ff;
    border-left: 5px solid #2a4cff;
    padding: 24px 32px;
    border-radius: 10px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(42,76,255,0.07);
}
.network-objectives h3 {
    color: #2a4cff;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3em;
    font-weight: 600;
}
.network-objectives ul {
    list-style: disc inside;
    margin-bottom: 0;
    color: #1a2a3a;
    font-weight: 500;
    font-size: 1.08em;
}
.network-workflow {
    margin-bottom: 32px;
}
.network-workflow h3 {
    color: #2a4cff;
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 1.2em;
    font-weight: 600;
}
.network-workflow .network-steps {
    counter-reset: step;
    margin-left: 0;
    padding-left: 0;
}
.network-workflow .network-steps > li {
    list-style: none;
    margin-bottom: 28px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(42,76,255,0.07);
    padding: 24px 24px 16px 72px;
    position: relative;
    transition: box-shadow 0.2s;
    border-left: 5px solid #2a4cff;
}
.network-workflow .network-steps > li:hover {
    box-shadow: 0 8px 24px rgba(42,76,255,0.13);
    background: #f4f8ff;
}
.network-workflow .network-steps > li:before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 24px;
    top: 24px;
    background: #2a4cff;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 8px rgba(42,76,255,0.15);
}
.network-workflow .network-steps ul {
    margin: 0 0 0 16px;
    padding: 0;
}
.network-workflow .network-steps ul li {
    list-style: disc;
    margin-bottom: 6px;
    color: #333;
    font-weight: 400;
    font-size: 1em;
}
.abutPnl1 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}
.dtlPnl {
    flex: 2 1 420px;
    min-width: 320px;
}
.imgPnl {
    flex: 1 1 260px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgPnl img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(42,76,255,0.10);
}
@media (max-width: 900px) {
    .abutPnl1 {
        flex-direction: column;
        align-items: stretch;
    }
    .imgPnl {
        margin-top: 24px;
    }
}
