﻿/*body {
    font-family: Arial, sans-serif;
    margin: 20px;
}*/

.timeline {
    position: relative;
    max-width: 600px;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 6px;
        background-color: #4CAF50;
        top: 0;
        bottom: 0;
        /* left: 50%;*/
        margin-left: -6px;
    }

.timeline-item {
    padding: 22px 40px;
    position: relative;
    background-color: inherit;
    width: 100%;
}

    .timeline-item::after {
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        width: 35px;
        height: 35px;
        right: -17px;
        background-color: white;
        border: 4px solid #4CAF50;
        top: 15px;
        border-radius: 50%;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #B0B0B0;
    }

#timelineCreatedOn::after {
    content: '\f073'; /* Unicode for calendar icon */
}

#timelineRequestedFor::after {
    content: '\f017'; /* Unicode for clock icon */
}

#timelineDriverAssigned::after {
    content: '\f0d1'; /* Unicode for truck icon */
  
}

#timelineJobCompleted::after {
    content: '\f11e'; /* Unicode for flag-checkered icon */
}

@keyframes moveTruck {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(10px);
    }
}
@keyframes tickClock {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(6deg); /* 6 degrees for each second tick */
    }
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right::after {
    left: -21px;
}

.timeline-item h3 {
    margin: 0;
    color: #4CAF50;
}

.timeline-item p {
    margin: 5px 0;
}

.timeline-item.gray-out::after {
    border-color: #B0B0B0;
}

.timeline-item.gray-out h3,
.timeline-item.gray-out p,
.timeline-item.gray-out .icon {
    color: #B0B0B0;
}

.timeline.gray-out::after {
    background-color: #B0B0B0;
}

@media (max-width: 600px) {
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        .timeline-item.left,
        .timeline-item.right {
            left: 0;
        }

            .timeline-item.right::after {
                left: -21px;
            }


    .timeline::after {
        left: 0;
    }
}

/*.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}*/
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .left, .middle, .right {
        text-align: left;
        width: 100%;
        margin-bottom: 10px;
    }

  
}

.left, .middle, .right {
    flex: 1;
}

.middle {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .middle h1 {
        margin: 0 10px;
    }

.right {
    text-align: right;
}

.text-left-align {
    text-align: left !important;
}



/*Glossy Nav bar */
.glossy-navbar {
    background: linear-gradient(135deg, #b6360e, #e0531b); /* Gradient with logo color */
    border-radius: 0px 0px 8px 8px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Slight shadow for depth */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Soft black border */
}

    .glossy-navbar .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.2); /* Transparent border for toggle button */
    }

    .glossy-navbar .navbar-nav .nav-link {
        color: #f8f9fa; /* Light text for contrast */
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-transform: uppercase;
        font-family: Oswald, Helvetica, Arial, Lucida, sans-serif !important;
        font-weight: 600;
        line-height: 1.4em;
        font-size: 18px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        .glossy-navbar .navbar-nav .nav-link:hover {
            background-color: rgba(255, 87, 34, 0.3); /* Light red-orange hover effect */
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); /* Light black shadow inside on hover */
        }



    .glossy-navbar .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent dropdown */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Soft shadow */
    }

        .glossy-navbar .dropdown-menu .dropdown-item {
            color: #d94e18; /* Matching text with the logo color */
            transition: background-color 0.3s ease;
        }

            .glossy-navbar .dropdown-menu .dropdown-item:hover {
                background-color: rgba(217, 78, 24, 0.2); /* Slightly darker hover effect */
                box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); /* Light black shadow inside */
            }
