﻿body {
    background: #f7f9fb;
    font-family: "Roboto", sans-serif;
}
.sernw_blkleft h1 {
    font-size: 41px;
    font-weight: 700;
}

.sernw_blkleft p {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #357db1;
    text-align: left;
    line-height: 1.45;
}

/* ✅ keep this BELOW to take priority */
.sernw_blkleft .otp-description {
    color: #222;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 1rem;
}


/*section2 */

.image-slider {
    position: relative;
    width: 100%;
    height: 200px; /* fixed visible area */
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* space between two images */
}

.slider-pair {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slider-pair.active {
        opacity: 1;
        z-index: 2;
    }

.slider-img {
    width: 48%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/*section3 */
.stats-section {
    background: #f9fbfb;
    padding: 30px 0;
    color: #000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.stat-box {
    padding: 20px 30px;
}

    .stat-box h2 {
        font-size: 26px;
        font-weight: 600;
        color: #3a3a3a;
        line-height: 1.4;
    }

    /* ✅ Highlight (big number) */
    .stat-box .highlight {
        color: #2372ab;
        font-size: 61px;
        font-weight: 700;
        display: inline;
        vertical-align: bottom;
        margin-right: 8px;
    }

    /* ✅ Smaller text after percentage */
    .stat-box h2 span.text-small {
        font-size: 20px;
        font-weight: 500;
        color: #2866af;
    }

    .stat-box hr {
        border: none;
        border-top: 1px solid #3484bc;
        width: 100%;
        margin: 20px auto;
    }

    .stat-box p {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 10px;
        display: inline;
    }

    .stat-box .author {
        font-size: 16px;
        font-weight: 700;
        display: block;
        color: #000;
    }

@media (max-width: 767px) {
    .stat-box {
        margin-bottom: 40px;
    }

        .stat-box .highlight {
            font-size: 52px;
        }

        .stat-box h2 span.text-small {
            font-size: 22px;
        }
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.6;
}
/*section 4*/
.feature-section {
    text-align: center;
    padding: 37px 0;
    background: #ffffff;
}

    .feature-section h2 {
        font-size: 42px;
        font-weight: 700;
        color: #2372ab;
        margin-bottom: 10px;
    }

    .feature-section p.lead {
        color: #555;
        font-size: 18px;
        max-width: 900px;
        margin: 0 auto 60px;
        line-height: 1.6;
    }

.swiper-container-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.swiper {
    width: 90%;
    max-width: 1200px;
    padding: 40px 0;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(83, 190, 194, 0.2);
    }

    .feature-card h3 {
        font-size: 22px;
        color: #22628f;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 15px;
        color: #555;
    }

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background: #2372ab;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}


    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 20px;
        font-weight: bold;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: #2372ab;
    }

/* Responsive */
@media (max-width: 992px) {
    .swiper-button-next {
        right: -50px;
    }

    .swiper-button-prev {
        left: -50px;
    }
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next {
        right: -35px;
    }

    .swiper-button-prev {
        left: -35px;
    }
}
/* Inside your  */
.feature-card i {
    font-size: 40px; /* Make icons bigger */
    color: #22628f; /* Optional: match heading color */
    margin-bottom: 15px; /* Space between icon and heading */
    display: block; /* So it appears above the heading */
}

/*section 5*/

.more-section {
    background: #fff;
    padding: 28px 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2372ab;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.steps-row {
    gap: 33px;
}

.step-box {
    text-align: center;
    min-width: 120px;
}

.circle {
    width: 80px;
    height: 74px;
    border: 2px solid #2372ab;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    font-weight: 500;
    color: #2372ab;
    background: radial-gradient(rgba(109, 218, 213, 0.15), transparent 60%);
}

.step-box {
    text-align: center;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .step-box h5 {
        font-size: 16px; /* Adjust heading smaller if needed */
        font-weight: 600;
        color: #000;
        margin-bottom: 6px;
        white-space: nowrap; /* Keep heading in one line */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .step-box p {
        font-size: 14px; /* Slightly smaller to fit in 2 lines */
        color: #666;
        margin: 0;
        line-height: 1.3;
        text-align: center;
        word-wrap: break-word; /* Break long words to fit */
        max-height: 2.6em; /* Roughly 2 lines */
    }



@media (max-width: 767px) {
    .circle {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .step-box {
        min-width: 130px;
        margin-bottom: 30px;
    }
}


/*section 6*/
.dashboard-section {
    padding: 80px 20px;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.dashboard-image img {
    width: 100%;
    max-width: 500px;
    display: block;
}

.dashboard-content {
    flex: 1;
    min-width: 300px;
}

    .dashboard-content h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #2372ab;
    }

    .dashboard-content .subtitle {
        font-size: 16px;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.6;
    }

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

    .features-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 15px;
        color: #111;
        margin-bottom: 15px;
    }

    .features-list .icon {
        width: 40px;
        height: 40px;
        background: #d7f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 18px;
    }

.btn-learn {
    display: inline-block;
    padding: 12px 25px;
    background: #2372ab;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-learn:hover {
        background: #53bec2;
    }

/* Responsive */
@media (max-width: 991px) {
    .dashboard-row {
        flex-direction: column;
        text-align: center;
    }

    .features-list li {
        justify-content: center;
    }
}

.enchacne_para {
    font-size: 13px;
    line-height: 21px;
    font-weight: 400;
}
/*section7 */

/* Section now acts like container-fluid background */
.otp-section {
    background-color: #ecf7ff; /* full width background */
    padding: 60px 0;
}

/* Inner content container */
.otp-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* horizontal padding only */
}

.otp-left {
    flex: 1;
    padding-right: 40px;
}

.otp-headline {
    font-size: 28px;
    font-weight: 600;
    color: #2372ab;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.otp-subtext {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #2372ab;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .cta-button:hover {
        background-color: #2372ab;
    }

.otp-right {
    flex: 1;
    text-align: center;
}

.illustration {
    /*    width: 80%;*/
    /*    max-width: 300px;*/
    margin: 0 auto;
}

    .illustration img {
        max-width: 100%;
    }

@media (max-width: 768px) {
    .otp-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .otp-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .otp-right {
        width: 100%;
    }
}

/*section 8*/