/* Custom Styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.3s ease-in-out;
    border: none;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.breadcrumb {
    background-color: #f8f9fa;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-badge {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 12px;
    top: 0;
}

.timeline-content {
    margin-left: 50px;
}

/* Tracking history timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e9ecef;
    left: 20px;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
}

/* Stats section */
.stats-section {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 3rem 0;
    margin: 3rem 0;
}

/* Service cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn {
    border-radius: 0.375rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
}

/* Form elements */
.form-control-lg {
    padding: 0.75rem 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline::before {
        left: 15px;
    }
    
    .timeline-badge {
        left: 8px;
    }
    
    .timeline-content {
        margin-left: 40px;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .stats-section {
        padding: 2rem 0;
    }
}