* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}





.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 8rem 4rem 8rem;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: left;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #9ca3af;
    font-weight: 300;
}

.innovation-circle-container {
    width: 500px;
    height: 500px;
    position: relative;
    z-index: 10;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.connection-line {
    stroke: rgba(59, 130, 246, 0.3);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

.center-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(0, 30, 60, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(0, 150, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.5), inset 0 0 30px rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
    position: absolute;
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 150, 255, 0.5), inset 0 0 30px rgba(0, 150, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 150, 255, 0.8), inset 0 0 50px rgba(0, 150, 255, 0.3);
    }
}

.ai-bubble-image {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: brightness(1.2);
}

.liquid-blob {
    width: 110px;
    height: 110px;
    background:
        radial-gradient(circle at 25% 30%, rgba(200, 150, 255, 0.95), transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(100, 200, 255, 0.9), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(120, 80, 255, 1), rgba(59, 130, 246, 1));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    position: relative;
    animation: morph 10s ease-in-out infinite, rotate 25s linear infinite;
    filter: blur(0.5px) saturate(1.3);
    box-shadow:
        0 0 40px rgba(120, 80, 255, 0.7),
        0 0 70px rgba(59, 130, 246, 0.5),
        inset 0 0 50px rgba(255, 255, 255, 0.25),
        inset -20px -20px 40px rgba(120, 80, 255, 0.3);
}

.liquid-blob::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
    border-radius: 50%;
    top: 18%;
    right: 22%;
    filter: blur(1.5px);
    animation: float-bubble 5s ease-in-out infinite;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        inset -5px -5px 10px rgba(200, 200, 255, 0.4);
}

.liquid-blob::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
    border-radius: 50%;
    bottom: 28%;
    left: 18%;
    filter: blur(1.5px);
    animation: float-bubble-2 6s ease-in-out infinite;
    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.4),
        inset -4px -4px 8px rgba(200, 200, 255, 0.3);
}

@keyframes morph {
    0%, 100% {
        border-radius: 42% 58% 70% 30% / 45% 50% 60% 55%;
    }
    20% {
        border-radius: 58% 42% 45% 55% / 55% 60% 40% 45%;
    }
    40% {
        border-radius: 35% 65% 60% 40% / 50% 45% 55% 50%;
    }
    60% {
        border-radius: 65% 35% 50% 50% / 40% 55% 45% 60%;
    }
    80% {
        border-radius: 50% 50% 55% 45% / 60% 35% 65% 40%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float-bubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.85;
    }
    33% {
        transform: translate(-8px, -12px) scale(1.05);
        opacity: 1;
    }
    66% {
        transform: translate(5px, -8px) scale(0.98);
        opacity: 0.9;
    }
}

@keyframes float-bubble-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(10px, 8px) scale(1.08);
        opacity: 0.95;
    }
    66% {
        transform: translate(-6px, 10px) scale(0.95);
        opacity: 0.85;
    }
}

.orbit-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 30, 60, 0.5);
    border: 2px solid rgba(0, 150, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 5;
    animation: float-in 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, continuous-float 4s ease-in-out infinite;
    animation-delay: 0s, 1.2s;
    opacity: 0;
}

.orbit-circle svg {
    stroke: rgba(0, 200, 255, 0.9);
}

.orbit-circle.top {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.1s, 1.3s;
}

.orbit-circle.top-left {
    top: 100px;
    left: 70px;
    animation-delay: 0.2s, 1.4s;
}

.orbit-circle.top-right {
    top: 100px;
    right: 70px;
    animation-delay: 0.3s, 1.5s;
}

.orbit-circle.left {
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    animation-delay: 0.4s, 1.6s;
}

.orbit-circle.right {
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
    animation-delay: 0.5s, 1.7s;
}

.orbit-circle.bottom {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.6s, 1.8s;
}

.small-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 150, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.8);
    z-index: 3;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes float-in {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes continuous-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.dot-1 {
    top: 80px;
    right: 150px;
    animation-delay: 0s;
}

.dot-2 {
    top: 150px;
    right: 40px;
    animation-delay: 0.3s;
}

.dot-3 {
    bottom: 100px;
    right: 150px;
    animation-delay: 0.6s;
}

.dot-4 {
    top: 180px;
    left: 40px;
    animation-delay: 0.9s;
}

.dot-5 {
    bottom: 150px;
    left: 100px;
    animation-delay: 1.2s;
}

.dot-6 {
    top: 60px;
    left: 180px;
    animation-delay: 1.5s;
}

.portals-section {
    padding: 6rem 2rem;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 4rem;
}

.healthcare-section {
    padding: 6rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.healthcare-section#meditour {
    padding-top: 10rem;
    height:fit-content;
}

.healthcare-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.8s ease-out;
    z-index: 10;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInTitle 1s ease-out 0.3s forwards;
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
}

.healthcare-main-title.fade-out {
    opacity: 0;
}

.healthcare-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-top: 4rem;
    padding-top: 1rem;
}

.meditour-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1600px;
}

.meditour-left-image {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.3);
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: all 0.5s ease;
    transform: translateX(-50px);
    opacity: 0;
}

.meditour-layout.visible .meditour-left-image {
    transform: translateX(0);
    opacity: 1;
}

.meditour-left-image:hover {
    box-shadow: 0 35px 70px -12px rgba(16, 185, 129, 0.5);
    border-color: rgba(16, 185, 129, 0.4);
    transform: scale(1.02);
}

.square-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meditour-left-image:hover .square-image {
    transform: scale(1.1);
}

.meditour-center {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cylinder__wrapper {
    width: 100%;
    min-height: 100vh;
    position: relative;
    perspective: 1200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.cylinder__cards__wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 700px;
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform;
}

.cylinder__card__item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    backface-visibility: hidden;
    transform-origin: center center;
    will-change: transform;
}

.capability-card {
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: 1.25rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fb923c 0%, #f97316 100%);
}

.capability-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.capability-card:hover .capability-icon {
    transform: scale(1.1) rotate(5deg);
}

.capability-icon svg {
    stroke: white;
}

.capability-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.capability-description {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
}

.hospitality-demo-panel {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.hospitality-demo-panel .demo-btn {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

.hospitality-demo-panel .demo-btn:hover {
    box-shadow: 0 15px 30px rgba(251, 146, 60, 0.4);
}

.healthcare-content-wrapper.visible {
    opacity: 1;
    pointer-events: auto;
}

.healthcare-image-slide {
    transform: translateX(-100%);
    opacity: 0;
    will-change: transform, opacity;
}

.healthcare-tablet-image {
    width: 100%;
    height: 60vh;
    max-width: 600px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.healthcare-text-slide {
    transform: translateX(100%);
    opacity: 0;
    will-change: transform, opacity;
}

.healthcare-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ccc 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.healthcare-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d1d5db;
}

.key-features-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.key-features-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Key Features Icon Grid ── */
.kf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.5rem;
    background: linear-gradient(135deg, #0d1b3e 0%, #0a1628 60%, #0d2045 100%);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.kf-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.kf-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.kf-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border: 2px solid rgba(96, 165, 250, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.kf-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.35;
}

.healthcare-features-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: -6rem;
}

.healthcare-features-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.center-monitor {
    position: relative;
    z-index: 5;
    max-width: 420px;
    width: 100%;
}

.monitor-frame {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(59, 130, 246, 0.3));
}

.monitor-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 6px;
    overflow: hidden;
    font-family: system-ui, -apple-system, sans-serif;
}

.app-header {
    background: rgba(20, 20, 20, 0.95);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.app-nav {
    display: flex;  
    gap: 16px;
}


.app-body {
    padding: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 12px;
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    color: #9ca3af;
}

@keyframes pulse-animation {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(0.98);
    }
}

.animate-pulse-1 {
    animation: pulse-animation 3s ease-in-out infinite;
}

.animate-pulse-2 {
    animation: pulse-animation 3s ease-in-out 1s infinite;
}

.animate-pulse-3 {
    animation: pulse-animation 3s ease-in-out 2s infinite;
}

.activity-section {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 16px;
}

.activity-header {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: slideInActivity 0.5s ease-out forwards;
}

.slide-in-1 {
    animation-delay: 0.5s;
}

.slide-in-2 {
    animation-delay: 1s;
}

.slide-in-3 {
    animation-delay: 1.5s;
}

@keyframes slideInActivity {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
}

.activity-text {
    flex: 1;
    font-size: 10px;
    color: #d1d5db;
}

.activity-time {
    font-size: 9px;
    color: #6b7280;
}

.feature-tag {
    position: absolute;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-tag:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.healthcare-features-container.visible .feature-tag {
    opacity: 1;
}

.tag-1 {
    top: 18%;
    left: 20%;
    transition-delay: 0.1s;
}

.tag-2 {
    top: 18%;
    right: 18%;
    transition-delay: 0.2s;
}

.tag-3 {
    top: 28%;
    left: 2%;
    transition-delay: 0.3s;
}

.tag-4 {
    top: 28%;
    right: 5%;
    transition-delay: 0.4s;
}

.tag-5 {
    top: 38%;
    left: -2%;
    transition-delay: 0.5s;
}

.tag-6 {
    top: 38%;
    right: 2%;
    transition-delay: 0.6s;
}

.tag-7 {
    top: 50%;
    left: -2%;
    transition-delay: 0.7s;
}

.tag-8 {
    top: 50%;
    right: 3%;
    transition-delay: 0.8s;
}

.tag-9 {
    top: 60%;
    left: 8%;
    transition-delay: 0.9s;
}

.tag-10 {
    top: 60%;
    right: 10%;
    transition-delay: 1s;
}

.tag-11 {
    top: 75%;
    left: 42%;
    transform: translateX(-50%) scale(0.8);
    transition-delay: 1.1s;
}

.healthcare-features-container.visible .tag-11 {
    transform: translateX(-50%) scale(1);
}

.demo-panel {
    position: relative;
    margin-top: 3rem;
    left: 0;
    width: 100%;
    height: 180px;
    padding: 2rem 2rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    backdrop-filter: blur(20px);
    border: none;
    box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.95), 0 -10px 40px rgba(0, 0, 0, 0.8), 0 -2px 10px rgba(0, 0, 0, 0.6);
    z-index: 99;
    transform: translateY(100%);
    border-radius: 50% 50% 0 0 / 25% 25% 0 0;
    transition: opacity 2s ease-out;
    overflow: hidden;
}

.demo-panel.visible {
    animation: fadeInSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInSlideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.demo-panel-bg-icons {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.bg-icon {
    position: absolute;
    opacity: 0.08;
    filter: blur(1px);
    animation: floatIcon 20s ease-in-out infinite;
}

.bg-icon svg {
    stroke: #60a5fa;
}

.bg-icon-1 {
    top: -10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-icon-2 {
    top: 50%;
    left: 15%;
    animation-delay: 2s;
}

.bg-icon-3 {
    top: 20%;
    left: 35%;
    animation-delay: 4s;
}

.bg-icon-4 {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.bg-icon-5 {
    top: 10%;
    right: 15%;
    animation-delay: 3s;
}

.bg-icon-6 {
    top: 55%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

.demo-panel-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.demo-panel-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.demo-panel-text {
    font-size: .9rem;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
    max-width: 1000px;
    line-height: 1.5;
}

.demo-btn {
    position: relative;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #ffffff;
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.demo-btn:hover::before {
    width: 300px;
    height: 300px;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.demo-btn-text {
    position: relative;
    z-index: 1;
}

.demo-btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.demo-btn:hover .demo-btn-icon {
    transform: translateX(5px);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    }
}

.demo-btn.visible {
    animation: pulse 2s ease-in-out infinite;
}

.portal-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.6) 0%, rgba(3, 7, 18, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.portal-card.reverse {
    direction: rtl;
}

.portal-card.reverse > * {
    direction: ltr;
}

.portal-image-container {
    position: relative;
    height: 500px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.healthcare-image {
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
}

.healthcare-image .portal-image {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 1rem;
}

.portal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portal-card:hover .portal-image {
    transform: scale(1.05);
}

.healthcare-card {
    align-items: center;
}

.healthcare-card .portal-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portal-visual {
    position: relative;
    height: 500px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.visual-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    backdrop-filter: blur(20px);
}

.healthcare-bg {
    background:
        url('https://images.pexels.com/photos/4021775/pexels-photo-4021775.jpeg?auto=compress&cs=tinysrgb&w=800') center/cover,
        linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(168, 85, 247, 0.5) 100%);
    background-blend-mode: overlay;
}

.hospitality-bg {
    background:
        url('https://images.pexels.com/photos/271639/pexels-photo-271639.jpeg?auto=compress&cs=tinysrgb&w=800') center/cover,
        linear-gradient(135deg, rgba(245, 158, 11, 0.5) 0%, rgba(251, 191, 36, 0.5) 100%);
    background-blend-mode: overlay;
}

.consumer-bg {
    background:
        url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=800') center/cover,
        linear-gradient(135deg, rgba(16, 185, 129, 0.5) 0%, rgba(52, 211, 153, 0.5) 100%);
    background-blend-mode: overlay;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon-float {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-portal-icon 8s ease-in-out infinite;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(59, 130, 246, 0.3),
        inset 0 0 20px rgba(59, 130, 246, 0.1);
    z-index: 10;
    opacity: 0;
    animation: float-in-portal 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, float-portal-icon 8s ease-in-out infinite;
}

.icon-float svg {
    stroke: #60a5fa;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.5));
}

.icon-float.icon-1 {
    top: 12%;
    left: 15%;
    animation-delay: 0.3s, 1.8s;
}

.icon-float.icon-2 {
    top: 45%;
    right: 18%;
    animation-delay: 0.6s, 2.4s;
}

.icon-float.icon-3 {
    bottom: 18%;
    left: 25%;
    animation-delay: 0.9s, 3s;
}

@keyframes float-in-portal {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float-portal-icon {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) translateX(10px) rotate(3deg);
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) translateX(8px) rotate(-3deg);
    }
}

.portal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portal-icon {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.5s;
}

.healthcare-icon {
    background: linear-gradient(135deg, #ef4444 0%, #ec4899 100%);
}

.hospitality-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.consumer-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.portal-card:hover .portal-icon {
    transform: scale(1.1) rotate(5deg);
}

.portal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portal-description {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.portal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    color: #60a5fa;
    transition: all 0.3s;
}

.feature-tag:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: none;
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.portal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

a {
    text-decoration: none;
}

@media (max-width: 1024px) {
    .healthcare-main-title {
        font-size: 2.5rem;
        white-space: normal;
        padding: 0 1rem;
    }

    .healthcare-main-title.scrolled {
        position: absolute;
        font-size: 1.75rem;
    }

    .healthcare-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .meditour-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .meditour-left-image {
        width: 100%;
        max-width: 350px;
        height: 350px;
    }

    .meditour-center {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cylinder__wrapper {
        min-height: 80vh;
        padding: 3rem 1.5rem;
    }

    .cylinder__cards__wrapper {
        max-width: 400px;
        height: 600px;
    }

    .cylinder__card__item {
        width: 380px;
    }

    .healthcare-tablet-image {
        max-width: 100%;
        height: 220px;
        object-fit: cover;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }

    .healthcare-image-slide {
        padding: 0 1rem;
    }

    .healthcare-text-slide {
        padding: 0 1rem;
    }

    .healthcare-subtitle {
        font-size: 1.5rem;
    }

    .healthcare-features-container {
        padding: 0 1rem;
        min-height: 600px;
    }

    .center-monitor {
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .stat-card {
        padding: 8px;
    }

    .stat-value {
        font-size: 16px;
    }

    .stat-label {
        font-size: 9px;
    }

    .activity-text {
        font-size: 9px;
    }

    .activity-time {
        font-size: 8px;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .tag-1 { top: 2%; left: 2%; }
    .tag-2 { top: 5%; right: 2%; }
    .tag-3 { top: 20%; left: -2%; }
    .tag-4 { top: 25%; right: 0%; }
    .tag-5 { top: 38%; left: -5%; }
    .tag-6 { top: 42%; right: -3%; }
    .tag-7 { top: 55%; left: -3%; }
    .tag-8 { top: 60%; right: -2%; }
    .tag-9 { bottom: 18%; left: 2%; }
    .tag-10 { bottom: 15%; right: 2%; }
    .tag-11 { bottom: 8%; }

    .portal-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portal-visual {
        height: 400px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 5rem 2rem 4rem;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .innovation-circle-container {
        width: 400px;
        height: 400px;
        justify-self: center;
    }

    /* Scale center-circle & blob proportionally with the 400px container (~30% / ~22%) */
    .center-circle {
        width: 120px;
        height: 120px;
    }

    .liquid-blob {
        width: 88px;
        height: 88px;
    }

    .liquid-blob::before {
        width: 28px;
        height: 28px;
    }

    .liquid-blob::after {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
   

    .cylinder__wrapper {
        min-height: 70vh;
        padding: 2rem 1rem;
    }

    .cylinder__cards__wrapper {
        max-width: 320px;
        height: 550px;
    }

    .cylinder__card__item {
        width: 300px;
    }

    .capability-card {
        padding: 1.5rem;
    }

    .capability-icon {
        width: 56px;
        height: 56px;
    }

    .capability-title {
        font-size: 1.125rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .innovation-circle-container {
        /* never wider than the viewport */
        width: min(320px, 90vw);
        height: min(320px, 90vw);
    }

    /* Scale center-circle & blob proportionally with the 320px container (~30% / ~22%) */
    .center-circle {
        width: 96px;
        height: 96px;
    }

    .liquid-blob {
        width: 70px;
        height: 70px;
    }

    .liquid-blob::before {
        width: 22px;
        height: 22px;
    }

    .liquid-blob::after {
        width: 17px;
        height: 17px;
    }

    /* Orbit circles — scale positions for a ~320px container (ratio 320/500 ≈ 0.64) */
    .orbit-circle {
        width: 64px;
        height: 64px;
    }

    .orbit-circle svg {
        width: 28px;
        height: 28px;
    }

    .orbit-circle.top        { top: 32px; }
    .orbit-circle.top-left   { top: 64px; left: 45px; }
    .orbit-circle.top-right  { top: 64px; right: 45px; }
    .orbit-circle.left       { left: 45px; }
    .orbit-circle.right      { right: 45px; }
    .orbit-circle.bottom     { bottom: 32px; }

    /* Scale small-dot positions */
    .dot-1 { top: 51px;  right: 96px; }
    .dot-2 { top: 96px;  right: 26px; }
    .dot-3 { bottom: 64px; right: 96px; }
    .dot-4 { top: 115px; left: 26px; }
    .dot-5 { bottom: 96px; left: 64px; }
    .dot-6 { top: 38px;  left: 115px; }

    .section-title {
        font-size: 2rem;
    }

    .portal-card {
        padding: 2rem;
    }

    .portal-title {
        font-size: 1.5rem;
    }

    .dropdown-content {
        min-width: 300px;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
    }
}

.veriphy-section {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.03) 0%, transparent 100%);
    position: relative;
}

.veriphy-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.veriphy-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.veriphy-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.veriphy-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d1d5db;
}

.veriphy-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.veriphy-mission-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(3, 7, 18, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.5s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.veriphy-mission-card:hover {
    border-color: #10b981;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    transform: translateY(-10px);
}

.veriphy-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.5s;
}

.veriphy-mission-card:hover .veriphy-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.veriphy-card-icon svg {
    stroke: white;
}

.veriphy-mission-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
}

.veriphy-mission-card p {
    color: #d1d5db;
    line-height: 1.75;
    font-size: 1rem;
}

.veriphy-who-section {
    margin-bottom: 5rem;
    text-align: center;
}

.veriphy-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-align: center;
}

.veriphy-who-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d1d5db;
    max-width: 900px;
    margin: 0 auto;
}

.veriphy-services-section {
    margin-bottom: 5rem;
    text-align: center;
}

.veriphy-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.veriphy-service-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(3, 7, 18, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    text-align: left;
}

.veriphy-service-card:nth-child(1) {
    transform: translate(-100px, -100px) scale(0.8);
}

.veriphy-service-card:nth-child(2) {
    transform: translate(100px, -100px) scale(0.8);
}

.veriphy-service-card:nth-child(3) {
    transform: translate(-100px, 100px) scale(0.8);
}

.veriphy-service-card:nth-child(4) {
    transform: translate(100px, 100px) scale(0.8);
}

.veriphy-service-card.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.veriphy-service-card:hover {
    border-color: #10b981;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.veriphy-service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.veriphy-service-icon svg {
    stroke: white;
}

.veriphy-service-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.veriphy-service-card > p {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-weight: 500;
}

.veriphy-service-card ul {
    list-style: none;
    padding-left: 0;
}

.veriphy-service-card li {
    color: #9ca3af;
    line-height: 1.75;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.veriphy-service-card li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1.5rem;
    font-weight: bold;
}

.veriphy-awareness-section {
    margin-bottom: 5rem;
    text-align: center;
}

.veriphy-awareness-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

.veriphy-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2);
    display: flex;

}

#cta-img{
    width: 90%;
            padding: 4rem 2rem;
}
.cta-right{
        padding: 4rem 2rem;
    width: 70%;
}
.cta-left{
    width: 30%;
}

.veriphy-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.veriphy-cta-text {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.veriphy-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    border: none;
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.veriphy-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.veriphy-cta-btn svg {
    transition: transform 0.3s;
}

.veriphy-cta-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
 

}

@media (max-width: 768px) {
    .kf-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
        margin: 0 1rem;
    }

    .kf-item {
        gap: 0.5rem;
        padding: 0.5rem 0.25rem;
    }

    .kf-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .kf-icon svg {
        width: 18px;
        height: 18px;
    }

    .kf-label {
        font-size: 0.75rem;
    }

    .veriphy-section {
        padding: 4rem 0.75rem;
    }

    .veriphy-main-title {
        font-size: 2rem;
    }

    .veriphy-subtitle {
        font-size: 1.25rem;
    }

    .veriphy-section-title {
        font-size: 1.875rem;
    }

    .veriphy-cta-title {
        font-size: 1.75rem;
    }

    .healthcare-section {
        padding: 4rem 0 8rem;
        overflow: visible;
    }

    .kf-grid {
        margin: 0;
    }

    .healthcare-main-title {
        font-size: 1.1rem;
        padding: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .healthcare-subtitle {
        font-size: 1.1rem;
    }

    .healthcare-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .key-features-heading {
        font-size: 1.25rem;
        padding: 0 1rem;
        white-space: nowrap;
    }

    .demo-panel {
        position: relative;
        min-height: 280px;
        height: auto;
        padding: 2.5rem 1.5rem;
        margin: 3rem 0 0;
        width: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .demo-panel-content {
        z-index: 10;
        position: relative;
    }

    .demo-panel-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .demo-now-btn {
        font-size: 0.875rem;
        padding: 1rem 1.5rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        display: inline-block;
        width: auto;
        max-width: 100%;
    }

    .center-monitor {
        max-width: 280px;
        margin: 2rem auto;
    }

    .feature-tag {
        font-size: 0.625rem;
        padding: 0.4rem 0.75rem;
        white-space: nowrap;
    }

    .veriphy-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 0;
    }

    .cta-left,
    .cta-right {
        width: 100%;
    }

    .cta-right {
        padding: 0.75rem 1rem 1.25rem;
    }

    #cta-img {
        max-width: 160px;
        padding: 0;
        margin: 0.75rem auto 0;
    }

    .veriphy-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.875rem;
        padding: 1rem 1.5rem;
    }

    .veriphy-mission-grid,
    .veriphy-services-grid {
        grid-template-columns: 1fr;
    }

    .veriphy-mission-card,
    .veriphy-service-card {
        padding: 1.5rem;
    }

    .veriphy-service-card h4 {
        font-size: 1.125rem;
    }

    .veriphy-service-card ul {
        font-size: 0.875rem;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .innovation-circle-container {
        /* never wider than the viewport */
        width: min(280px, 88vw);
        height: min(280px, 88vw);
    }

    .orbit-circle {
        width: 56px;
        height: 56px;
    }

    .orbit-circle svg {
        width: 22px;
        height: 22px;
    }

    .center-circle {
        width: 80px;
        height: 80px;
    }

    /* Scale blob proportionally with the 280px container */
    .liquid-blob {
        width: 58px;
        height: 58px;
    }

    .liquid-blob::before {
        width: 18px;
        height: 18px;
    }

    .liquid-blob::after {
        width: 14px;
        height: 14px;
    }

    /* Orbit circles — scale positions for a ~280px container (ratio 280/500 = 0.56) */
    .orbit-circle.top        { top: 28px; }
    .orbit-circle.top-left   { top: 56px; left: 39px; }
    .orbit-circle.top-right  { top: 56px; right: 39px; }
    .orbit-circle.left       { left: 39px; }
    .orbit-circle.right      { right: 39px; }
    .orbit-circle.bottom     { bottom: 28px; }

    /* Scale small-dot positions */
    .dot-1 { top: 45px;  right: 84px; }
    .dot-2 { top: 84px;  right: 22px; }
    .dot-3 { bottom: 56px; right: 84px; }
    .dot-4 { top: 101px; left: 22px; }
    .dot-5 { bottom: 84px; left: 56px; }
    .dot-6 { top: 34px;  left: 101px; }

    .healthcare-section {
        padding: 4rem 0 10rem;
        overflow: visible;
    }

    .kf-grid {
        padding: 0.75rem;
        margin: 0 1rem;
    }

    .kf-item {
        gap: 0.4rem;
        padding: 0.4rem 0.2rem;
    }

    .kf-icon {
        width: 32px;
        height: 32px;
    }

    .kf-icon svg {
        width: 16px;
        height: 16px;
    }

    .kf-label {
        font-size: 0.7rem;
    }

    .healthcare-main-title {
        font-size: 1.3rem;
        padding: 0 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .healthcare-tablet-image {
        height: 180px;
        object-fit: cover;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }

    .healthcare-image-slide {
        padding: 0 1rem;
    }

    .healthcare-text-slide {
        padding: 0 1rem;
    }

    .healthcare-subtitle {
        font-size: 1rem;
    }

    .key-features-heading {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .center-monitor {
        max-width: 250px;
    }

    .healthcare-features-container {
        min-height: 500px;
        padding: 0 0.5rem;
    }

    .feature-tag {
        font-size: 0.5rem;
        padding: 0.3rem 0.6rem;
    }

    .tag-1 { top: 1%; left: 1%; }
    .tag-2 { top: 4%; right: 1%; }
    .tag-3 { top: 18%; left: -3%; }
    .tag-4 { top: 23%; right: -1%; }
    .tag-5 { top: 36%; left: -6%; }
    .tag-6 { top: 40%; right: -4%; }
    .tag-7 { top: 53%; left: -4%; }
    .tag-8 { top: 58%; right: -3%; }
    .tag-9 { bottom: 16%; left: 1%; }
    .tag-10 { bottom: 13%; right: 1%; }
    .tag-11 { bottom: 6%; }

    .demo-panel {
        position: relative;
        min-height: 320px;
        height: auto;
        padding: 2rem 1rem;
        margin: 2rem 0 0;
        width: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .demo-panel-content {
        z-index: 10;
        position: relative;
    }

    .demo-panel-text {
        font-size: 0.875rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .demo-now-btn {
        font-size: 0.8rem;
        padding: 1rem 1.25rem;
        display: inline-block;
        width: auto;
        max-width: 100%;
    }

    .cylinder__wrapper {
        min-height: 60vh;
        padding: 1.5rem 0.5rem;
    }

    .cylinder__cards__wrapper {
        max-width: 280px;
        height: 500px;
    }

    .cylinder__card__item {
        width: 260px;
    }

    .capability-card {
        padding: 1.25rem;
    }

    .capability-title {
        font-size: 1rem;
    }

    .capability-description {
        font-size: 0.875rem;
    }

    .veriphy-main-title {
        font-size: 1.5rem;
    }

    .veriphy-subtitle {
        font-size: 1.125rem;
    }

    .veriphy-section {
        padding: 3rem 0.5rem;
    }

    .veriphy-section-title {
        font-size: 1.5rem;
    }

    .veriphy-intro,
    .veriphy-who-text,
    .veriphy-awareness-text {
        font-size: 0.875rem;
    }

    .veriphy-mission-grid,
    .veriphy-services-grid {
        grid-template-columns: 1fr;
    }

    .veriphy-mission-card,
    .veriphy-service-card {
        padding: 1.25rem;
    }

    .veriphy-card-icon {
        width: 3rem;
        height: 3rem;
    }

    .veriphy-mission-card h4 {
        font-size: 1.125rem;
    }

    .veriphy-service-card h4 {
        font-size: 1rem;
    }

    .veriphy-cta {
        padding: 0.75rem;
        gap: 0;
    }

    #cta-img {
        max-width: 130px;
        padding: 0;
        margin: 0.5rem auto 0;
    }

    .cta-right {
        padding: 0.5rem 0.75rem 1rem;
    }

    .veriphy-cta-title {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    .veriphy-cta-text {
        font-size: 0.875rem;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-text {
        font-size: 0.875rem;
    }

}

/*
button {
    --hue: 76;
    --sat: 100%;
    --lum: 32%;
    display: block;
    border: none;
    margin: 1em auto;
    padding: 0;
    position: relative;
    width: $button-w; height: $button-h;
    background: none;
    font: 5em/ #{1.07*$button-h} advent pro, sans-serif;
    filter: contrast(.5);
    transition: .3s;
    cursor: pointer;
    
    &:focus, &:hover {
        outline: none;
        filter: none
    }
    
    &:active {
        transform: translateY(.25rem);
        
        [aria-hidden='true'] {
            transform: translateY(var(--ty, .25rem));
            
            &:nth-child(2) { --ty: .75rem }
        }
    }
    
    span {
        @extend %posa;
        
        &[aria-hidden='true'] {
            filter: 
                drop-shadow($shadow-o0 $shadow-o1 hsl(var(--hue), calc(var(--sat) - 25%), 25%)) 
                drop-shadow(-$shadow-o1 (-$shadow-o0) hsl(var(--hue), calc(var(--sat) - 41%), calc(var(--lum) + 31%))) 
                drop-shadow($shadow-b $shadow-b $shadow-b rgba(#000, .75));
            
            &:after {
                @extend %posa;
                background: hsl(var(--hue), var(--sat), var(--lum));
                clip-path: polygon(100% 0, 91% 91%, 13% 100%, 0 35%);
                content: ''
            }
            
            &:nth-child(2) {
                --sat: 0%;
                --lum: 83%;
                
                &:after {
                    clip-path: polygon(3% 21%, 85% 25%, 75% 93%, 14% 87%)
                }
            }
        }
    
        &:last-child {
            background: radial-gradient(black, white 83%) 50% .125em/ .5em 50%;
            -webkit-background-clip: text;
                            background-clip: text;
            color: transparent;
            filter: drop-shadow(2px 2px #313131)
        }
    }
    
    &:nth-of-type(2) { --hue: 187 }
}
*/

.demo-now-btn {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 10px 24px;
    border-radius: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.2s ease;
}

.demo-now-btn:hover {
    opacity: 0.9;
}

.demo-now-btn:active {
    opacity: 0.8;
}
