﻿body {
}

/* Enhanced Cloud Transformation Page Styles */
.cloud-objectives {
    background: linear-gradient(90deg, #e3f0ff 0%, #f4f8ff 100%);
    border-left: 5px solid #2a4cff;
    padding: 28px 36px;
    border-radius: 14px;
    margin-bottom: 36px;
    box-shadow: 0 4px 16px rgba(42,76,255,0.08);
    transition: box-shadow 0.2s;
}
.cloud-objectives h3 {
    color: #2a4cff;
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.35em;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.cloud-objectives ul {
    list-style: disc inside;
    margin-bottom: 0;
    color: #1a2a3a;
    font-weight: 500;
    font-size: 1.1em;
    line-height: 1.7;
}
.cloud-workflow {
    margin-bottom: 36px;
}
.cloud-workflow h3 {
    color: #2a4cff;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.22em;
    font-weight: 700;
}
.cloud-workflow .cloud-steps {
    counter-reset: step;
    margin-left: 0;
    padding-left: 0;
}
.cloud-workflow .cloud-steps > li {
    list-style: none;
    margin-bottom: 32px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(42,76,255,0.09);
    padding: 28px 28px 18px 80px;
    position: relative;
    transition: box-shadow 0.2s, background 0.2s;
    border-left: 5px solid #2a4cff;
}
.cloud-workflow .cloud-steps > li:hover {
    box-shadow: 0 12px 32px rgba(42,76,255,0.16);
    background: #f4f8ff;
}
.cloud-workflow .cloud-steps > li:before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 28px;
    top: 28px;
    background: linear-gradient(135deg, #2a4cff 60%, #6ec6ff 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25em;
    box-shadow: 0 2px 8px rgba(42,76,255,0.18);
}
.cloud-workflow .cloud-steps ul {
    margin: 0 0 0 18px;
    padding: 0;
}
.cloud-workflow .cloud-steps ul li {
    list-style: disc;
    margin-bottom: 7px;
    color: #333;
    font-weight: 400;
    font-size: 1.04em;
    line-height: 1.6;
}
.abutPnl1 {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
}
.dtlPnl {
    flex: 2 1 440px;
    min-width: 340px;
}
.imgPnl {
    flex: 1 1 280px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgPnl img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(42,76,255,0.13);
    transition: box-shadow 0.2s;
}
.imgPnl img:hover {
    box-shadow: 0 12px 36px rgba(42,76,255,0.18);
}
@media (max-width: 900px) {
    .abutPnl1 {
        flex-direction: column;
        align-items: stretch;
    }
    .imgPnl {
        margin-top: 28px;
    }
}
