/* section-twenty-seven-start */
.section-twenty-seven {
    position: relative;
    overflow: hidden;
    padding: 40px 0 80px 0px;
    margin-top: 60px;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.00) 1.57%, #F5FBFF 55%, rgba(229, 239, 255, 0.00) 100.79%);
}


.section-twenty-seven-card {
    position: relative;
    padding: 20px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    border-radius: 23px;
    background: #FFF;
    box-shadow: 0 4px 17.9px 0 rgba(0, 0, 0, 0.10);
    margin-top: 20px;
    flex: 1;
}

.section-twenty-seven-card:hover {
    transform: translateY(-6px);
    border-color: #c9ddf5;
    box-shadow:
        0 15px 35px rgba(37, 91, 150, 0.13),
        0 5px 12px rgba(37, 91, 150, 0.07);
}


.section-twenty-seven-card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e8e86b;
    min-height: 80px;
}

.section-twenty-seven-icon {
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #ffffff;
    background: #0263FF;
    border-radius: 50%;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}


.section-twenty-seven-card-title {
    margin: 1px 0 2px;
    color: #101820;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.section-twenty-seven-card-subtitle {
    margin-top: 5px;
    color: #2B2B2B;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}


.section-twenty-seven-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 10px 0px 20px 0px;
    list-style: none;
}

.section-twenty-seven-list li {
    position: relative;
    padding-left: 30px;
    color: #2B2B2B;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.section-twenty-seven-list li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    background: url("../img/sparkle.webp") center / contain no-repeat;
}

/* section-twenty-seven-end */

/* section-twenty-eight-start */
.section-twenty-eight {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: rgba(240, 247, 255, 0.40);
}
.section-twenty-eight-grid {
    overflow: hidden;
    background: #fff;
}
.section-twenty-eight-grid>div {
    border-right: 1.05px solid rgba(0, 0, 0, 0.09);
    border-bottom: 1.05px solid rgba(0, 0, 0, 0.09);
}

.section-twenty-eight-grid>div:nth-child(3n) {
    border-right: 0;
}

.section-twenty-eight-grid>div:nth-child(n + 4) {
    border-bottom: 0;
}
.section-twenty-eight-card {
    position: relative;
    height: 100%;
    min-height: 160px;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.section-twenty-eight-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 22px;
    border-radius: 0 4px 4px 0;
    background: #0263FF;
    opacity: 0;
    transform: translateY(-50%);
    transition:
        opacity 0.3s ease,
        height 0.3s ease;
}
.section-twenty-eight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 8px;
    background: #0263FF;
    box-shadow: 0 5px 12px rgba(2, 99, 255, 0.22);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.section-twenty-eight-card-title {
    margin: 15px 0 15px;
    color: #101828;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.section-twenty-eight-card-text {
    max-width: 350px;
    margin: 0 auto;
    color: #626b75;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}


.section-twenty-eight-card:hover {
    z-index: 2;
    background: #fbfdff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(2, 99, 255, 0.08);
}

.section-twenty-eight-card:hover::before {
    height: 38px;
    opacity: 1;
}

.section-twenty-eight-card:hover .section-twenty-eight-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 18px rgba(2, 99, 255, 0.28);
}

.section-twenty-eight-card:hover .section-twenty-eight-card-title {
    color: #0263FF;
}
@media (max-width: 991.98px) {
    .section-twenty-eight-grid>div:nth-child(3n) {
        border-right: 1.05px solid rgba(0, 0, 0, 0.09);
    }
    .section-twenty-eight-grid>div:nth-child(2n) {
        border-right: 0;
    }
    .section-twenty-eight-grid>div:nth-child(n + 5) {
        border-bottom: 0;
    }
    .section-twenty-eight-grid>div:nth-child(3),
    .section-twenty-eight-grid>div:nth-child(4) {
        border-bottom: 1.05px solid rgba(0, 0, 0, 0.09);
    }
}
@media (max-width: 767.98px) {
    .section-twenty-eight-grid {
        border-radius: 0;
    }
    .section-twenty-eight-grid>div {
        border-right: 0 !important;
        border-bottom: 1.05px solid rgba(0, 0, 0, 0.09) !important;
    }

    .section-twenty-eight-grid>div:last-child {
        border-bottom: 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-twenty-eight-card,
    .section-twenty-eight-icon,
    .section-twenty-eight-card-title {
        transition: none;
    }
}
/* section-twenty-eight-end */