.artistic-blob {
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    position: absolute;
    pointer-events: none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-gradient-border {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, #b90538, #565e74) border-box;
    border: 2px solid transparent;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.achievement-item {
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(5px);
}

.achievement-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background-color: #B90538;
    margin-top: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.achievement-item:hover .dot {
    transform: scale(1.5);
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.animate-pulse {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.delay-700 {
    animation-delay: 0.7s;
}

/* Service Card Hover Fix for Icons */
.service-card:hover .icon-box {
    color: white;
}
