/* Global Styles */

.hero-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link {
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:hover::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #3b82f6;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.nav-link.active {
    color: #3b82f6;
    font-weight: 600;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
}

/* Tracking Styles */
.tracking-progress {
    height: 4px;
    background-color: #e5e7eb;
}

.tracking-progress-fill {
    height: 100%;
    background-color: #3b82f6;
    transition: width 0.5s ease;
}

.tracking-step.active {
    color: #3b82f6;
    font-weight: 600;
}

.tracking-step.active .tracking-icon {
    background-color: #3b82f6;
    color: white;
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}