/* AI Universe Style */
.ai-universe {
   height: 500px;
   position: relative;
   perspective: 1000px;
   margin-bottom: 50px;
}

.sphere-container {
   position: relative;
   width: 100%;
   height: 100%;
   transform-style: preserve-3d;
   animation: rotate 20s infinite linear;
}

.sphere {
   position: absolute;
   width: 120px;
   height: 120px;
   border-radius: 50%;
   background: rgba(79, 70, 229, 0.1);
   backdrop-filter: blur(10px);
   display: flex;
   align-items: center;
   justify-content: center;
   transform-style: preserve-3d;
   box-shadow: 0 0 30px rgba(79, 70, 229, 0.3);
   transition: all 0.3s ease;
}

.sphere::before {
   content: attr(data-title);
   position: absolute;
   bottom: -30px;
   font-size: 1rem;
   color: var(--light);
   text-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
}

.sphere-content {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
}

.sphere-content i {
   font-size: 2rem;
   color: var(--primary);
}

.sphere-content span {
   font-size: 1.2rem;
   color: var(--light);
}

.s1 { transform: translateZ(150px) translateX(100px); }
.s2 { transform: translateZ(-150px) translateX(-100px); }
.s3 { transform: translateX(150px) translateY(100px); }
.s4 { transform: translateX(-150px) translateY(-100px); }

.orbital-ring {
   position: absolute;
   width: 400px;
   height: 400px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   border: 2px solid rgba(79, 70, 229, 0.1);
   border-radius: 50%;
   animation: pulse 2s infinite;
}

@keyframes rotate {
   from { transform: rotateY(0deg) rotateX(20deg); }
   to { transform: rotateY(360deg) rotateX(20deg); }
}

@keyframes pulse {
   0%, 100% { box-shadow: 0 0 30px rgba(79, 70, 229, 0.3); }
   50% { box-shadow: 0 0 50px rgba(79, 70, 229, 0.5); }
}

/* Age Stats Style */
.stats-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 30px;
   max-width: 1200px;
   margin: 0 auto;
}

.stat-card {
   background: rgba(255, 255, 255, 0.03);
   border-radius: 20px;
   padding: 25px;
   position: relative;
   overflow: hidden;
   border: 1px solid rgba(255, 255, 255, 0.1);
   height: 100%;
   transition: all 0.3s ease;
}

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

.stat-circle {
   position: relative;
   width: 120px;
   height: 120px;
   margin: 0 auto 20px;
}

.circular-chart {
   width: 100%;
   height: 100%;
}

.circle-bg {
   stroke: rgba(255, 255, 255, 0.1);
   stroke-width: 3;
}

.circle {
   stroke: url(#gradient);
   stroke-width: 3;
   stroke-linecap: round;
   transition: stroke-dasharray 1s ease;
}

.percentage {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--light);
}

.stat-info {
   font-size: 1.1rem;
   color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
   .stats-grid {
       grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 576px) {
   .stats-grid {
       grid-template-columns: 1fr;
   }
}
</style>
<style>
:root {
    --primary: #4F46E5;
    --secondary: #7C3AED;
    --dark: #111827;
    --light: #F3F4F6;
}

.main-wrapper {
    background: var(--dark);
    color: var(--light);
    overflow: hidden;
}

/* Hero Styles */
.hero {
    position: relative;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
}

.mega-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stroke-text {
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
    display: block;
}

.glowing-wrapper {
    position: relative;
}

.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--primary) 0%, transparent 50%);
    filter: blur(60px);
    opacity: 0.5;
    animation: glowPulse 4s infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

/* Neural Network Animation */
.neural-network {
    position: relative;
    height: 500px;
    width: 100%;
}

.nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--primary) 1px, transparent 1px) 0 0/20px 20px;
    animation: nodesPulse 4s infinite;
}

.connections {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, var(--primary) 45%, var(--primary) 55%, transparent 55%);
    background-size: 20px 20px;
    animation: connectionsFlow 2s linear infinite;
}

@keyframes nodesPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes connectionsFlow {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    animation: float 6s infinite;
}

.e1 { top: 20%; left: 20%; animation-delay: 0s; }
.e2 { top: 40%; right: 20%; animation-delay: 1.5s; }
.e3 { bottom: 30%; left: 30%; animation-delay: 3s; }
.e4 { bottom: 20%; right: 30%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(0, -20px) rotate(0deg); }
    75% { transform: translate(-10px, -10px) rotate(-5deg); }
}

/* Neon Button */
.neon-btn {
    position: relative;
    padding: 15px 30px;
    background: transparent;
    color: var(--primary);
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    overflow: hidden;
}

.neon-btn span {
    position: absolute;
    background: var(--primary);
}

.neon-btn span:nth-child(1) {
    width: 100%;
    height: 2px;
    top: 0;
    left: -100%;
    animation: neon1 1s linear infinite;
}

.neon-btn span:nth-child(2) {
    width: 2px;
    height: 100%;
    top: -100%;
    right: 0;
    animation: neon2 1s linear infinite;
    animation-delay: 0.25s;
}

.neon-btn span:nth-child(3) {
    width: 100%;
    height: 2px;
    bottom: 0;
    right: -100%;
    animation: neon3 1s linear infinite;
    animation-delay: 0.5s;
}

.neon-btn span:nth-child(4) {
    width: 2px;
    height: 100%;
    bottom: -100%;
    left: 0;
    animation: neon4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes neon1 { 0% { left: -100%; } 50%, 100% { left: 100%; } }
@keyframes neon2 { 0% { top: -100%; } 50%, 100% { top: 100%; } }
@keyframes neon3 { 0% { right: -100%; } 50%, 100% { right: 100%; } }
@keyframes neon4 { 0% { bottom: -100%; } 50%, 100% { bottom: 100%; } }

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card:hover {
    transform: translateY(-10px);
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                rgba(79, 70, 229, 0.3) 0%, 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    top: 0;
    left: 0;
}

.glass-card:hover .card-glow {
    opacity: 1;
}

.icon-3d {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
}

.icon-3d::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.card-action {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-arrow {
    width: 20px;
    height: 2px;
    background: var(--primary);
    position: relative;
    transition: width 0.3s;
}

.action-arrow::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary);
    border-top: 2px solid var(--primary);
    transform: rotate(45deg);
}

.glass-card:hover .action-arrow {
    width: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .mega-title {
        font-size: 3rem;
    }
    
    .neural-network {
        height: 300px;
    }
}
.stat-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(45deg, var(--primary), var(--secondary));
   border-radius: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
}

.stat-icon i {
   font-size: 24px;
   color: white;
}

.stat-info h3 {
   color: white;
   font-size: 1.2rem;
   margin-bottom: 10px;
}

.stat-value {
   font-size: 2rem;
   font-weight: 700;
   background: linear-gradient(45deg, var(--primary), var(--secondary));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 10px;
}

.stat-info p {
   color: rgba(255, 255, 255, 0.6);
   font-size: 0.9rem;
}

.stat-wave {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: linear-gradient(45deg, var(--primary), var(--secondary));
   opacity: 0.3;
   transition: all 0.3s ease;
}

.stat-card:hover .stat-wave {
   height: 10px;
   opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
   .stat-card {
       margin-bottom: 20px;
   }
}
@media (max-width: 768px) {
    .mega-title {
        font-size: 2.5rem;
    }
}

