
.card-icon-animated {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-animated svg {
    width: 100%;
    height: 100%;
}

/* Hover Animation for Cards */
.card {
    transition: all 0.3s ease;
}

.card:hover .card-icon-animated svg {
    animation: iconFloat 2s ease-in-out infinite;
}

/* Float Animation */
@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Pulse Animation */
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Rotate Animation */
@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Bounce Animation */
@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Shake Animation */
@keyframes iconShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Glow Effect */
@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(204, 255, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(204, 255, 0, 0.8)); }
}

/* Draw Animation for SVG Paths */
@keyframes draw {
    to { stroke-dashoffset: 0; }
}

/* Specific Icon Animations */
.icon-brand svg {
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-digital svg {
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-video svg {
    animation: iconBounce 2s ease-in-out infinite;
}

.icon-content svg {
    animation: iconShake 3s ease-in-out infinite;
}

.icon-analytics svg {
    animation: iconRotate 8s linear infinite;
}

.icon-campaign svg {
    animation: iconGlow 2s ease-in-out infinite;
}

/* Hero Animation */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Entrance Animation */
.card {
    animation: fadeInScale 0.6s ease-out backwards;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Button Hover Effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

/* Mascot Bounce Animation */
.mascot-bounce {
    animation: mascotBounce 3s ease-in-out infinite;
}

@keyframes mascotBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-20px) scale(1.02);
    }
    50% {
        transform: translateY(0) scale(1);
    }
    75% {
        transform: translateY(-10px) scale(1.01);
    }
}

/* Hero Image Animation */
.hero-image {
    animation: fadeInRight 1s ease-out;
}

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