/* Vetting Process Section Styles */
.vetting-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.vetting-header {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 50px;
    text-align: center;
}

.vetting-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: #161616;
    margin-bottom: 15px;
}

.vetting-intro {
    font-size: 16px;
    font-weight: 450;
    line-height: 150%;
    color: #575e62;
    margin: 0;
}

/* Vetting Process Cards */
.vetting-process {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
}

.vetting-table {
     display: flex;
    align-items: stretch;
    gap: 40px;
    flex-wrap: nowrap;
    padding: 20px 0 60px;
}

/* Custom scrollbar styling */
.vetting-process::-webkit-scrollbar {
    height: 4px;
}

.vetting-process::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.vetting-process::-webkit-scrollbar-thumb {
    background: #233f8c;
    border-radius: 10px;
}

.vetting-process::-webkit-scrollbar-thumb:hover {
    background: #2a5fa8;
}

.vetting-table-header {
    display: none;
}

.vetting-table-row {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    flex: 0 0 320px;
    min-width: 320px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vetting-table-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vetting-table-row:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -35px;   
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #233f8c;
    font-weight: 300;
    z-index: 1;
}

/* Column Styles */
.vetting-col {
    display: flex;
    width: 100%;
}

.vetting-col-step {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    order: 2;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #233f8c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.step-name {
    font-size: 18px;
    font-weight: 600;
    color: #231f20;
    line-height: 1.3;
}

.vetting-col-icon {
    justify-content: center;
    margin-bottom: 20px;
    order: 1;
}

.step-icon {
 
    display: flex;
    align-items: center;
    justify-content: center;
 
 
 
}

.step-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.vetting-col-desc {
    padding: 0;
    order: 3;
}

.vetting-col-desc p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Closing Statement */
.vetting-closing {
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
    text-align: center;
    padding: 0;
}

.vetting-closing p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #575e62;
    margin: 0;
}

/* Statistics */
.vetting-stats {
    background: white;
    border-radius: 8px;
    padding: 12px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: max-content;
    transition: all 0.3s ease;
    margin: 0 auto;
    border: 1px solid #e9ecef;
    width: 100%;
    margin: 40px auto 0;
    width: max-content;
}

.stats-text {
    font-size: 15px;
    font-weight: 400;
    color: #231f20;
    margin: 0;
    line-height: 1.5;
}
.vetting-section .info-badge{
    margin-top: 40px;
}
/* Responsive Styles */
@media (max-width: 1200px) {
    .vetting-table-row:not(:last-child)::after {
        display: none;
    }

    .vetting-table {
        gap: 20px;
    }

    .vetting-table-row {
        flex: 0 0 300px;
        min-width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 1024px) {
    .vetting-title {
        font-size: 28px;
    }

    .vetting-table-row {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        padding: 30px 20px;
    }

    .step-icon {
        width: 65px;
        height: 65px;
    }

    .step-icon img {
        width: 40px;
        height: 40px;
    }

    .step-name {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .vetting-section {
        padding: 60px 0;
    }

    .vetting-header {
        margin-bottom: 35px;
        padding: 0 20px;
    }

    .vetting-title {
        font-size: 24px;
    }

    .vetting-intro {
        font-size: 15px;
    }

    .vetting-process {
        padding: 0 15px;
    }

    .vetting-table {
        gap: 15px;
    }

    .vetting-table-row {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
        padding: 30px 25px;
    }

    .vetting-table-row:not(:last-child)::after {
        display: none;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon img {
        width: 38px;
        height: 38px;
    }

    .step-name {
        font-size: 16px;
    }

    .vetting-col-desc p {
        font-size: 14px;
    }

    .vetting-closing {
        padding: 0;
        margin: 30px 20px 0;
    }

    .vetting-closing p {
        font-size: 15px;
    }

    .vetting-stats {
        margin: 25px 20px 0;
        padding: 16px 25px;
    }

    .stats-text {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .vetting-col-icon {
    justify-content: center;
    margin-bottom: 10px;
    order: 1;
}
    .vetting-section {
        padding: 50px 0;
    }

    .vetting-title {
        font-size: 22px;
    }

    .vetting-intro {
        font-size: 14px;
    }

    .vetting-process {
        padding: 0 10px;
    }

    .vetting-table-row {
                flex: 0 0 270px;
        min-width: 270px;
        max-width: 270px;
        padding: 25px 20px;

    }
.vetting-table {
 
    padding: 20px 0 40px;
}
    .step-icon {
        width: 55px;
        height: 55px;
    }

    .step-icon img {
        width: 35px;
        height: 35px;
    }

    .step-name {
        font-size: 15px;
    }

    .vetting-col-desc p {
        font-size: 13px;
    }

    .vetting-closing {
        padding: 0;
        margin: 25px 15px 0;
    }

    .vetting-closing p {
        font-size: 14px;
    }

    .vetting-stats {
        margin: 20px 15px 0;
        padding: 14px 20px;
    }

    .stats-text {
        font-size: 13px;
    }
}
/* Vetting Stats Section */
.vetting-stats {
       display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin: 50px auto 0;
    max-width: 800px;
    background: #ffffff;
    border-radius: 100rem;
    padding: 20px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.vetting-stats p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 120px;
    position: relative;
}

.vetting-stats p:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

.vetting-stats .statsNmbr {
        
    font-size: 25px;
    font-weight: 500;
    line-height: 1.1;
    color: #233f8c;
 
}

.vetting-stats .statsText {
    
    font-size: 15px;
    font-weight: 450;
    line-height: 1.4;
    color: #6b7280;
    text-align: center;
}

/* Vetting Stats Responsive */
@media (max-width: 991px) {
    .vetting-stats {
        gap: 40px;
        padding: 35px 40px;
    }

    .vetting-stats p:not(:last-child)::after {
        right: -20px;
        height: 50px;
    }

    .vetting-stats .statsNmbr {
        font-size: 32px;
    }

    .vetting-stats .statsText {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .vetting-stats {
        gap: 30px;
        margin-top: 40px;
        padding: 30px 25px;
        border-radius: 8px;
        max-width: 90%;
    }

    .vetting-stats p {
        min-width: 100px;
    }

    .vetting-stats p:not(:last-child)::after {
        right: -15px;
        height: 45px;
    }

    .vetting-stats .statsNmbr {
        font-size: 30px;
    }

    .vetting-stats .statsText {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .vetting-stats {
        gap: 25px;
        margin-top: 30px;
        padding: 25px 20px;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .vetting-stats p {
        min-width: 45%;
        flex: 0 0 45%;
    }

    .vetting-stats p:not(:last-child)::after {
        display: none;
    }

    .vetting-stats p:nth-child(2)::after {
        display: none;
    }

    .vetting-stats .statsNmbr {
        font-size: 28px;
    }

    .vetting-stats .statsText {
        font-size: 12px;
    }
}
