/* How to Verify Widget Styles */
.ecw-verify-container {
    margin: 0 auto;
    font-family: inherit;
}

.ecw-verify-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.ecw-verify-title-container {
    display: flex;
    align-items: center;
    gap: 24px;
}
.ecw-verify-title {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0em;

    font-variation-settings: "opsz" auto;
    background: linear-gradient(270deg, #1226AA 0%, #2270E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecw-verify-title-line {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #DC008B;
    margin-top: 8px;
    border-radius: 30px;
    padding: 6px 12px;
    cursor: default;
    border: 1px solid #DC008B;
}

.ecw-verify-navigation {
    display: flex;
    gap: 10px;
}

.ecw-verify-prev,
.ecw-verify-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #070931;
    cursor: pointer;
}

.ecw-verify-prev svg,
.ecw-verify-next svg {
    width: 24px;
    height: 24px;
}
.ecw-verify-prev[aria-disabled="true"],
.ecw-verify-next[aria-disabled="true"] {
    color: #0709314d;
    cursor: not-allowed;
    pointer-events: none;
}
.swiper-button-disabled {
    color: #0709314d;
    cursor: not-allowed;
    pointer-events: none;
}
.ecw-verify-carousel {
    opacity: 0;
}
.ecw-verify-carousel.swiper-initialized {
    opacity: 1;
}

.ecw-verify-step {
    height: auto;
}

.ecw-verify-step-inner {
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ecw-verify-step-image {
    position: relative;
    padding-top: 28vw;
    overflow: hidden;
    border-radius: 16px;
}

.ecw-verify-step-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ecw-verify-step:hover .ecw-verify-step-image img {
    transform: scale(1.05);
}

.ecw-verify-step-content {
    padding-top: 24px;
}

.ecw-verify-step-number {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #132181;
    margin-bottom: 8px;
}

.ecw-verify-step-title {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    color: #121821;
    margin-bottom: 0;
}

.ecw-verify-pagination {
    position: relative;
    margin-top: 30px;
    text-align: center;
    bottom: 0;
    width: 100%;
}

.ecw-verify-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #dddddd;
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.ecw-verify-pagination .swiper-pagination-bullet-active {
    background: #000000;
    width: 24px;
    border-radius: 4px;
}
.ecw-verify-mobile-nav {
    display: none;
}
@media (max-width: 768px) {
    .ecw-verify-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 32px;
    }
    .ecw-verify-carousel {
        padding: 0;
        margin: 0 -20px;
    }
    .ecw-verify-navigation { display: none; }
    .ecw-verify-mobile-nav { 
        display: flex;
        gap: 90px;
        justify-content: center;
        margin-top: 50px;
     }
    .ecw-verify-mobile-prev,
    .ecw-verify-mobile-next {
        width: 45px;
        height: 45px;
    }
    .ecw-verify-title-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .ecw-verify-title {
        font-size: 20px;
    }
    .ecw-verify-title-line {
        font-size: 13px;
        padding: 4px 12px;
    }
    .ecw-verify-step-image {
        padding-top: 104vw;
    }
    .ecw-verify-step-number {
        font-size: 15px;
    }
    .ecw-verify-step-title {
        font-size: 13px;
    }
    .ecw-verify-step-content {
        padding-top: 12px;
    }
    .ecw-verify-pagination {
        margin: 0;
    }
}
