/* Performance optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimize animations for better performance */
*,
*::before,
*::after {
    will-change: auto;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .globe {
        animation: none !important;
    }

    .twinkling {
        animation: none !important;
    }

    .shooting-stars::before,
    .shooting-stars::after {
        animation: none !important;
    }
}

:root {
    /* Apple-inspired Color System */
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --accent-orange: #FF9500;
    --accent-blue: #007AFF;

    /* Clean Background System */
    --bg-light: #ffffff;
    --bg-gray: #f5f5f7;
    --bg-dark: #1d1d1f;

    /* Text System */
    --text-dark: #1d1d1f;
    --text-gray: #86868b;
    --text-light: #ffffff;

    /* Apple-style Gradients */
    --gradient: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-blue: linear-gradient(135deg, #007AFF, #5856D6);
    --gradient-orange: linear-gradient(135deg, #FF9500, #FF6B35);
    
    /* Responsive spacing system */
    --spacing-xs: clamp(0.5rem, 2vw, 1rem);
    --spacing-sm: clamp(1rem, 3vw, 1.5rem);
    --spacing-md: clamp(1.5rem, 4vw, 2.5rem);
    --spacing-lg: clamp(2rem, 6vw, 4rem);
    --spacing-xl: clamp(3rem, 8vw, 6rem);
    
    /* Responsive container widths */
    --container-sm: 100%;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
    --container-padding: clamp(1rem, 5vw, 2rem);

    /* Common blur effects */
    --blur-light: blur(10px);
    --blur-medium: blur(20px);
    --blur-heavy: blur(25px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: clamp(1.4, 2vw, 1.47059);
    font-weight: 400;
    letter-spacing: -0.022em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: clamp(14px, 2.5vw, 16px);
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Enhanced Container System */
.container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--bg-light);
}

/* Apple Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.022em;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    letter-spacing: -0.005em;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 500px;
    font-weight: 400;
    letter-spacing: 0.3px;
    animation: subtitleFade 1s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes subtitleFade {
    to {
        opacity: 1;
    }
}

/* AMAZING HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: buttonsFade 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes buttonsFade {
    to {
        opacity: 1;
    }
}

.cta-primary {
    position: relative;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover .button-glow {
    left: 100%;
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-2px);
}

/* AMAZING HERO VISUAL */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: cardFloat 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: 30%;
    animation-delay: 4s;
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.card-icon svg {
    color: #00d4ff;
}

.card-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    letter-spacing: -0.01em;
}

/* 🌟 STUNNING STELLAR BACKGROUND */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    pointer-events: none;
}

/* Stellar Field */
.stars, .twinkling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: #000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="1" fill="white" opacity="0.8"/><circle cx="200" cy="150" r="0.5" fill="white" opacity="0.6"/><circle cx="300" cy="80" r="1.5" fill="white" opacity="0.9"/><circle cx="450" cy="200" r="0.8" fill="white" opacity="0.7"/><circle cx="600" cy="120" r="1.2" fill="white" opacity="0.8"/><circle cx="750" cy="180" r="0.6" fill="white" opacity="0.5"/><circle cx="850" cy="90" r="1" fill="white" opacity="0.8"/><circle cx="150" cy="300" r="0.7" fill="white" opacity="0.6"/><circle cx="350" cy="350" r="1.3" fill="white" opacity="0.9"/><circle cx="500" cy="400" r="0.9" fill="white" opacity="0.7"/><circle cx="700" cy="320" r="1.1" fill="white" opacity="0.8"/><circle cx="900" cy="380" r="0.5" fill="white" opacity="0.6"/><circle cx="80" cy="500" r="1.4" fill="white" opacity="0.9"/><circle cx="250" cy="550" r="0.8" fill="white" opacity="0.7"/><circle cx="420" cy="600" r="1" fill="white" opacity="0.8"/><circle cx="650" cy="520" r="0.6" fill="white" opacity="0.5"/><circle cx="800" cy="580" r="1.2" fill="white" opacity="0.8"/><circle cx="120" cy="700" r="0.9" fill="white" opacity="0.7"/><circle cx="320" cy="750" r="1.1" fill="white" opacity="0.8"/><circle cx="480" cy="800" r="0.7" fill="white" opacity="0.6"/><circle cx="680" cy="720" r="1.3" fill="white" opacity="0.9"/><circle cx="880" cy="780" r="0.8" fill="white" opacity="0.7"/><circle cx="180" cy="900" r="1" fill="white" opacity="0.8"/><circle cx="380" cy="950" r="0.5" fill="white" opacity="0.5"/><circle cx="580" cy="920" r="1.2" fill="white" opacity="0.8"/><circle cx="780" cy="980" r="0.9" fill="white" opacity="0.7"/></svg>') repeat;
    background-size: 1000px 1000px;
    animation: move-stars 100s linear infinite;
}

.twinkling {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="150" cy="200" r="2" fill="white" opacity="0.8"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="400" cy="100" r="1.5" fill="white" opacity="0.6"><animate attributeName="opacity" values="0.2;0.9;0.2" dur="4s" repeatCount="indefinite"/></circle><circle cx="700" cy="300" r="2.5" fill="white" opacity="0.9"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="250" cy="600" r="1.8" fill="white" opacity="0.7"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3.5s" repeatCount="indefinite"/></circle><circle cx="800" cy="500" r="2" fill="white" opacity="0.8"><animate attributeName="opacity" values="0.2;1;0.2" dur="4.2s" repeatCount="indefinite"/></circle><circle cx="500" cy="800" r="1.5" fill="white" opacity="0.6"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="2.8s" repeatCount="indefinite"/></circle></svg>') repeat;
    background-size: 1000px 1000px;
    animation: move-twinkling 50s linear infinite;
}

@keyframes move-stars {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}

@keyframes move-twinkling {
    from { transform: translateY(0px); }
    to { transform: translateY(-1000px); }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 212, 255, 0.8);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    z-index: 1;
}

.floating-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) translateX(20px);
        opacity: 1;
    }
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: orbFloat 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.orb-4 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
    top: 30%;
    right: 40%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
    }
    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.9);
    }
    75% {
        transform: translateY(-30px) translateX(20px) scale(1.05);
    }
}

/* Neural Network */
.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(0, 212, 255, 1);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

.node-1 { top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { top: 40%; right: 25%; animation-delay: 0.5s; }
.node-3 { bottom: 30%; left: 20%; animation-delay: 1s; }
.node-4 { top: 60%; left: 60%; animation-delay: 1.5s; }
.node-5 { bottom: 20%; right: 30%; animation-delay: 2s; }

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 212, 255, 0.4) 50%,
        transparent 100%);
    animation: connectionPulse 3s ease-in-out infinite;
}

.con-1 {
    top: 22%;
    left: 16%;
    width: 200px;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.con-2 {
    top: 42%;
    right: 26%;
    width: 150px;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.con-3 {
    bottom: 32%;
    left: 21%;
    width: 180px;
    transform: rotate(60deg);
    animation-delay: 2s;
}

.con-4 {
    top: 62%;
    left: 61%;
    width: 120px;
    transform: rotate(-30deg);
    animation-delay: 1.5s;
}

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

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #00d4ff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #00d4ff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #00d4ff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    top: 60%;
    right: 20%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #a55eea, #6c5ce7);
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

.orb-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, #26de81, #20bf6b);
    top: 30%;
    right: 10%;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    25% { transform: translateY(-30px) translateX(20px) scale(1.1); }
    50% { transform: translateY(-60px) translateX(-20px) scale(0.9); }
    75% { transform: translateY(-30px) translateX(30px) scale(1.05); }
}

/* Neural Network Animation */
.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 20px #00d4ff;
    animation: nodePulse 3s ease-in-out infinite;
}

.node-1 { top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { top: 40%; left: 80%; animation-delay: 0.5s; }
.node-3 { top: 70%; left: 25%; animation-delay: 1s; }
.node-4 { top: 30%; left: 60%; animation-delay: 1.5s; }
.node-5 { top: 80%; left: 70%; animation-delay: 2s; }

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 1; }
}

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: connectionFlow 4s ease-in-out infinite;
}

.con-1 {
    top: 20%;
    left: 15%;
    width: 200px;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.con-2 {
    top: 40%;
    left: 60%;
    width: 150px;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.con-3 {
    top: 70%;
    left: 25%;
    width: 180px;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.con-4 {
    top: 30%;
    left: 40%;
    width: 120px;
    transform: rotate(-60deg);
    animation-delay: 3s;
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

/* Subtle Apple-style background texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 122, 255, 0.01), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.01), transparent 50%);
    z-index: -2;
    pointer-events: none;
}

.stars {
    background: #000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="20" cy="20" r="0.8" fill="white" opacity="0.9"/><circle cx="80" cy="40" r="0.4" fill="white" opacity="0.7"/><circle cx="40" cy="60" r="0.6" fill="white" opacity="0.8"/><circle cx="90" cy="80" r="0.3" fill="white" opacity="0.6"/><circle cx="10" cy="90" r="0.9" fill="white" opacity="1"/><circle cx="150" cy="30" r="0.5" fill="white" opacity="0.8"/><circle cx="170" cy="120" r="0.4" fill="white" opacity="0.7"/><circle cx="130" cy="160" r="0.7" fill="white" opacity="0.9"/><circle cx="60" cy="180" r="0.3" fill="white" opacity="0.6"/><circle cx="180" cy="70" r="0.6" fill="white" opacity="0.8"/></svg>') repeat;
    background-size: 400px 400px;
    animation: stars-move 300s linear infinite;
}

.twinkling {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="25" cy="25" r="0.4" fill="white" opacity="0.9"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.7"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="4s" repeatCount="indefinite"/></circle><circle cx="150" cy="50" r="0.5" fill="white" opacity="0.8"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle><circle cx="50" cy="150" r="0.3" fill="white" opacity="0.6"><animate attributeName="opacity" values="0.2;0.9;0.2" dur="3.5s" repeatCount="indefinite"/></circle><circle cx="180" cy="180" r="0.4" fill="white" opacity="0.7"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="2.8s" repeatCount="indefinite"/></circle></svg>') repeat;
    background-size: 500px 500px;
    animation: twinkling-move 250s linear infinite;
}

.shooting-stars {
    background: transparent;
    overflow: hidden;
}

.shooting-stars::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, transparent, white, transparent);
    border-radius: 50%;
    box-shadow: 0 0 10px white;
    animation: shooting-star 8s linear infinite;
}

.shooting-stars::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 1px;
    height: 1px;
    background: linear-gradient(45deg, transparent, #00d4ff, transparent);
    border-radius: 50%;
    box-shadow: 0 0 8px #00d4ff;
    animation: shooting-star-2 12s linear infinite 4s;
}

@keyframes stars-move {
    from { background-position: 0 0; }
    to { background-position: -8000px 4000px; }
}

@keyframes twinkling-move {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

@keyframes shooting-star {
    0% {
        transform: translateX(-100px) translateY(-100px);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

@keyframes shooting-star-2 {
    0% {
        transform: translateX(calc(100vw + 100px)) translateY(-100px);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateX(-100px) translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #7c3aed, #f59e0b);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

.cursor-hover .cursor-outline {
    width: 50px;
    height: 50px;
    border-color: #00d4ff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

/* 🚀 REVOLUTIONARY GLASSMORPHISM NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(0);

    /* Glassmorphism enhancement */
    position: relative;
    overflow: hidden;
}

.navbar::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.6s ease;
}

.navbar:hover::before {
    left: 100%;
}

/* 🌟 STUNNING LIGHT MODE TRANSFORMATION */
.navbar.light-nav {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 1px solid rgba(0, 122, 255, 0.2);
    box-shadow:
        0 4px 25px rgba(0, 0, 0, 0.08),
        0 0 30px rgba(0, 122, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(0);
}

/* 🎯 SCROLL HIDE/SHOW MAGIC */
.navbar.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

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

/* 🎯 PREMIUM CONTAINER WITH GLOW */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.navbar:hover .nav-container::before {
    opacity: 1;
}

/* 🎨 DYNAMIC LOGO WITH GLOW EFFECTS */
.nav-logo {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    position: relative;
}

.nav-logo:hover {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    transform: scale(1.05);
}

/* 🌈 LOGO MORPHS IN LIGHT MODE */
.navbar.light-nav .nav-logo {
    color: #1a1a2e;
    filter: drop-shadow(0 0 8px rgba(0, 122, 255, 0.2));
}

.navbar.light-nav .nav-logo:hover {
    filter: drop-shadow(0 0 15px rgba(0, 122, 255, 0.4));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    font-optical-sizing: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* 🔥 INCREDIBLE MORPHING NAV LINKS */
.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    letter-spacing: -0.01em;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

/* ✨ MAGICAL HOVER EFFECTS */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 212, 255, 0.2),
        transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

/* 🌟 LIGHT MODE TRANSFORMATION */
.navbar.light-nav .nav-link {
    color: rgba(26, 26, 46, 0.8);
    border: 1px solid transparent;
}

.navbar.light-nav .nav-link::before {
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 122, 255, 0.15),
        transparent);
}

.navbar.light-nav .nav-link:hover {
    color: #007AFF;
    background: rgba(0, 122, 255, 0.08);
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.15);
}

/* 🌟 ACTIVE LINK MAGIC */
.nav-link.active {
    color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.navbar.light-nav .nav-link.active {
    color: #007AFF !important;
    background: rgba(0, 122, 255, 0.12);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow:
        0 0 15px rgba(0, 122, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* 🎨 MORPHING MENU CONTAINER */
.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar.light-nav .nav-menu {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-1px);
}

/* Ensure nav links are always visible on light background */
.navbar.light-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 122, 255, 0.08);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.15);
}

.nav-link.active::before {
    width: 80%;
}

.contact-btn {
    background: var(--gradient);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #00d4ff, #7c3aed, #f59e0b);
}

.contact-btn::before {
    display: none;
}

/* 🍔 BRAND NEW MOBILE MENU SYSTEM */
.mobile-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-hamburger:hover {
    background: rgba(0, 212, 255, 0.2);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #00d4ff;
}

.mobile-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #00d4ff;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin-bottom: 3rem;
}

.mobile-menu-header h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00d4ff;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    min-width: 200px;
}

.mobile-nav-link:hover {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    transform: translateY(-2px);
}

.mobile-contact-btn {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.mobile-contact-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #00d4ff);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
}

/* STUNNING HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: transparent;
    overflow: hidden;
    padding: 8rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Sophisticated Abstract Element */
.abstract-element {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 500px;
    height: 500px;
    perspective: 1200px;
}

.geometric-shape {
    position: absolute;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.shape-1 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg,
        rgba(0, 212, 255, 0.12),
        rgba(124, 58, 237, 0.08),
        transparent
    );
    top: 15%;
    left: 25%;
    border-radius: 24px;
    transform: rotate(15deg);
    animation: float-elegant 12s ease-in-out infinite;
}

.shape-2 {
    width: 160px;
    height: 160px;
    background: linear-gradient(45deg,
        rgba(124, 58, 237, 0.15),
        rgba(245, 158, 11, 0.08),
        transparent
    );
    top: 55%;
    left: 5%;
    transform: rotate(-25deg);
    animation: float-elegant 15s ease-in-out infinite reverse;
    border-radius: 50%;
}

.shape-3 {
    width: 100px;
    height: 280px;
    background: linear-gradient(180deg,
        rgba(0, 212, 255, 0.1),
        transparent 50%,
        rgba(124, 58, 237, 0.12)
    );
    top: 8%;
    right: 15%;
    transform: rotate(35deg);
    animation: float-elegant 18s ease-in-out infinite;
    border-radius: 50px;
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.2),
        rgba(0, 212, 255, 0.08),
        transparent
    );
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.orb-1 {
    width: 80px;
    height: 80px;
    top: 12%;
    left: 55%;
    animation: orbit-elegant 25s linear infinite;
}

.orb-2 {
    width: 50px;
    height: 50px;
    top: 65%;
    left: 65%;
    animation: orbit-elegant 30s linear infinite reverse;
}

.orb-3 {
    width: 35px;
    height: 35px;
    top: 35%;
    left: 15%;
    animation: orbit-elegant 20s linear infinite;
}

@keyframes float-elegant {
    0%, 100% {
        transform: translateY(0px) rotate(15deg) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-25px) rotate(20deg) scale(1.02);
        opacity: 0.8;
    }
    66% {
        transform: translateY(-15px) rotate(10deg) scale(0.98);
        opacity: 0.9;
    }
}

@keyframes orbit-elegant {
    0% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);
        opacity: 0.7;
    }
}

/* AMAZING HERO CONTENT */
.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgeGlow 3s ease-in-out infinite;
}

.badge-text {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
}

.title-line {
    display: block;
    animation: titleReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.title-line:nth-child(1) {
    color: #ffffff;
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    color: #ffffff;
    animation-delay: 0.6s;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #00d4ff 100%);
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

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

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
    animation: underline-glow 3s ease-in-out infinite alternate;
}

@keyframes title-breathe {
    0% {
        filter: brightness(1) contrast(1);
        transform: scale(1);
    }
    100% {
        filter: brightness(1.05) contrast(1.1);
        transform: scale(1.002);
    }
}

@keyframes underline-glow {
    0% {
        opacity: 0.7;
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg,
        rgba(0, 212, 255, 0.9) 0%,
        rgba(124, 58, 237, 0.8) 50%,
        rgba(245, 158, 11, 0.7) 100%);
    color: white;
    padding: 1.3rem 3rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 15px 40px rgba(0, 212, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow:
        0 30px 70px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg,
        rgba(0, 212, 255, 1) 0%,
        rgba(124, 58, 237, 0.95) 50%,
        rgba(245, 158, 11, 0.9) 100%);
    filter: brightness(1.2) saturate(1.3);
    backdrop-filter: blur(25px) saturate(2);
    -webkit-backdrop-filter: blur(25px) saturate(2);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: var(--bg-light);
}

/* Hero section keeps dark background with stars */
.hero {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

/* Add subtle section separators */
section:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.section-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg,
        #ffffff 0%,
        rgba(0, 212, 255, 0.9) 50%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    font-feature-settings: 'liga' 1, 'kern' 1;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    animation: section-underline 3s ease-in-out infinite alternate;
}

@keyframes section-underline {
    0% {
        opacity: 0.6;
        width: 80px;
    }
    100% {
        opacity: 1;
        width: 120px;
    }
}

/* Enhanced Solutions */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
    perspective: 1000px;
}

.solution-card {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;

    /* Advanced glassmorphism shadow */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Glassmorphism shine effect */
.solution-card::after {
    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.8s ease;
    z-index: 1;
}

.solution-card:hover::after {
    left: 100%;
}

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

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

.solution-card:hover {
    transform: translateY(-25px) rotateX(8deg) rotateY(2deg) scale(1.05);
    box-shadow:
        0 40px 80px rgba(0, 212, 255, 0.25),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    background: linear-gradient(145deg,
        rgba(0, 212, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(124, 58, 237, 0.1) 100%);
    backdrop-filter: blur(40px) saturate(2);
    -webkit-backdrop-filter: blur(40px) saturate(2);
}

/* Neumorphism effect for icons */
.solution-card .card-icon {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.1),
        -8px -8px 16px rgba(255, 255, 255, 0.1),
        inset 2px 2px 4px rgba(255, 255, 255, 0.2),
        inset -2px -2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.solution-card:hover .card-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow:
        12px 12px 24px rgba(0, 0, 0, 0.15),
        -12px -12px 24px rgba(255, 255, 255, 0.15),
        inset 3px 3px 6px rgba(255, 255, 255, 0.3),
        inset -3px -3px 6px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(0, 212, 255, 0.3);
}

.card-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.solution-card:hover .card-icon {
    transform: scale(1.1) rotateY(180deg);
    color: var(--accent-color);
}

.solution-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.solution-card:hover h3 {
    color: var(--text-light);
}

.solution-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.card-features span {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.solution-card:hover .card-features span {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

/* Ayescan Section - Orange/White Theme */
.ayescan {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 149, 0, 0.1);
    border-bottom: 1px solid rgba(255, 149, 0, 0.1);
    color: var(--text-dark);
}

.ayescan .section-description {
    color: var(--text-gray);
}

.coming-soon-description {
    color: var(--text-gray);
}

.ayescan-title {
    color: var(--accent-orange) !important;
}

.coming-soon-container {
    text-align: center;
    padding: 3rem 0;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
}

.coming-soon-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.notify-btn {
    display: inline-block;
    background: transparent;
    color: var(--accent-orange);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-orange);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
}

.ayescan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 149, 0, 0.05), transparent 50%);
    pointer-events: none;
}

.ayescan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ayescan-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 12px;
}

.feature-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.ayescan-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.ayescan-cta::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: all 0.6s ease;
}

.ayescan-cta:hover::before {
    left: 100%;
}

.ayescan-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Enhanced Phone Mockup */
.phone-mockup {
    width: 280px;
    height: 560px;
    margin: 0 auto;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 35px;
    padding: 8px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 2rem 1.5rem;
    height: 100%;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.app-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-logo {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.app-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    animation: slideIn 2s ease-out infinite alternate;
}

.item-image {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 8px;
    opacity: 0.8;
}

.item-info h4 {
    color: white;
    font-size: 0.9rem;
    margin: 0 0 0.2rem 0;
}

.item-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

/* Remove animation delays for better UX */
.solution-card:nth-child(1) { animation-delay: 0s; }
.solution-card:nth-child(2) { animation-delay: 0s; }
.solution-card:nth-child(3) { animation-delay: 0s; }

.ai-card:nth-child(1) { animation-delay: 0s; }
.ai-card:nth-child(2) { animation-delay: 0s; }
.ai-card:nth-child(3) { animation-delay: 0s; }
.ai-card:nth-child(4) { animation-delay: 0s; }
.ai-card:nth-child(5) { animation-delay: 0s; }
.ai-card:nth-child(6) { animation-delay: 0s; }

.timeline-item:nth-child(1) { animation-delay: 0s; }
.timeline-item:nth-child(2) { animation-delay: 0s; }
.timeline-item:nth-child(3) { animation-delay: 0s; }
.timeline-item:nth-child(4) { animation-delay: 0s; }

/* Professional badge styling */
.hero-badge .badge-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-badge .badge-text svg {
    color: #00d4ff;
}

/* Floating card icons are now SVG elements in HTML */

/* Value card icons are now SVG elements in HTML */
.value-card .value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

/* Contact card icons are now SVG elements in HTML */
.contact-card .contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.contact-card .contact-icon svg {
    color: var(--primary-color);
}

/* Phone mockup icon is now SVG element in HTML */
.coming-soon-phone .phone-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF9500, #FF6B35);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.item-info p {
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
    font-size: 0.8rem;
}

.order-button {
    background: var(--gradient);
    color: white;
    padding: 0.8rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s ease-in-out infinite;
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3), transparent);
    border-radius: 50%;
}

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

@keyframes slideIn {
    0% { transform: translateX(-100px); opacity: 0.8; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Enhanced AI Hub */
.ai-hub {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.ai-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1), transparent 50%);
    pointer-events: none;
}

.ai-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.ai-card {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(124, 58, 237, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
    transition: all 0.6s ease;
}

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

.ai-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow:
        0 20px 40px rgba(124, 58, 237, 0.2),
        0 0 0 1px rgba(124, 58, 237, 0.3);
}

.ai-card.featured {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
    border: 2px solid rgba(124, 58, 237, 0.4);
    grid-column: span 2;
}

.ai-icon {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.ai-card:hover .ai-icon {
    transform: scale(1.1) rotateY(180deg);
    color: var(--primary-color);
}

.ai-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ai-card:hover h3 {
    color: var(--text-light);
}

.ai-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ai-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ai-features span {
    background: rgba(124, 58, 237, 0.1);
    color: var(--secondary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.ai-card:hover .ai-features span {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.ai-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced About Section */
.about {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    z-index: -1;
    pointer-events: none;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 5% 4rem;
    position: relative;
    z-index: 1;
}

/* About title uses the same styling as section-title */

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.about-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

.about-feature {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05), transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.company-story h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-darker);
    box-shadow: 0 0 0 3px var(--primary-color);
    animation: pulse-marker 2s ease-in-out infinite;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.company-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.value-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-card li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.value-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
    animation: count-up 2s ease-out;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@keyframes pulse-marker {
    0%, 100% {
        box-shadow: 0 0 0 3px var(--primary-color);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.3);
        transform: scale(1.1);
    }
}

@keyframes count-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clean Apple-Style Contact Section */
.contact {
    background: var(--bg-light);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
}

.contact-note {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Coming Soon Phone Screen */
.coming-soon-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.phone-icon {
    font-size: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF9500, #FF6B35);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.phone-icon::before {
    content: '';
    width: 32px;
    height: 32px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><rect x="5" y="2" width="14" height="20" rx="2" ry="2"/><line x1="12" y1="18" x2="12.01" y2="18"/></svg>') no-repeat center;
    background-size: contain;
}

/* Fix AI Hub icons - add proper colors */
.ai-card .ai-icon {
    font-size: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.card-1 .card-icon::before {
    content: '';
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300d4ff"><rect x="5" y="11" width="14" height="9" rx="2" fill="%2300d4ff"/><circle cx="12" cy="5" r="2" fill="%2300d4ff"/><line x1="12" y1="7" x2="12" y2="11" stroke="%2300d4ff" stroke-width="2"/><line x1="7" y1="21" x2="7" y2="20" stroke="%2300d4ff" stroke-width="2"/><line x1="17" y1="21" x2="17" y2="20" stroke="%2300d4ff" stroke-width="2"/><circle cx="9" cy="15" r="1" fill="white"/><circle cx="15" cy="15" r="1" fill="white"/><line x1="3" y1="13" x2="5" y2="13" stroke="%2300d4ff" stroke-width="2"/><line x1="19" y1="13" x2="21" y2="13" stroke="%2300d4ff" stroke-width="2"/></svg>') no-repeat center;
    background-size: contain;
}

/* 🚀 ULTIMATE SURPRISE: Lightning-fast animations + Premium effects */
.solution-card, .ai-card, .value-card, .contact-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-card:nth-child(1) { transition-delay: 0.02s; }
.solution-card:nth-child(2) { transition-delay: 0.04s; }
.solution-card:nth-child(3) { transition-delay: 0.06s; }

.ai-card:nth-child(1) { transition-delay: 0.02s; }
.ai-card:nth-child(2) { transition-delay: 0.04s; }
.ai-card:nth-child(3) { transition-delay: 0.06s; }
.ai-card:nth-child(4) { transition-delay: 0.08s; }
.ai-card:nth-child(5) { transition-delay: 0.1s; }
.ai-card:nth-child(6) { transition-delay: 0.12s; }

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* 🎯 ULTIMATE HOVER MAGIC */
.solution-card:hover, .ai-card:hover {
    transform: translateY(-12px) scale(1.03) rotateX(5deg);
    box-shadow: 
        0 25px 60px rgba(0, 212, 255, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 🌟 PREMIUM GLOW EFFECTS */
.solution-card::after, .ai-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.solution-card:hover::after, .ai-card:hover::after {
    opacity: 1;
}

/* 🎨 FLOATING CARDS PREMIUM ANIMATION */
@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        filter: brightness(1);
    }
    33% { 
        transform: translateY(-15px) rotate(2deg) scale(1.02);
        filter: brightness(1.1);
    }
    66% { 
        transform: translateY(-8px) rotate(-1deg) scale(0.98);
        filter: brightness(1.05);
    }
}

/* 🔥 HERO BUTTONS ULTIMATE UPGRADE */
.cta-primary {
    position: relative;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 212, 255, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 212, 255, 0.5),
        0 10px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* 💫 ULTIMATE BACKGROUND MAGIC */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 149, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.ai-icon {
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

/* Local AI LLM Solutions - Brain/Neural Network icon with color */
.ai-card.featured .ai-icon::before {
    content: '';
    width: 32px;
    height: 32px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%237C3AED" stroke="%237C3AED" stroke-width="1.5"><path d="M9.5 2A2.5 2.5 0 0 1 12 4.5V7a2.5 2.5 0 0 1-2.5 2.5H7A2.5 2.5 0 0 1 4.5 7V4.5A2.5 2.5 0 0 1 7 2h2.5Z"/><path d="M14.5 2A2.5 2.5 0 0 1 17 4.5V7a2.5 2.5 0 0 1-2.5 2.5H12A2.5 2.5 0 0 1 9.5 7V4.5A2.5 2.5 0 0 1 12 2h2.5Z"/><path d="M9.5 14.5A2.5 2.5 0 0 1 12 17v2.5a2.5 2.5 0 0 1-2.5 2.5H7a2.5 2.5 0 0 1-2.5-2.5V17A2.5 2.5 0 0 1 7 14.5h2.5Z"/><path d="M14.5 14.5A2.5 2.5 0 0 1 17 17v2.5a2.5 2.5 0 0 1-2.5 2.5H12a2.5 2.5 0 0 1-2.5-2.5V17a2.5 2.5 0 0 1 2.5-2.5h2.5Z"/></svg>') no-repeat center;
    background-size: contain;
}

/* AI-Powered Solutions - Fresh Robot icon from scratch */
.solution-card:nth-child(3) .card-icon {
    font-size: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.solution-card:nth-child(3) .card-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23007AFF"><rect x="5" y="11" width="14" height="9" rx="2" fill="%23007AFF"/><circle cx="12" cy="5" r="2" fill="%23007AFF"/><line x1="12" y1="7" x2="12" y2="11" stroke="%23007AFF" stroke-width="2"/><line x1="7" y1="21" x2="7" y2="20" stroke="%23007AFF" stroke-width="2"/><line x1="17" y1="21" x2="17" y2="20" stroke="%23007AFF" stroke-width="2"/><circle cx="9" cy="15" r="1" fill="white"/><circle cx="15" cy="15" r="1" fill="white"/><line x1="3" y1="13" x2="5" y2="13" stroke="%23007AFF" stroke-width="2"/><line x1="19" y1="13" x2="21" y2="13" stroke="%23007AFF" stroke-width="2"/></svg>') no-repeat center;
    background-size: contain;
}

/* Fix Ayescan text visibility - make it dark */
.ayescan {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 149, 0, 0.1);
    border-bottom: 1px solid rgba(255, 149, 0, 0.1);
    color: var(--text-dark);
}

.ayescan .section-description {
    color: var(--text-gray);
}

.coming-soon-description {
    color: var(--text-gray);
}

/* 🎉 SURPRISE: Instant card animations with smooth stagger effect */
.solution-card, .ai-card, .value-card, .contact-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.solution-card:nth-child(1) { transition-delay: 0.05s; }
.solution-card:nth-child(2) { transition-delay: 0.1s; }
.solution-card:nth-child(3) { transition-delay: 0.15s; }

.ai-card:nth-child(1) { transition-delay: 0.05s; }
.ai-card:nth-child(2) { transition-delay: 0.1s; }
.ai-card:nth-child(3) { transition-delay: 0.15s; }
.ai-card:nth-child(4) { transition-delay: 0.2s; }
.ai-card:nth-child(5) { transition-delay: 0.25s; }
.ai-card:nth-child(6) { transition-delay: 0.3s; }

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Enhanced hover effects for instant feedback */
.solution-card:hover, .ai-card:hover {
    transform: translateY(-8px) scale(1.02);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.item-info h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
    font-size: 0.8rem;
}

.order-button {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: phoneGlow 2s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.coming-soon-phone h3 {
    color: #FF9500;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.coming-soon-phone p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
}

.loading-dots span {
    width: 8px;
    height: 8px;
}

/* Hide decorative elements on mobile for professional UX */
@media (max-width: 768px) {
    .container {
        max-width: var(--container-sm);
        padding: 0 var(--spacing-md);
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 5rem var(--spacing-md) 3rem;
        min-height: 90vh;
    }
    
    .solutions-grid,
    .ai-projects {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    /* Hide floating cards on mobile for cleaner UX */
    .hero-visual,
    .floating-card {
        display: none;
    }
    
    /* Hide abstract elements on mobile */
    .abstract-element {
        display: none;
    }
    
    /* Clean up hero content spacing */
    .hero-content {
        max-width: 100%;
        margin-bottom: 0;
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    section {
        padding: var(--spacing-md) 0;
    }
    
    .hero {
        padding: 4rem var(--spacing-sm) 2rem;
        min-height: 80vh;
    }
    
    /* Ensure floating elements are hidden */
    .hero-visual,
    .floating-card,
    .abstract-element {
        display: none !important;
    }
}

.loading-dots span {
    background: #FF9500;
    border-radius: 50%;
    animation: loadingDot 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes loadingDot {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    transition: all 0.8s ease;
}

.contact-form-container:hover::before {
    left: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem 1rem 0.8rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group label {
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--bg-light);
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    top: -0.5rem;
    color: var(--primary-color);
    font-size: 0.7rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.submit-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: all 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.submit-btn svg {
    transition: all 0.3s ease;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-methods h3,
.social-links h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.method-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 12px;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-method a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method a:hover {
    color: var(--primary-color);
}

.contact-method p {
    color: var(--text-gray);
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.social-link svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.05), transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    font-optical-sizing: auto;
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.footer-links-bottom {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.privacy-link, .terms-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.privacy-link:hover, .terms-link:hover {
    color: var(--primary-color);
}

.footer-links-bottom span {
    color: rgba(255, 255, 255, 0.4);
}

/* Privacy Policy Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: white;
}

.modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.privacy-content h3, .terms-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
}

.privacy-content h3:first-child, .terms-content h3:first-child {
    margin-top: 0;
}

.privacy-content p, .terms-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-content a, .terms-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-content a:hover, .terms-content a:hover {
    text-decoration: underline;
}

.last-updated {
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* 📱 BRAND NEW MOBILE MENU STYLES */
@media (max-width: 768px) {
    /* Hide desktop nav, show mobile hamburger */
    .desktop-nav {
        display: none;
    }

    .mobile-hamburger {
        display: flex;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Hide custom cursor on mobile */
    .custom-cursor {
        display: none;
    }

    /* Adjust back to top button for mobile */
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 2rem 2rem;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0;
    }

    .hero-visual {
        height: 300px;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .abstract-element {
        right: 5%;
        opacity: 0.4;
        width: 350px;
        height: 350px;
    }

    .shape-1 {
        width: 150px;
        height: 150px;
    }

    .shape-2 {
        width: 100px;
        height: 100px;
    }

    .shape-3 {
        width: 60px;
        height: 180px;
    }

    .orb-1 {
        width: 50px;
        height: 50px;
    }

    .orb-2 {
        width: 35px;
        height: 35px;
    }

    .orb-3 {
        width: 25px;
        height: 25px;
    }

    .ayescan-content,
    .about-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ai-card.featured {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ai-projects {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }
}

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

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

    .abstract-element {
        display: none;
    }

    .nav-link {
        font-size: 1.3rem;
        width: 180px;
    }

    .solution-card,
    .ai-card {
        padding: 2rem 1.5rem;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

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

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        text-align: left;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .solution-card:hover,
    .ai-card:hover,
    .value-card:hover {
        transform: none;
    }

    .solution-card,
    .ai-card,
    .value-card {
        transition: none;
    }

    .nav-link:hover {
        background: none;
        transform: none;
    }

    .cta-button:hover,
    .ayescan-cta:hover,
    .submit-btn:hover {
        transform: none;
    }
}

/* Advanced Animations */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-triggered animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered animations */
.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }

.ai-card:nth-child(1) { animation-delay: 0.1s; }
.ai-card:nth-child(2) { animation-delay: 0.2s; }
.ai-card:nth-child(3) { animation-delay: 0.3s; }
.ai-card:nth-child(4) { animation-delay: 0.4s; }
.ai-card:nth-child(5) { animation-delay: 0.5s; }
.ai-card:nth-child(6) { animation-delay: 0.6s; }

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
body.loading {
    overflow: hidden;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Particle effects */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    animation: particle-float 3s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.5;
    }
}

/* 🎭 ADVANCED SCROLL ANIMATIONS */
section, .hero {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

section.animate-in, .hero.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.solution-card, .ai-card, .value-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.solution-card.animate-in, .ai-card.animate-in, .value-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 🌟 ADVANCED HOVER MICRO-INTERACTIONS */
.solution-card, .ai-card, .contact-card {
    position: relative;
    overflow: hidden;
}

.solution-card::before, .ai-card::before, .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 212, 255, 0.1) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.solution-card:hover::before, .ai-card:hover::before, .contact-card:hover::before {
    opacity: 1;
}

/* Magnetic button enhancement */
.cta-button, .submit-btn, .back-to-top {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Advanced connection flow animation */
@keyframes connectionFlow {
    0% {
        stroke-dasharray: 0 100;
        opacity: 0.3;
    }
    50% {
        stroke-dasharray: 50 50;
        opacity: 0.8;
    }
    100% {
        stroke-dasharray: 100 0;
        opacity: 0.3;
    }
}

/* 🔮 AI TYPING EFFECT */
.dynamic-text {
    color: #00d4ff;
    background: linear-gradient(45deg, #00d4ff, #7c3aed, #f59e0b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

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

@keyframes blink {
    0%, 50% { border-color: #00d4ff; }
    51%, 100% { border-color: transparent; }
}

/* 🧠 INTELLIGENT ADAPTIVE STYLES */
.performance-optimized .energy-orb {
    animation-duration: 12s;
}

.performance-optimized .particle-canvas {
    opacity: 0.4;
}

.performance-optimized .neural-matrix {
    opacity: 0.5;
}

/* Ensure floating elements are always visible */
.floating-particles,
.gradient-orbs,
.neural-network {
    display: block !important;
    opacity: 1 !important;
}

/* 🎪 SHOWSTOPPER: Audio Visualizer */
.audio-visualizer {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 200px;
    height: 100px;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.audio-visualizer.active {
    opacity: 1;
    transform: translateY(0);
}

#visualizer-canvas {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.audio-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    color: #00d4ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.audio-toggle:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: scale(1.1);
}




/* 🔥 SHOWSTOPPER: Interactive Cursor Trail */
.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    mix-blend-mode: screen;
}

.trail-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: trailFade 1s ease-out forwards;
}

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

/* 🎆 SHOWSTOPPER: Celebration Particles */
.celebration-particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: celebrate 2s ease-out forwards;
}

@keyframes celebrate {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateY(-100px);
    }
}

/* Mobile optimizations for showstoppers */
@media (max-width: 768px) {
    .audio-visualizer {
        width: 150px;
        height: 80px;
        bottom: 1rem;
        left: 1rem;
    }



    .cursor-trail {
        display: none;
    }

    /* Better mobile contact section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    /* Improved mobile typography */
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Better mobile hero */
    .hero {
        padding: 4rem 1rem 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    /* Mobile solutions grid */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Mobile AI projects */
    .ai-projects {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Mobile footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Additional mobile responsiveness for smaller screens */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

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

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

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }
}
