 /* Unified About Section */
        .magical-about {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--surface);
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(108, 99, 255, 0.15);
            overflow: hidden;
            position: relative;
            padding: 3rem;
        }

        .magical-about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 15% 50%, rgba(108, 99, 255, 0.03) 0%, transparent 30%),
                radial-gradient(circle at 85% 80%, rgba(255, 100, 199, 0.03) 0%, transparent 30%);
            z-index: 0;
        }

        .about-container {
            position: relative;
            z-index: 1;
        }

        /* Header Section */
        .about-header {
            text-align: center;
            margin-bottom: 3.5rem;
            position: relative;
            padding-bottom: 2rem;
        }

        .about-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .magical-title {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .tagline {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Content Grid */
        .about-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        /* Feature List */
        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.8rem;
            background: var(--light-gray);
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(108, 99, 255, 0.1);
            border-color: rgba(108, 99, 255, 0.2);
        }

        .feature-icon {
            font-size: 2.2rem;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-content h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 0.7rem;
            font-weight: 700;
        }

        .feature-content p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
        }

        /* Enhanced Tech Stack Styles */
.tech-title {
    text-align: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tech-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.tech-item {
    padding: 0.9rem 0.5rem;
    background: rgba(108, 99, 255, 0.08);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
    border: 1px solid rgba(108, 99, 255, 0.1);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    animation: subtle-float 4s infinite ease-in-out;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.tech-item.active {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
}

.tech-item.active::before {
    opacity: 1;
}

.tech-item:nth-child(2n) {
    animation-delay: 0.5s;
}

.tech-item:nth-child(3n) {
    animation-delay: 1s;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .tech-item {
        padding: 0.7rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .tech-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border);
        }

        .stat {
            text-align: center;
            padding: 1.5rem;
            background: var(--light-gray);
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .stat:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(108, 99, 255, 0.1);
            border-color: rgba(108, 99, 255, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.85rem;
        }

        /* CTA Highlight */
        .cta-highlight {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 100, 199, 0.08) 100%);
            padding: 2.2rem;
            border-radius: 16px;
            border-left: 4px solid var(--primary);
            margin-top: 2.5rem;
            text-align: center;
        }

        .cta-highlight p {
            font-size: 1.2rem;
            margin: 0;
            color: var(--text-primary);
            line-height: 1.7;
        }

        .cta-highlight strong {
            color: var(--primary);
            font-weight: 700;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .magical-title {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .magical-about {
                padding: 2.5rem 1.5rem;
            }
            
            .magical-title {
                font-size: 2.1rem;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
             .feature-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 0.5rem;
    }
           
        }

        @media (max-width: 480px) {
            body {
                padding: 1rem;
            }
            
            .magical-about {
                padding: 2rem 1.2rem;
                border-radius: 20px;
            }
            
            .magical-title {
                font-size: 1.9rem;
            }
            
            .tagline {
                font-size: 1.1rem;
            }
            
            .feature-item {
                padding: 1.5rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .feature-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 0.5rem;
    }
            
            .cta-highlight {
                padding: 1.8rem;
            }
            
            .cta-highlight p {
                font-size: 1.1rem;
            }
             
        }
        .about-visuals {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.1);
}

/* Remove any transform on hover that causes tilting */
.visual-card:hover {
    transform: translateY(-5px); /* Only slight lift, no tilt */
    box-shadow: 0 20px 45px rgba(108, 99, 255, 0.15);
}