﻿/* Icon circle - centered, white bg, shifted downward */
.icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -0px auto 0 auto; /* key: negative top margin shifts circle half downward */
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    z-index: 2;
    position: relative;    margin-bottom:-13%;


}

    .icon-wrapper i {
        font-size: 2.8rem; /* slightly smaller than before for better fit */
        color: #333; /* dark color so it stands out on white */
    }

/* Make sure description starts right after the overlapping circle */
.benefit-dis {
    padding: 60px 20px 24px 20px; /* increased top padding to accommodate the overlapping circle */
    flex-grow: 1;
    position: relative;
    width: 100% !important;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.15), inset 0 0 0 2px rgba(13, 110, 253, 0.08);

}
.benefit-dis {
    padding: 60px 20px 24px 20px;
    flex-grow: 1;
    position: relative;
    width: 100% !important;
    z-index: 1;
    /* Strong highlighted blue shadow + border */
    box-shadow: 0 12px 40px rgba(13, 110, 253, 0.20);
    /* Optional: smooth transition */
    transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: transparent; /* ← No white background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 0 auto; /* keeps the downward shift */
    box-shadow: 0 6px 16px rgba(0,0,0,0.15); /* optional shadow for depth */
    z-index: 2;
    position: relative;
    overflow: hidden; 
    margin-bottom:-14%;
}

    .icon-wrapper img {
        width: 100%; /* fill the entire circle */
        height: 100%;
        object-fit: cover; /* fill + crop if needed (better for most photos) */
        /* or use: object-fit: contain;    if you want full image visible without cropping */
        border-radius: 50%; /* make image circular */
        display: block;
        padding: 0; /* remove padding so no extra space */
        background: transparent; /* no fallback white */
        box-shadow: none; /* remove extra shadow if not needed */
        border: none; /* no border around image */
    }
.title {
    text-align: center !important; /* force center even if parent interferes */
    color: #18578e; /* strong blue */
    font-size: 1.5rem; /* prominent size */
    font-weight: 800; /* extra bold for impact */
    letter-spacing: -0.5px; /* modern tight spacing */
    line-height: 1.15;
    margin: 1.5rem auto 2.5rem auto; /* good top/bottom breathing room */
    padding-bottom: 0.8rem; /* space for underline */
    position: relative;
    display: block; /* ensures pseudo-element centers correctly */
    max-width: 90%; /* prevents overflow on small screens */
}

   
/* Mobile adjustment */
@media (max-width: 768px) {
    .title {
        font-size: 2.3rem;
        margin: 1.2rem auto 2rem auto;
    }

        .title::after {
            width: 80px;
        }
}
.desc-text {
    color: #18578e; /* force blue on all */
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.02rem;
}


/* Mobile / tablet adjustments */
@media (max-width: 991px) { /* covers tablets + most mobile */
    .icon-wrapper {
        margin: -30px auto 25px auto; /* much smaller negative top margin */
        width: 90px;
        height: 90px;
    }

    .benefit-dis {
        padding-top: 40px; /* less top padding needed */
    }

    /* Remove or reduce extra mt-5 on mobile */
    .mt-5 {
        margin-top: 1.5rem !important; /* override Bootstrap mt-5 to smaller value */
    }
    .desc-text{
        font-size:1.6rem !important;
    }
}

@media (max-width: 576px) { /* very small phones */
    .icon-wrapper {
        margin: 22px auto 30px auto;
        width: 90px;
        height: 90px;
    }

    .benefit-dis {
        padding-top: 35px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .desc-text {
        font-size: 0.95rem; /* slightly smaller text on tiny screens */
    }
}
/* Only for screens between 1759px and 2908px wide */
@media (min-width: 1759px) and (max-width: 2908px) {
    .icon-wrapper {
        margin-top: -38px !important; /* adjust this value (try -30px to -45px) */
        /* or try fixed pixel value instead of percentage */
        margin-bottom: -36px !important; /* positive value prevents excessive downward push */
        /* Optional: slightly smaller icon in this range if needed */
        width: 85px;
        height: 85px;
    }

    /* Make sure the description area has enough space */
    .benefit-dis {
        padding-top: 48px !important; /* adjust 45–55px range */
    }
}
.split-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.image-side {
    padding: 0;
}

.text-block {
    padding: 3.5rem 0.3rem;
}

.title-blue {
    color: #083a79;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.lead-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #444;
}

@media (max-width: 991px) {
    .split-card {
        margin: 1.5rem;
    }

    .text-block {
        padding: 2.5rem 1.8rem;
    }
}
/* Base state - elements start off-screen */
.animate-from-left,
.animate-from-right {
    opacity: 0; /* start invisible */
    will-change: transform, opacity; /* performance hint */
}

/* Image slides in from left */
.animate-from-left {
    transform: translateX(-80%); /* start shifted left (adjust % or use -100vw for full off-screen) */
    animation: slideInFromLeft 1.2s ease-out forwards;
}

/* Text slides in from right */
.animate-from-right {
    transform: translateX(80%); /* start shifted right */
    animation: slideInFromRight 1.2s ease-out forwards;
    animation-delay: 0.3s; /* slight delay so they don't move at exactly same time */
}

/* Keyframes */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-80%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(80%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Optional: Reduce motion for users who prefer less animation */
@media (prefers-reduced-motion: reduce) {
    .animate-from-left,
    .animate-from-right {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Optional: Make animation trigger only once (already done with 'forwards') */
/* If you want it on scroll → you would need JS or IntersectionObserver, but per request it's CSS-only on load */
/* Base state */
.animate-from-left,
.animate-from-right {
    opacity: 0;
    will-change: transform, opacity;
}

/* Image slides in from left */
.animate-from-left {
    transform: translateX(-100%);
    animation: slideInFromLeft 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* Text slides in from right */
.animate-from-right {
    transform: translateX(100%);
    animation: slideInFromRight 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: 0.35s;
}

/* Keyframes */
@keyframes slideInFromLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .animate-from-left,
    .animate-from-right {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Prevent clipping (keep this if animation was previously not visible) */
.split-card,
.split-card > .row,
.container-fluid {
    overflow: visible !important;
}
/* Hidden by default */
.animate-from-left,
.animate-from-right {
    opacity: 0;
    visibility: hidden;
    transition: transform 0.9s ease, opacity 0.9s ease;
}

/* Start positions */
.animate-from-left {
    transform: translateX(-100px);
}

.animate-from-right {
    transform: translateX(100px);
}

    /* When visible */
    .animate-from-left.show,
    .animate-from-right.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }



.wpkg-comparison-grid {
    --wpkg-gap: 1.5rem;
}

.wpkg-feature-card {
    border: 1px solid #d4d9e1;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    max-width: 641px; /* ← gives noticeably more comfortable width */
    margin-left: auto;
    margin-right: auto;
}

    .wpkg-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
    }

.wpkg-header {
    padding: 1.25rem 1.5rem;
    font-size: 1.32rem; /* slightly larger for better presence */
    font-weight: 600;
    text-align: center;
    color: white;
}

.wpkg-header--fixed {
    background-color: #18578e;
}

.wpkg-header--early {
    background-color: #3496c9;
}

.wpkg-header--flexible {
    background-color: #18578e;
}

.wpkg-body {
    padding: 2rem 1.9rem; /* ← increased left/right padding → feels wider */
}

.wpkg-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .wpkg-bullet-list li {
        position: relative;
        padding-left: 2.4rem; /* more space for bullet + text */
        margin-bottom: 0.3rem;
        line-height: 1.55;
        color: #2d3748;
        font-size: 1.04rem; /* tiny increase in readability */
    }

        .wpkg-bullet-list li:last-child {
            margin-bottom: 0;
        }

        .wpkg-bullet-list li::before {
            content: "○";
            position: absolute;
            left: 0.2rem;
            color: #5a7184;
            font-size: 1.38rem;
        }

@media (max-width: 991px) {
    .wpkg-feature-card {
        max-width: 100%;
    }

    .wpkg-body {
        padding: 1.7rem 1.6rem;
    }

    .wpkg-bullet-list li {
        padding-left: 2.2rem;
        font-size: 1.02rem;
    }
}
.wpkg-feature-card {
    border: 1px solid #d4d9e1;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    /* ──────────────────────────────────────── */
    max-width: none; /* ← most important change – remove width restriction */
}

    .wpkg-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
    }

.wpkg-header {
    padding: 0.9rem 1.3rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    color: white;
    line-height: 1.3;
}

.wpkg-header--fixed {
    background-color: #18578e;
}

.wpkg-header--early {
    background-color: #3496c9;
}

.wpkg-header--flexible {
    background-color: #18578e;
}
/* or different color if wanted */

.wpkg-body {
    padding: 1rem 1rem; /* a bit more horizontal space */
}

.wpkg-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .wpkg-bullet-list li {
        position: relative;
        padding-left: 2.5rem;
        margin-bottom: 0.4rem;
        line-height: 1.55;
        color: #2d3748;
        font-size: 0.9rem;
    }

        .wpkg-bullet-list li:last-child {
            margin-bottom: 0;
        }

        .wpkg-bullet-list li::before {
            content: "○";
            position: absolute;
            left: 0.3rem;
            color: #5a7184;
            font-size: 1.38rem;
        }

/* Mobile adjustments */
@media (max-width: 991px) {
    .wpkg-feature-card {
        margin-bottom: 1.5rem;
    }

    .wpkg-body {
        padding: 1.6rem 1.8rem;
    }

    .wpkg-header {
        font-size: 1.05rem;
        padding: 0.85rem 1.2rem;
    }
}
.wpkg-comparison-grid {
    --gap: 1.25rem;
}

    .wpkg-comparison-grid .row {
        --bs-gutter-x: var(--gap);
        --bs-gutter-y: var(--gap);
    }

/* Card base styles */
.wpkg-feature-card {
    border: 1px solid #d4d9e1;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    height: 100%;
    transition: all 0.2s ease;
}

    .wpkg-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.14);
    }

/* Headers */
.wpkg-header {
    padding: 1rem 1.25rem;
    font-size: 1.18rem;
    font-weight: 600;
    text-align: center;
    color: white;
    line-height: 1.35;
}

.wpkg-header--fixed {
    background-color: #18578e;
}

.wpkg-header--tablet {
    background-color: #3496c9;
}

.wpkg-header--mobile {
    background-color: #2c7be5;
}

.wpkg-header--web {
    background-color: #0f766e;
}
/* teal example */

/* Body */
.wpkg-body {
    padding: 1.5rem 1.6rem;
}

.wpkg-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 1.1rem 0;
}

    .wpkg-bullet-list li {
        position: relative;
        padding-left: 2.2rem;
        margin-bottom: 0.5rem;
        line-height: 1.6;
        color: #2d3748;
        font-size: 1rem;
    }

        .wpkg-bullet-list li::before {
            content: "○";
            position: absolute;
            left: 0.1rem;
            color: #64748b;
            font-size: 1.35rem;
            line-height: 1.6;
        }

/* ────────────────────────────────────────────────
   Breakpoints
───────────────────────────────────────────────── */

/* Small screens → 1 column */
@media (max-width: 575px) {
    .wpkg-body {
        padding: 1.4rem 1.5rem;
    }

    .wpkg-header {
        font-size: 1.1rem;
        padding: 0.9rem 1.1rem;
    }
}

/* ≥576px (sm) → 2 columns */
@media (min-width: 576px) {
    /* already handled by col-sm-6 */
}

/* Very large screens → 4 columns */
@media (min-width: 1614px) {
    .wpkg-comparison-grid .row {
        --bs-gutter-x: 1.75rem;
        --bs-gutter-y: 1.75rem;
    }

    .wpkg-body {
        padding: 1.8rem 2rem;
    }

    .wpkg-header {
        font-size: 1.28rem;
        padding: 1.2rem 1.5rem;
    }

    .wpkg-bullet-list li {
        font-size: 1.03rem;
    }
}
@media(max-width:1400px) {
    .wpkg-bullet-list li {
        font-size:0.8rem;
    }
}
/* Center the column content vertically/horizontally */
.col-12.col-sm-6.col-xxl-3.d-flex.flex-column.align-items-center {
    /* Ensures Bootstrap's d-flex works correctly */
}

/* Style for the preview image (outside the card) */
.card-preview-img {
    width: 165px; /* Slightly smaller than 200px usually looks cleaner */
    height: 164px;
    object-fit: contain; /* Keeps full image visible without cropping */
}

/* Responsive adjustments */
@media (max-width: 575px) {
    .card-preview-img {
        width: 160px;
        height: 160px;
        margin-bottom: 1rem !important; /* smaller spacing on very small screens */
    }
}

@media (min-width: 576px) and (max-width: 1613px) {
    .card-preview-img {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 1614px) {
    .card-preview-img {
        width: 220px; /* bigger on ultra-wide for better visual balance */
        height: 220px;
        margin-bottom: 1.5rem !important;
    }

    .wpkg-feature-card {
        border-radius: 10px; /* optional: softer look when image is prominent */
    }
}
/* Wrapper to help with positioning & future animations if needed */
.card-icon-wrapper {
    position: relative;
    z-index: 2;
}

/* The small circular icon */
.card-icon {
    width: 90px;
    height: 90px;
    object-fit: cover; /* or contain – cover is usually better for icons/logos */
    border-radius: 50%;
    border: 4px solid white; /* white ring – looks clean on colored backgrounds */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-color: #f8fafc; /* fallback if image fails to load or has transparency */
    transition: transform 0.25s ease;
}

.wpkg-feature-card:hover ~ .card-icon-wrapper .card-icon,
.card-icon-wrapper:hover .card-icon {
    transform: scale(1.08); /* subtle grow on card hover */
}

/* Responsive sizes */
@media (max-width: 575px) {
    .card-icon {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .card-icon-wrapper {
        margin-bottom: 1rem !important;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .card-icon {
        width: 95px;
        height: 95px;
    }
}

@media (min-width: 992px) and (max-width: 1613px) {
    .card-icon {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1614px) {
    .card-icon {
        width: 94px;
        height: 82px;
        border-width: 5px;
    }

    .card-icon-wrapper {
        margin-bottom: 1.25rem !important;
    }
}

/* Optional: slight overlap / raised effect */
@media (min-width: 992px) {
    .card-icon-wrapper {
        margin-bottom: -3rem !important;
    }

    .wpkg-feature-card {
        margin-top: 1.5rem; /* gives space for the overlapping icon */
        border-top: 5px solid transparent; /* optional accent if you want color */
    }

    /* You can match border-top color to header if desired */
    .wpkg-header--fixed + .wpkg-body { /* no – better to use pseudo-element or bg */
        border-top: none;
    }
}
.card-blue-theme {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.15);
    transition: all 0.25s ease;
    background-color: white;
}

    .card-blue-theme:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(13, 110, 253, 0.22);
    }

.card-img-top {
    height: 500px;
    object-fit: cover;
    border-bottom: 4px solid var(--primary-blue);
}

.card-body {
    padding: 1.6rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, white 60%);
}

.card-title {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: #444;
    line-height: 1.6;
}

.container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.job-card-wrapper {
    background: white;
    border: 1px solid #d0d5dd;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    position: relative;
    height: 100%; /* equal height in row */
}

/* Smaller gold accent */
.gold-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 40px 0 0; /* smaller triangle */
    border-color: #f4c107 transparent transparent transparent;
    z-index: 1;
}

/* Dark header – more compact */
.job-header {
    background: #0f2c5e;
    color: white;
    padding: 0.9rem 1.25rem;
    position: relative;
    z-index: 2;
}

    .job-header h1 {
        font-size: 1.1rem; /* smaller title */
        font-weight: 700;
        margin: 0;
        letter-spacing: 0.3px;
        text-transform: uppercase;
    }

/* No .job-meta in your latest HTML → removed related styles */

/* Thin separator */
.separator {
    height: 1px;
    background: #dee2e6;
    margin: 0 1.25rem;
}

/* Compact content */
.job-content {
    padding: 1.1rem 1.3rem 1.4rem;
    font-size: 0.94rem;
    line-height: 1.55;
    color: #2d3748;
}

    .job-content p {
        margin-bottom: 0.9rem;
    }

        .job-content p:first-child {
            font-weight: 700;
            font-size: 1.02rem;
            color: #1a202c;
            margin-bottom: 1.1rem;
        }

/* =============================================
   Make 3 cards fit nicely in one row
   ============================================= */

/* Remove problematic centering and max-width */
.job-card-wrapper {
    margin: 0 !important; /* override your old auto margin */
}

/* Mobile first – stack by default */
@media (max-width: 767px) {
    .job-card-wrapper {
        margin-bottom: 1.5rem;
    }

    .gold-corner {
        border-width: 35px 35px 0 0;
    }
}

/* Medium screens – 2 per row */
@media (min-width: 768px) {
    .row.g-4 {
        --bs-gutter-x: 1.25rem;
    }
}

/* Large screens – 3 per row */
@media (min-width: 992px) {
    .row.g-4 {
        --bs-gutter-x: 1.5rem;
    }
}



.feature-row {
    max-width: 100%;
    margin: 0 auto;
}

.feature-section {
    background: #ffffff;
    overflow: hidden;
    height: 100%;
}

.feature-text {
    padding: 1rem;
    padding-top: 51px;
}

.feature-title {
    font-size: 1.1rem; /* Small title font */
    font-weight: 700;
    color: #1e40af; /* Dark blue */
    margin-bottom: 0.6rem;
}

.feature-subtitle {
    font-size: 0.85rem; /* Small subtitle font */
    color: black; /* Medium blue */
    margin-bottom: 0.9rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .feature-list li {
        font-size: 0.8rem; /* Very small bullet font */
        color: #1e3a8a; /* Navy blue */
        position: relative;
        padding-left: 1.4rem;
    }

        .feature-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #2563eb; /* Blue bullet */
            font-size: 1.1rem;
        }

.feature-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.feature-image {
    width: 100%;
    max-width: 100%; /* Small professional image size */
    height: auto;
    object-fit: cover;
}

@media (max-width: 991px) {
    .feature-section {
        margin-bottom: 1.5rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-subtitle {
        font-size: 0.8rem;
    }

    .feature-list li {
        font-size: 0.75rem;
    }

    .feature-image {
        max-width: 120px;
    }
}
@media(min-width:1700px) {
    .title-blue {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1.4rem !important;
    }
    .title{
        font-size:1.8rem;
    }
    .desktop-screen{
        margin-top:-20% !important; 
    }
}


body {
    font-family: system-ui, sans-serif;
    background: #ffffff;
    color: #1e2a44;
    font-size: 15px;
}

/* ──────────────────────────────────────────────── */
/* Hero / top section – now white with blue shiny border */
.qryx-hero-canvas {
    background: #ffffff;
    color: #1e2a44;
    padding: 3.2rem 1rem 4.2rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(13,110,253,0.18);
    box-shadow: 0 4px 20px var(--zent-blue-glow), inset 0 0 0 1px rgba(13,110,253,0.12);
    margin-bottom: 2rem;
    font-family: system-ui, sans-serif;
    background: #ffffff;
    color: #1e2a44;
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
}

.qryx-title-xl {
    font-size: clamp(1.7rem, 5.2vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--zent-blue-dark);
}

.qryx-lead-text {
    font-size: clamp(0.92rem, 3vw, 1.05rem);
    max-width: 720px;
    margin: 0 auto 1.8rem;
    color: #4a5568;
}

/* ──────────────────────────────────────────────── */
/* Category pills – white bg + blue outline/shine */
.zpvx-pill-cluster {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem 1rem;
    margin: 1.6rem 0 2.2rem;
}

.zpvx-pill-item {
    background: #ffffff;
    border: 1.5px solid rgba(13,110,253,0.5);
    border-radius: 999px;
    padding: 0.48rem 1.15rem;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--zent-blue);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(13,110,253,0.12);
}

    .zpvx-pill-item:hover {
        border-color: var(--zent-blue);
        box-shadow: 0 4px 16px var(--zent-blue-glow);
        transform: translateY(-1px);
    }

    .zpvx-pill-item.zpvx-selected {
        background: var(--zent-blue);
        color: white;
        border-color: var(--zent-blue);
        box-shadow: 0 6px 20px var(--zent-blue-glow);
        transform: translateY(-1px);
    }

/* ──────────────────────────────────────────────── */
/* Cards remain mostly the same – white + subtle blue hover */
.klyon-content-vault {
    min-height: 280px;
    padding: 0 1rem;
}

.klyon-layer {
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

    .klyon-layer.klyon-visible {
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem 1.4rem;
        justify-content: center;
        opacity: 1;
    }

.jwxv-feature-pod {
    flex: 0 0 260px;
    max-width: 290px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.28s ease;
    border: 1px solid rgba(13,110,253,0.08);
}

    .jwxv-feature-pod:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(13,110,253,0.20);
        border-color: rgba(13,110,253,0.25);
    }

.jwxv-pod-visual {
    height: 200px;
    background: var(--zent-light);
    display: grid;
    place-items: center;
    font-size: 3.1rem;
    color: var(--zent-blue);
}

.jwxv-pod-content {
    padding: 1.1rem 1rem 1.3rem;
    text-align: center;
}

.jwxv-pod-title {
    font-size: 1.14rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #0f1c38;
}

.jwxv-pod-desc {
    font-size: 0.88rem;
    color: #556070;
    line-height: 1.42;
    margin-bottom: 0.9rem;
}

.jwxv-cta-pill {
    border-radius: 999px;
    padding: 0.42rem 1.1rem;
    font-size: 0.86rem;
    font-weight: 600;
    background: var(--zent-blue);
    color: white;
    border: none;
    transition: all 0.22s;
}

    .jwxv-cta-pill:hover {
        background: var(--zent-blue-dark);
        transform: translateY(-1px);
    }

/* Responsive */
@media (min-width: 576px) {
    .jwxv-feature-pod {
        flex: 0 0 280px;
        max-width: 300px;
    }
}

@media (min-width: 768px) {
    .jwxv-feature-pod {
        flex: 0 1 290px;
        max-width: 310px;
    }

    .qryx-hero-canvas {
        padding: 4rem 1rem 5rem;
    }
}

@media (min-width: 992px) {
    .jwxv-feature-pod {

        flex: 0 1 280px;
    }
}

@media (min-width: 1200px) {
    .jwxv-feature-pod {
        flex: 0 1 300px;
        max-width: 320px;
    }
}
.zpvx-pill-cluster {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.1rem;
    margin: 1.4rem 0 2.2rem;
}

.zpvx-pill-item {
    background-color: #ffffff;
    color: #0d6efd; /* blue text when not selected */
    border: 2px solid #0d6efd;
    border-radius: 999px;
    padding: 0.5rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.12);
    min-width: 120px;
    text-align: center;
}

    .zpvx-pill-item:hover {
        background-color: rgba(13, 110, 253, 0.08);
        box-shadow: 0 4px 14px rgba(13, 110, 253, 0.22);
        transform: translateY(-1px);
    }

    /* ─── THIS IS THE IMPORTANT PART ─── */
    .zpvx-pill-item.zpvx-selected {
        background-color: #0d6efd !important; /* blue background when selected */
        color: white !important; /* white text when selected */
        border-color: #0d6efd;
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.45);
        transform: translateY(-2px);
        font-weight: 700;
    }
.animate-from-left,
.animate-from-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Start position */
.animate-from-left {
    transform: translateX(-80px);
}

.animate-from-right {
    transform: translateX(80px);
}

    /* When visible */
    .animate-from-left.show,    
    .animate-from-right.show {
        opacity: 1;
        transform: translateX(0);
    }
    /*-------------------------------------------web_Design------------------------------------------------------*/
.feature-card {
    transition: all 0.25s ease;
    border: none;
    background: #f8f9fa;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

.icon-circle {
    width: 80px;
    height: 80px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.9rem;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}

.placeholder-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
}