/* Novance Health Care - Revolutionary Animations */

/* Revolutionary Hero Section */
.hero-revolution {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0066cc 100%);
    display: flex;
    align-items: center;
}

/* Dynamic Background Layers */
.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.layer-1 {
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.3) 0%, transparent 50%);
    animation: layerFloat 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 80% 70%, rgba(0, 166, 81, 0.2) 0%, transparent 60%);
    animation: layerFloat 25s ease-in-out infinite reverse;
}

.layer-3 {
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: layerShift 30s linear infinite;
}

/* Particles System */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.dna-helix {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 200px;
    opacity: 0.3;
}

.dna-helix::before,
.dna-helix::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0066cc, #00a651);
    border-radius: 2px;
    animation: dnaRotate 10s linear infinite;
}

.dna-helix::before {
    left: 20px;
    transform-origin: center;
}

.dna-helix::after {
    right: 20px;
    transform-origin: center;
    animation-delay: -5s;
}

.molecule-structure {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    opacity: 0.2;
}

.molecule-structure::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #ffc107;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 -50px 0 #0066cc,
        43px -25px 0 #00a651,
        43px 25px 0 #dc3545,
        0 50px 0 #6f42c1,
        -43px 25px 0 #fd7e14,
        -43px -25px 0 #20c997;
    animation: moleculeRotate 15s linear infinite;
}

.medical-wave {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' stroke='rgba(255,255,255,0.1)' stroke-width='0.5' fill='none'/%3E%3C/svg%3E") repeat-x;
    animation: waveMove 20s linear infinite;
}

/* Interactive Grid */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.grid-lines {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.grid-lines.horizontal {
    width: 100%;
    height: 1px;
    top: 50%;
    animation: gridPulse 8s ease-in-out infinite;
}

.grid-lines.vertical {
    width: 1px;
    height: 100%;
    left: 50%;
    animation: gridPulse 8s ease-in-out infinite 4s;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Enhanced Hero Title */
.hero-title-enhanced {
    line-height: 1.1;
    margin-bottom: 2rem;
}

.text-gradient-advanced {
    background: linear-gradient(135deg, #ffc107, #ff6b35, #f72585);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
}

.text-highlight {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.typing-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.typing-prefix {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
}

.dynamic-text {
    color: #ffc107;
    font-weight: 700;
    min-width: 200px;
    position: relative;
}

.dynamic-text::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #ffc107;
    animation: blink 1s infinite;
}

/* Stats Preview */
.stats-preview {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
    line-height: 1;
}

/* Quantum Buttons */
.btn-quantum {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0.5rem;
}

.btn-quantum.primary {
    background: linear-gradient(135deg, #0066cc, #00a651);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.btn-quantum.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-quantum:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.4);
}

.btn-quantum.primary:hover {
    background: linear-gradient(135deg, #0052a3, #008f46);
}

.btn-quantum.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.quantum-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn-quantum:hover .quantum-effect {
    width: 300px;
    height: 300px;
}

/* 3D Medical Hub */
.hero-3d-scene {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.medical-hub-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: sceneRotate 30s linear infinite;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
}

.hub-core {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066cc, #00a651);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 0 50px rgba(0, 102, 204, 0.5);
    animation: hubPulse 4s ease-in-out infinite;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate 20s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-duration: 15s;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-3 {
    width: 400px;
    height: 400px;
    animation-duration: 35s;
}

.orbit-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    animation: iconFloat 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.ring-1 .orbit-icon {
    top: -25px;
    left: calc(50% - 25px);
}

.ring-2 .orbit-icon {
    top: -25px;
    left: calc(50% - 25px);
}

.ring-3 .orbit-icon {
    top: -25px;
    left: calc(50% - 25px);
}

/* Data Points */
.data-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    left: var(--x);
    top: var(--y);
    animation: dataFloat 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.point-core {
    width: 12px;
    height: 12px;
    background: #ffc107;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

.point-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    white-space: nowrap;
}

/* Energy Waves */
.energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    position: absolute;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    animation: waveExpand 4s ease-out infinite;
}

.wave-1 {
    width: 100px;
    height: 100px;
    margin: -50px;
    animation-delay: 0s;
}

.wave-2 {
    width: 200px;
    height: 200px;
    margin: -100px;
    animation-delay: 1.3s;
}

.wave-3 {
    width: 300px;
    height: 300px;
    margin: -150px;
    animation-delay: 2.6s;
}

/* Enhanced Scroll Indicator */
.scroll-indicator-enhanced {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.scroll-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-wheel {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-wheel::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.scroll-path {
    margin-top: 1rem;
}

.path-line {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
}

.path-dot {
    width: 6px;
    height: 6px;
    background: #ffc107;
    border-radius: 50%;
    margin: 0.5rem auto;
    animation: pathDot 2s ease-in-out infinite;
}

/* Revolutionary Features Section */
.features-revolution {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 166, 81, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    animation: patternShift 20s ease-in-out infinite;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: shapeFloat 25s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #0066cc, #00a651);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffc107, #ff6b35);
    border-radius: 50%;
    animation-delay: 8s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 120px;
    height: 60px;
    background: linear-gradient(45deg, #6f42c1, #dc3545);
    border-radius: 50px;
    animation-delay: 16s;
}

/* Enhanced Section Header */
.section-header-enhanced {
    position: relative;
    padding: 2rem 0;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.deco-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, #0066cc, transparent);
}

.deco-line.left {
    background: linear-gradient(90deg, transparent, #0066cc);
}

.deco-line.right {
    background: linear-gradient(90deg, #0066cc, transparent);
}

.deco-icon {
    margin: 0 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #00a651);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: iconSpin 10s linear infinite;
}

.section-title-enhanced {
    position: relative;
    display: inline-block;
}

.question-mark {
    color: #ffc107;
    animation: bounce 2s ease-in-out infinite;
}

/* Feature Tabs */
.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #0066cc;
    background: transparent;
    color: #0066cc;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0066cc;
    transition: left 0.3s ease;
    z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    left: 0;
}

.tab-btn:hover,
.tab-btn.active {
    color: white;
    transform: translateY(-2px);
}

/* 3D Feature Cards */
.features-grid {
    perspective: 1000px;
}

.feature-card-3d {
    height: 300px;
    position: relative;
    cursor: pointer;
}

.card-3d-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-3d:hover .card-3d-wrapper {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.card-face.back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #0066cc, #00a651);
    color: white;
}

.feature-visual {
    margin-bottom: 1.5rem;
}

.icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 166, 81, 0.1));
    border-radius: 50%;
    animation: iconBgPulse 3s ease-in-out infinite;
}

.icon-container i {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: #0066cc;
    line-height: 80px;
}

.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.icon-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffc107;
    border-radius: 50%;
    animation: particleOrbit 8s linear infinite;
}

.icon-particles .particle:nth-child(1) {
    animation-delay: 0s;
}

.icon-particles .particle:nth-child(2) {
    animation-delay: 2.7s;
}

.icon-particles .particle:nth-child(3) {
    animation-delay: 5.3s;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: #666;
    margin-bottom: 1rem;
}

/* Quality Meter */
.quality-meter {
    width: 100%;
    max-width: 200px;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #ffc107);
    border-radius: 3px;
    width: var(--fill);
    animation: meterFill 2s ease-out;
}

.meter-label {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #28a745;
}

/* Innovation Stats */
.innovation-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.innovation-stats .stat {
    text-align: center;
}

.innovation-stats .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.innovation-stats .label {
    font-size: 0.8rem;
    color: #666;
}

/* DNA Animation */
.dna-animation {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 60px;
}

.dna-strand {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0066cc, #00a651);
    border-radius: 10px;
    animation: dnaStrand 3s ease-in-out infinite;
}

/* Global Map */
.global-map {
    width: 100%;
    height: 60px;
    position: relative;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.1), rgba(0, 166, 81, 0.1));
    border-radius: 10px;
    overflow: hidden;
}

.map-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.dot.active {
    background: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

/* Support Elements */
.support-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28a745;
    animation: statusBlink 2s ease-in-out infinite;
}

.support-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* Back Face Content */
.detailed-content {
    width: 100%;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.feature-list i {
    color: #28a745;
}

.progress-items {
    space-y: 1rem;
}

.progress-item {
    margin-bottom: 1rem;
}

.progress-item span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #ffc107;
    width: var(--progress);
    animation: progressFill 1s ease-out;
}

.network-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.network-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.network-item i {
    width: 20px;
    text-align: center;
}

.support-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.channel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

.channel .status {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
}

.channel .status.online {
    background: #28a745;
}

.btn-mini {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-mini:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card-3d:hover .card-glow {
    opacity: 1;
}

/* Feature Showcase */
.feature-showcase {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.showcase-tabs {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.quality-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.dashboard-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.dashboard-card .metric .value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.5rem;
}

.dashboard-card .label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.feature-points {
    list-style: none;
    padding: 0;
}

.feature-points li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-points li::before {
    content: '✓';
    color: #28a745;
    font-weight: 700;
}

/* Keyframe Animations */
@keyframes layerFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes layerShift {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

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

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

@keyframes waveMove {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

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

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6); }
}

@keyframes sceneRotate {
    0% { transform: rotateY(0deg) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 50px rgba(0, 102, 204, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 80px rgba(0, 102, 204, 0.8); }
}

@keyframes orbitRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes dataFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes waveExpand {
    0% { 
        transform: scale(0);
        opacity: 1;
    }
    100% { 
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0; transform: translateX(-50%) translateY(15px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes pathDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

@keyframes patternShift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes iconBgPulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

@keyframes particleOrbit {
    0% { 
        transform: rotate(0deg) translateX(40px) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    100% { 
        transform: rotate(360deg) translateX(40px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes meterFill {
    0% { width: 0; }
    100% { width: var(--fill); }
}

@keyframes dnaStrand {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

@keyframes dotPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes progressFill {
    0% { width: 0; }
    100% { width: var(--progress); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-enhanced {
        font-size: 2.5rem;
    }
    
    .typing-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stats-preview {
        gap: 1rem;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .medical-hub-container {
        height: 400px;
    }
    
    .ring-3 {
        width: 250px;
        height: 250px;
    }
    
    .feature-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-showcase {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title-enhanced {
        font-size: 2rem;
    }
    
    .btn-quantum {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stats-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card-3d {
        height: 250px;
    }
    
    .card-face {
        padding: 1.5rem;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
    }
    
    .icon-container i {
        font-size: 2rem;
        line-height: 60px;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

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

/* Floating Medical Icons */
.medical-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.medical-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.medical-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.medical-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.medical-icon:nth-child(3) { top: 60%; left: 5%; animation-delay: 2s; }
.medical-icon:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }
.medical-icon:nth-child(5) { bottom: 30%; left: 20%; animation-delay: 4s; }

/* Typing Animation */
.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc, #004d99);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon {
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

/* Uploaded Category Icons */
.category-uploaded-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.category-card:hover .category-uploaded-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Category Cards */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.8), rgba(0, 77, 153, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-card .card-body {
    position: relative;
    z-index: 2;
}

.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleMove 3s linear infinite;
    animation-play-state: paused;
}

/* Stats Counter Animation */
.stats-counter {
    font-size: 3rem;
    font-weight: bold;
    color: #0066cc;
    display: block;
}

/* Button Animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

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

.pulse-btn {
    animation: pulse 2s infinite;
}

/* Scroll Reveal Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.revealed {
    opacity: 1;
    transform: translate(0);
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes particleMove {
    0% { transform: translateY(100px) translateX(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px) rotate(360deg); opacity: 0; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 102, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0); }
}

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

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Animations */
@media (max-width: 768px) {
    .medical-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 24px;
    }
    
    .stats-counter {
        font-size: 2rem;
    }
}

/* Dark mode animations */
@media (prefers-color-scheme: dark) {
    .feature-card {
        background: #1a1a1a;
        color: #ffffff;
    }
    
    .medical-icon {
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.5);
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}