/* ============================================================
   V2 Our Services Block
   Services showcase with icon cards and enterprise banner
   ============================================================ */

/* ═══════════════════════════════════════════════════════════
   1. SECTION
   ═══════════════════════════════════════════════════════════ */
.vos-section {
    background: #fff;
}

/* ═══════════════════════════════════════════════════════════
   2. HEADER
   ═══════════════════════════════════════════════════════════ */
.vos-header {
    text-align: center;
    margin: 0 auto 90px;
}

.vos-header__title {
    font-family: var(--heading-font, 'Inter 18pt');
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color, #002e5b);
    margin: 0 0 20px;
    line-height: 1.2;
}

.vos-header__line {
    display: block;
    width: 35px;
    height: 6px;
    background-color: var(--secondary-clr, #f15a24);
    margin: 0 auto 20px;
    border-radius: 6px;
}

.vos-header__desc {
    font-family: var(--body-font, 'Poppins');
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color, #002e5b);
    line-height: 1.6;
    margin: 0 0 10px;
}

.vos-header__subtitle {
    font-family: var(--body-font, 'Poppins');
    font-size: 14px;
    font-weight: 400;
    color: #494949;
    margin: 0;
    padding-top: 5px;
}

/* ═══════════════════════════════════════════════════════════
   3. CARDS GRID
   ═══════════════════════════════════════════════════════════ */
.vos-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ─── Single Card ──────────────────────────────────────── */
.vos-card {
    background: #f2f2f2;
    border-radius: 4px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ─── Card Icon ────────────────────────────────────────── */
.vos-card__icon {
    width: 70px;
    height: 70px;
    background: #002e5b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: absolute;
    top: -22px;
}

.vos-card__icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

/* ─── Card Title ───────────────────────────────────────── */
.vos-card__title {
    font-family: var(--heading-font, 'Inter 18pt');
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color, #002e5b);
    margin: 40px 0 14px;
    line-height: 1.3;
}

/* ─── Card List ────────────────────────────────────────── */
.vos-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.vos-card__list li {
    position: relative;
    padding-left: 20px;
    font-family: var(--body-font, 'Poppins');
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

.vos-card__list li::before {
    content: '-';
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 18px;
    color: var(--secondary-clr, #f15a24);
    font-weight: 900;
}

/* ─── Card Link ────────────────────────────────────────── */
.vos-card__link {
    font-family: var(--body-font, 'Poppins');
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-clr, #f15a24);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color 0.3s ease;
}

.vos-card__link:hover {
    color: var(--primary-color, #002e5b);
}

.vos-card__link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.vos-card__link:hover i {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════
   4. HIGHLIGHTED CARD
   ═══════════════════════════════════════════════════════════ */
.vos-card--highlighted {
    background: #f15a24;
}

.vos-card--highlighted::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 160px 160px;
    border-color: transparent transparent  #F36E3D transparent;
}

.vos-card--highlighted .vos-card__icon {
    background: #eeeeee;
}

.vos-card--highlighted .vos-card__title {
    color: #fff;
}

.vos-card--highlighted .vos-card__list li {
    color: #fff;
}

.vos-card--highlighted .vos-card__list li::before {
    color: #fff;
}

.vos-card--highlighted .vos-card__link {
    color: #fff;
}

.vos-card--highlighted .vos-card__link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════════════════════════
   5. ENTERPRISE BANNER
   ═══════════════════════════════════════════════════════════ */
.vos-banner {
    background: var(--primary-color, #002e5b);
    margin-top: 30px;
    padding: 20px 15px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    text-align: center;
    width: 100%;
}

.vos-banner__title {
    margin-bottom: 15px;
}

.vos-banner:before {
    right: 0;
    content: '';
    background: rgb(241, 90, 36);
    width: 137px;
    left: calc(100% - 137px);
    top: 0;
    border-radius: 0 4px 4px 0;
    position: absolute;
    height: 100%;
}

.vos-banner:after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    background: rgb(241, 90, 36);
    transform: skewX(-41deg);
    -webkit-transform: skewX(-41deg);
    -moz-transform: skewX(-41deg);
    -ms-transform: skewX(-41deg);
    right: 60px;
}

.vos-banner__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.vos-banner__title {
    flex-shrink: 0;
}

.vos-banner__title a,
.vos-banner__title {
    font-family: var(--heading-font, 'Inter 18pt');
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.vos-banner__title a:hover {
    color: var(--secondary-clr, #f15a24);
}

.vos-banner__title i {
    font-size: 13px;
}

.vos-banner__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px 12px;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.vos-banner__list li {
    font-family: var(--body-font, 'Poppins');
    font-size: 13px;
    color: #fff;
    display: flex;
    padding: 0 5px 0 15px;
    /* width: calc(100%/5 - 10px); */
    text-align: left;
    position: relative;
}

.vos-banner__list li::before {
    content: '\2014';
    color: var(--secondary-clr, #f15a24);
    margin: 0;
    font-weight: 700;
    position: absolute;
    left: -1px;
}

.vos-banner__list li:last-child::before {
    color: #fff;
}
/* ═══════════════════════════════════════════════════════════
   6. RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Large desktop (max 1200px) */
@media (max-width: 1200px) {
    .vos-header__title {
        font-size: 32px;
    }

    .vos-cards {
        gap: 20px;
    }

    .vos-card {
        padding: 24px 20px;
    }
}

/* Tablet landscape (max 1024px) */
@media (max-width: 1024px) {
    .vos-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .vos-header {
        margin-bottom: 50px;
    }

    .vos-card {
        margin-top: 25px;
    }

    .vos-banner {
        text-align: left;
    }

    .vos-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .vos-banner__list {
        flex-wrap: wrap;
    }

    .vos-banner__list li:first-child::before {
        display: none;
    }

    .vos-banner::before {
        width: 100px;
        left: calc(100% - 100px);
    }

    .vos-banner::after {
        width: 110px;
        right: 30px;
    }
}

/* Tablet portrait (max 767px) */
@media (max-width: 767px) {
    .vos-header__title {
        font-size: 26px;
    }

    .vos-header__desc {
        font-size: 15px;
    }

    .vos-header {
        margin-bottom: 40px;
    }

    .vos-cards {
        gap: 16px;
    }

    .vos-card {
        padding: 24px 18px;
    }

    .ts-slider-wrapper--style3 .ts-card::after {
        left: 62px;
        bottom: 44px;
    }

    .vos-card__icon {
        width: 60px;
        height: 60px;
        top: -18px;
    }

    .vos-card__icon img {
        width: 32px;
        height: 32px;
    }

    .vos-card__title {
        font-size: 16px;
        margin-top: 34px;
    }

    .vos-card__list li {
        font-size: 13px;
    }

    .vos-card--highlighted::after {
        border-width: 0 0 120px 120px;
    }

    .vos-banner {
        margin-top: 20px;
        padding: 16px 15px;
    }

    .vos-banner::before,
    .vos-banner::after {
        display: none;
    }

    .vos-banner__title a,
    .vos-banner__title {
        font-size: 16px;
    }

    .vos-banner__list li {
        font-size: 12px;
        width: calc(100%/2 - 10px);
    }
}

/* Mobile (max 576px) */
@media (max-width: 576px) {
    .vos-cards {
        grid-template-columns: 1fr;
    }

    .vos-header__title {
        font-size: 22px;
    }

    .vos-header__desc {
        font-size: 13px;
    }

    .vos-header {
        margin-bottom: 30px;
    }

    .vos-card--highlighted::after {
        border-width: 0 0 100px 100px;
    }

    .vos-banner__list {
        gap: 4px 0;
    }

    .vos-banner__list li {
        white-space: normal;
        width: 100%;
    }
}
