.phases {
    padding: 80px 0;
}

.phase-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 18px 40px rgba(38, 78, 120, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.phase-card1{
     background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 18px 40px rgba(38, 78, 120, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}
.phase-card2{
     background: #ffffff;
    border-radius: 20px;
    padding: 25px 25px;
    box-shadow: 0 18px 40px rgba(38, 78, 120, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.phase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(38, 78, 120, 0.14);
}

.phase-card-number {
    font-size: 38px;
    font-weight: 700;
    color: #1d3f6f;
    margin-bottom: 18px;
}
.phase-card-number2 {
    font-size: 38px;
    font-weight: 700;
    color: #1d3f6f;
    /* margin-bottom: 18px; */
}

.phase-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0a132e;
    margin-bottom: 14px;
    line-height: 1.3;
}

.phase-card-text {
    color: #4f5f7a;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    flex-grow: 1;
}

.section-title h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0a132e;
    margin-bottom: 12px;
}

.section-title p {
    color: #5e6d82;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .phases {
        padding: 60px 0;
    }
    .phase-card {
        min-height: auto;
    }
}
