.about-section {
    position: relative;
    overflow: hidden;
}

.about-image {
    position: relative;
    transition: transform 0.5s ease;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(123, 31, 162, 0.2);
    border-radius: 0.5rem;
    transform: translate(10px, 10px);
    transition: transform 0.5s ease;
}

.about-image:hover::after {
    transform: translate(5px, 5px);
}

.about-stats {
    position: relative;
}

.stats-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.05) 0%, rgba(151, 71, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stats-number {
    background: linear-gradient(135deg, #7B1FA2 0%, #9747FF 100%);
    -webkit-background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
}

.stats-card:hover .stats-number {
    transform: scale(1.1);
}
