body {
    font-family: 'Roboto', sans-serif;
}
.font-poppins {
    font-family: 'Poppins', sans-serif;
}
.hero-section {
    background-image: url('image-placeholder.png');background-size: cover;
    background-position: center;
}
.tracking-route {
    position: relative;
    height: 100px;
    width: 100%;
    background: #f0f4f8;
    overflow: hidden;
}
.route-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d1d5db;
}
.route-progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: #2563eb;
    animation: move-progress 5s linear infinite;
}

#logo-loader {
    transition: opacity 0.3s ease;
}

@keyframes move-progress {
    0% { width: 0%; }
    100% { width: 100%; }
}