/* Loan Application Process Redesign */
.loan-requirements {
    margin-bottom: 60px;
    position: relative;
    padding: 20px 0;
}

.loan-requirements::before {
    content: 'Loan Requirements';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.loan-requirements::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1) 50%, transparent);
}

.loan-requirements .requirements-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.loan-requirements .requirement-item {
    display: flex;
    align-items: center;
    width: calc(33.333% - 20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.loan-requirements .requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .loan-requirements .requirement-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .loan-requirements .requirement-item {
        width: 100%;
    }
}

.loan-requirements .requirement-circle {
    width: 70px;
    height: 70px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.loan-requirements .requirement-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.loan-requirements .requirement-circle.orange {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
}

.loan-requirements .requirement-circle.gray {
    background: linear-gradient(135deg, #607D8B, #455A64);
    color: white;
}

.loan-requirements .requirement-circle.green {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
}

.loan-requirements .requirement-circle.purple {
    background: linear-gradient(135deg, #9C27B0, #6A1B9A);
    color: white;
}

.loan-requirements .requirement-content {
    padding: 20px;
    flex-grow: 1;
    font-weight: 500;
    font-size: 16px;
    color: #444;
    line-height: 1.4;
}

.loan-application-steps {
    margin-top: 40px;
}

.loan-application-steps .steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.loan-application-steps .step {
    width: calc(33.333% - 20px);
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.loan-application-steps .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
    .loan-application-steps .step {
        width: calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .loan-application-steps .step {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Creative colorful cards */
.loan-application-steps .step-number {
    position: relative;
    width: 100%;
    height: 80px;
    color: white;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 85% 100%, 0 100%);
}

.loan-application-steps .step-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
}

/* Vibrant color scheme */
.loan-application-steps .step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #FF9800, #FF5722);
}

.loan-application-steps .step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #2196F3, #3F51B5);
}

.loan-application-steps .step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #4CAF50, #009688);
}

.loan-application-steps .step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
}

.loan-application-steps .step:nth-child(5) .step-number {
    background: linear-gradient(135deg, #E91E63, #9C27B0);
}

.loan-application-steps .step:nth-child(6) .step-number {
    background: linear-gradient(135deg, #00BCD4, #2196F3);
}

.loan-application-steps .step-content {
    padding: 20px;
    background: white;
}

.loan-application-steps .step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.loan-application-steps .step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ddd;
}

.loan-application-steps .step:nth-child(1) .step-title::after {
    background: #FF9800;
}

.loan-application-steps .step:nth-child(2) .step-title::after {
    background: #2196F3;
}

.loan-application-steps .step:nth-child(3) .step-title::after {
    background: #4CAF50;
}

.loan-application-steps .step:nth-child(4) .step-title::after {
    background: #9C27B0;
}

.loan-application-steps .step:nth-child(5) .step-title::after {
    background: #E91E63;
}

.loan-application-steps .step:nth-child(6) .step-title::after {
    background: #00BCD4;
}

.loan-application-steps .step-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}
