.srv-card {
    transition: all 0.3s ease;
}
.srv-card:hover {
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.08)!important;
    transform: translateY(-5px);
}
.srv-card__banner {
    height: 180px;
    display: block;
    position: relative;
    overflow: hidden;
}
.srv-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.srv-card__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}
.srv-card__banner:hover .srv-card__img,
.srv-card__banner:hover .srv-card__no-img {
    transform: scale(1.05);
}
.srv-card__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}
.srv-card__cat-icon {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 4px;
}
.srv-card__btn {
    border-radius: 8px;
}
.srv-card__line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.srv-card__tracking-wider {
    letter-spacing: 0.05em;
}

/* =============================================
   NodeX Premium Empty State Styling
   ============================================= */
.nodex-empty-card {
    position: relative;
    padding: 3rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.04) 0%, rgba(139, 92, 246, 0.06) 100%);
    border: 2px dashed rgba(var(--bs-primary-rgb), 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

.nodex-empty-card:hover {
    border-color: rgba(var(--bs-primary-rgb), 0.45);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(var(--bs-primary-rgb), 0.12);
}

.nodex-empty-icon-wrapper {
    position: relative;
    width: 86px;
    height: 86px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.12) 0%, rgba(139, 92, 246, 0.2) 100%);
    box-shadow: 0 10px 25px -5px rgba(var(--bs-primary-rgb), 0.3);
    animation: nodexEmptyFloat 4s ease-in-out infinite;
}

.nodex-empty-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 32px;
    background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.25) 0%, rgba(139, 92, 246, 0) 70%);
    z-index: -1;
    animation: nodexGlowPulse 3s ease-in-out infinite alternate;
}

.nodex-empty-icon-wrapper--warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(245, 158, 11, 0.25) 100%);
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.35);
}

.nodex-empty-icon-wrapper--warning::before {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, rgba(245, 158, 11, 0) 70%);
}

.nodex-empty-icon {
    font-size: 2.8rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.nodex-empty-card:hover .nodex-empty-icon {
    transform: scale(1.12) rotate(4deg);
}

.nodex-empty-sparkle {
    position: absolute;
    color: var(--bs-primary);
    opacity: 0.6;
    animation: nodexSparkle 2.5s ease-in-out infinite alternate;
}

.nodex-empty-sparkle-1 { top: 16px; left: 24px; font-size: 1.3rem; animation-delay: 0s; }
.nodex-empty-sparkle-2 { bottom: 18px; right: 26px; font-size: 1.4rem; animation-delay: 1.2s; color: #8b5cf6; }

[data-bs-theme="dark"] .nodex-empty-card {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: rgba(var(--bs-primary-rgb), 0.3);
}

@keyframes nodexEmptyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes nodexGlowPulse {
    0% { opacity: 0.4; transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1.08); }
}

@keyframes nodexSparkle {
    0% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
    100% { opacity: 0.95; transform: scale(1.25) rotate(45deg); }
}

