html {
    scroll-behavior: smooth;
}

body {
    background: #f7f7f7;
}

/*=========================
        NAVBAR
=========================*/

.custom-navbar {
    background: #111;
    transition: .35s;
    padding: 15px 0;
    border-bottom: 2px solid #C7A548;
}

    .custom-navbar .navbar-brand {
        color: white;
    }

    .custom-navbar .nav-link {
        color: white !important;
        margin-left: 18px;
        font-weight: 500;
        transition: .3s;
    }

        .custom-navbar .nav-link:hover {
            color: #C7A548 !important;
        }

.nav-contact {
    background: transparent;
    border: 2px solid #C7A548;
    color: white !important;
    border-radius: 50px;
    padding: 8px 25px !important;
    margin-left: 18px;
    transition: .3s;
}

.custom-navbar .nav-contact:hover {
    background: #C7A548 !important;
    color: #111 !important;
}

/* ==========================
        FOOTER
========================== */

.footer {
    background: #1F1F1F;
    color: #dcdcdc;
    border-top: 3px solid #C7A548;
    position: relative;
}

    .footer a {
        color: #C7A548;
        text-decoration: none;
        font-weight: 600;
    }

        .footer a:hover {
            color: #E3C36B;
        }

    .footer .copyright {
        font-size: 13px;
    }

    .footer .developer {
        position: absolute;
        right: 20px;
        bottom: 12px;
        font-size: 12px;
    }

/* =======================
        BACK TO TOP
======================= */

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #C7A548;
    color: white;
    display: none;
    z-index: 9999;
}

    #backToTop:hover {
        background: #B08D35;
    }


/*=========================
        HERO
=========================*/

.hero-carousel {
    margin-top: 88px;
}

.hero-image {
    height: 88vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    left: 10%;
    right: auto;
    max-width: 650px;
}

    .carousel-caption h1 {
        font-size: 64px;
        font-weight: 800;
        line-height: 1.1;
    }

    .carousel-caption span {
        color: #C7A548;
    }

    .carousel-caption p {
        font-size: 20px;
        margin: 30px 0;
    }

.hero-btn {
    margin-right: 15px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

@media(max-width:768px) {

    .hero-image {
        height: 70vh;
    }

    .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-caption {
        left: 8%;
        right: 8%;
    }
}

/*======================
ABOUT
======================*/

.highlight-box {
    background: #111827;
    color: white;
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    transition: .3s;
}


    .highlight-box i {
        font-size: 35px;
        color: #ffc107;
    }


    .highlight-box h3 {
        font-size: 32px;
        font-weight: 800;
        margin: 10px 0;
        color: #ddd;
    }


    .highlight-box p {
        margin: 0;
        color: #ddd;
        font-size: 14px;
    }


    .highlight-box:hover {
        transform: translateY(-8px);
        background: #1f2937;
        box-shadow: 0 15px 30px rgba(0,0,0,.2);
    }

/*======================
SERVICE
======================*/

section h2 {
    color: #222;
}

section h3 {
    color: #222;
}

section p {
    line-height: 1.8;
}

section img {
    transition: .35s;
}

    section img:hover {
        transform: scale(1.02);
    }

.bg-dark {
    background: #181818 !important;
}

.service-img {
    width: 80%;
    max-height: 300px;
    object-fit: cover;
    margin: auto;
    display: block;
}

/* ===============================
   Truck Brand Slider
================================ */

.truck-brands {
    background: #fff;
    overflow: hidden;
    position: relative;
}

.brand-slider {
    overflow: hidden;
    position: relative;
}

    .brand-slider::before,
    .brand-slider::after {
        content: "";
        position: absolute;
        top: 0;
        width: 150px;
        height: 100%;
        z-index: 5;
    }

    .brand-slider::before {
        left: 0;
        background: linear-gradient( to right, white 0%, rgba(255,255,255,0) 100% );
    }

    .brand-slider::after {
        right: 0;
        background: linear-gradient( to left, white 0%, rgba(255,255,255,0) 100% );
    }

.brand-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brandScroll 28s linear infinite;
}

    .brand-track:hover {
        animation-play-state: paused;
    }

    .brand-track img {
        height: 75px;
        margin: 0 45px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: .55;
        transition: all .35s ease;
    }

        /* Hover */

        .brand-track img:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.12);
        }

@keyframes brandScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */

@media (max-width:768px) {

    .brand-track img {
        height: 50px;
        margin: 0 25px;
    }
}

#services
{
    scroll-margin-top: 90px;
}