/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    overflow-x: hidden;
    background: #0f0f23;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(54, 169, 225, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(54, 169, 225, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(91, 183, 230, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* AI Floating Elements */
.ai-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ai-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #36A9E1;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite linear;
}

.ai-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.ai-particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.ai-particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.ai-particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.ai-particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.ai-particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.ai-particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.ai-particle:nth-child(8) { left: 80%; animation-delay: 14s; }

@keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(30px);
    border-bottom-color: rgba(59, 130, 246, 0.5);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(54, 169, 225, 0.1) 0%, transparent 50%, rgba(91, 183, 230, 0.1) 100%);
    animation: navGlow 3s ease-in-out infinite;
}

@keyframes navGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.logo-icon {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
}

.nav-logo:hover .logo-icon {
    transform: scale(1.1);
}

.nav-logo span {
    background: linear-gradient(135deg, #ffffff, #3b82f6, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoTextShimmer 3s ease-in-out infinite;
}

@keyframes logoTextShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.nav-menu a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.language-selector {
    position: relative;
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 60px;
}

.language-toggle:hover {
    border-color: #36A9E1;
    box-shadow: 0 2px 8px rgba(54, 169, 225, 0.1);
}

.language-toggle:focus {
    outline: none;
    border-color: #36A9E1;
}

.flag-icon {
    font-size: 18px;
    line-height: 1;
}

.language-toggle i {
    font-size: 10px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.language-toggle.active i {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    min-width: 140px;
    pointer-events: none;
}

.language-options.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8fafc;
}

.language-option.active {
    background: #e0f2fe;
    color: #36A9E1;
}

.language-name {
    font-size: 14px;
    font-weight: 500;
}

.language-selector select {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    padding: 140px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Medical Background Animations */
.medical-bg-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.medical-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.heart-icon {
    top: 20%;
    left: 10%;
    animation: medicalFloat1 6s ease-in-out infinite;
}

.dna-icon {
    top: 30%;
    right: 15%;
    animation: medicalFloat2 8s ease-in-out infinite;
}

.test-icon {
    bottom: 30%;
    left: 20%;
    animation: medicalFloat3 7s ease-in-out infinite;
}

.health-icon {
    top: 60%;
    right: 25%;
    animation: medicalFloat4 9s ease-in-out infinite;
}

.brain-icon {
    top: 40%;
    left: 5%;
    animation: medicalFloat5 6.5s ease-in-out infinite;
}

.chart-icon {
    bottom: 20%;
    right: 10%;
    animation: medicalFloat6 7.5s ease-in-out infinite;
}

.pill-icon {
    top: 70%;
    left: 40%;
    animation: medicalFloat7 8.5s ease-in-out infinite;
}

.device-icon {
    bottom: 40%;
    right: 40%;
    animation: medicalFloat8 5.5s ease-in-out infinite;
}

@keyframes medicalFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.4; }
    25% { transform: translateY(-20px) translateX(10px) rotate(5deg); opacity: 0.7; }
    50% { transform: translateY(-10px) translateX(-5px) rotate(-3deg); opacity: 0.6; }
    75% { transform: translateY(-30px) translateX(15px) rotate(8deg); opacity: 0.5; }
}

@keyframes medicalFloat2 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.5; }
    33% { transform: translateY(-25px) translateX(-10px) rotate(-5deg); opacity: 0.8; }
    66% { transform: translateY(-15px) translateX(5px) rotate(3deg); opacity: 0.6; }
}

@keyframes medicalFloat3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    50% { transform: translateY(-20px) translateX(20px) scale(1.1); opacity: 0.7; }
}

@keyframes medicalFloat4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-15px) rotate(10deg); opacity: 0.4; }
    50% { transform: translateY(-30px) rotate(-5deg); opacity: 0.8; }
    75% { transform: translateY(-10px) rotate(15deg); opacity: 0.5; }
}

@keyframes medicalFloat5 {
    0%, 100% { transform: translateX(0px) translateY(0px); opacity: 0.5; }
    50% { transform: translateX(25px) translateY(-15px); opacity: 0.7; }
}

@keyframes medicalFloat6 {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); opacity: 0.4; }
    33% { transform: translateY(-20px) scale(1.05) rotate(5deg); opacity: 0.6; }
    66% { transform: translateY(-10px) scale(0.95) rotate(-3deg); opacity: 0.8; }
}

@keyframes medicalFloat7 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.5; }
    40% { transform: translateY(-25px) translateX(-15px); opacity: 0.3; }
    80% { transform: translateY(-10px) translateX(10px); opacity: 0.7; }
}

@keyframes medicalFloat8 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-15px) rotate(3deg) scale(1.1); opacity: 0.4; }
    50% { transform: translateY(-25px) rotate(-2deg) scale(0.9); opacity: 0.8; }
    75% { transform: translateY(-5px) rotate(5deg) scale(1.05); opacity: 0.5; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" patternUnits="userSpaceOnUse" width="40" height="40"><path d="M0 20h20v-20M20 0v20h20" stroke="%233b82f6" stroke-width="0.5" fill="none" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-40px) translateY(-40px); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    transform: translateY(-50%);
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateY(-50%) scale(1.2); opacity: 0.8; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #36A9E1 50%, #5bb7e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #60a5fa;
    position: relative;
}

.hero-subtitle::after {
    content: '✨';
    margin-left: 10px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 1; }
}

.hero-special {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f59e0b, #f97316, #ef4444);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: specialGlow 3s ease-in-out infinite;
    text-align: center;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    position: relative;
}

.hero-special::before {
    content: '🚀';
    margin-right: 10px;
    animation: rocketFloat 2s ease-in-out infinite;
}

.hero-special::after {
    content: '🚀';
    margin-left: 10px;
    animation: rocketFloat 2s ease-in-out infinite reverse;
}

@keyframes specialGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #36A9E1 0%, #2a8bc4 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(54, 169, 225, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(54, 169, 225, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #36A9E1;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #36A9E1 0%, #2a8bc4 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(54, 169, 225, 0.4);
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: #10b981;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid #10b981;
    animation: badgePulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1a1a2e, #0f0f23);
    border-radius: 40px;
    padding: 15px;
    position: relative;
    margin: 0 auto;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, #374151, #6b7280);
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: phoneGlow 3s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.app-preview {
    padding: 15px;
    height: 100%;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
    position: relative;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%233b82f6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.app-header {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e2e8f0;
    padding: 0 5px;
}

.signal-bars {
    display: flex;
    gap: 2px;
    align-items: flex-end;
}

.signal-bars::before {
    content: '';
    width: 3px;
    height: 8px;
    background: linear-gradient(180deg, #36A9E1, #5bb7e6);
    border-radius: 1px;
}

.signal-bars::after {
    content: '';
    width: 3px;
    height: 12px;
    background: linear-gradient(180deg, #36A9E1, #5bb7e6);
    border-radius: 1px;
}

.battery-icon {
    width: 24px;
    height: 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 2px;
    position: relative;
    background: #1a1a2e;
}

.battery-icon::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 3px;
    width: 2px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 0 1px 1px 0;
}

.battery-fill {
    position: absolute;
    left: 1px;
    top: 1px;
    bottom: 1px;
    width: 70%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 1px;
    animation: batteryPulse 2s ease-in-out infinite;
}

@keyframes batteryPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.app-title {
    text-align: center;
    margin-bottom: 20px;
}

.app-logo {
    margin-bottom: 8px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #36A9E1, #2a8bc4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 
        0 8px 25px rgba(54, 169, 225, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: logoGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 8px 35px rgba(59, 130, 246, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

.logo-circle::before {
    content: '🤖';
    font-size: 24px;
    animation: logoRotate 4s ease-in-out infinite;
}

.app-title h3 {
    color: #e2e8f0;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.app-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.nav-card {
    background: rgba(15, 15, 35, 0.6);
    padding: 20px 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.4);
}

.nav-card:hover::before {
    left: 100%;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    position: relative;
    animation: cardIconFloat 3s ease-in-out infinite;
}

@keyframes cardIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.home-card .card-icon {
    background: linear-gradient(135deg, #36A9E1, #2a8bc4);
    box-shadow: 0 4px 15px rgba(54, 169, 225, 0.4);
}

.profile-card .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.results-card .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.settings-card .card-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.card-icon i {
    font-size: 18px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-card span {
    font-size: 12px;
    font-weight: 600;
    color: #cbd5e1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-item {
    background: rgba(15, 15, 35, 0.6);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.action-item:hover {
    transform: translateX(3px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.action-item:hover::before {
    left: 100%;
}

.action-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: actionIconPulse 3s ease-in-out infinite;
}

@keyframes actionIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.scan-action .action-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.scan-action .action-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
    animation: scanPing 2s ease-in-out infinite;
}

@keyframes scanPing {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.notification-action .action-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.notification-action .action-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
    animation: notificationPulse 1.5s ease-in-out infinite;
}

@keyframes notificationPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.action-icon i {
    font-size: 16px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 2;
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    border: 2px solid rgba(15, 15, 35, 0.8);
    box-shadow: 
        0 2px 8px rgba(239, 68, 68, 0.4),
        0 0 0 1px rgba(239, 68, 68, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.action-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.action-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0 0 2px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.action-text p {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
    opacity: 0.8;
}

.action-arrow {
    color: #64748b;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.action-item:hover .action-arrow {
    color: #36A9E1;
    transform: translateX(3px);
}

.action-arrow i {
    font-size: 12px;
}

/* App Screenshots Preview */
.app-screenshots {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mini-phone {
    width: 80px;
    height: 140px;
    background: #1f2937;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mini-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.screen-content {
    padding: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mini-header {
    font-size: 8px;
    font-weight: 600;
    color: #2563eb;
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
}

.results-screen {
    background: linear-gradient(180deg, #dbeafe 0%, #ffffff 100%);
}

.chart-preview {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-top: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #3b82f6, #2563eb);
    border-radius: 2px;
    min-height: 8px;
}

.profile-screen {
    background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
}

.profile-avatar {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    margin: 8px auto;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 8px;
}

.profile-line {
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
}

.profile-line.short {
    width: 60%;
}

.testing-screen {
    background: linear-gradient(180deg, #fef3c7 0%, #ffffff 100%);
}

.test-progress {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.progress-circle {
    width: 32px;
    height: 32px;
    border: 3px solid #f3f4f6;
    border-radius: 50%;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 32px;
    height: 32px;
    border: 3px solid transparent;
    border-top: 3px solid #f59e0b;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.screenshot-item span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Innovation Section */
.innovation {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.innovation-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.innovation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.innovation-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.innovation-item p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

/* Team Background Animations */
.team-bg-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.team-bg-icon {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0.2;
    animation-duration: 15s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.3));
}

.doctor-icon {
    top: 20%;
    left: 10%;
    animation: teamBgFloat1 12s ease-in-out infinite;
}

.scientist-icon {
    top: 30%;
    right: 15%;
    animation: teamBgFloat2 16s ease-in-out infinite;
}

.engineer-icon {
    bottom: 30%;
    left: 20%;
    animation: teamBgFloat3 14s ease-in-out infinite;
}

.researcher-icon {
    top: 60%;
    right: 25%;
    animation: teamBgFloat4 18s ease-in-out infinite;
}

.medal-icon {
    top: 45%;
    left: 5%;
    animation: teamBgFloat5 11s ease-in-out infinite;
}

.award-icon {
    bottom: 20%;
    right: 10%;
    animation: teamBgFloat6 13s ease-in-out infinite;
}

@keyframes teamBgFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-18px) translateX(10px) rotate(5deg); }
    50% { transform: translateY(-12px) translateX(-8px) rotate(-3deg); }
    75% { transform: translateY(-25px) translateX(15px) rotate(8deg); }
}

@keyframes teamBgFloat2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-22px) translateX(-12px); }
    66% { transform: translateY(-15px) translateX(8px); }
}

@keyframes teamBgFloat3 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes teamBgFloat4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(10deg); }
    50% { transform: translateY(-28px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(15deg); }
}

@keyframes teamBgFloat5 {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(25px) translateY(-15px); }
}

@keyframes teamBgFloat6 {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    33% { transform: translateY(-20px) scale(1.05) rotate(5deg); }
    66% { transform: translateY(-10px) scale(0.95) rotate(-3deg); }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.team-member {
    background: rgba(15, 15, 35, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.4);
}

.team-member:hover::before {
    left: 100%;
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #36A9E1, #5bb7e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(54, 169, 225, 0.3);
    overflow: hidden;
    border: 4px solid rgba(54, 169, 225, 0.1);
    transition: all 0.3s ease;
}

.member-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(54, 169, 225, 0.4);
    border-color: rgba(54, 169, 225, 0.5);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.member-photo img:hover {
    transform: scale(1.1);
}

.member-photo i {
    font-size: 2rem;
    color: white;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    font-weight: 600;
    color: #36A9E1;
    margin-bottom: 1rem;
}

.member-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* App Preview Slider Section */
.app-preview-slider {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.app-preview-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.preview-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.preview-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.preview-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.app-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slider-item {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: transparent;
    box-sizing: border-box;
    min-height: 400px;
}

.app-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 280px;
    width: 100%;
}

.app-screen-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: block;
    object-fit: cover;
}

.app-mockup:hover .app-screen-image {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.slider-description {
    flex: 1;
    padding-left: 2rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-description h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.slider-description p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.slider-description {
    display: none;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.dot:hover {
    background: #64748b;
}

/* Responsive Design for Slider */
@media (max-width: 968px) {
    .slider-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .app-mockup {
        flex: none;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .slider-description {
        padding-left: 0;
    }
    
    .preview-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .app-preview-slider {
        padding: 60px 0;
    }
    
    .slider-item {
        padding: 1.5rem;
    }
    
    .app-mockup {
        max-width: 200px;
    }
    
    .slider-description h3 {
        font-size: 1.5rem;
    }
    
    .slider-description p {
        font-size: 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-nav {
        gap: 1rem;
        margin-top: 2rem;
    }
}

.features {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%),
                linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

/* Features Background Animations */
.features-bg-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.feature-bg-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation-duration: 12s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.2));
}

.microscope-icon {
    top: 15%;
    left: 8%;
    animation: featureBgFloat1 10s ease-in-out infinite;
}

.stethoscope-icon {
    top: 25%;
    right: 12%;
    animation: featureBgFloat2 14s ease-in-out infinite;
}

.thermometer-icon {
    bottom: 25%;
    left: 15%;
    animation: featureBgFloat3 11s ease-in-out infinite;
}

.syringe-icon {
    top: 60%;
    right: 20%;
    animation: featureBgFloat4 13s ease-in-out infinite;
}

.pharmacy-icon {
    top: 45%;
    left: 3%;
    animation: featureBgFloat5 9s ease-in-out infinite;
}

.lab-icon {
    bottom: 15%;
    right: 8%;
    animation: featureBgFloat6 12s ease-in-out infinite;
}

@keyframes featureBgFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-15px) translateX(8px) rotate(3deg); }
    50% { transform: translateY(-25px) translateX(-5px) rotate(-2deg); }
    75% { transform: translateY(-10px) translateX(12px) rotate(5deg); }
}

@keyframes featureBgFloat2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(-8px); }
    66% { transform: translateY(-12px) translateX(6px); }
}

@keyframes featureBgFloat3 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-18px) scale(1.1); }
}

@keyframes featureBgFloat4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(8deg); }
    50% { transform: translateY(-22px) rotate(-4deg); }
    75% { transform: translateY(-8px) rotate(12deg); }
}

@keyframes featureBgFloat5 {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(20px) translateY(-12px); }
}

@keyframes featureBgFloat6 {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    33% { transform: translateY(-16px) scale(1.05) rotate(4deg); }
    66% { transform: translateY(-8px) scale(0.95) rotate(-2deg); }
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%233b82f6" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #e2e8f0, #36A9E1, #e2e8f0);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: rgba(15, 15, 35, 0.8);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.4);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: featureIconFloat 4s ease-in-out infinite;
}

@keyframes featureIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

.feature-icon.ai-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.feature-icon.scan-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.feature-icon.report-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    z-index: 2;
    position: relative;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.feature-item p {
    color: #94a3b8;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #e2e8f0, #3b82f6, #e2e8f0);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aboutTitleShimmer 4s ease-in-out infinite;
}

@keyframes aboutTitleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.medical-illustration {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.medical-illustration i {
    font-size: 4rem;
    color: white;
}

/* Notification Section */
section.notification {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    position: relative;
    overflow: hidden;
}

section.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="notifyGrid" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%233b82f6" stroke-width="0.2" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23notifyGrid)"/></svg>');
    pointer-events: none;
}

.notification-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.notification-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.notification-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

section.notification .notification-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

section.notification .notification-form input {
    flex: 1;
    min-width: 300px;
    padding: 15px 20px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

section.notification .notification-form input::placeholder {
    color: rgba(226, 232, 240, 0.7);
}

section.notification .notification-form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

section.notification .notification-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

section.notification .notification-form button:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #cbd5e1;
    margin-top: 1rem;
}

/* Form Messages */
.form-message {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.form-message-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-message-duplicate {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrid" patternUnits="userSpaceOnUse" width="30" height="30"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="%233b82f6" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    text-align: center;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    gap: 12px;
    justify-content: center;
}

.footer-logo-icon {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
}

.footer-logo:hover .footer-logo-icon {
    transform: scale(1.05);
}

.footer-logo span {
    background: linear-gradient(135deg, #ffffff, #3b82f6, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: footerLogoShimmer 3s ease-in-out infinite;
    font-size: 1.8rem;
}

@keyframes footerLogoShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-brand p {
    opacity: 0.9;
    line-height: 1.6;
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 0;
    max-width: 500px;
}

.footer-email-signup {
    background: rgba(15, 15, 35, 0.6);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 500px;
}

.footer-email-signup h4 {
    color: #e2e8f0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-email-signup p {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: center;
}

.footer-form {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center;
}

.footer-form input {
    width: 100%;
    max-width: 350px;
    padding: 15px 20px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.footer-form input::placeholder {
    color: #94a3b8;
    text-align: center;
}

.footer-form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.footer-form button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 150px;
}

.footer-form button:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.footer-links {
.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: #3b82f6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, transparent);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-column ul li a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #3b82f6;
}

.footer-column ul li a:hover::before {
    opacity: 1;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    padding: 4px 0;
    border-radius: 4px;
}

.footer-column a:hover {
    color: #3b82f6;
    transform: translateX(5px);
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
    text-align: center;
    width: 100%;
}

/* Footer info styles removed as no longer needed */

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .language-selector {
        order: -1;
    }
    
    .language-toggle {
        padding: 6px 10px;
        min-width: 50px;
    }
    
    .language-options {
        min-width: 120px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .app-screenshots {
        gap: 15px;
        margin-top: 20px;
    }
    
    .mini-phone {
        width: 70px;
        height: 120px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .notification-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.feature-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* RTL Support for Arabic */
.rtl {
    direction: rtl;
}

.rtl .nav-container {
    flex-direction: row-reverse;
}

.rtl .nav-menu {
    flex-direction: row-reverse;
}

.rtl .hero-container {
    direction: rtl;
}

.rtl .hero-buttons {
    flex-direction: row-reverse;
}

.rtl .features-grid,
.rtl .innovation-grid,
.rtl .team-grid {
    direction: rtl;
}

.rtl .footer-content {
    direction: rtl;
}

.rtl .footer-bottom {
    flex-direction: row-reverse;
}

.rtl .innovation-item {
    flex-direction: row-reverse;
}

.rtl .action-item {
    flex-direction: row-reverse;
}

.rtl .notification-form {
    flex-direction: row-reverse;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 0;
    min-width: 320px;
    max-width: 500px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification-message {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.notification-success {
    border-color: rgba(16, 185, 129, 0.5);
}

.notification-success .notification-message::before {
    content: '✅ ';
}

.notification-error {
    border-color: rgba(239, 68, 68, 0.5);
}

.notification-error .notification-message::before {
    content: '❌ ';
}

.notification-info {
    border-color: rgba(59, 130, 246, 0.5);
}

.notification-info .notification-message::before {
    content: 'ℹ️ ';
}

/* Animation classes for scroll effects */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 968px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-brand {
        max-width: 500px;
    }
    
    .footer-form {
        justify-content: center;
    }
    
    .footer-form input {
        min-width: 250px;
    }
    
    section.notification .notification-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    section.notification .notification-form input {
        min-width: auto;
        width: 100%;
    }
    
    section.notification .notification-form button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-brand {
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .footer-email-signup {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .footer-form input {
        max-width: 100%;
    }
    
    .footer-form button {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-logo span {
        font-size: 1.6rem;
    }
}

/* RTL Support for notifications */
.rtl .notification {
    right: auto;
    left: 20px;
    transform: translateX(-100%);
}

.rtl .notification.show {
    transform: translateX(0);
}

/* Team Grid Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
}

/* Mini App Preview Slider */
.mini-app-preview {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.mini-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(54, 169, 225, 0.3);
    background: #36A9E1;
    padding: 20px;
}

.mini-app-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.mini-slider-item {
    min-width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.mini-slider-item.active {
    display: flex;
    opacity: 1;
}

.mini-app-screen {
    width: 250px;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mini-app-screen:hover {
    transform: scale(1.02);
}

.mini-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    z-index: 100;
}

.mini-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #36A9E1;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 101;
}

.mini-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mini-nav-btn:active {
    transform: scale(0.95);
}

/* Mobile responsiveness for mini slider */
@media (max-width: 768px) {
    .mini-app-preview {
        max-width: 300px;
    }
    
    .mini-slider-container {
        padding: 15px;
    }
    
    .mini-app-screen {
        width: 200px;
    }
    
    .mini-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        background: rgba(15, 15, 35, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        transition: right 0.3s ease !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 1000 !important;
        gap: 30px !important;
        display: flex !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .nav-menu a {
        font-size: 18px;
    }
    
    .nav-container {
        padding:  20px;
    }
}
