


/* ============================================================
   Top navigation bar
   ============================================================ */

.zs-topnav {
    background: rgba(15, 32, 35, 0.55);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    backdrop-filter: blur(18px) saturate(1.4);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

    /* gradient hairline along the bottom edge */
    .zs-topnav::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 198, 237, 0.45) 30%, rgba(52, 211, 153, 0.45) 70%, transparent 100%);
        pointer-events: none;
    }

    .zs-topnav.nav-scrolled {
        background: rgba(10, 20, 22, 0.9);
        box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.6);
    }

.zs-nav-inner {
    height: 5rem;
    transition: height 0.35s ease;
}

.nav-scrolled .zs-nav-inner {
    height: 4rem;
}

.zs-nav-logo {
    height: 3.25rem;
    transition: height 0.35s ease;
}

.nav-scrolled .zs-nav-logo {
    height: 2.5rem;
}

/* centered link group in a subtle pill */
.zs-nav-links {
    gap: 0.25rem;
    padding: 0.3rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.zs-nav-link {
    position: relative;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    transition: color 0.25s ease, background 0.25s ease;
}

    .zs-nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0.1rem;
        width: 1.25rem;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg, #00c6ed, #34d399);
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .zs-nav-link:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
    }

        .zs-nav-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

    .zs-nav-link.active {
        color: #ffffff;
        background: rgba(0, 198, 237, 0.1);
    }

        .zs-nav-link.active::after {
            transform: translateX(-50%) scaleX(1);
        }

/* secondary ghost button (Members) */
.zs-ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

    .zs-ghost-btn:hover {
        color: #ffffff;
        border-color: rgba(0, 198, 237, 0.5);
        background: rgba(0, 198, 237, 0.08);
    }

/* primary gradient CTA (Get in Touch) */
.zs-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #04171a;
    background: linear-gradient(115deg, #00c6ed 0%, #34d399 100%);
    box-shadow: 0 8px 24px -8px rgba(0, 198, 237, 0.55);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    /* shine sweep on hover */
    .zs-cta-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.45), transparent);
        transform: skewX(-20deg);
        transition: left 0.55s ease;
    }

    .zs-cta-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 30px -8px rgba(52, 211, 153, 0.65);
    }

        .zs-cta-btn:hover::before {
            left: 125%;
        }

.zs-cta-arrow {
    transition: transform 0.3s ease;
}

.zs-cta-btn:hover .zs-cta-arrow {
    transform: translateX(3px);
}

/* hamburger / close button */
.zs-burger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.6rem;
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.25s ease, border-color 0.25s ease;
}

    .zs-burger-btn:hover {
        color: #ffffff;
        border-color: rgba(0, 198, 237, 0.5);
    }

/* ---------- mobile overlay ---------- */

.zs-mobile-overlay {
    background: radial-gradient(120% 90% at 50% 0%, rgba(0, 198, 237, 0.12) 0%, transparent 55%), rgba(8, 16, 18, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.zs-mobile-link {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    padding: 0.5rem 1rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
}

    .zs-mobile-link:hover {
        color: #00c6ed;
    }

.zs-mobile-index {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(0, 198, 237, 0.7);
}

.zs-mobile-cta {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

/* ============================================================
   Footer
   ============================================================ */

.zs-footer {
    background: #0a1416;
}

    /* gradient hairline along the top edge, mirroring the nav */
    .zs-footer::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 198, 237, 0.45) 30%, rgba(52, 211, 153, 0.45) 70%, transparent 100%);
        pointer-events: none;
    }

.zs-gradient-text {
    background: linear-gradient(115deg, #00c6ed 20%, #34d399 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* footer nav links with animated gradient underline */
.zs-footer-nav-link {
    position: relative;
    font-size: 0.85rem;
    font-weight: 500;
    color: #9ca3af;
    padding-bottom: 0.2rem;
    transition: color 0.25s ease;
}

    .zs-footer-nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg, #00c6ed, #34d399);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .zs-footer-nav-link:hover {
        color: #ffffff;
    }

        .zs-footer-nav-link:hover::after {
            transform: scaleX(1);
        }

/* social buttons */
.zs-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.7rem;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    .zs-social-btn:hover {
        color: #04171a;
        background: linear-gradient(115deg, #00c6ed 0%, #34d399 100%);
        border-color: transparent;
        transform: translateY(-3px);
        box-shadow: 0 10px 24px -8px rgba(0, 198, 237, 0.55);
    }

/* back-to-top button */
.zs-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    .zs-top-btn:hover {
        color: #00c6ed;
        border-color: rgba(0, 198, 237, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 10px 24px -10px rgba(0, 198, 237, 0.4);
    }

/* ============================================================
   Page building blocks (About & co.)
   ============================================================ */

/* ambient glow for page heroes */
.zs-page-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 40% at 50% 0%, rgba(0, 198, 237, 0.14) 0%, transparent 65%), radial-gradient(35% 30% at 80% 15%, rgba(52, 211, 153, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* eyebrow pill above section headings */
.zs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #00c6ed;
    border: 1px solid rgba(0, 198, 237, 0.3);
    background: rgba(0, 198, 237, 0.06);
}

    .zs-eyebrow::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 9999px;
        background: linear-gradient(115deg, #00c6ed, #34d399);
        box-shadow: 0 0 8px rgba(0, 198, 237, 0.8);
    }

/* stat tiles */
.zs-stat-card {
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    .zs-stat-card:hover {
        border-color: rgba(0, 198, 237, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 16px 32px -16px rgba(0, 198, 237, 0.35);
    }

.zs-stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(115deg, #00c6ed 20%, #34d399 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.zs-stat-label {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6b7280;
}

/* team profile cards */
.zs-team-card {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

    .zs-team-card:hover {
        border-color: rgba(0, 198, 237, 0.45);
        transform: translateY(-5px);
        box-shadow: 0 24px 48px -20px rgba(0, 198, 237, 0.35);
    }

.zs-tag-badge {
    padding: 0.3rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffffff;
    border: 1px solid rgba(0, 198, 237, 0.45);
    background: rgba(4, 23, 26, 0.65);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.zs-skill-chip {
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 500;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: color 0.25s ease, border-color 0.25s ease;
}

    .zs-skill-chip:hover {
        color: #00c6ed;
        border-color: rgba(0, 198, 237, 0.4);
    }

/* auto-sliding team marquee */
.zs-team-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    padding: 0.75rem 0 1.25rem; /* room for the hover lift/shadow */
}

.zs-team-track {
    display: flex;
    width: max-content;
    animation: zs-marquee 40s linear infinite;
}

    .zs-team-track:hover {
        animation-play-state: paused;
    }

@keyframes zs-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .zs-team-track {
        animation: none;
    }

    .zs-team-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }
}

.zs-mini-team-card {
    width: 270px;
    flex: none;
    margin-right: 1.5rem;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

    .zs-mini-team-card:hover {
        border-color: rgba(0, 198, 237, 0.45);
        transform: translateY(-5px);
        box-shadow: 0 18px 36px -18px rgba(0, 198, 237, 0.4);
    }

/* capability / value cards */
.zs-value-card {
    position: relative;
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    /* gradient line that sweeps in along the top edge on hover */
    .zs-value-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #00c6ed, #34d399);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .zs-value-card:hover {
        border-color: rgba(0, 198, 237, 0.35);
        transform: translateY(-4px);
        box-shadow: 0 16px 36px -18px rgba(0, 198, 237, 0.4);
    }

        .zs-value-card:hover::before {
            transform: scaleX(1);
        }

.zs-icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    color: #04171a;
    background: linear-gradient(115deg, #00c6ed 0%, #34d399 100%);
    box-shadow: 0 8px 20px -8px rgba(0, 198, 237, 0.55);
}

/* numbered process steps */
.zs-step-card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    .zs-step-card:hover {
        border-color: rgba(0, 198, 237, 0.35);
        transform: translateY(-4px);
        box-shadow: 0 16px 36px -18px rgba(0, 198, 237, 0.4);
    }

.zs-step-num {
    display: block;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 198, 237, 0.5);
}

/* highlighted variant of zs-value-card (e.g. "Most popular" plan) */
.zs-featured-card {
    border-color: rgba(0, 198, 237, 0.4);
    background: linear-gradient(180deg, rgba(0, 198, 237, 0.07) 0%, rgba(255, 255, 255, 0.03) 60%);
    box-shadow: 0 16px 40px -20px rgba(0, 198, 237, 0.45);
}

/* wide glass panel */
.zs-panel {
    position: relative;
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(0, 198, 237, 0.06) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(52, 211, 153, 0.05) 100%);
    overflow: hidden;
}

    .zs-panel::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 198, 237, 0.45) 30%, rgba(52, 211, 153, 0.45) 70%, transparent 100%);
    }

/* ============================================================
   Page-specific motifs
   ============================================================ */

/* --- Services: code / terminal window --- */

.zs-code-window {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #0b1518;
    box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.65);
    overflow: hidden;
}

.zs-code-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

    .zs-code-head span {
        width: 0.65rem;
        height: 0.65rem;
        border-radius: 9999px;
    }

        .zs-code-head span:nth-child(1) {
            background: #f87171;
        }

        .zs-code-head span:nth-child(2) {
            background: #fbbf24;
        }

        .zs-code-head span:nth-child(3) {
            background: #34d399;
        }

    .zs-code-head em {
        margin-left: auto;
        font-style: normal;
        font-size: 0.7rem;
        color: #6b7280;
        font-family: Consolas, "Courier New", monospace;
    }

.zs-code-window pre {
    margin: 0;
    padding: 1.25rem 1.5rem;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.8rem;
    line-height: 1.8;
    color: #9ca3af;
    overflow-x: auto;
}

.zs-code-window .tk {
    color: #00c6ed;
}

.zs-code-window .st {
    color: #34d399;
}

.zs-code-window .fn {
    color: #e5e7eb;
}

.zs-code-window .cm {
    color: #4b5563;
}

/* --- Services: vertical delivery timeline --- */

.zs-timeline {
    position: relative;
    padding-left: 2.75rem;
}

    .zs-timeline::before {
        content: "";
        position: absolute;
        left: 0.55rem;
        top: 0.5rem;
        bottom: 0.5rem;
        width: 2px;
        background: linear-gradient(180deg, #00c6ed, #34d399);
        opacity: 0.35;
    }

.zs-timeline-item {
    position: relative;
    padding-bottom: 2.75rem;
}

    .zs-timeline-item:last-child {
        padding-bottom: 0;
    }

    .zs-timeline-item::before {
        content: "";
        position: absolute;
        left: -2.72rem;
        top: 0.25rem;
        width: 1.1rem;
        height: 1.1rem;
        border-radius: 9999px;
        background: #0f2023;
        border: 2px solid #00c6ed;
        box-shadow: 0 0 10px rgba(0, 198, 237, 0.6);
    }

/* --- Tech Stack: architecture layers --- */

.zs-layer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 3px solid rgba(0, 198, 237, 0.6);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

    .zs-layer:hover {
        background: rgba(0, 198, 237, 0.05);
        border-left-color: #34d399;
        transform: translateX(6px);
    }

.zs-layer-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(0, 198, 237, 0.7);
    margin-bottom: 0.35rem;
}

.zs-layer-connector {
    width: 2px;
    height: 1.5rem;
    margin-left: 3rem;
    background: linear-gradient(180deg, rgba(0, 198, 237, 0.5), rgba(52, 211, 153, 0.5));
    opacity: 0.5;
}

.zs-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

    .zs-tech-badge:hover {
        color: #ffffff;
        border-color: rgba(0, 198, 237, 0.45);
        transform: translateY(-2px);
    }

    .zs-tech-badge i {
        width: 0.55rem;
        height: 0.55rem;
        border-radius: 9999px;
        flex: none;
    }

/* --- Contact: form fields --- */

.zs-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

    .zs-input:focus {
        border-color: rgba(0, 198, 237, 0.6);
        background: rgba(0, 198, 237, 0.04);
        box-shadow: 0 0 0 3px rgba(0, 198, 237, 0.15);
    }

    .zs-input::placeholder {
        color: #6b7280;
    }

select.zs-input option {
    background: #0f2023;
    color: #e5e7eb;
}

.zs-mini-step-num {
    flex: none;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #04171a;
    background: linear-gradient(115deg, #00c6ed, #34d399);
    box-shadow: 0 6px 14px -6px rgba(0, 198, 237, 0.6);
}

/* --- About: founders quote --- */

.zs-quote-panel {
    position: relative;
    padding: 3.5rem 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(80% 100% at 50% 0%, rgba(0, 198, 237, 0.09) 0%, transparent 70%), rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

    .zs-quote-panel::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 198, 237, 0.45) 30%, rgba(52, 211, 153, 0.45) 70%, transparent 100%);
    }

.code-bg {
    background-image: radial-gradient(#135bec 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.1;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.carousel-slide {
    width: 33.333%;
    flex-shrink: 0;
    padding: 0 4px;
}

#team-slide1:checked ~ .carousel-track {
    transform: translateX(0%);
}

#team-slide2:checked ~ .carousel-track {
    transform: translateX(-33.333%);
}

#team-slide3:checked ~ .carousel-track {
    transform: translateX(-66.666%);
}

#team-slide1:checked ~ .carousel-nav label[for="team-slide1"],
#team-slide2:checked ~ .carousel-nav label[for="team-slide2"],
#team-slide3:checked ~ .carousel-nav label[for="team-slide3"] {
    background-color: #00c6ed;
    width: 2rem;
    border-color: #00c6ed;
}

.hero-slider-container {
    position: relative;
    overflow: hidden;
    height: 600px;
    border-radius: 1.5rem;
}

.hero-slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-1:checked ~ .relative .hero-slider-track {
    transform: translateX(0%);
}

#hero-2:checked ~ .relative .hero-slider-track {
    transform: translateX(-33.333%);
}

#hero-3:checked ~ .relative .hero-slider-track {
    transform: translateX(-66.666%);
}

#hero-1:checked ~ .relative .hero-pagination label[for="hero-1"],
#hero-2:checked ~ .relative .hero-pagination label[for="hero-2"],
#hero-3:checked ~ .relative .hero-pagination label[for="hero-3"] {
    background-color: #00c6ed;
    width: 2rem;
    opacity: 1;
}

#mobile-menu-toggle:checked ~ #mobile-nav-overlay {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

    /* staggered entrance for mobile links */
    #mobile-menu-toggle:checked ~ #mobile-nav-overlay .zs-mobile-link,
    #mobile-menu-toggle:checked ~ #mobile-nav-overlay .zs-mobile-cta {
        opacity: 1;
        transform: translateY(0);
    }

    #mobile-menu-toggle:checked ~ #mobile-nav-overlay .zs-mobile-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    #mobile-menu-toggle:checked ~ #mobile-nav-overlay .zs-mobile-link:nth-child(2) {
        transition-delay: 0.16s;
    }

    #mobile-menu-toggle:checked ~ #mobile-nav-overlay .zs-mobile-link:nth-child(3) {
        transition-delay: 0.22s;
    }

    #mobile-menu-toggle:checked ~ #mobile-nav-overlay .zs-mobile-link:nth-child(4) {
        transition-delay: 0.28s;
    }

    #mobile-menu-toggle:checked ~ #mobile-nav-overlay .zs-mobile-link:nth-child(5) {
        transition-delay: 0.34s;
    }

    #mobile-menu-toggle:checked ~ #mobile-nav-overlay .zs-mobile-cta {
        transition-delay: 0.42s;
    }

#mobile-menu-toggle:checked ~ nav label[for="mobile-menu-toggle"] .menu-icon {
    display: none;
}

#mobile-menu-toggle:checked ~ nav label[for="mobile-menu-toggle"] .close-icon {
    display: block;
}


.zs_toast-container {
    position: fixed !important;
    top: 80px !important;
    right: 20px !important;
    z-index: 2147483647 !important; /* MAX */
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zs_toast {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 20px !important;
    border-radius: 8px !important;
    min-width: 300px !important;
    font-size: 16px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,.5) !important;
    animation: slideIn .25s ease;
}

    .zs_toast.success {
        background: #198754;
    }

    .zs_toast.error {
        background: #dc3545;
    }

    .zs_toast.info {
        background: #0dcaf0;
        color: #000;
    }

    .zs_toast.warning {
        background: #ffc107;
        color: #000;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

.zs_validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(-4px);
    animation: fadeSlideIn 0.3s ease forwards;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.zs-loader-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.10);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.zs-loader {
    --c: linear-gradient(#71d5a5 0 0);
    background: var(--c), var(--c), var(--c), var(--c), var(--c), var(--c), var(--c), var(--c), var(--c);
    background-size: 16px 16px;
    background-repeat: no-repeat;
    animation: sh2-1 2s infinite, sh2-2 2s infinite;
}

@keyframes sh2-1 {
    0%,100% {
        width: 45px;
        height: 45px
    }

    35%,65% {
        width: 65px;
        height: 65px
    }
}

@keyframes sh2-2 {
    0%,40% {
        background-position: 0 0,0 50%, 0 100%,50% 100%,100% 100%,100% 50%,100% 0,50% 0, 50% 50%
    }

    60%,100% {
        background-position: 0 50%, 0 100%,50% 100%,100% 100%,100% 50%,100% 0,50% 0,0 0, 50% 50%
    }
}

/*
    Website Settings
*/
/* Firefox (uncomment to work in Firefox) */
 * {
  scrollbar-width: thin;
  scrollbar-color: #20C997 #DFE9EB;
} 

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

*::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #DFE9EB;
    border: 4px solid #FFFFFF;
}

    *::-webkit-scrollbar-track:hover {
        background-color: #B8C0C2;
    }

    *::-webkit-scrollbar-track:active {
        background-color: #B8C0C2;
    }

*::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #20C997;
    border: 1px inset #FFFFFF;
}

    *::-webkit-scrollbar-thumb:hover {
        background-color: #17A2B8;
    }

    *::-webkit-scrollbar-thumb:active {
        background-color: #63C97B;
    }