:root {
    --teal: #3e8283;
    --teal-light: #3e8283;
    --teal-mid: #3e8283;
    --teal-dark: #0f766e;
    --dark-bg: #0d1a18;
    --dark-nav: rgba(13, 26, 24, 0.72);
    --bg-soft: #f7f9f9;
    --bg-white: #ffffff;
    --text-dark: #113334;
    --text-muted: #5a7a7b;
    --border: #e2eeed;
    --text-light: #113632;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;

    color: var(--text-dark);
    overflow-x: hidden;
}

/* ══════════════════════════════
           NAVBAR
        ══════════════════════════════ */

.nav-links a.active,
.mobile-menu a.active {
    color: #0a2f2f;
    /* darker color */
    font-weight: 700;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
}

/* Show when active */
.mobile-menu.active {
    display: flex;
}

.prisalis-nav {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1120px;
    z-index: 100;
    background: #ffffffd9;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 10px 20px 10px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-logo span {
    color: var(--teal-mid);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-size: 18px;
    font-weight: 500;
    color: #5a7a7b;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 50px;
    transition:
        color 0.2s,
        background 0.2s;
}

.nav-links a:hover {
    color: #113334 !important;
    ;
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
    border-radius: 50px !important;
    padding: 8px 22px !important;
    transition:
        background 0.2s,
        border-color 0.2s !important;
    background-color: #113334;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #fff !important;
}

/* hamburger */
.nav-toggler {
    display: none;
    background: transparent;
    border: 1.5px solid #113632;
    border-radius: 8px;
    color: #113632;
    padding: 6px 10px;
    font-size: 1.1rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(13, 26, 24, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 16px;
    list-style: none;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
}

.card-img {
    width: 35px;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

/* ══════════════════════════════
           HERO SECTION
        ══════════════════════════════ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* slide backgrounds */
.hero-bg-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 20, 18, 0.55) 0%,
            rgba(10, 20, 18, 0.45) 50%,
            rgba(10, 20, 18, 0.82) 100%);
}

/* slide-specific overlay tints */
.slide-corporate {
    background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80");
}

.slide-manufacturing {
    background-image: url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&q=80");
}

.slide-clinic {
    background-image: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1600&q=80");
}

.slide-csr {
    background-image: url("https://images.unsplash.com/photo-1593113598332-cd288d649433?w=1600&q=80");
}

.slide-healthcare {
    background-image: url("https://images.unsplash.com/photo-1551190822-a9333d879b1f?w=1600&q=80");
}

/* hero content */
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
}

.hero-title {
    /* font-family: "Playfair Display", serif; */
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    max-width: 780px;
    margin-bottom: 1.1rem;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-sub {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s 0.7s forwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: var(--teal);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.2s;
}

.btn-hero-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    color: #fff;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 50px;
    padding: 12px 28px;
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.2s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}

/* ── Slide tabs bar ── */
.hero-tabs-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 24px 36px;
    flex-wrap: wrap;
}

.hero-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    cursor: pointer;
    border: none;
    background: transparent;
    position: relative;
}

.hero-tab::before {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.35s;
}

.hero-tab.active::before {
    background: var(--teal-mid);
}

.hero-tab span {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
    white-space: nowrap;
}

.hero-tab.active span {
    color: #fff;
    font-weight: 700;
}

/* progress bar inside active tab */
.hero-tab .tab-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    border-radius: 2px;
    overflow: hidden;
}

.hero-tab .tab-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--teal-mid);
    border-radius: 2px;
}

.hero-tab.active .tab-progress-fill {
    animation: progressFill var(--slide-dur, 5s) linear forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════
           PARTNERS MARQUEE
        ══════════════════════════════ */
#partners {
    background: var(--bg-white);
    padding: 52px 0;
    border-bottom: 1px solid var(--border);
}



.marquee-wrap {
    overflow: hidden;
    position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    opacity: 0.55;
    filter: grayscale(1);
    transition:
        opacity 0.3s,
        filter 0.3s;
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.partner-logo img {
    max-height: 36px;
    max-width: 120px;
    object-fit: contain;
}

.partner-logo .logo-text {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    white-space: nowrap;
}

/* ══════════════════════════════
           STATS SECTION
        ══════════════════════════════ */
#stats {
    background: var(--bg-soft);
    padding: 64px 0 72px;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 20px;
    text-align: center;
    transition:
        box-shadow 0.3s,
        transform 0.3s;
}

.stat-card:hover {
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.12);
    transform: translateY(-4px);
}

.stat-val {
    /* font-family: "Playfair Display", serif; */
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* counter animation */
.stat-val[data-count] {
    transition: none;
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

.reveal-d4 {
    transition-delay: 0.4s;
}

.reveal-d5 {
    transition-delay: 0.5s;
}

/* ── responsive ── */
@media (max-width: 991.98px) {
    .nav-links {
        display: none;
    }

    .nav-toggler {
        display: block;
    }

    .hero-tab {
        padding: 0 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-tabs-bar {
        gap: 4px;
    }

    .hero-tab {
        padding: 0 10px;
    }

    .hero-tab::before,
    .hero-tab .tab-progress {
        width: 50px;
    }

    .hero-tab span {
        font-size: 0.72rem;
    }
}

/* ─── LABEL BADGE ─────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: var(--teal-light);
    border: 1px solid var(--teal-mid);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1.1rem;
}

/* ─── SECTION HEADINGS ────────────────────── */
.section-heading {
    /* font-family: "Playfair Display", serif; */
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-subtext {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 0;
}

/* ─── SOLUTIONS SECTION ───────────────────── */
#solutions {
    background: var(--bg-white);
    padding: 80px 0 90px;
}

/* Tabs */
.solutions-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 3rem;
    padding-bottom: 0;
}

.solutions-nav .nav-tab {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    border: none;
    background: transparent;
    position: relative;
    transition:
        color 0.2s,
        background 0.2s;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
}

.solutions-nav .nav-tab:hover {
    color: var(--teal-dark);
    background: var(--teal-light);
}

.solutions-nav .nav-tab.active {
    color: var(--teal-dark);
    font-weight: 600;
    border-bottom: 2px solid var(--teal-primary);
    background: transparent;
}

/* Tab content */
.tab-pane-content {
    display: none;
}

.tab-pane-content.active {
    display: flex;
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-dark);
    font-size: 1rem;
}

.feature-title {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* Image placeholder */
.solution-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5f3 0%, #d1f0eb 60%, #b2e4de 100%);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.solution-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.image-placeholder-icon {
    color: var(--teal-mid);
    font-size: 3rem;
    opacity: 0.5;
}

/* ─── HARDWARE SECTION ────────────────────── */
#hardware {
    background: var(--bg-soft);
    padding: 80px 0 90px;
}

.hardware-card {
    padding: 36px 32px;
    background: linear-gradient(180deg, #e8f7f3 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0px 3px 14.1px 0px #90909040;
    transition:
        box-shadow 0.3s,
        transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}

.hardware-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.hardware-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-mid);
    font-size: 2.5rem;
}

.hardware-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hardware-card-body {
    margin-top: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.suported {
    padding: 45px;
    box-shadow: 0px 10px 30px 0px #00000008;
    border: 1px solid #DCEAEA;
    border-radius: 24px;
}

.hw-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: var(--teal-light);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}

.hw-title {
    /* font-family: "Playfair Display", serif; */
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.9rem;
}

.hw-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}

.hw-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.hw-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-dark);
    padding: 5px 0;
}

.hw-features li i {
    color: var(--teal-primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}

.hw-tag {
    font-size: 14px;
    color: #5A7A7B;
    background: #F6FAFA;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 5px 10px;
    font-weight: 600;
}

/* ─── DEVICES SECTION ─────────────────────── */
#devices {
    background: var(--bg-white);
    padding: 60px 0 70px;
}

.device-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    background: #F6FAFA;
    border: 1.5px solid #DCEAEA;
    border-radius: 50px;
    padding: 12px 30px;
    transition:
        border-color 0.2s,
        background 0.2s,
        color 0.2s;
    cursor: default;
}

.device-pill:hover {
    border-color: var(--teal-primary);
    background: var(--teal-light);
    color: white;
}

.device-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── ANIMATIONS ──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ─── RESPONSIVE TWEAKS ───────────────────── */
@media (max-width: 767.98px) {

    #solutions,
    #hardware,
    #devices {
        padding: 52px 0 60px;
    }

    .solution-image-wrap {
        min-height: 220px;
        margin-top: 2rem;
    }

    .tab-pane-content.active {
        flex-direction: column;
    }

    .hardware-card-img {
        height: 160px;
    }
}

/* ── shared ── */
.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: var(--teal-light);
    border: 1px solid var(--teal-mid);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1.1rem;
}

.section-label.light {
    color: var(--teal-mid);
    background: rgba(94, 234, 212, 0.12);
    border-color: rgba(94, 234, 212, 0.25);
}

.section-heading {
    /* font-family: "Playfair Display", serif; */
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 0.75rem;
}

.section-subtext {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 540px;
}

/* ── reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

.reveal-d4 {
    transition-delay: 0.4s;
}

/* ════════════════════════════════════════════
           SECTION 1 — IMPACT  (dark)
        ════════════════════════════════════════════ */
#impact {
    background: #0D2627;
    padding: 80px 0 90px;
    color: #e8f5f3;
}

#impact .section-heading {
    color: #ffffff;
}

/* case study card */
.case-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--r-lg);
    padding: 36px;
    margin-top: 2.5rem;
}

.case-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--teal-mid);
    margin-bottom: 0.9rem;
    display: block;
}

.case-title {
    /* font-family: "Playfair Display", serif; */
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.9rem;
}

.case-body {
    font-size: 16px;
    color: #ffffffb2;
    line-height: 1.7;
}

/* location block */
.location-block {
    background: #2672731a;
    border: #2672731a;
    border-radius: var(--r-md);
    padding: 20px 22px;
    text-align: center;
    height: 65vh;
    align-content: center;
    border-radius: 24px;
}

.location-block .loc-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.location-block .loc-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.location-block .loc-desc {
    font-size: 0.78rem;
    color: #9ec4c0;
    margin-top: 4px;
    line-height: 1.5;
}

/* stats */
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 2rem;
}

.stat-item .stat-val {
    /* font-family: "Playfair Display", serif; */
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff80;
    margin-top: 4px;
}

/* impact sub-cards */
.impact-sub-card {
    background: #153B3C;
    border: 1px solid #215455;
    padding: 40px 35px;
    height: 100%;
    transition: border-color 0.25s;
    border-radius: 24px;
}

.stat-item {
    padding: 24px;
    background-color: #ffffff08;
    border-radius: 16px;
    border: 1px solid #FFFFFF0D;
}

.impact-sub-card:hover {
    border-color: #215455;
}

.impact-sub-card .isc-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: rgba(13, 148, 136, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.impact-sub-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.impact-sub-card p {
    font-size: 16px;
    color: #FFFFFF99;
    margin: 0;
}

/* ════════════════════════════════════════════
           SECTION 2 — AI ARCHITECTURE  (white)
        ════════════════════════════════════════════ */
#ai-arch {
    background: #F6FAFA;
    padding: 80px 0 90px;
}

.arch-quote {
    background: #E6F0F0;
    border-left: 4px solid var(--teal-primary, var(--teal));
    border-radius: 16px;
    padding: 20px 24px;
    font-style: italic;
    font-size: 16px;
    color: #267273;
    margin: 2rem 0;
    line-height: 1.7;
    font-weight: 700;
}

.arch-mode {
    margin-bottom: 1.4rem;
    padding: 20px;
    border: 1px solid #DCEAEA;
    border-radius: 16px;
}

.arch-mode h6 {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.arch-mode p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

/* AI safety feature list */
.ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 20px;

    background-color: white;
    margin-bottom: 16px;
    border: 1px solid #DCEAEA;
    border-radius: 16px;
}


.ai-feature-item:last-child {
    border-bottom: none;
}

.ai-feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.ai-feat-icon.red {
    color: #ef4444;
    background: #fff1f1;
    border-color: #fecaca;
}

.ai-feat-icon.amber {
    color: #f59e0b;
    background: #fffbeb;
    border-color: #fde68a;
}

.ai-feat-icon.teal {

    border-color: var(--teal-mid);
}

.ai-feat-icon.blue {
    color: #3b82f6;
    background: #eff6ff;
    border-color: #bfdbfe;
}

.ai-feat-icon.purple {
    color: #8b5cf6;
    background: #f5f3ff;
    border-color: #ddd6fe;
}

.ai-feat-icon.gray {
    color: #64748b;
    background: #f8fafc;
    border-color: #e2e8f0;
}

.ai-feat-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.ai-feat-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

/* ════════════════════════════════════════════
           SECTION 3 — ABOUT PRISALIS  (soft bg)
        ════════════════════════════════════════════ */
#about {
    background: #fff;
    padding: 80px 0 90px;
}

.about-heading {
    /* font-family: "Playfair Display", serif; */
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.about-heading em {
    font-style: italic;
    color: var(--teal-dark);
}

.genesis-text {
    font-size: 16px;
    color: #5A7A7B;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* origin tags */
.origin-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 1.5rem 0;
}

.origin-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    background: #F6FAFA;
    border: 1px solid #DCEAEA;
    border-radius: 50px;
    padding: 10px 20px;
}

/* philosophy block */
.philosophy-block {
    background: #E6F0F0;
    border: 1px solid #2672731A;
    border-radius: var(--r-md);
    padding: 40px;
    margin-top: 2rem;
    border-radius: 24px;
}

.philosophy-block .phil-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #267273;
    margin-bottom: 0.85rem;
}

.philosophy-block blockquote {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: #113334;
    border: none;
    margin: 0 0 0.75rem;
    padding: 0;
    line-height: 1.65;
}

/* founder cards */
.founder-card {
    background: #F6FAFA;
    border: 1px solid #DCEAEA;
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
}

.founder-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    background-color: white;
}

.founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #E6F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}

.founder-role {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.4rem;
}

.founder-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.founder-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── responsive ── */
@media (max-width: 767.98px) {

    #impact,
    #ai-arch,
    #about {
        padding: 52px 0 60px;
    }

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

    .stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #dceaea;
    background: var(--teal-light);
    border: 1px solid var(--teal-mid);
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 1.1rem;
}

.section-heading {
    /* font-family: "Playfair Display", serif; */
    font-size: 48px;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 0.75rem;
    color: #113334;
}

.section-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

/* ── reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.rd1 {
    transition-delay: 0.1s;
}

.rd2 {
    transition-delay: 0.2s;
}

.rd3 {
    transition-delay: 0.3s;
}

.rd4 {
    transition-delay: 0.4s;
}

/* ════════════════════════════════════════
           SECTION 1 — THREE PILLARS
        ════════════════════════════════════════ */
#pillars {
    background: #E6F0F0;
    padding: 80px 0 90px;
}

/* pillar card */
.pillar-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        box-shadow 0.3s,
        transform 0.3s;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-mid), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pillar-card:hover {
    box-shadow: 0 16px 48px rgba(13, 148, 136, 0.13);
    transform: translateY(-5px);
    color: white;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.1rem;
}

.pillar-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #E6F0F0;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--teal-dark);
    margin-bottom: 1.2rem;
    transition: background 0.3s;
}

.pillar-card:hover .pillar-icon-wrap {
    background: var(--teal-light);
    border-color: var(--teal-mid);
    color: white;
}

.pillar-title {
    /* font-family: "Playfair Display", serif; */
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pillar-tagline {
    font-size: 16px;
    font-style: italic;
    color: var(--teal-dark);
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.pillar-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.pillar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.8rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    font-size: 16px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: color 0.2s;
}

.pillar-link:hover {
    color: var(--teal-dark);
}

.pillar-link .pill-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-platform);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition:
        background 0.25s,
        border-color 0.25s;
}

.pillar-card:hover .pillar-link .pill-btn {
    background: var(--teal-light);
    border-color: var(--teal-mid);
    color: white;
}

/* ════════════════════════════════════════
           SECTION 2 — WHO WE SERVE
        ════════════════════════════════════════ */
#serve {
    background: var(--bg-white);
    padding: 80px 0 0;
}

#serve .serve-head {
    text-align: center;
    padding-bottom: 52px;
}

#serve .section-sub {
    margin: 0 auto;
    text-align: center;
}

/* ── image grid ── */

/* each environment tile */
.serve-tile {
    position: relative;
    overflow: hidden;
    height: 520px;
    cursor: pointer;
}

/* background image */
.serve-tile-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.serve-tile:hover .serve-tile-img {
    transform: scale(1.07);
}

/* dark overlay always present */
.serve-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 20, 18, 0.85) 0%,
            rgba(5, 20, 18, 0.35) 50%,
            rgba(5, 20, 18, 0.05) 100%);
    transition: background 0.5s;
}

.serve-tile:hover .serve-tile-overlay {
    background: linear-gradient(to top,
            rgba(5, 20, 18, 0.92) 0%,
            rgba(5, 20, 18, 0.65) 55%,
            rgba(5, 20, 18, 0.2) 100%);
}

/* bottom content (always visible) */
.serve-tile-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 26px;
    z-index: 2;
}

.serve-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 14px;
    transition:
        background 0.3s,
        border-color 0.3s,
        transform 0.3s;
    backdrop-filter: blur(4px);
}

.serve-tile:hover .serve-arrow-btn {
    background: var(--teal);
    border-color: var(--teal);
    transform: rotate(45deg);
}

.serve-tile-name {
    /* font-family: "Playfair Display", serif; */
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    transition: transform 0.35s ease;
}

/* hover content (slides up) */
.serve-tile-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 26px 90px;
    z-index: 3;
    transform: translateY(20px);
    opacity: 0;
    transition:
        transform 0.45s ease,
        opacity 0.4s ease;
    pointer-events: none;
}

.serve-tile:hover .serve-tile-hover {
    transform: translateY(0);
    opacity: 1;
}

.serve-tile:hover .serve-tile-name {
    transform: translateY(-4px);
}

.serve-hover-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-mid);
    background: rgba(94, 234, 212, 0.15);
    border: 1px solid rgba(94, 234, 212, 0.3);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 0.65rem;
}

.serve-hover-desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.serve-hover-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.serve-hover-features li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: center;
    gap: 7px;
}

.serve-hover-features li i {
    color: var(--teal-mid);
    font-size: 0.72rem;
    flex-shrink: 0;
}

/* image sources */
.tile-corporate {
    background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&q=80");
}

.tile-manufacturing {
    background-image: url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=800&q=80");
}

.tile-clinic {
    background-image: url("https://images.unsplash.com/photo-1551076805-e1869033e561?w=800&q=80");
}

.tile-csr {
    background-image: url("https://images.unsplash.com/photo-1593113598332-cd288d649433?w=800&q=80");
}

/* responsive grid */
@media (max-width: 991.98px) {
    .serve-tile {
        height: 380px;
    }
}

@media (max-width: 575.98px) {
    .serve-tile {
        height: 320px;
    }

    #pillars,
    #serve {
        padding-top: 52px;
    }

    .serve-tile-hover {
        padding-bottom: 80px;
    }
}

/* ── HERO ── */
.hero {

    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 200px 24px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/background-image.png") repeat;
    pointer-events: none;
    z-index: -1;
}

.hero-sub {
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 36px;
    position: relative;
}

.btn-demo-hero {
    background: #267273;
    border: 1.5px solid #267273;
    color: #fff;
    border-radius: 50px;
    padding: 13px 36px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    backdrop-filter: blur(4px);
}

.btn-demo-hero:hover {
    background: var(--teal-accent);
    border-color: var(--teal-accent);
    color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45, 212, 191, 0.3);
}

/* ── SECTION: WHAT IS ── */
.section-what {
    padding: 96px 0 80px;
    background: var(--white);
}

.badge-tag {
    display: inline-block;
    /* border: 1.5px solid #b2cece; */
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #267273;
    margin-bottom: 28px;
    background-color: #e6f0f0;
}

.section-title {

    font-size: 48px;
    font-weight: 700;
    color: #113334;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-body {
    font-size: 18px;
    font-weight: 400;
    color: #4a6362;
    line-height: 1.8;
    margin-bottom: 18px;
}

.img-placeholder {
    background: var(--gray-card);
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder svg {
    opacity: 0.3;
}

.fusion-section {
    background: #f4f6f6;
    padding: 100px 0;
}

/* TABS */
.fusion-tabs {
    display: flex;
    /* justify-content: center; */
    gap: 10px;
    margin-bottom: 60px;
    background-color: #f6fafa;
    padding: 10px;
    border-radius: 50px;
    overflow-x: scroll;
    width: fit-content;
}

.fusion-tab {
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    background: #e6eeee;
    color: #5A7A7B;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.fusion-tab.active {
    background: #0c3b37;
    color: #fff;
    box-shadow: 0 8px 20px rgba(12, 59, 55, 0.25);
}

/* CONTENT */
.fusion-content {
    position: relative;
}

.fusion-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.fusion-pane.active {
    display: block;
}

/* LEFT */
.fusion-tag {
    display: inline-block;
    background: #dce9e8;
    color: #0c3b37;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.fusion-heading {
    font-size: 48px;
    font-weight: 700;
    color: #113334;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fusion-desc {
    font-size: 15px;
    color: #5f6f6d;
    line-height: 1.8;
    max-width: 520px;
}

/* RIGHT BOX */
.fusion-visual {
    width: 100%;
    height: 340px;
    border-radius: 24px;
    background: #d3d3d3;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .fusion-heading {
        font-size: 28px;
    }

    .fusion-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: auto;
    }

    .fusion-tabs .fusion-tab {
        min-width: fit-content;
    }
}

.emr-section {
    background: #E6F0F0;
    padding: 80px 0;
}

.emr-title {
    font-size: 28px;
    font-weight: 600;
    color: #113334;
}

.emr-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    transition: 0.3s;
}

.emr-card-home {
    background: #F6FAFA;
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    transition: 0.3s;
}

.emr-card,
.emr-card-home:hover {
    transform: translateY(-5px);
}

.emr-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1e3d3b;
    background-color: #E6F0F0;
}

.emr-card,
.emr-card-home h4 {
    font-size: 18px;
    font-weight: 600;
    color: #113334 !important;
}

.emr-card,
.emr-card-home p {
    font-size: 16px;
    color: #5a7a7b;
    line-height: 1.6;
}

.feature-title {
    margin-top: 80px;
    font-size: 28px;
    font-weight: 600;
    color: #113334;
}

.feature-item {
    display: flex;
    gap: 12px;
}

.feature-icon {
    width: 22px;
    height: 22px;
    background: #1e6b63;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.contact-section {
    background: #dfe9e8;
    padding: 200px 0;
}

/* LEFT */
.contact-left .tag {
    background: #d3e1df;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-heading {
    font-size: 44px;
    font-weight: 600;
    color: #123c3a;
    line-height: 1.3;
}

.contact-heading span {
    font-style: italic;
}

.contact-desc {
    color: #5f6f6d;
    max-width: 500px;
    margin-top: 20px;
}

/* STATS */
.contact-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-stats h3 {
    font-weight: 600;
    color: #123c3a;
}

.contact-stats span {
    font-size: 12px;
    color: #6f7f7d;
}

/* INFO */
.info-title {
    font-size: 12px;
    letter-spacing: 1px;
    color: #6f7f7d;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.info-grid p {
    font-size: 13px;
    color: #5f6f6d;
}

/* RIGHT CARD */
.contact-card {
    background: #f4f7f7;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #123c3a;
}

.form-sub {
    color: #6f7f7d;
    margin-bottom: 20px;
}

/* INPUTS */
input,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #267273;
    background: transparent;
    outline: none;
}

textarea {
    height: 120px;
}

/* CHIPS */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.chips span {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #7fa7a3;
    font-size: 12px;
    cursor: pointer;
}

/* BUTTON */
.btn-submit {
    background: #1f6b63;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    width: 100%;
    font-weight: 500;
}

.solution-section {
    padding: 80px 0;
    background-color: #f6fafa;
}

.prisalis-footer-cta {
    position: relative;
    overflow: hidden;
    padding: 92px 0 5px;
    background: #0d2627;
    color: #f4f6f3;
}

.prisalis-footer-container {
    max-width: 1380px;
}

.cta-top {
    max-width: 1120px;
    margin: 0 auto;
}

.cta-heading {
    margin: 0;
    color: #f4f4f1;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.cta-subtext {
    max-width: 860px;
    margin: 34px auto 0;
    color: rgba(233, 237, 233, 0.78);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.cta-btn {
    /* min-width: 360px;
    height: 84px; */
    padding: 18px 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cta-btn-light {
    background: #f4f4f1;
    color: #15393b;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.cta-btn-light:hover {
    color: #15393b;
    transform: translateY(-2px);
}

.cta-btn-outline {
    background: transparent;
    color: #f4f4f1;
    border: 1.5px solid rgba(244, 244, 241, 0.82);
}

.cta-btn-outline:hover {
    color: #f4f4f1;
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.cta-arrow {
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    transform: translateY(-1px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(214, 225, 220, 0.34);
    /* margin-top: 72px; */
}

.footer-main {
    padding-top: 68px;
    padding-bottom: 64px;
    row-gap: 42px;
}

.footer-brand-col {
    padding-right: 80px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.footer-logo-text {
    color: #2d8d8b;
    font-size: 56px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.footer-logo-divider {
    width: 1px;
    height: 34px;
    background: rgba(223, 229, 225, 0.26);
    display: inline-block;
}

.footer-logo-sub {
    color: rgba(204, 214, 210, 0.58);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.footer-brand-text {
    max-width: 500px;
    margin: 0;
    color: rgba(192, 207, 201, 0.62);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.footer-title {
    margin: 0 0 28px;
    color: #f1f3ee;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li+li {
    margin-top: 24px;
}

.footer-links a {
    color: rgba(181, 199, 192, 0.58);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f4f4f1;
}

.footer-divider-bottom {
    margin-top: 0;
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.footer-copy {
    margin: 0;
    color: rgba(173, 191, 185, 0.55);
    font-size: 16px;
    line-height: 1.6;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(173, 191, 185, 0.55);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #f4f4f1;
}

@media (max-width: 1399.98px) {
    .cta-heading {
        font-size: 38px;
    }

    .cta-subtext {
        font-size: 18px;
    }

    .cta-btn {
        min-width: 320px;
        height: 76px;
        font-size: 18px;
    }

    .footer-logo-text {
        font-size: 48px;
    }

    .footer-logo-sub {
        font-size: 20px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-links a,
    .footer-brand-text {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .prisalis-footer-cta {
        padding: 72px 0 44px;
    }

    .cta-heading {
        font-size: 26px;
    }

    .cta-subtext {
        font-size: 16px;
        max-width: 700px;
    }

    .footer-brand-col {
        padding-right: 12px;
    }

    .footer-main {
        padding-top: 54px;
        padding-bottom: 50px;
    }

    .footer-title {
        margin-bottom: 18px;
    }

    .footer-links li+li {
        margin-top: 14px;
    }
}

@media (max-width: 767.98px) {
    .prisalis-footer-cta {
        padding: 60px 0 36px;
    }

    .cta-heading {
        font-size: 22px;
        line-height: 1.15;
    }

    .cta-subtext {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.7;
    }

    .cta-buttons {
        gap: 16px;
        margin-top: 34px;
    }

    .cta-btn {
        /* min-width: 100%; */
        height: 64px;
        font-size: 16px;
        padding: 0 24px;
    }

    /* .footer-divider {
        margin-top: 54px;
    } */

    .footer-main {
        padding-top: 42px;
        padding-bottom: 38px;
    }

    .footer-logo-wrap {
        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-logo-text {
        font-size: 38px;
    }

    .footer-logo-sub {
        font-size: 15px;
        letter-spacing: 0.16em;
    }

    .footer-brand-text,
    .footer-links a,
    .footer-copy,
    .footer-bottom-links a {
        font-size: 16px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-bottom {
        padding-top: 22px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        gap: 18px;
    }
}

.proven-scale-section {
    background: #f6f7f6;
    padding: 118px 0 120px;
    overflow: hidden;
}

.proven-scale-wrap {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 48px;
}

.proven-scale-row {
    margin-top: 76px;
}

.proven-card {
    height: 242px;
    background: #f8f9f8;
    border: 1px solid rgba(203, 217, 214, 0.95);
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(18, 43, 43, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
    text-align: center;
}

.proven-value {
    color: #113334;
    font-size: 36px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.infinity-symbol {
    font-size: 66px;
    transform: translateY(-2px);
}

.proven-label {
    color: #678486;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.01em;
    max-width: 230px;
}

@media (max-width: 1399.98px) {
    .proven-scale-wrap {
        max-width: 1280px;
        padding: 0 30px;
    }

    .proven-scale-heading {
        font-size: 54px;
    }

    .proven-card {
        height: 220px;
        border-radius: 24px;
    }

    .proven-value {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .proven-label {
        font-size: 14px;
        max-width: 210px;
    }
}

@media (max-width: 991.98px) {
    .proven-scale-section {
        padding: 84px 0 88px;
    }

    .proven-scale-wrap {
        padding: 0 22px;
    }

    .proven-scale-heading {
        font-size: 40px;
    }

    .proven-scale-row {
        margin-top: 48px;
    }

    .proven-card {
        height: 190px;
    }

    .proven-value {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .proven-label {
        font-size: 14px;
        max-width: 220px;
    }
}

@media (max-width: 575.98px) {
    .proven-scale-section {
        padding: 64px 0 68px;
    }

    .proven-scale-wrap {
        padding: 0 16px;
    }

    .proven-scale-heading {
        font-size: 30px;
        line-height: 1.2;
    }

    .proven-scale-row {
        margin-top: 34px;
    }

    .proven-card {
        height: 168px;
        border-radius: 22px;
        padding: 22px 16px;
    }

    .proven-value {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .infinity-symbol {
        font-size: 44px;
    }

    .proven-label {
        font-size: 14px;
        line-height: 1.4;
        max-width: 180px;
    }
}

.solutions-environment-section {
    background: #eef4f3;
    padding: 86px 0 96px;
    overflow: hidden;
}

.solutions-header {
    max-width: 780px;
}

.solutions-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #dfeae8;
    color: #2a6e72;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    margin-bottom: 28px;
}

.solutions-subtext {
    max-width: 760px;
    margin: 16px 0 0;
    color: #5a7a7b;
    font-size: 18px;
    line-height: 1.62;
    font-weight: 400;
}

.solutions-tabs-wrap {
    margin-top: 58px;
}

.solutions-tabs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    border: 1px solid #d8e3e1;
    background: transparent;
    min-width: 792px;
}

.prisalis {
    width: 200px;
}

.solutions-tab {
    border: 0;
    background: transparent;
    color: #668486;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px;
    padding: 18px 28px;
    min-height: 56px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.solutions-tab.active {
    background: #ffffff;
    color: #113334;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(22, 57, 59, 0.08);
}

.solutions-content-wrap {
    margin-top: 72px;
}

.solutions-panel {
    display: none;
}

.solutions-panel.active {
    display: block;
}

.solutions-content-left {
    max-width: 640px;
}

.panel-heading {
    margin: 0;
    color: #16393b;
    font-size: 40px;
    line-height: 1.34;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.panel-description {
    margin: 24px 0 0;
    color: #5a7a7b;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
    max-width: 620px;
}

.feature-list {
    margin-top: 42px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.feature-item+.feature-item {
    margin-top: 22px;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: #dfe9e7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.feature-text h4 {
    margin: 2px 0 6px;
    color: #113334;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.feature-text p {
    margin: 0;
    color: #5a7a7b;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.solutions-visual {
    width: 100%;
    height: 534px;
    border-radius: 28px;
    background: #dbd9d9;
}

@media (max-width: 1399.98px) {
    .solutions-subtext {
        font-size: 20px;
    }

    .panel-heading {
        font-size: 36px;
    }

    .panel-description {
        font-size: 19px;
    }

    .solutions-visual {
        height: 500px;
    }
}

@media (max-width: 1199.98px) {
    .solutions-tabs-wrap {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .solutions-tabs {
        min-width: max-content;
    }
}

@media (max-width: 991.98px) {
    .solutions-environment-section {
        padding: 72px 0 80px;
    }

    .solutions-subtext {
        font-size: 18px;
    }

    .solutions-content-wrap {
        margin-top: 56px;
    }

    .panel-heading {
        font-size: 34px;
        line-height: 1.25;
    }

    .panel-description {
        font-size: 18px;
    }

    .solutions-visual {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .solutions-environment-section {
        padding: 56px 0 64px;
    }

    .solutions-tag {
        font-size: 12px;
        padding: 9px 14px;
        margin-bottom: 20px;
    }

    .solutions-subtext {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.7;
    }

    .solutions-tabs-wrap {
        margin-top: 34px;
    }

    .solutions-tabs {
        padding: 6px;
        gap: 6px;
    }

    .solutions-tab {
        font-size: 14px;
        padding: 16px 20px;
        min-height: 48px;
    }

    .solutions-content-wrap {
        margin-top: 42px;
    }

    .panel-heading {
        font-size: 28px;
    }

    .panel-description {
        margin-top: 18px;
        font-size: 16px;
    }

    .feature-list {
        margin-top: 30px;
    }

    .feature-item {
        gap: 14px;
    }

    .feature-icon-box {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 12px;
    }

    .feature-icon-box img {
        width: 22px;
        height: 22px;
    }

    .feature-text h4 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 14px;
    }

    .solutions-visual {
        height: 320px;
        border-radius: 22px;
    }
}

.philosophy-section {
    background: #f5f7f6;
}

.badge-pill {
    display: inline-block;
    background: #dfe8e6;
    color: #2d4b45;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1c3d36;
}

.philosophy-card {
    background: linear-gradient(180deg, #e8f7f3 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 40px 100px;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.philosophy-card p {
    font-size: 18px;
    color: #1c3d36;
    line-height: 1.6;
    margin: 0;
}

.quote-icon {
    font-size: 50px;

    color: #1c3d36;
}

.team-section {
    background: #f5f7f6;
    padding: 60px 0;
}

/* Layout */
.team-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT */
.team-left {
    width: 30%;
}

.badge-pill {
    display: inline-block;
    background: #dfe8e6;
    color: #2d4b45;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1c3d36;
    line-height: 1.2;
}

.team-subtext {
    font-size: 15px;
    color: #6c8a83;
    margin-top: 15px;
    max-width: 320px;
}

/* RIGHT */
.team-right {
    width: 70%;
    overflow: hidden;
    /* IMPORTANT */
}

/* SCROLL MAGIC */
.team-scroll {
    display: flex;
    gap: 24px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    padding-bottom: 10px;
}

/* Hide scrollbar */
.team-scroll::-webkit-scrollbar {
    display: none;
}

/* CARD */
.team-card {
    flex: 0 0 260px;
    /* THIS controls card width */
    scroll-snap-align: start;
}

/* IMAGE */
.team-img {
    /* width: 100%;
    height: 200px; */
    /* background: #cfcfcf; */
    border-radius: 16px;
    margin-bottom: 15px;
}

/* TEXT */
.team-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1c3d36;
}

.team-card p {
    font-size: 14px;
    color: #6c8a83;
}

/* SMOOTH SCROLL */
.team-scroll {
    scroll-behavior: smooth;
}

.pz-wrapper {
    padding: 40px;
    background: #eef3f2;

}

.pz-title {
    font-size: 34px;
    font-weight: 600;
    color: #1c3b36;
    margin-bottom: 30px;
}

.pz-card {
    display: flex;
    gap: 30px;
    background: #153B3C;
    padding: 40px;
    border-radius: 20px;
    color: #fff;
}

.pz-left {
    flex: 1;
}

.pz-right {
    flex: 1;
    border-radius: 20px;
    background-image: url(../images/home/meghalaya.png);
    background-repeat: no-repeat;
    background-position: center;
    /* background: rgba(255, 255, 255, 0.05); */
    width: 100%;

}

.pz-tag {
    font-size: 12px;
    letter-spacing: 1px;
    color: #7fd1c6;
    margin-bottom: 10px;
}

.pz-heading {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pz-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 15px;
}

.pz-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.pz-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
}

.pz-box h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.pz-box p {
    font-size: 12px;
    opacity: 0.7;
}

.pz-bottom {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.pz-feature {
    flex: 1;
    background: #0f3f3b;
    color: #fff;
    padding: 25px;
    border-radius: 16px;
}

.pz-feature h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.pz-feature p {
    font-size: 13px;
    opacity: 0.85;
}

/* animation */
/* Initial state */
.smooth-heading[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(60px) !important;
}

/* When visible */
.smooth-heading[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0) !important;
}

/* Smooth transition (IMPORTANT) */
.smooth-heading {
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) opacity 0.9s ease !important;
}

.emr-scroll::-webkit-scrollbar {
    display: none;
}

.emr-scroll {
    scrollbar-width: none;
}

.device-section {

    padding: 60px 0;
}

/* CARD */
.device-card {
    text-align: left;
}

/* IMAGE BOX */
.device-img {
    /* background: #f3f5f6; */
    border-radius: 20px;
    /* padding: 25px; */
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.04); */
    transition: 0.3s ease;
}

.device-img img {
    width: 100%;
    /* height: 140px;
    object-fit: contain; */
}

/* HOVER */
.device-card:hover .device-img {
    transform: translateY(-5px);
}

/* CATEGORY */
.device-tag {
    display: block;
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #1f6f6b;
    font-weight: 600;
}

/* TITLE */
.device-title {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 500;
    color: #1a2b2b;
}

@media (min-width: 992px) {
    .col-lg-5-custom {
        width: 20%;
        flex: 0 0 20%;
    }
}





.table-title {
    font-size: 48px;
    font-weight: 700;
    color: #113334;
    margin-bottom: 50px;
}

/* WRAPPER */
.table-wrapper {
    overflow-x: auto;
}

/* TABLE STRUCTURE */
.hardware-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    /* 🔥 SPACE ALL SIDES */
    min-width: 700px;
}

/* HEADER */
.hardware-table thead th {
    padding: 24px 50px;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(180deg, #E8F7F3 0%, #FFFFFF 100%);
    color: #113334;

}

.hardware-table thead th:first-child {
    border-top-left-radius: 14px;

}

.hardware-table thead th:last-child {
    border-top-right-radius: 14px;

}

/* FIRST HEADER */
.feature-head {
    background: #0f3f3b !important;
    color: #fff !important;
}

/* BODY CELLS = BOXES */
.hardware-table tbody td {
    padding: 28px 50px;
    font-size: 18px;
    color: #267273;
    background: #ffffff;


}

/* FEATURE COLUMN */
.feature-cell {
    background: #DCEEEE8A !important;
    font-weight: 500;
    color: #113334 !important;
}

/* REMOVE ANY DEFAULT BORDER */
.hardware-table td,
.hardware-table th {
    border: none;
}

/* MOBILE */
@media (max-width: 768px) {

    .table-title {
        font-size: 28px;
    }

    .hardware-table {
        min-width: 650px;
        border-spacing: 12px;
    }

    .hardware-table tbody td {
        padding: 20px;
        font-size: 16px;
    }
}


.btn {
    transition: all 0.3s ease;
}


/* animation */
.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* about us page  */
.genesis-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* RIGHT SIDE GRID */
.genesis-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 12px;
}

/* IMAGE BASE */
.genesis-images .img {
    border-radius: 20px;
    overflow: hidden;
}

.genesis-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CUSTOM SHAPES (THIS IS THE MAGIC) */

/* top left */
.img1 {
    grid-row: span 1;
}

/* top right */
.img2 {
    grid-row: span 1;
}

/* BIG CENTER IMAGE */
.img3 {
    grid-column: span 2;
    grid-row: span 2;
}

/* bottom left */
.img4 {
    grid-row: span 1;
}

/* bottom right */
.img5 {
    grid-row: span 1;
}

@media (max-width: 768px) {

    .genesis-section {
        grid-template-columns: 1fr;
    }

    .genesis-images {
        grid-template-columns: 1fr 1fr;
    }

    .img3 {
        grid-column: span 2;
    }
}

.ai-feature-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.ai-feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.emr-card {
    position: relative;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;

    border: 1px solid #e5eeee;
}

/* HOVER EFFECT */
.emr-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #cfe3e2;
}

.emr-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at top, rgba(31, 111, 107, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.emr-card:hover::after {
    opacity: 1;
}

.step-badge {
    transition: all 0.3s ease;
}

.emr-card:hover .step-badge {
    transform: scale(1.1);
    background: #1f6f6b;
    color: #fff;
}

.contact-card {
    max-width: 700px;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  
}

.contact-card__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card__address {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.contact-card__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
}

.contact-item__icon {
    width: 40px;
    height: 40px;
    background: #dfe9e8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 15px;
    font-size: 18px;
}

.contact-item__text {
    font-size: 20px;
    color: #333;
}