/* ==============================
   ORYVEN EXPRESS
   Main Website Styles
   ============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

header {
    background: #ffffff;
    padding: 20px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #123b70;
}

nav a {
    text-decoration: none;
    color: #172033;
    margin-left: 25px;
    font-weight: 600;
}

nav a:hover {
    color: #123b70;
}

.hero {
    min-height: 80vh;
    background: linear-gradient(
        rgba(10, 35, 70, 0.78),
        rgba(10, 35, 70, 0.78)
    ),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1800&q=80");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    padding: 80px 7%;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: #58a6ff;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    background: #58a6ff;
    color: white;
    padding: 15px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
}

.hero-btn:hover {
    background: #2f80d8;
}

section {
    padding: 90px 7%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.services {
    background: #f5f8fc;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.service-card h3 {
    margin: 15px 0 10px;
}

.service-icon {
    font-size: 40px;
}

footer {
    background: #0b1d35;
    color: white;
    text-align: center;
    padding: 50px 7%;
}

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .service-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 5%;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}
/* =========================
   TRACKING RESULT
========================= */

#trackingResult {
    max-width: 700px;
    margin: 35px auto;
    padding: 35px;
    background: #f8fbff;
    border: 2px solid #d7e6f5;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    text-align: left;
}

#trackingResult h3 {
    color: #123b70;
    margin: 0 0 25px;
    font-size: 28px;
}
#trackingResult p {
    margin: 14px 0;
    color: #333333;
    font-size: 17px;
}

#trackingResult strong {
    color: #123b70;
    font-weight: 700;
}
    color: #172033;
}
/* =========================
   SHIPMENT TIMELINE
========================= */

.shipment-timeline {
    margin-top: 35px;
    padding-left: 10px;
    border-left: 3px solid #d7e6f5;
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 0 0 30px 25px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -15px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #d7e6f5;
    color: #123b70;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid white;
}

.timeline-step.completed .timeline-dot {
    background: #123b70;
    color: white;
}

.timeline-step strong {
    display: block;
    color: #123b70;
    font-size: 17px;
    margin-bottom: 4px;
}

.timeline-step p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #666 !important;
}
/* CURRENT SHIPMENT STATUS */

.timeline-step.current .timeline-dot {
    background: #58a6ff;
    color: white;
    transform: scale(1.15);
}

.timeline-step.current strong {
    color: #58a6ff;
}