   .section-hero-100 {
    width: 100%;
    padding: 20px 6% 40px 6%;
    display: flex;
    align-items: center;
    background-image: url(./images/banner1-4.jpg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.container-wrap-101 {
    width: 100%;
    max-width: 660px; 
    margin: 0; 
}

/* Header Component Text Typography */
.block-header-200 .title-main-201 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

/* Exact clear accent neon blue from graphic */
.block-header-200 .text-highlight-202 {
    color: #1c73fe; 
}

/* Accurate dark silver gray paragraph text fill */
.block-header-200 .text-desc-203 {
    font-size:18px;
    color: white; 
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 25px;
}

.block-header-200 .line-divider-204 {
    width: 42px;
    height: 3px;
    background-color: #1c73fe;
    margin-bottom: 55px;
    border-radius: 2px;
}

/* Feature Grid Columns Setup */
.grid-features-300 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 35px;
}

/* Card Block Elements and Motion Layouts */
.card-item-301, .card-item-302, .card-item-303, .card-item-304 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Vertical separator lines matching screenshot between grid blocks */
.card-item-302::before, .card-item-303::before, .card-item-304::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, rgb(255 255 255 / 55%) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
}

.card-item-301:hover, .card-item-302:hover, .card-item-303:hover, .card-item-304:hover {
    transform: translateY(-6px);
}

/* Transparent Circular Icon Configurations */
.box-icon-312, .box-icon-314 {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    /* background-color: rgba(255, 255, 255, 0.02); */
    border: 0px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #a0c8c380 0%, #006465 100%);
    
    /* box-shadow: 0 0 15px rgba(129, 140, 248, 0.4); */
}


/* Filled Blue-Indigo Circular Icon Configurations */
.box-icon-311, .box-icon-313 {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    /* background-color: rgba(33, 10, 175, 0.46); */
    border: 0px solid rgba(129, 140, 248, 0.25);
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(90deg, #123774 0%, #0481E6 100%)!important;

    /*border-color: #818cf8;*/
    /* box-shadow: 0 0 15px rgba(129, 140, 248, 0.4); */
}
.box-icon-313{
    background: linear-gradient(135deg, #924ed1 0%, #440077 100%)!important;
}
.box-icon-311 svg, .box-icon-312 svg, .box-icon-313 svg, .box-icon-314 svg {
    width: 300px;
    height: 30px;
}

/* Specific UI Element Colors matching the graphics */
.box-icon-311 svg { color: white    ; } /* Icon 1 Indigo */
.box-icon-312 svg { color: white; } /* Icon 2 Teal */
.box-icon-313 svg { color: white; } /* Icon 3 Vibrant Purple */
.box-icon-314 svg { color: white; } /* Icon 4 Deep Mint Teal */

/* Interactive States Mapped to Color Grouping */
.card-item-301:hover .box-icon-311,
.card-item-303:hover .box-icon-313 {
    background-color: rgba(129, 140, 248, 0.25);
    border-color: #818cf8;
    box-shadow: 0 0 15px rgba(129, 140, 248, 0.4);
}

.card-item-302:hover .box-icon-312,
.card-item-304:hover .box-icon-314 {
    background-color: rgba(45, 212, 191, 0.12);
    border-color: #2dd4bf;
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.4);
}

/* Item Heading and Content Text */
.title-card-321, .title-card-322, .title-card-323, .title-card-324 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.text-card-331, .text-card-332, .text-card-333, .text-card-334 {
        font-size: 0.82rem;
    color: white;
    line-height: 1.45;
    text-align: center;
    margin-top: 0;
}

/* Call To Action Buttons Panel */
.block-action-500 {
    display: inline-block;
}

.block-action-500 .btn-action-501 {
    display: inline-flex;
    align-items: center;
    background-color: #1c73fe; 
    color: #ffffff;
    text-decoration: none;
    padding: 15px 32px;
    font-weight: 600;
    font-size: 0.98rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.block-action-500 .btn-arrow-502 {
    margin-left: 12px;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

/* Button Animations Hover States */
.block-action-500 .btn-action-501:hover {
    background-color: #125cd4;
    box-shadow: 0 4px 25px rgba(28, 115, 254, 0.45);
}

.block-action-500 .btn-action-501:hover .btn-arrow-502 {
    transform: translateX(5px);
}

/* Viewport Adjustments for Tablet & Mobile Layouts */
@media (max-width: 991px) {
    .block-header-200 .title-main-201 {
        font-size: 2.8rem;
    }
    .grid-features-300 {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 24px;
    }
    .card-item-302::before, .card-item-303::before, .card-item-304::before {
        display: none; /* Hide vertical separator borders on stacked layouts */
    }
}

@media (max-width: 480px) {
    .section-hero-100 {
        padding: 40px 4%;
    }
    .grid-features-300 {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .block-header-200 .title-main-201 {
        font-size: 2.2rem;
    }
    .block-action-500 .btn-action-501 {
        width: 100%;
        justify-content: center;
    }
}




/* =========================================
   WHITE BACKGROUND PREMIUM SECTION
========================================= */

.ai-seo-sec-910 {
    width: 100%;
    padding: 20px 20px 50px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    max-width: 1300px;
    margin: 0 auto;
}

/* soft premium glow */
.ai-seo-sec-910::before {
    /* content: ""; */
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    /* background: rgba(4, 75, 159, 0.05); */
    filter: blur(120px);
    top: -140px;
    right: -120px;
}

.ai-seo-sec-910::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    /* background: rgba(14, 44, 79, 0.04); */
    filter: blur(100px);
    bottom: -100px;
    left: -80px;
}

/* ========================= */

.ai-seo-head-910 {
    width: 100%;
    max-width: 850px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ai-seo-tag-910 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;

    background: linear-gradient(
        90deg,
        rgb(0, 40, 87) 0%,
        rgb(5, 72, 151) 100%
    );

    margin-bottom: 22px;
}

.ai-seo-title-910 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: black;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.ai-seo-desc-910 {
    font-size: 18px;
    line-height: 1.8;
    color: #5f6b7a;
    max-width: 760px;
    margin: auto;
}

/* =========================
   GRID
========================= */

.ai-seo-grid-910 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

/* =========================
   PREMIUM CARD
========================= */

.ai-seo-card-910 {
    position: relative;

    padding: 34px 30px;

    border-radius: 28px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,1) 0%,
            rgba(248,250,255,1) 100%
        );

    border: 1px solid rgb(4 75 159 / 15%);

    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.04),
        0 18px 40px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;

    backdrop-filter: blur(10px);
}

/* soft premium glow */
.ai-seo-card-910::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(4, 75, 159, 0.10) 0%,
            transparent 70%
        );

    top: -120px;
    right: -120px;

    opacity: 0;

    transition: 0.45s ease;
}

.ai-seo-card-910:hover::before {
    opacity: 1;
}

.ai-seo-card-910:hover {
    transform:
        translateY(-12px);

    border-color: rgba(4, 75, 159, 0.14);

    box-shadow:
        0 18px 45px rgba(4, 75, 159, 0.08),
        0 28px 70px rgba(15, 23, 42, 0.10);
}

/* =========================
   ICON
========================= */

.ai-seo-icon-910 {
    width: 72px;
    height: 72px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgb(0, 40, 87) 0%,
            rgb(5, 72, 151) 100%
        );

    margin-bottom: 24px;

    position: relative;

    box-shadow:
        0 14px 32px rgba(4, 75, 159, 0.18);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* glossy effect */
.ai-seo-icon-910::before {
    content: "";

    position: absolute;
    inset: 1px;

    border-radius: inherit;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.20),
            rgba(255,255,255,0)
        );
}

.ai-seo-icon-910 i {
    font-size: 28px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.ai-seo-card-910:hover .ai-seo-icon-910 {
    transform:
        rotate(-5deg)
        scale(1.06);

    box-shadow:
        0 20px 40px rgba(4, 75, 159, 0.28);
}

/* =========================
   TEXT
========================= */

.ai-seo-card-910 h3 {
    font-size: 26px;
    /* line-height: 1.3; */
    font-weight: 700;
    color: #0e2c4f;
    margin-bottom: 5px;
    letter-spacing: -0.3px;
    transition: 0.35s 
ease;
}

.ai-seo-card-910:hover h3 {
    color: #044b9f;
}

.ai-seo-card-910 p {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6b7a;
    margin: 0;

    transition: 0.35s ease;
}

.ai-seo-card-910:hover p {
    color: #3f4c5d;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

    .ai-seo-grid-910 {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .ai-seo-sec-910 {
        padding: 80px 5%;
    }

    .ai-seo-grid-910 {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 55px;
    }

    .ai-seo-card-910 {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .ai-seo-icon-910 {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .ai-seo-icon-910 i {
        font-size: 24px;
    }

    .ai-seo-card-910 h3 {
        font-size: 23px;
    }

    .ai-seo-card-910 p {
        font-size: 15px;
        line-height: 1.8;
    }

    .ai-seo-desc-910 {
        font-size: 16px;
        line-height: 1.8;
    }

}

@media (max-width: 480px) {

    .ai-seo-title-910 {
        font-size: 32px;
    }

    .ai-seo-card-910 {
        padding: 28px 22px;
    }

    .ai-seo-card-910 h3 {
        font-size: 21px;
    }

}











/* /////////////////////////////////////   */

.xv9-seo-bx71{
    padding:20px 20px 40px;
    background:#ffffff;
    font-family:'Instrument Sans',sans-serif;
    position:relative;
    overflow:hidden;
}

/* =========================
   BACKGROUND GLOW
========================= */

.xv9-seo-bx71::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(4,75,159,0.05);
    filter:blur(120px);
    top:-180px;
    right:-140px;
}

.xv9-seo-bx71::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(14,44,79,0.04);
    filter:blur(100px);
    bottom:-120px;
    left:-100px;
}

/* =========================
   CONTAINER
========================= */

.xv9-seo-bx71__wrap{
    max-width:1200px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

/* =========================
   HEADER
========================= */

.xv9-seo-bx71__top{
    text-align:center;
    margin-bottom:50px;
}

.xv9-seo-bx71__heading{
    font-size:42px;
    line-height:1.15;
    font-weight:600;
    color:#0f172a;
    margin-bottom:22px;
    letter-spacing:-1px;
}

.xv9-seo-bx71__subtext{
    font-size:18px;
    color:#64748b;
    max-width:760px;
    margin:0 auto;
    line-height:1.8;
}

/* =========================
   GRID
========================= */

.xv9-seo-bx71__layout{
    display:flex;
    justify-content:center;
    gap:30px;
    align-items:stretch;
    position:relative;
}

/* =========================
   VS CENTER
========================= */

.xv9-seo-bx71__layout::before{
    content:"VS";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:78px;
    height:78px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:600;
    letter-spacing:1px;
    color:#044b9f;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,1) 0%,
        rgba(245,248,255,1) 100%
    );

    border:1px solid rgba(4,75,159,0.10);

    box-shadow:
        0 10px 35px rgba(15,23,42,0.08),
        0 0 0 10px rgba(4,75,159,0.03);

    z-index:10;
    backdrop-filter:blur(10px);
}

.xv9-seo-bx71__layout::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:120px;
    height:120px;
    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(4,75,159,0.10) 0%,
        transparent 72%
    );

    animation:xv9GlowPulse 3s ease-in-out infinite;
    z-index:1;
}

/* =========================
   COLUMN
========================= */

.xv9-seo-bx71__column{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:22px;

    opacity:0;
    transform:translateY(40px);
    animation:xv9FadeUp .9s ease forwards;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,1) 0%,
        rgba(248,250,255,1) 100%
    );

    border:1px solid rgba(4,75,159,0.08);

    border-radius:30px;
    padding:30px;

    box-shadow:
        0 8px 30px rgba(15,23,42,0.04),
        0 24px 60px rgba(15,23,42,0.06);

    position:relative;
    overflow:hidden;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

.xv9-seo-bx71__column--dark{
    animation-delay:.2s;
}

.xv9-seo-bx71__column--light{
    animation-delay:.4s;
}

/* glow */

.xv9-seo-bx71__column::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(4,75,159,0.12) 0%,
        transparent 72%
    );

    top:-150px;
    right:-130px;

    opacity:0;
    transition:.45s ease;
}

.xv9-seo-bx71__column:hover{
    transform:translateY(-10px);

    border-color:rgba(4,75,159,0.14);

    box-shadow:
        0 18px 40px rgba(4,75,159,0.08),
        0 35px 80px rgba(15,23,42,0.10);
}

.xv9-seo-bx71__column:hover::before{
    opacity:1;
}

/* =========================
   CARD
========================= */

.xv9-seo-bx71__card{
    padding:23px 20px 23px 24px;

    border-radius:20px;
    position:relative;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.96) 0%,
        rgba(249,251,255,0.96) 100%
    );

    border:1px solid rgba(4,75,159,0.08);

    box-shadow:
        0 8px 24px rgba(15,23,42,0.03);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

    overflow:hidden;
}

/* side line */

.xv9-seo-bx71__card::before{
    content:"";
    position:absolute;
    top:18px;
    left:0;

    width:4px;
    height:calc(100% - 36px);

    border-radius:20px;

    background:linear-gradient(
        180deg,
        #044b9f 0%,
        #0e2c4f 100%
    );

    opacity:.9;
    transition:.35s ease;
}

/* glow */

.xv9-seo-bx71__card::after{
    content:"";
    position:absolute;

    width:160px;
    height:160px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(4,75,159,0.10) 0%,
        transparent 72%
    );

    top:-90px;
    right:-90px;

    opacity:0;
    transition:.35s ease;
}

.xv9-seo-bx71__card:hover{
    transform:translateY(-5px);

    background:#ffffff;

    border-color:rgba(4,75,159,0.12);

    box-shadow:
        0 14px 32px rgba(15,23,42,0.07);
}

.xv9-seo-bx71__card:hover::before{
    height:calc(100% - 20px);
    top:10px;
}

.xv9-seo-bx71__card:hover::after{
    opacity:1;
}

/* =========================
   TEXT
========================= */

.xv9-seo-bx71__title{
    font-size:20px;
    font-weight:600;
    color:#044b9f;
    margin:0 0 10px 0;
    transition:.3s ease;
}

.xv9-seo-bx71__card:hover .xv9-seo-bx71__title{
    color:#0e2c4f;
}

.xv9-seo-bx71__text{
    font-size:16px;
    color:#5f6b7a;
    line-height:1.8;
    margin:0;
    transition:.3s ease;
}

.xv9-seo-bx71__card:hover .xv9-seo-bx71__text{
    color:#334155;
}

/* =========================
   ANIMATION
========================= */

@keyframes xv9FadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes xv9GlowPulse{

    0%{
        transform:translate(-50%,-50%) scale(.95);
        opacity:.5;
    }

    50%{
        transform:translate(-50%,-50%) scale(1.08);
        opacity:1;
    }

    100%{
        transform:translate(-50%,-50%) scale(.95);
        opacity:.5;
    }

}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:991px){

    .xv9-seo-bx71__layout{
        gap:22px;
    }

    .xv9-seo-bx71__column{
        padding:24px;
        border-radius:24px;
    }

}

@media (max-width:800px){

    .xv9-seo-bx71{
        padding:50px 20px 70px;
    }

    .xv9-seo-bx71__layout{
        flex-direction:column;
        gap:28px;
    }

    .xv9-seo-bx71__layout::before,
    .xv9-seo-bx71__layout::after{
        display:none;
    }

    .xv9-seo-bx71__column{
        width:100%;
        padding:24px;
    }

    .xv9-seo-bx71__top{
        margin-bottom:40px;
    }

    .xv9-seo-bx71__heading{
        font-size:32px;
    }

    .xv9-seo-bx71__subtext{
        font-size:16px;
        line-height:1.8;
    }

}

@media (max-width:480px){

    .xv9-seo-bx71__column{
        padding:20px;
        border-radius:22px;
    }

    .xv9-seo-bx71__card{
        padding:18px 16px 18px 20px;
        border-radius:16px;
    }

    .xv9-seo-bx71__title{
        font-size:18px;
    }

    .xv9-seo-bx71__text{
        font-size:15px;
        line-height:1.75;
    }

}























/* ///////////////////////////////////////// */



/* =========================
   SECTION
========================= */

.tzp9-services-section-401 {
    width: 100%;
    padding: 40px 20px 50px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Instrument Sans', sans-serif;
    max-width: 1300px;
    margin: 0 auto;
}

/* =========================
   CONTAINER
========================= */

.tzp9-container-401 {
    width: 100%;
    max-width: 1450px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* =========================
   HEADING
========================= */

.tzp9-heading-wrap-401 {
    text-align: center;
    margin-bottom: 70px;
}

.tzp9-mini-badge-401 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.08);
    color: #111827;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tzp9-main-heading-401 {
    font-size: 42px;
    line-height: 1.08;
    font-weight: 600;
    color: #0f172a;
    /* letter-spacing: -2px; */
    margin: 0;
}

/* =========================
   GRID
========================= */

.tzp9-grid-wrapper-401 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* =========================
   CARD
========================= */

.tzp9-card-item-401 {
    position: relative;
    padding: 29px 32px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: all 0.45s ease;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* TOP GLOW */

.tzp9-card-item-401::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(37, 99, 235, 0.12) 0%,
            transparent 70%);
    transition: all 0.5s ease;
}

/* BORDER GLOW */

.tzp9-card-item-401::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(37, 99, 235, 0.18),
            rgba(99, 102, 241, 0.08),
            transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

/* HOVER */

.tzp9-card-item-401:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.08),
        0 10px 25px rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.18);
}

.tzp9-card-item-401:hover::before {
    transform: scale(1.2);
    opacity: 1;
}

/* =========================
   NUMBER
========================= */

.tzp9-card-number-401 {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    /* margin-bottom: 30px; */
    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.25);
}

/* =========================
   TITLE
========================= */

.tzp9-card-title-401 {
    font-size: 1.55rem;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

/* =========================
   DESCRIPTION
========================= */

.tzp9-card-description-401 {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    font-weight: 400;
    margin: 0;
}

/* =========================
   LAPTOP
========================= */

@media (max-width: 1200px) {

    .tzp9-grid-wrapper-401 {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .tzp9-services-section-401 {
        padding: 85px 5%;
    }

    .tzp9-heading-wrap-401 {
        margin-bottom: 50px;
    }

    .tzp9-grid-wrapper-401 {
        gap: 22px;
    }

    .tzp9-card-item-401 {
        padding: 32px 26px;
        min-height: auto;
        border-radius: 24px;
    }

    .tzp9-card-title-401 {
        font-size: 1.35rem;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 580px) {

    .tzp9-grid-wrapper-401 {
        grid-template-columns: 1fr;
    }

    .tzp9-main-heading-401 {
        letter-spacing: -1px;
    }

    .tzp9-card-item-401 {
        padding: 28px 22px;
    }

    .tzp9-card-number-401 {
        width: 52px;
        height: 52px;
        font-size: 16px;
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .tzp9-card-description-401 {
        font-size: 0.96rem;
        line-height: 1.7;
    }

}








/* //////////////////////////////// */


/* =========================================
   SECTION
========================================= */

.zr9-vortex-shell {
    background-color: #032a6d;
    padding: 50px 20px 80px;
    font-family: 'Instrument Sans', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.zr9-vortex-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.zr9-vortex-header {
    margin-bottom: 50px;
    text-align: center;
}

.zr9-vortex-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
    line-height: 1.2;
}

.zr9-vortex-subtitle {
    font-size: 18px;
    color: #FFFFFFD9;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   GRID
========================================= */

.zr9-vortex-grid {
    display: grid;
    grid-template-columns: repeat( 1fr);
    gap: 24px;
}

/* =========================================
   CARD
========================================= */

.zr9-vortex-card {
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
}

.zr9-vortex-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

/* =========================================
   LEFT BORDER
========================================= */

.zr9-vortex-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background-color: #4db3ff;
}

/* Alternate colors */

.zr9-vortex-card:nth-child(4n+3)::before,
.zr9-vortex-card:nth-child(4n+4)::before {
    background-color: #ffffff;
}

/* =========================================
   NUMBER
========================================= */

.zr9-vortex-number {
    font-size: 1.8rem;
    font-weight: 700;
    opacity: 0.85;
    min-width: 40px;
    line-height: 1;
}

/* =========================================
   CONTENT
========================================= */

.zr9-vortex-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.4;
    font-family: 'Instrument Sans', sans-serif;
}

.zr9-vortex-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    color: #FFFFFFBA;
    font-family: 'Instrument Sans', sans-serif;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .zr9-vortex-grid {
        grid-template-columns: 1fr;
    }

    .zr9-vortex-title {
        font-size: 2rem;
    }

    .zr9-vortex-card::before {
        background-color: #4db3ff;
    }

    .zr9-vortex-card:nth-child(even)::before {
        background-color: #ffffff;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .zr9-vortex-shell {
        padding: 40px 16px 70px;
    }

    .zr9-vortex-card {
        padding: 20px;
        gap: 16px;
    }

    .zr9-vortex-content h3 {
        font-size: 18px;
    }

    .zr9-vortex-content p {
        font-size: 15px;
    }

}