
.skill-cont {
    --bs-border-opacity: 1;
    border-color: var(--accent-color) !important;
}

.skill-icon {
    color: var(--accent-color);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(20, 157, 221, 0.1) !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(20, 157, 221, 0.2) !important;
    border-color: var(--accent-color) !important;
}

.service-card:hover .service-icon {
    background-color: var(--accent-color) !important;
}

.service-card:hover .service-icon i {
    color: var(--contrast-color) !important;
    transform: scale(1.1);
}

.service-icon i {
    transition: all 0.3s ease;
}

.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:hover .stat-icon {
    background-color: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1);
}

.stat-icon {
    transition: all 0.3s ease;
}

.stat-count {
    animation: fadeInUp 0.6s ease-out;
}

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