.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}
.transition-all {
    transition: all 0.3s ease-in-out;
}

.tracking-wider {
    letter-spacing: 1.5px;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
}
.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.scale-up {
    border-width: 2px !important;
}

.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.hover-lift:hover .icon-box {
    transform: scale(1.1);
}

.border-transparent {
    border-color: transparent !important;
}

.hover-slide:hover {
    background-color: #f8f9fa;
    border-color: #e9ecef !important;
    transform: translateX(8px);
    /* Slides slightly to the right */
}

.hover-lift-slight {
    transition: transform 0.2s ease;
}

.hover-lift-slight:hover {
    transform: translateX(5px);
}

.z-index-1 {
    z-index: 1;
}

.pulse-animation {
    animation: pulse-red 2s infinite;
}

.roadmap-card {
    transition: all 0.3s ease;
}
.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 27, 27, 0.3) !important;
    filter: brightness(1.1);
}

.ls-2 {
    letter-spacing: 2px;
}

.hover-lift-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(13, 110, 253, 0.2) !important;
}

.benefit-card {
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: 0.3s ease-in-out;
}

.benefit-card:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.08) !important;
}

.hover-glow:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-5px);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Mobile adjustment for scaled card */
@media (max-width: 991px) {
    .scale-up {
        transform: scale(1) !important;
    }
}
