/* Timeline */
.timeline-wrapper {
    position: relative;
    padding: 2rem 0;
}

.process-step {
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-features {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.feature-item {
    font-size: 0.85rem;
    color: #666;
    padding: 0.25rem 0;
}

@media (max-width: 991.98px) {
    .timeline-line {
        display: none;
    }
}

/* Process Card Hover Effects */
.process-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.process-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--navy-rgb), 0.03) 0%, rgba(var(--navy-rgb), 0.06) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover:before {
    opacity: 1;
}

/* Features Animation */
.feature-item {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-item:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* Icon Animation */
.step-icon i {
    transition: transform 0.3s ease;
}

.process-card:hover .step-icon i {
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .process-card {
        margin-bottom: 1.5rem;
    }
    
    .step-number {
        top: 10px;
        right: 10px;
    }
}

/* Badge Animation */
.badge-wrapper .badge {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}