/* ETS CSS CODE */

.services-hero {
    position: relative;
    width: 100%;
    min-height: 360px;
    background: url("../image/what-we-do/service-banner.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* LEFT BLUE SHADOW OVERLAY */
.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 30, 120, 0.96) 0%,
            rgba(15, 50, 160, 0.90) 25%,
            rgba(20, 70, 180, 0.75) 45%,
            rgba(30, 80, 200, 0.40) 65%,
            rgba(30, 80, 200, 0.10) 80%,
            rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
}

/* CONTENT */
.services-hero .hero-content {
    position: relative;
    z-index: 2;
    padding-left: 80px;
}

.services-hero .deliver-tag {
    display: inline-block;
    background: transparent;
    background-color: #5CD7F266;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
    backdrop-filter: blur(4px);
}

.services-hero .hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.services-hero .hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 576px) {

    .services-hero {
        min-height: 280px;
    }

    .services-hero .hero-content {
        padding: 20px 15px;
        text-align: left;
    }

    .services-hero .hero-content h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .services-hero .hero-content p {
        font-size: 15px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .services-hero {
        min-height: 280px;
        background-position: top right;
    }

    .services-hero .hero-content {
        padding: 20px 15px;
        text-align: left;
    }

    .services-hero .hero-content h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .services-hero .hero-content p {
        font-size: 15px;
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .services-hero {
        min-height: 340px;
    }

    .services-hero .hero-content {
        padding-left: 50px;
    }

    .services-hero .hero-content h1 {
        font-size: 48px;
    }

    .services-hero .hero-content p {
        font-size: 18px;
        max-width: 500px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .services-hero {
        min-height: 360px;
    }

    .services-hero .hero-content {
        padding-left: 70px;
    }

    .services-hero .hero-content h1 {
        font-size: 58px;
    }

    .services-hero .hero-content p {
        font-size: 19px;
    }
}


/* =============================================
           SECTION WRAPPER
        ============================================= */
.ies-section {
    margin: 0 auto;
}

/* =============================================
           OUTER CARD
        ============================================= */
.ies-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 380px;
    box-shadow: 0 4px 28px rgba(30, 60, 180, 0.08);
    border: 1px solid #e4e9f5;
}

/* =============================================
           LEFT — CONTENT PANEL
        ============================================= */
.ies-content {
    flex: 1;
    padding: 52px 48px 52px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Subtle left-side blue accent bar */
.ies-content::before {
    content: "";
    position: absolute;
    left: 0;
    width: 5px;
    height: calc(100% - 50px);
    background: linear-gradient(180deg, #2456f6 0%, #3a6fff 100%);
    border-radius: 0 4px 4px 0;
}

/* Pill tag */
.ies-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #dce8ff;
    color: #2456f6;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    width: fit-content;
}

.ies-pill span {
    width: 7px;
    height: 7px;
    background: #2456f6;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Main heading */
.ies-heading {
    font-size: clamp(22px, 3.2vw, 38px);
    font-weight: 900;
    color: #0d0d0d;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.6px;
}

.ies-heading .ies-blue {
    color: #2456f6;
}

/* Description paragraphs */
.ies-desc {
    font-size: clamp(13px, 1.4vw, 14.5px);
    color: #444;
    line-height: 1.78;
    margin-bottom: 14px;
}

.ies-desc:last-of-type {
    margin-bottom: 28px;
}

/* Highlight callout line */
.ies-callout {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0f4ff;
    border-left: 3px solid #2456f6;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    margin-top: 4px;
}

.ies-callout p {
    font-size: clamp(12.5px, 1.35vw, 14px);
    color: #333;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
}

/* =============================================
           RIGHT — IMAGE PANEL
        ============================================= */
.ies-img-panel {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    min-height: 340px;
}

.ies-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blue gradient overlay on image — left edge fade */
.ies-img-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.18) 0%,
            transparent 30%);
    z-index: 1;
}

/* Dot pattern overlay on image */
.ies-img-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(36, 86, 246, 0.10) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    z-index: 2;
}

/* =============================================
           RESPONSIVE — LAPTOP (993px – 1199px)
        ============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .ies-content {
        padding: 44px 36px 44px 44px;
    }

    .ies-content::before {
        top: 44px;
        height: calc(100% - 88px);
    }

    .ies-img-panel {
        flex: 0 0 42%;
    }
}

/* =============================================
           RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
        ============================================= */
@media (min-width: 768px) and (max-width: 992px) {
    .ies-section {
        padding: 48px 16px;
    }

    .ies-card {
        min-height: 320px;
        border-radius: 20px;
    }

    .ies-content {
        padding: 36px 28px 36px 36px;
    }

    .ies-content::before {
        top: 36px;
        height: calc(100% - 72px);
    }

    .ies-img-panel {
        flex: 0 0 40%;
        min-height: 280px;
    }
}

/* =============================================
           RESPONSIVE — TABLET PORTRAIT + MOBILE (≤767px)
           Stack: image on top, content below
        ============================================= */
@media (max-width: 767px) {
    .ies-section {
        padding: 36px 14px;
    }

    .ies-card {
        flex-direction: column-reverse;
        border-radius: 18px;
        min-height: unset;
    }

    .ies-img-panel {
        flex: 0 0 auto;
        width: 100%;
        min-height: 220px;
        max-height: 260px;
    }

    .ies-img-panel::before {
        background: linear-gradient(to bottom,
                transparent 60%,
                rgba(255, 255, 255, 0.20) 100%);
    }

    .ies-content {
        padding: 32px 28px 36px 32px;
        flex: unset;
    }

    .ies-content::before {
        top: 32px;
        height: calc(100% - 68px);
    }
}

/* =============================================
           RESPONSIVE — SMALL MOBILE (≤575px)
        ============================================= */
@media (max-width: 575px) {
    .ies-section {
        padding: 28px 12px;
    }

    .ies-card {
        border-radius: 16px;
    }

    .ies-img-panel {
        min-height: 190px;
        max-height: 220px;
    }

    .ies-content {
        padding: 26px 20px 28px 24px;
    }

    .ies-content::before {
        top: 26px;
        height: calc(100% - 54px);
        width: 4px;
    }

    .ies-pill {
        font-size: 11.5px;
        padding: 5px 13px;
        margin-bottom: 14px;
    }

    .ies-heading {
        font-size: 22px;
        margin-bottom: 14px;
        letter-spacing: -0.3px;
    }

    .ies-desc {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .ies-callout {
        padding: 12px 14px;
        gap: 10px;
    }

    .ies-callout p {
        font-size: 13px;
    }
}

/* =============================================
           RESPONSIVE — VERY SMALL MOBILE (≤380px)
        ============================================= */
@media (max-width: 380px) {
    .ies-section {
        padding: 22px 10px;
    }

    .ies-img-panel {
        min-height: 170px;
        max-height: 200px;
    }

    .ies-content {
        padding: 22px 16px 24px 20px;
    }

    .ies-content::before {
        top: 22px;
        height: calc(100% - 46px);
    }

    .ies-heading {
        font-size: 20px;
    }

    .ies-desc {
        font-size: 12.5px;
    }

    .ies-callout p {
        font-size: 12.5px;
    }
}


/* =============================================
           SECTION
        ============================================= */
.sdm-section {
    margin: 0 auto;
}

/* =============================================
           SHARED CARD BASE
        ============================================= */
.sdm-card {
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

/* ── Blue gradient card (left) ── */
.sdm-card.card-blue {
    background: #2b4cc0;
}

/* ── Light card (right) ── */
.sdm-card.card-light {
    background: #2b4cc0;
    border: 1px solid #e4e9f5;
    box-shadow: 0 4px 24px rgba(30, 60, 180, 0.08);
}

/* Dot pattern overlay on both cards */
.sdm-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    z-index: 0;
    pointer-events: none;
}

/* Light card dot pattern — more subtle */
.sdm-card.card-light::before {
    background: radial-gradient(circle, rgba(36, 86, 246, 0.07) 1.5px, transparent 1.5px);
}

/* Decorative glow circle top-right */
.sdm-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    z-index: 0;
    pointer-events: none;
    box-shadow: -60px 50px 0 rgba(255, 255, 255, 0.04);
}

.sdm-card.card-light::after {
    background: rgba(36, 86, 246, 0.05);
    box-shadow: -60px 50px 0 rgba(36, 86, 246, 0.03);
}

/* Card inner content sits above overlays */
.sdm-card-inner {
    position: relative;
    z-index: 1;
    padding: 36px 36px 38px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* =============================================
           CARD HEADER
        ============================================= */
.sdm-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.sdm-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* Icon box on blue card */
.card-blue .sdm-icon-box {
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

/* Icon box on light card */
.card-light .sdm-icon-box {
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.sdm-card-title {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.card-blue .sdm-card-title {
    color: #ffffff;
}

.card-light .sdm-card-title {
    color: #ffffff;
}

/* =============================================
           INTRO TEXT
        ============================================= */
.sdm-intro {
    font-size: clamp(12.5px, 1.4vw, 14px);
    line-height: 1.72;
    margin-bottom: 20px;
    font-weight: 500;
}

.card-blue .sdm-intro {
    color: rgba(255, 255, 255, 0.88);
}

.card-light .sdm-intro {
    color: rgba(255, 255, 255, 0.88);
}

/* =============================================
           BULLET LIST
        ============================================= */
.sdm-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.sdm-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: clamp(12.5px, 1.35vw, 14px);
    line-height: 1.5;
}

.card-light .sdm-list li {
    border-bottom: 1px solid #f0f3fb;
}

.sdm-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Bullet dot */
.sdm-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.card-blue .sdm-bullet {
    background: rgba(255, 255, 255, 0.75);
}

.card-light .sdm-bullet {
    background: #2456f6;
}

.card-blue .sdm-list li {
    color: rgba(255, 255, 255, 0.92);
}

.card-light .sdm-list li {
    color: #333;
}

/* =============================================
           CALLOUT FOOTER (bottom of left card)
        ============================================= */
.sdm-callout {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    padding: 16px 18px;
    backdrop-filter: blur(4px);
    margin-top: auto;
}

.sdm-callout p {
    font-size: clamp(12px, 1.3vw, 13.5px);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}

/* =============================================
           INDUSTRY PILLS (right card)
        ============================================= */
.sdm-industry-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.sdm-industry-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    color: #ffffff;
    border-radius: 12px;
    padding: 13px 18px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

/*.sdm-industry-item:hover {*/
/*    background: #e8f0ff;*/
/*    border-color: #2456f6;*/
/*    transform: translateX(4px);*/
/*}*/

.sdm-industry-num {
    width: 28px;
    height: 28px;
    background: #ffffff;
    color: #2456f6;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sdm-industry-item span {
    font-size: clamp(12.5px, 1.35vw, 14px);
    font-weight: 600;
    color: #ffffff;
}

/* =============================================
           RESPONSIVE — LAPTOP (993px – 1199px)
        ============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .sdm-card-inner {
        padding: 30px 30px 32px;
    }

    .sdm-icon-box {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .sdm-card-header {
        gap: 12px;
        margin-bottom: 20px;
    }
}

/* =============================================
           RESPONSIVE — TABLET LANDSCAPE (≤992px)
        ============================================= */
@media (max-width: 992px) {
    .sdm-section {
        padding: 48px 16px;
    }

    .sdm-card {
        border-radius: 18px;
    }

    .sdm-card-inner {
        padding: 28px 26px 30px;
    }

    .sdm-icon-box {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 10px;
    }

    .sdm-card-header {
        gap: 12px;
        margin-bottom: 18px;
    }

    .sdm-industry-item {
        padding: 11px 14px;
    }
}

/* =============================================
           RESPONSIVE — TABLET PORTRAIT (≤767px)
        ============================================= */
@media (max-width: 767px) {
    .sdm-section {
        padding: 36px 14px;
    }

    .sdm-card {
        border-radius: 16px;
    }

    .sdm-card-inner {
        padding: 24px 22px 26px;
    }

    .sdm-icon-box {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .sdm-list li {
        padding: 9px 0;
    }

    .sdm-industry-item {
        padding: 10px 14px;
        gap: 12px;
    }

    .sdm-callout {
        padding: 14px 16px;
    }
}

/* =============================================
           RESPONSIVE — SMALL MOBILE (≤575px)
        ============================================= */
@media (max-width: 575px) {
    .sdm-section {
        padding: 28px 12px;
    }

    .sdm-card {
        border-radius: 14px;
    }

    .sdm-card-inner {
        padding: 20px 18px 22px;
    }

    .sdm-card-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .sdm-icon-box {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 9px;
    }

    .sdm-card-title {
        font-size: 17px;
    }

    .sdm-list li {
        font-size: 13px;
        gap: 9px;
    }

    .sdm-industry-item {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 10px;
    }

    .sdm-industry-num {
        width: 26px;
        height: 26px;
        font-size: 11px;
        border-radius: 7px;
    }

    .sdm-callout {
        padding: 12px 14px;
        border-radius: 10px;
    }
}

/* =============================================
           RESPONSIVE — VERY SMALL MOBILE (≤380px)
        ============================================= */
@media (max-width: 380px) {
    .sdm-card-inner {
        padding: 18px 14px 20px;
    }

    .sdm-icon-box {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .sdm-card-title {
        font-size: 15.5px;
    }

    .sdm-list li {
        font-size: 12.5px;
    }

    .sdm-industry-item span {
        font-size: 12.5px;
    }
}



 
 
/*<!-- ========== CSS ========== -->*/
 
/* =============================================
   SECTION WRAPPER
============================================= */
.enterprise-section {
    margin: 0 auto;
}
 
/* =============================================
   SECTION HEADING
============================================= */
.enterprise-section .section-heading {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: #0d0d0d;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
}
 
.enterprise-section .section-desc {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 44px;
}
 
/* =============================================
   SERVICE DETAIL CARD
============================================= */
.svc-detail-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e8ecf4;
    padding: 0;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(30, 60, 180, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
 
/* ── Blue gradient banner header with dot pattern ── */
.svc-card-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3ae0 0%, #2456f6 40%, #3a6fff 70%, #1435b0 100%);
}
 
.svc-card-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 2px, transparent 2px);
    background-size: 22px 22px;
    z-index: 0;
}
 
.svc-card-header::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
    box-shadow: -45px 36px 0 rgba(255, 255, 255, 0.06);
}
 
.svc-card-header > * {
    position: relative;
    z-index: 1;
}
 
.svc-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.22);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    backdrop-filter: blur(4px);
}
 
.svc-card-title {
    font-size: clamp(15px, 1.8vw, 19px);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.2px;
    line-height: 1.25;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}
 
/* ── Card body (default — single column) ── */
.svc-card-body {
    padding: 20px 24px 24px;
}
 
/* ── Card body — 2-column grid for Enterprise Applications ── */
.svc-card-body--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
 
.svc-card-body--grid .svc-feature {
    padding: 20px 20px 20px 24px;
    border-bottom: 1px solid #f3f5fb;
    border-right: none;
}
 
/* Right column items — add left border as divider */
.svc-card-body--grid .svc-feature:nth-child(even) {
    border-left: 1px solid #f3f5fb;
    padding-left: 24px;
}
 
/* Remove bottom border from last row (items 3 & 4) */
.svc-card-body--grid .svc-feature:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 20px;
}
 
/* ── Feature rows (default) ── */
.svc-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid #f3f5fb;
}
 
.svc-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
 
.svc-check {
    width: 24px;
    height: 24px;
    border: 2px solid #2456f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
 
.svc-check i {
    font-size: 12px;
    color: #2456f6;
    font-weight: 700;
}
 
.svc-feature-text h6 {
    font-size: clamp(13px, 1.4vw, 14.5px);
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 3px;
    line-height: 1.25;
}
 
.svc-feature-text p {
    font-size: clamp(11.5px, 1.2vw, 13px);
    color: #666;
    line-height: 1.6;
    margin: 0;
}
 
/* =============================================
   BOTTOM CTA
============================================= */
.enterprise-cta {
    background: #f0f4ff;
    border-radius: 20px;
    padding: 48px 36px 44px;
    text-align: center;
    margin-top: 44px;
    border: 1px solid #dce6ff;
}
 
.enterprise-cta h4 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: #0d0d0d;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
 
.enterprise-cta p {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 28px;
}
 
.cta-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2456f6;
    color: #ffffff;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.22s ease, transform 0.22s ease;
    margin: 0 6px;
}
 
.cta-download-btn:hover {
    background: #1a3ae0;
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   PDF POPUP MODAL — FIXED VERSION
   Uses visibility/opacity instead of display:none
   to avoid inline style specificity conflict
============================================= */
#pdf-popup-overlay {
    /* Hidden by default using visibility + opacity */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
 
    /* Layout */
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
 
/* Open state — simply override visibility/opacity */
#pdf-popup-overlay.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
 
#pdf-popup-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
 
/* Modal header bar */
#pdf-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: #2b4cc0;
    flex-shrink: 0;
}
 
/* Download button inside modal */
.pdf-modal-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
 
.pdf-modal-download-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}
 
/* Close button inside modal */
.pdf-modal-close-btn {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
 
.pdf-modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.30);
}
 
/* PDF viewer container */
#pdf-viewer-wrap {
    flex: 1;
    overflow: hidden;
    min-height: 0;
    position: relative;
    background: #525659;
}
 
/* Loading spinner overlay */
#pdf-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #525659;
    z-index: 10;
    gap: 16px;
}
 
#pdf-loading p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}
 
.pdf-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
 
@keyframes spin {
    to { transform: rotate(360deg); }
}
 
/* object and iframe inside viewer */
#pdf-popup-object,
#pdf-popup-iframe {
    width: 100%;
    height: 75vh;
    border: none;
    display: block;
}
 
/* Mobile adjustments */
@media (max-width: 576px) {
    #pdf-popup-overlay {
        padding: 10px;
    }
    #pdf-popup-box {
        max-height: 95vh;
        border-radius: 12px;
    }
    #pdf-popup-header {
        padding: 12px 14px;
        flex-wrap: wrap;
        gap: 8px;
    }
    #pdf-popup-header span {
        font-size: 12px;
    }
    #pdf-popup-object,
    #pdf-popup-iframe {
        height: 80vh;
    }
}


/* Word document content styling inside white card */
#docx-content h1,
#docx-content h2,
#docx-content h3,
#docx-content h4 {
    color: #0d1b4e;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}
#docx-content h1 { font-size: 22px; border-bottom: 2px solid #dce6ff; padding-bottom: 8px; }
#docx-content h2 { font-size: 18px; }
#docx-content h3 { font-size: 15px; color: #2456f6; }
#docx-content p  { margin-bottom: 12px; }
#docx-content ul,
#docx-content ol { padding-left: 22px; margin-bottom: 14px; }
#docx-content li { margin-bottom: 6px; }
#docx-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    font-size: 13px;
}
#docx-content table td,
#docx-content table th {
    border: 1px solid #dce6ff;
    padding: 8px 12px;
}
#docx-content table th {
    background: #eef2ff;
    color: #2456f6;
    font-weight: 700;
}
#docx-content table tr:nth-child(even) td {
    background: #f8faff;
}

/* Mobile padding adjustment */
@media (max-width: 576px) {
    #docx-content {
        padding: 24px 18px;
    }
}
 
/* =============================================
   RESPONSIVE — LAPTOP (993px – 1199px)
============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .svc-card-header { padding: 18px 20px; gap: 12px; }
    .svc-card-icon { width: 42px; height: 42px; font-size: 19px; }
    .svc-card-body { padding: 16px 20px 20px; }
    .svc-card-body--grid .svc-feature { padding: 16px 16px 16px 20px; }
    .svc-card-body--grid .svc-feature:nth-child(even) { padding-left: 20px; }
}
 
/* =============================================
   RESPONSIVE — TABLET LANDSCAPE (≤992px)
============================================= */
@media (max-width: 992px) {
    .enterprise-section { padding: 48px 0; }
    .svc-detail-card { border-radius: 16px; }
    .svc-card-header { padding: 18px 20px; gap: 12px; }
    .svc-card-icon { width: 42px; height: 42px; font-size: 19px; border-radius: 10px; }
    .svc-card-body { padding: 16px 20px 20px; }
    .enterprise-cta { padding: 38px 28px 36px; margin-top: 36px; border-radius: 18px; }
}
 
/* =============================================
   RESPONSIVE — TABLET PORTRAIT (≤767px)
============================================= */
@media (max-width: 767px) {
    .enterprise-section { padding: 40px 0; }
    .svc-card-header { padding: 16px 18px; gap: 10px; }
    .svc-card-icon { width: 40px; height: 40px; font-size: 18px; border-radius: 9px; }
    .svc-card-title { font-size: 16px; }
    .svc-card-body { padding: 14px 18px 18px; }
    .svc-feature { padding: 11px 0; gap: 11px; }
    .svc-check { width: 22px; height: 22px; }
    .svc-check i { font-size: 11px; }
    /* Collapse grid to single column on tablet portrait */
    .svc-card-body--grid { grid-template-columns: 1fr; }
    .svc-card-body--grid .svc-feature { padding: 11px 18px 11px 18px; border-left: none !important; }
    .svc-card-body--grid .svc-feature:nth-last-child(-n+2) { border-bottom: 1px solid #f3f5fb; }
    .svc-card-body--grid .svc-feature:last-child { border-bottom: none; }
    .enterprise-cta { padding: 32px 22px 30px; margin-top: 28px; border-radius: 16px; }
}
 
/* =============================================
   RESPONSIVE — SMALL MOBILE (≤575px)
============================================= */
@media (max-width: 575px) {
    .enterprise-section { padding: 32px 0; }
    .svc-detail-card { border-radius: 14px; }
    .svc-card-header { padding: 14px 16px; gap: 10px; }
    .svc-card-icon { width: 38px; height: 38px; font-size: 17px; border-radius: 8px; }
    .svc-card-title { font-size: 14.5px; }
    .svc-card-body { padding: 12px 16px 16px; }
    .svc-feature { padding: 10px 0; gap: 10px; }
    .svc-check { width: 20px; height: 20px; }
    .svc-check i { font-size: 10px; }
    .enterprise-cta { padding: 28px 18px 26px; margin-top: 22px; border-radius: 14px; }
    .cta-download-btn { padding: 12px 22px; font-size: 13.5px; }
}
 
/* =============================================
   RESPONSIVE — VERY SMALL MOBILE (≤380px)
============================================= */
@media (max-width: 380px) {
    .svc-card-header { padding: 12px 14px; }
    .svc-card-icon { width: 34px; height: 34px; font-size: 15px; }
    .svc-card-title { font-size: 13.5px; }
    .svc-card-body { padding: 10px 14px 14px; }
    .enterprise-cta { padding: 24px 14px 22px; }
    .cta-download-btn { width: 100%; justify-content: center; margin: 4px 0; }
}


/* =============================================
           OUTER WRAPPER
        ============================================= */
.ai-wrapper {
    /* padding: 40px 20px; */
    margin: 0 auto;
}

/* =============================================
           MAIN WHITE CARD
        ============================================= */
.ai-card {
    background: #EEF4FF66;
    border-radius: 22px;
    border: 1px solid #e4e9f5;
    box-shadow: 0 4px 28px rgba(30, 60, 180, 0.07);
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 280px;
}

/* =============================================
           LEFT — TEXT CONTENT
        ============================================= */
.ai-content {
    flex: 1;
    padding: 44px 40px 44px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Heading */
.ai-content h2 {
    font-size: clamp(22px, 3.2vw, 36px);
    font-weight: 800;
    color: #0d0d0d;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
    max-width: 480px;
}

/* Description */
.ai-content .ai-desc {
    font-size: clamp(12.5px, 1.4vw, 14px);
    color: #555;
    line-height: 1.72;
    margin-bottom: 20px;
    max-width: 500px;
}

/* ── Bullet list ── */
.ai-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.ai-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: clamp(12.5px, 1.4vw, 14px);
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.ai-list li:last-child {
    margin-bottom: 0;
}

/* Blue filled circle dot */
.ai-dot {
    width: 14px;
    height: 14px;
    background: #2456f6;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
}

/* CTA Button */
.ai-btn {
    display: inline-block;
    background: #2456f6;
    color: #ffffff;
    font-size: clamp(12.5px, 1.4vw, 14px);
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    transition: background 0.22s ease, transform 0.2s ease;
    align-self: flex-start;
}

.ai-btn:hover {
    background: #1a3ae0;
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
           RIGHT — ILLUSTRATION PANEL
        ============================================= */
.ai-img-panel {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px 10px 10px;
    overflow: hidden;
}

.ai-img-panel img {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =============================================
   RESPONSIVE — LAPTOP (993px – 1199px)
============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .ai-content {
        padding: 38px 32px 38px 38px;
    }

    .ai-content h2 {
        max-width: 420px;
    }

    .ai-img-panel {
        flex: 0 0 340px;
        padding: 16px 24px 8px 8px;
    }

    .ai-img-panel img {
        max-width: 320px;
    }
}

/* =============================================
   RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
   Side-by-side but tighter
============================================= */
@media (min-width: 768px) and (max-width: 992px) {
    .ai-card {
        border-radius: 18px;
        min-height: unset;
    }

    .ai-content {
        padding: 32px 24px 32px 28px;
    }

    .ai-content h2 {
        max-width: 100%;
    }

    .ai-content .ai-desc {
        max-width: 100%;
    }

    .ai-img-panel {
        flex: 0 0 260px;
        padding: 16px 18px 10px 8px;
    }

    .ai-img-panel img {
        max-width: 240px;
    }

    .ai-list {
        margin-bottom: 22px;
    }
}

/* =============================================
   RESPONSIVE — TABLET PORTRAIT + MOBILE (≤767px)
   Stack: illustration on top, text below
============================================= */
@media (max-width: 767px) {
    .ai-card {
        flex-direction: column-reverse;
        border-radius: 18px;
        min-height: unset;
        align-items: stretch;
    }

    .ai-img-panel {
        flex: 0 0 auto;
        width: 100%;
        padding: 28px 24px 16px;
        justify-content: center;
    }

    .ai-img-panel img {
        max-width: 280px;
        margin: 0 auto;
    }

    .ai-content {
        padding: 28px 28px 32px;
        flex: unset;
    }

    .ai-content h2 {
        max-width: 100%;
        font-size: 24px;
        margin-bottom: 14px;
    }

    .ai-content .ai-desc {
        max-width: 100%;
        font-size: 13.5px;
        margin-bottom: 16px;
    }

    .ai-list {
        margin-bottom: 22px;
    }

    .ai-list li {
        font-size: 13.5px;
    }

    .ai-btn {
        font-size: 13.5px;
        padding: 11px 22px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤575px)
============================================= */
@media (max-width: 575px) {
    .ai-card {
        border-radius: 16px;
    }

    .ai-img-panel {
        padding: 22px 18px 12px;
    }

    .ai-img-panel img {
        max-width: 230px;
    }

    .ai-content {
        padding: 22px 18px 26px;
    }

    .ai-content h2 {
        font-size: 22px;
        margin-bottom: 12px;
        letter-spacing: -0.2px;
    }

    .ai-content .ai-desc {
        font-size: 13px;
        margin-bottom: 14px;
        line-height: 1.68;
    }

    .ai-list {
        margin-bottom: 18px;
    }

    .ai-list li {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 9px;
    }

    .ai-dot {
        width: 12px;
        height: 12px;
        margin-top: 3px;
    }

    .ai-btn {
        font-size: 13px;
        padding: 11px 20px;
        border-radius: 7px;
    }
}

/* =============================================
   RESPONSIVE — VERY SMALL MOBILE (≤380px)
============================================= */
@media (max-width: 380px) {
    .ai-card {
        border-radius: 14px;
    }

    .ai-img-panel {
        padding: 18px 14px 10px;
    }

    .ai-img-panel img {
        max-width: 200px;
    }

    .ai-content {
        padding: 18px 14px 22px;
    }

    .ai-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .ai-content .ai-desc {
        font-size: 12.5px;
    }

    .ai-list li {
        font-size: 12.5px;
    }

    .ai-dot {
        width: 11px;
        height: 11px;
    }

    .ai-btn {
        font-size: 12.5px;
        padding: 10px 18px;
        width: 100%;
        text-align: center;
    }
}


.support-hero {
    position: relative;
    min-height: 400px;
    background: url("../image/what-we-do/our-solutions.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 20px;
}

/* DARK OVERLAY */
.support-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* CONTENT CARD */
.support-hero .hero-card {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 20px;
    margin-left: 60px;
    max-width: 500px;
    color: #fff;
}

/* HEADING */
.support-hero .hero-card h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
}

/* TEXT */
.support-hero .hero-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #dcdcdc;
    margin-bottom: 28px;
}

/* BUTTON */
.support-hero .hero-btn {
    background: #0d6efd;
    color: #fff;
    padding: 10px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.support-hero .hero-btn:hover {
    background: #084298;
    color: #fff;
}

/* DOT DESIGN */
.support-hero .dot-pattern {
    position: absolute;
    right: 60px;
    bottom: 30px;
    width: 90px;
    height: 60px;
    background-image: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.5;
}

@media (max-width: 576px) {

    .support-hero {
        min-height: 420px;
        background-position: top left;
    }

    .support-hero .hero-card {
        margin: 15px;
        padding: 26px;
        max-width: 100%;
        margin-bottom: -100px;
    }

    .support-hero .hero-card h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    .support-hero .hero-card p {
        font-size: 14.5px;
    }

    .support-hero .hero-btn {
        padding: 10px 26px;
        font-size: 14px;
    }

}

@media (min-width: 577px) and (max-width: 768px) {

    .support-hero {
        min-height: 440px;
    }

    .support-hero .hero-card {
        margin-left: 30px;
        padding: 32px;
        max-width: 520px;
    }

    .support-hero .hero-card h1 {
        font-size: 30px;
    }

    .support-hero .hero-card p {
        font-size: 15px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .support-hero {
        min-height: 460px;
    }

    .support-hero .hero-card {
        margin-left: 40px;
        padding: 34px;
        max-width: 540px;
    }

    .support-hero .hero-card h1 {
        font-size: 34px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .support-hero {
        min-height: 480px;
    }

    .support-hero .hero-card {
        margin-left: 60px;
        max-width: 560px;
    }

    .support-hero .hero-card h1 {
        font-size: 36px;
    }
}


/* DPS CSS CODE */

.platform-hero {
    position: relative;
    width: 100%;
    min-height: 360px;
    background: url("../image/our-platform/woman-enjoying-vr-headset-1.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* LEFT BLUE SHADOW OVERLAY */
.platform-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(3, 37, 90, 0.95) 0%,
            rgba(3, 37, 90, 0.85) 35%,
            rgba(3, 37, 90, 0.5) 55%,
            rgba(3, 37, 90, 0.15) 70%,
            rgba(3, 37, 90, 0) 100%);
    z-index: 1;
}

/* CONTENT */
.platform-hero .hero-content {
    position: relative;
    z-index: 2;
    padding-left: 80px;
}

.platform-hero .hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.platform-hero .hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 576px) {

    .platform-hero {
        min-height: 280px;
    }

    .platform-hero .hero-content {
        padding: 20px 15px;
        text-align: left;
    }

    .platform-hero .hero-content h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .platform-hero .hero-content p {
        font-size: 15px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .platform-hero {
        min-height: 280px;
        background-position: top right;
    }

    .platform-hero .hero-content {
        padding: 20px 15px;
        text-align: left;
    }

    .platform-hero .hero-content h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .platform-hero .hero-content p {
        font-size: 15px;
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .platform-hero {
        min-height: 340px;
    }

    .platform-hero .hero-content {
        padding-left: 50px;
    }

    .platform-hero .hero-content h1 {
        font-size: 48px;
    }

    .platform-hero .hero-content p {
        font-size: 18px;
        max-width: 500px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .platform-hero {
        min-height: 360px;
    }

    .platform-hero .hero-content {
        padding-left: 70px;
    }

    .platform-hero .hero-content h1 {
        font-size: 58px;
    }

    .platform-hero .hero-content p {
        font-size: 19px;
    }
}

/* =============================================
SECTION
============================================= */
.peco-section {
    margin: 0 auto;
    padding-top: 60px;
}

/* =============================================
TOP INTRO — full-width heading row
============================================= */
.peco-section .peco-intro-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 36px;
}

.peco-section .peco-intro-left {
    flex: 1;
}

.peco-section .peco-intro-left .peco-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2456f6;
    margin-bottom: 10px;
}

.peco-section .peco-intro-left h2 {
    font-size: clamp(24px, 3.8vw, 44px);
    font-weight: 900;
    color: #0d0d0d;
    line-height: 1.1;
    letter-spacing: -0.6px;
    margin-bottom: 14px;
}

.peco-section .peco-intro-left h2 em {
    font-style: normal;
    color: #2456f6;
}

/* Paragraph below the heading */
.peco-section .peco-intro-para {
    font-size: clamp(13px, 1.4vw, 14.5px);
    color: #555;
    line-height: 1.78;
    margin: 0;
    max-width: 560px;
}

/* Right side: image only */
.peco-section .peco-intro-right {
    flex-shrink: 0;
}

/* Image tag */
.peco-section .peco-intro-img {
    width: 100%;
    height: 300px;
    object-fit: fill;
    border-radius: 18px;
    border: 2px solid #e4e9f5;
    box-shadow: 0 6px 20px rgba(36, 86, 246, 0.12);
    display: block;
}

/* =============================================
MAIN CONTENT — two panels side by side
(Bootstrap row g-3 handles layout)
============================================= */

/* ─────────────────────────────────────
LEFT PANEL — Integration Framework
───────────────────────────────────── */
.peco-section .peco-left {
    background: #0f1d4a;
    border-radius: 20px;
    border: 1px solid #e4e9f5;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(30, 60, 180, 0.06);
    display: flex;
    flex-direction: column;
}

/* Colored top banner strip */
.peco-section .peco-left-banner {
    background: #0f1d4a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding: 22px 28px 20px;
    position: relative;
    overflow: hidden;
}

/*.peco-section .peco-left-banner::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);*/
/*    background-size: 20px 20px;*/
/*}*/

/*.peco-section .peco-left-banner::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: -28px;*/
/*    right: -28px;*/
/*    width: 110px;*/
/*    height: 110px;*/
/*    border-radius: 50%;*/
/*    background: rgba(255, 255, 255, 0.08);*/
/*}*/

.peco-section .peco-left-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.peco-section .peco-banner-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.20);
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    flex-shrink: 0;
}

.peco-section .peco-left-banner h5 {
    font-size: clamp(14px, 1.7vw, 17px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.2px;
}

/* Feature items */
.peco-section .peco-left-body {
    padding: 8px 0 4px;
    flex: 1;
}

.peco-section .peco-feat-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.peco-section .peco-feat-row:last-child {
    border-bottom: none;
}

/*.peco-section .peco-feat-row:hover {*/
/*    background: #f7f9ff;*/
/*}*/

/* Left number column */
.peco-section .peco-feat-num {
    width: 52px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #c8d4f8;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* Icon column */
.peco-section .peco-feat-icon-col {
    width: 52px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.peco-section .peco-feat-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2456f6;
}

/* Text */
.peco-section .peco-feat-text {
    padding: 16px 20px 16px 12px;
    flex: 1;
}

.peco-section .peco-feat-text h6 {
    font-size: clamp(13px, 1.4vw, 14px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.2;
}

.peco-section .peco-feat-text p {
    font-size: clamp(11px, 1.1vw, 12px);
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
    line-height: 1.5;
}

/* ─────────────────────────────────────
RIGHT PANEL — Deployment Models
───────────────────────────────────── */
.peco-section .peco-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #0f1d4a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(15, 29, 74, 0.25);
}

/* Right panel header */
.peco-section .peco-right-header {
    padding: 22px 26px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    align-items: center;
    gap: 12px;
}

.peco-section .peco-right-header-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(36, 86, 246, 0.30);
    border: 1.5px solid rgba(36, 86, 246, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #6a9fff;
    flex-shrink: 0;
}

.peco-section .peco-right-header h5 {
    font-size: clamp(14px, 1.7vw, 17px);
    font-weight: 800;
    color: #fff;
    margin: 0;
}

/* Deployment item rows */
.peco-section .peco-deploy-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
    flex: 1;
}

.peco-section .peco-deploy-row:last-child {
    border-bottom: none;
}

/*.peco-deploy-row:hover {*/
/*    background: rgba(255, 255, 255, 0.05);*/
/*}*/

/* Step badge */
.peco-section .peco-step-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2456f6, #3a6fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}

.peco-section .peco-deploy-row-text h6 {
    font-size: clamp(12.5px, 1.35vw, 14px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.2;
}

.peco-section .peco-deploy-row-text p {
    font-size: clamp(10.5px, 1.05vw, 11.5px);
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
    line-height: 1.4;
}

/* Arrow at end */
.peco-section .peco-deploy-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.25);
    font-size: 14px;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.peco-section .peco-deploy-row:hover .peco-deploy-arrow {
    color: #2456f6;
    transform: translateX(3px);
}

/* =============================================
RESPONSIVE — LAPTOP (993px – 1199px)
============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .peco-section .peco-intro-img {
        width: 140px;
        height: 140px;
    }

    .peco-section .peco-feat-num {
        width: 44px;
    }

    .peco-section .peco-feat-icon-col {
        width: 44px;
    }
}

/* =============================================
RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
============================================= */
@media (max-width: 992px) {
    .peco-section {
        padding: 48px 16px;
    }

    .peco-section .peco-intro-row {
        gap: 24px;
        margin-bottom: 28px;
    }

    .peco-section .peco-intro-img {
        width: 120px;
        height: 120px;
        border-radius: 14px;
    }

    .peco-section .peco-feat-num {
        width: 40px;
        min-height: 58px;
    }

    .peco-section .peco-feat-icon-col {
        width: 44px;
        min-height: 58px;
    }

    .peco-section .peco-feat-text {
        padding: 13px 14px 13px 10px;
    }

    .peco-section .peco-deploy-row {
        padding: 15px 18px;
        gap: 12px;
    }
}

/* =============================================
RESPONSIVE — TABLET PORTRAIT + MOBILE (≤767px)
============================================= */
@media (max-width: 767px) {
    .peco-section {
        padding: 36px 14px;
    }

    .peco-section .peco-intro-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 24px;
    }

    .peco-section .peco-intro-right {
        align-self: center;
    }

    .peco-section .peco-intro-img {
        width: 100px;
        height: 100px;
        border-radius: 12px;
    }

    .peco-section .peco-intro-para {
        max-width: 100%;
    }

    .peco-section .peco-left {
        border-radius: 18px;
    }

    .peco-section .peco-right {
        border-radius: 18px;
    }

    .peco-section .peco-deploy-row {
        padding: 14px 18px;
    }
}

/* =============================================
RESPONSIVE — SMALL MOBILE (≤575px)
============================================= */
@media (max-width: 575px) {
    .peco-section {
        padding: 28px 12px;
    }

    .peco-section .peco-intro-img {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }

    .peco-section .peco-left-banner {
        padding: 16px 18px 14px;
    }

    .peco-section .peco-banner-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .peco-section .peco-feat-num {
        width: 36px;
        font-size: 10px;
    }

    .peco-section .peco-feat-icon-col {
        width: 40px;
    }

    .peco-section .peco-feat-ico {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .peco-section .peco-feat-text {
        padding: 12px 12px 12px 8px;
    }

    .peco-section .peco-right-header {
        padding: 16px 18px 14px;
    }

    .peco-section .peco-right-header-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .peco-section .peco-step-badge {
        width: 32px;
        height: 32px;
        font-size: 11px;
        border-radius: 8px;
    }

    .peco-section .peco-deploy-row {
        padding: 13px 16px;
        gap: 12px;
    }
}

/* =============================================
RESPONSIVE — VERY SMALL MOBILE (≤380px)
============================================= */
@media (max-width: 380px) {
    .peco-section .peco-intro-img {
        display: none;
    }

    .peco-section .peco-feat-num {
        display: none;
    }

    .peco-section .peco-left-banner h5 {
        font-size: 13.5px;
    }

    .peco-section .peco-right-header h5 {
        font-size: 13.5px;
    }

    .peco-section .peco-deploy-arrow {
        display: none;
    }
}


/* =============================================
           SECTION
        ============================================= */
.cta-platform-section {
    padding: 60px 20px;
}

/* =============================================
           OUTER WRAPPER
        ============================================= */
.cta-platform-wrapper {
    background: linear-gradient(135deg, #1a3ae0 0%, #2456f6 45%, #3a6fff 100%);
    border-radius: 24px;
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
}

/* Dot grid overlay */
.cta-platform-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    z-index: 0;
}

/* Soft radial glow top-right */
.cta-platform-wrapper::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    z-index: 0;
    box-shadow: -100px 80px 0 rgba(255, 255, 255, 0.04);
}

/* All content above overlays */
.cta-platform-wrapper>.row {
    position: relative;
    z-index: 1;
}

/* =============================================
           LEFT — TEXT BLOCK
        ============================================= */
.cta-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.cta-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 12px;
}

.cta-heading {
    font-size: clamp(22px, 3.2vw, 38px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: clamp(13px, 1.4vw, 15px);
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.75;
    margin: 0;
    max-width: 440px;
}

/* =============================================
           RIGHT — TWO BUTTON CARDS
        ============================================= */
.cta-cards-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    height: 100%;
}

/* Shared card style */
.cta-action-card {
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 16px;
    padding: 20px 22px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    cursor: pointer;
}

.cta-action-card:hover {
    transform: translateY(-3px);
}

/* ── Card 1 — Solid white (primary) ── */
.cta-card-primary {
    background: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.cta-card-primary:hover {
    background: #f0f4ff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.20);
}

.cta-card-primary .cta-card-icon {
    background: #2456f6;
    color: #ffffff;
}

.cta-card-primary .cta-card-title {
    color: #0d0d0d;
}

.cta-card-primary .cta-card-sub {
    color: #666;
}

.cta-card-primary .cta-card-arrow {
    color: #2456f6;
}

/* ── Card 2 — Frosted outline (secondary) ── */
.cta-card-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.cta-card-secondary:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-card-secondary .cta-card-icon {
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.cta-card-secondary .cta-card-title {
    color: #ffffff;
}

.cta-card-secondary .cta-card-sub {
    color: rgba(255, 255, 255, 0.65);
}

.cta-card-secondary .cta-card-arrow {
    color: rgba(255, 255, 255, 0.60);
}

/* Icon box */
.cta-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    flex-shrink: 0;
}

/* Text block */
.cta-card-text {
    flex: 1;
}

.cta-card-title {
    font-size: clamp(13.5px, 1.5vw, 15.5px);
    font-weight: 700;
    margin: 0 0 3px;
    line-height: 1.2;
}

.cta-card-sub {
    font-size: clamp(11.5px, 1.2vw, 12.5px);
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* Arrow icon */
.cta-card-arrow {
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.cta-action-card:hover .cta-card-arrow {
    transform: translateX(4px);
}

/* =============================================
           RESPONSIVE — LARGE DESKTOP (≥1400px)
        ============================================= */
@media (min-width: 1400px) {
    .cta-platform-section {
        padding: 72px 20px;
    }

    .cta-platform-wrapper {
        padding: 60px 56px;
        border-radius: 28px;
    }

    .cta-action-card {
        padding: 22px 26px;
        gap: 20px;
    }

    .cta-card-icon {
        width: 52px;
        height: 52px;
        font-size: 23px;
    }
}

/* =============================================
           RESPONSIVE — LAPTOP (993px – 1199px)
        ============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .cta-platform-wrapper {
        padding: 46px 40px;
        border-radius: 22px;
    }

    .cta-action-card {
        padding: 18px 20px;
        gap: 14px;
    }

    .cta-card-icon {
        width: 44px;
        height: 44px;
        font-size: 19px;
        border-radius: 10px;
    }
}

/* =============================================
           RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
        ============================================= */
@media (max-width: 992px) {
    .cta-platform-section {
        padding: 48px 16px;
    }

    .cta-platform-wrapper {
        padding: 40px 32px;
        border-radius: 20px;
    }

    .cta-text-block {
        margin-bottom: 28px;
    }

    .cta-desc {
        max-width: 100%;
    }

    .cta-action-card {
        padding: 18px 20px;
        gap: 14px;
        border-radius: 14px;
    }

    .cta-card-icon {
        width: 44px;
        height: 44px;
        font-size: 19px;
    }
}

/* =============================================
           RESPONSIVE — TABLET PORTRAIT (576px – 767px)
        ============================================= */
@media (max-width: 767px) {
    .cta-platform-section {
        padding: 36px 14px;
    }

    .cta-platform-wrapper {
        padding: 34px 24px;
        border-radius: 18px;
    }

    .cta-heading {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .cta-desc {
        font-size: 13.5px;
    }

    .cta-text-block {
        margin-bottom: 24px;
    }

    .cta-cards-block {
        gap: 12px;
    }

    .cta-action-card {
        padding: 16px 18px;
        gap: 13px;
        border-radius: 13px;
    }

    .cta-card-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 10px;
    }
}

/* =============================================
           RESPONSIVE — SMALL MOBILE (≤575px)
        ============================================= */
@media (max-width: 575px) {
    .cta-platform-section {
        padding: 28px 12px;
    }

    .cta-platform-wrapper {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .cta-heading {
        font-size: 22px;
        letter-spacing: -0.2px;
    }

    .cta-desc {
        font-size: 13px;
    }

    .cta-text-block {
        margin-bottom: 20px;
    }

    .cta-cards-block {
        gap: 10px;
    }

    .cta-action-card {
        padding: 14px 16px;
        gap: 12px;
        border-radius: 12px;
    }

    .cta-card-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 9px;
    }

    .cta-card-title {
        font-size: 13.5px;
    }

    .cta-card-sub {
        font-size: 11.5px;
    }
}

/* =============================================
           RESPONSIVE — VERY SMALL MOBILE (≤380px)
        ============================================= */
@media (max-width: 380px) {
    .cta-platform-wrapper {
        padding: 24px 14px;
    }

    .cta-heading {
        font-size: 20px;
    }

    .cta-card-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .cta-card-arrow {
        display: none;
    }
}


/* =============================================
           SECTION
        ============================================= */
.pp-section {
    margin: 0 auto;
}

/* =============================================
           SECTION HEADING BLOCK
        ============================================= */
.pp-section-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2456f6;
    margin-bottom: 8px;
}

.pp-section-heading {
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 900;
    color: #0d0d0d;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

.pp-section-heading em {
    font-style: normal;
    color: #2456f6;
}

/* =============================================
           SHARED CARD BASE
        ============================================= */
.pp-card {
    border-radius: 22px;
    overflow: hidden;
    width: 100%;
}

/* ── Card 1 — Blue gradient (AI-Powered) ── */
.pp-card-blue {
    background: linear-gradient(135deg, #1a3ae0 0%, #2456f6 50%, #3a6fff 100%);
    margin-bottom: 20px;
}

/* ── Card 2 — White (Advanced) ── */
.pp-card-white {
    background: #f4f7ff;
    border: 1px solid #e4e9f5;
    box-shadow: 0 4px 24px rgba(30, 60, 180, 0.07);
}

/* =============================================
           CARD HEADER BANNER
        ============================================= */
.pp-card-header {
    position: relative;
    padding: 26px 32px 22px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pp-card-white .pp-card-header {
    border-bottom: 1px solid #eef0f8;
    background: #f8f9ff;
}

/* Dot overlay on blue card header */
.pp-card-blue .pp-card-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    z-index: 0;
}

/* Decorative circle top-right */
.pp-card-blue .pp-card-header::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    z-index: 0;
}

.pp-card-header>* {
    position: relative;
    z-index: 1;
}

.pp-card-header-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pp-card-header-inner h4{
    color: #ffffff;
}

.pp-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.pp-card-blue .pp-header-icon {
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    color: #ffffff;
}

.pp-card-white .pp-header-icon {
    background: #dce8ff;
    color: #2456f6;
}

.pp-card-header h4 {
    font-size: clamp(16px, 2vw, 21px);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.pp-card-blue .pp-card-header h4 {
    color: #ffffff;
}

.pp-card-white .pp-card-header h4 {
    color: #ffffff;
}

/* =============================================
           CARD BODY
        ============================================= */
.pp-card-body {
    padding: 28px 32px 32px;
}

/* =============================================
           PLATFORM ITEMS GRID (4 cols on desktop)
        ============================================= */
.pp-items-grid {
    /* handled by Bootstrap row */
}

.pp-item {
    padding: 20px 18px 22px;
    border-radius: 14px;
    height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pp-card-blue .pp-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/*.pp-card-blue .pp-item:hover {*/
/*    background: rgba(255, 255, 255, 0.20);*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);*/
/*}*/

.pp-card-white .pp-item {
    background: #ffffff;
    border: 1px solid #dce6ff;
}

/*.pp-card-white .pp-item:hover {*/
/*    background: #e8f0ff;*/
/*    border-color: #2456f6;*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 10px 28px rgba(36, 86, 246, 0.10);*/
/*}*/

/* Item icon */
.pp-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.pp-card-blue .pp-item-icon {
    background: rgba(255, 255, 255, 0.20);
    color: #ffffff;
}

.pp-card-white .pp-item-icon {
    background: #2456f6;
    color: #ffffff;
}

/* Item title */
.pp-item-title {
    font-size: clamp(13px, 1.4vw, 14.5px);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.25;
}

.pp-card-blue .pp-item-title {
    color: #ffffff;
}

.pp-card-white .pp-item-title {
    color: #0d0d0d;
}

/* Divider line */
.pp-item-divider {
    height: 1px;
    margin-bottom: 10px;
    border: none;
}

.pp-card-blue .pp-item-divider {
    background: rgba(255, 255, 255, 0.18);
}

.pp-card-white .pp-item-divider {
    background: #dce6ff;
}

/* Item description */
.pp-item-desc {
    font-size: clamp(11.5px, 1.2vw, 12.5px);
    line-height: 1.65;
    margin: 0;
}

.pp-card-blue .pp-item-desc {
    color: rgba(255, 255, 255, 0.75);
}

.pp-card-white .pp-item-desc {
    color: #666;
}

/* =============================================
           CARD HEADER IMAGE (right side)
        ============================================= */
.pp-header-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
    margin-left: auto;
}

.pp-card-blue .pp-header-img {
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);
}

.pp-card-white .pp-header-img {
    border: 2px solid #dce6ff;
    box-shadow: 0 6px 20px rgba(36, 86, 246, 0.12);
}

/* =============================================
           RESPONSIVE — LARGE DESKTOP (≥1400px)
        ============================================= */
@media (min-width: 1400px) {
    .pp-section {
        padding: 72px 20px;
    }

    .pp-card-header {
        padding: 30px 38px 26px;
    }

    .pp-card-body {
        padding: 32px 38px 36px;
    }

    .pp-item {
        padding: 22px 20px 24px;
    }

    .pp-header-icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .pp-header-img {
        width: 130px;
        height: 130px;
        border-radius: 16px;
    }
}

/* =============================================
           RESPONSIVE — LAPTOP (993px – 1199px)
        ============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .pp-card-header {
        padding: 22px 28px 18px;
    }

    .pp-card-body {
        padding: 24px 28px 28px;
    }

    .pp-item {
        padding: 16px 14px 18px;
    }

    .pp-header-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 10px;
    }

    .pp-header-img {
        width: 95px;
        height: 95px;
        border-radius: 12px;
    }
}

/* =============================================
           RESPONSIVE — TABLET LANDSCAPE (768px – 992px)
           2 cols per row for items
        ============================================= */
@media (max-width: 992px) {
    .pp-section {
        padding: 48px 16px;
    }

    .pp-card {
        border-radius: 18px;
    }

    .pp-card-blue {
        margin-bottom: 16px;
    }

    .pp-card-header {
        padding: 20px 24px 18px;
    }

    .pp-card-body {
        padding: 22px 24px 26px;
    }

    .pp-item {
        padding: 16px 14px 18px;
        border-radius: 12px;
    }

    .pp-header-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 10px;
    }

    .pp-header-img {
        width: 86px;
        height: 86px;
        border-radius: 11px;
    }

    .pp-section-heading {
        margin-bottom: 30px;
    }
}

/* =============================================
           RESPONSIVE — TABLET PORTRAIT (576px – 767px)
        ============================================= */
@media (max-width: 767px) {
    .pp-section {
        padding: 36px 14px;
    }

    .pp-card {
        border-radius: 16px;
    }

    .pp-card-header {
        padding: 18px 20px 16px;
    }

    .pp-card-body {
        padding: 18px 20px 22px;
    }

    .pp-item {
        padding: 14px 13px 16px;
        border-radius: 11px;
    }

    .pp-item-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
        margin-bottom: 11px;
    }

    .pp-header-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .pp-header-img {
        width: 72px;
        height: 72px;
        border-radius: 10px;
    }
}

/* =============================================
           RESPONSIVE — SMALL MOBILE (≤575px)
        ============================================= */
@media (max-width: 575px) {
    .pp-section {
        padding: 28px 12px;
    }

    .pp-card {
        border-radius: 14px;
    }

    .pp-card-blue {
        margin-bottom: 14px;
    }

    .pp-card-header {
        padding: 16px 16px 14px;
    }

    .pp-card-body {
        padding: 16px 16px 18px;
    }

    .pp-card-header-inner {
        gap: 10px;
    }

    .pp-header-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
        border-radius: 9px;
    }

    .pp-header-img {
        width: 58px;
        height: 58px;
        border-radius: 9px;
    }

    .pp-item {
        padding: 13px 12px 14px;
        border-radius: 10px;
    }

    .pp-item-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 10px;
        border-radius: 7px;
    }

    .pp-item-title {
        font-size: 13px;
    }

    .pp-item-desc {
        font-size: 11.5px;
    }

    .pp-section-heading {
        font-size: 22px;
        margin-bottom: 22px;
    }
}

/* =============================================
           RESPONSIVE — VERY SMALL MOBILE (≤380px)
        ============================================= */
@media (max-width: 380px) {
    .pp-card-header {
        padding: 14px 14px 12px;
    }

    .pp-card-body {
        padding: 14px 14px 16px;
    }

    .pp-header-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .pp-item {
        padding: 11px 10px 13px;
    }

    .pp-item-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .pp-section-heading {
        font-size: 20px;
    }
}


.client-cards-section {
        padding: 40px 0;
        background: #f4f8fd;
    }
    
    .client-cards-section h4 {
        font-size: clamp(20px, 3vw, 30px);
        font-weight: 800;
        color: #0d0d0d;
        margin-bottom: 14px;
        letter-spacing: -0.3px;
    }

    .cc-card {
        background: #ffffff;
        border-radius: 14px;
        border: 0.5px solid #d0dff0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    /*.cc-card:hover {*/
    /*    transform: translateY(-4px);*/
    /*    box-shadow: 0 8px 28px rgba(24, 95, 165, 0.10);*/
    /*}*/

    .cc-img-wrap {
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-bottom: 0.5px solid #d0dff0;
    }

    .cc-img-wrap img {
        width: 100%;
        height: 200px;
        object-fit: contain;
        display: block;
        transition: transform 0.3s ease;
    }

    /*.cc-card:hover .cc-img-wrap img {*/
    /*    transform: scale(1.03);*/
    /*}*/

    .cc-body {
        padding: 22px 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .cc-badge {
        display: inline-block;
        background: #E6F1FB;
        color: #0C447C;
        font-size: 11px;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 20px;
        letter-spacing: 0.04em;
        width: fit-content;
    }

    .cc-title {
        font-size: 20px;
        font-weight: 700;
        color: #0C447C;
        margin: 0;
        line-height: 1.3;
    }

    .cc-desc {
        font-size: 14px;
        color: #555;
        line-height: 1.7;
        margin: 0;
    }

    .cc-divider {
        height: 0.5px;
        background: #d0dff0;
        margin: 2px 0;
    }

    .cc-engagement-label {
        font-size: 11px;
        font-weight: 700;
        color: #185FA5;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        margin: 0;
    }

    .cc-engagement-text {
        font-size: 14px;
        color: #555;
        line-height: 1.7;
        margin: 0;
    }

    .cc-tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 4px;
    }

    .cc-tag {
        background: #E6F1FB;
        color: #185FA5;
        font-size: 12px;
        font-weight: 500;
        padding: 5px 12px;
        border-radius: 6px;
    }