:root {
    --primary: #151522;
    --secondary: #7185EE;
    --white: #FFFFFF;
    --gray: #707078;
    --muted: #DFDFDF;
    --error: #ff0000;
    --light-primary: #22222F;
    --light-secondary: #F4F6FF;
    --text-dark: #151515;
    --text-muted: #FFFFFFB2;
    --border-muted: #DFDFDF33;
}

* {
    font-family: "Poppins", sans-serif;
    outline: none !important;
    transition: all 0.5s ease;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: darken(var(--secondary), 5%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

h1 {
    line-height: 4rem !important;
}

h2 {
    line-height: 3.25rem !important;
}

p,
li,
a {
    margin: 0;
}

body a {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.lb-fs-6 {
    font-size: 0.9rem;
}

.lb-bg-primary {
    background-color: var(--primary) !important;
}

.lb-bg-light-primary {
    background-color: var(--light-primary) !important;
}

.lb-bg-secondary {
    background-color: var(--secondary) !important;
}

.lb-bg-light-secondary {
    background-color: var(--light-secondary);
}

.lb-text-dark {
    color: var(--text-dark);
}

.lb-text-secondary {
    color: var(--secondary);
}

.lb-text-gray {
    color: var(--gray);
}

.lb-text-muted {
    color: var(--text-muted);
}

.lb-button {
    color: var(--white);
    background-color: var(--secondary);
    padding: 0.7rem 1.3rem;
    border-radius: 1.9rem;
    border: 1px solid var(--secondary);
}

.lb-button:hover {
    color: var(--secondary);
    background-color: transparent;
    border: 1px solid #7185EE33;
}

.lb-outline-button {
    color: var(--white);
    background-color: transparent;
    padding: 0.7rem 1.3rem;
    border-radius: 1.9rem;
    border: 1px solid #7185EE33;
}

.lb-outline-button:hover {
    color: var(--white);
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
}

.lb-light-primary-button {
    color: var(--white);
    background-color: var(--light-primary);
    padding: 0.7rem 1.3rem;
    border-radius: 1.9rem;
    border: 1px solid var(--light-primary);
}

.lb-light-primary-button:hover {
    background-color: transparent;
}

.lb-light-primary-outline-button {
    color: var(--white);
    background-color: transparent;
    padding: 0.7rem 1.3rem;
    border-radius: 1.9rem;
    border: 1px solid var(--light-primary);
}

.lb-light-primary-outline-button:hover {
    background-color: var(--light-primary);
}

.lb-border-muted {
    border: 1px solid var(--border-muted);
}

.lb-border-bottom-muted {
    border-bottom: 1px solid var(--border-muted) !important;
}

.lb-border-left-muted {
    border-left: 1px solid var(--border-muted);
}

.lb-border-top-muted {
    border-top: 1px solid var(--border-muted);
}

.lb-border-right-muted {
    border-right: 1px solid var(--border-muted);
}

.lb-border-gray {
    border: 1px solid var(--muted);
}

.lb-border-bottom-gray {
    border-bottom: 1px solid var(--muted) !important;
}

.lb-border-left-gray {
    border-left: 1px solid var(--muted);
}

.lb-border-top-gray {
    border-top: 1px solid var(--muted);
}

.lb-border-right-gray {
    border-right: 1px solid var(--muted);
}

.lb-rounded-5 {
    border-radius: 2.5rem;
}

.section-content {
    text-align: justify;
    line-height: 1.8rem;
}

.section-heading {
    font-size: 1.5rem;
}

.section-heading:hover {
    color: var(--secondary) !important;
}

.error {
    color: var(--error);
    font-size: 0.8rem;
}

/* Header CSS */
header {
    z-index: 99;
}

.logo {
    max-height: 100%;
    max-width: 100%;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link.active {
    color: var(--secondary) !important;
}

.active-menu::before {
    content: "";
    position: absolute;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 0.5rem;
    background: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-nav .dropdown {
    position: static;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.company-menu h5 {
    width: 15rem;
}

.company-menu a {
    font-weight: 500;
}

.company-menu a:hover {
    color: var(--secondary);
}

.read-more a:hover {
    color: var(--secondary);
}


/* Transportation Managеmеnt CSS */
.our-service-button {
    padding-left: 2.2rem;
    padding-right: 2.2rem;
}

/* TMS Transportation Managеmеnt Section */
.accordion-button {
    box-shadow: none !important;
    font-size: 1.25rem;
}

.accordion-button::after {
    content: "";
    background-image: url("../assets/icons/plus.svg");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../assets/icons/minus.svg");
}

.active-tms-tab-button {
    background-color: var(--light-primary);
}

.tms-pane {
    display: none;
}

.tms-pane.active-tms-pane {
    display: flex;
}

/* Industry We Serve */

.lb-carousel {
    overflow: hidden;
}

.lb-carousel-container {
    transition: transform 0.5s ease;
}

.lb-item {
    margin: 0 0.43rem;
}

.indicator {
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.3rem;
    background-color: var(--muted);
    border-radius: 50%;
    cursor: pointer;
}

.indicator.active {
    background-color: var(--secondary) !important;
}

.slide-parent::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(21, 21, 34, 0) 38.24%, var(--primary) 100%);
    z-index: 2;
}

.slide-parent:hover .slide-content {
    display: block !important;
    transition: all .3s linear;
}

.slide-parent:hover::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(21, 21, 34, 0.2) 100%);
    backdrop-filter: blur(0.9rem);
    transition: all .3s linear;
}

.industries-we-serve .carousel-dot {
    height: 0.7rem !important;
    width: 0.7rem !important;
    border-radius: 50%;
    background-color: var(--secondary)
}

/* services */
.freight-tabs a {
    display: inline-block;
    margin: 0 0.625rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.freight-tabs .nav-link {
    border: none;
    outline: none;
}

.freight-tabs .nav-link.active {
    border: none;
    box-shadow: none;
}

.freight-tabs a.active {
    color: var(--secondary);
}

.freight-tabs .full-bar {
    height: 2px;
    background-color: var(--muted);
    width: 100%;
    left: 0;
}

.freight-tabs .indicator {
    height: 2px;
    background-color: var(--secondary);
    transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

.service-section .image-container {
    position: relative;
    overflow: hidden;
}

.service-section .image-container img {
    transition: filter 0.3s ease;
}

.service-section .image-container:hover img {
    filter: blur(5px);
}

.service-section .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    line-height: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-section .image-container:hover .overlay {
    opacity: 1;
}

@media only screen and (max-width: 1024px) {
    .service-section .overlay {
        font-size: 8px;
        line-height: 1rem;
    }
}

@media (max-width: 576px) {
    .freight-tabs a {
        font-size: 0.75rem;
        padding: 0.5rem 0.3rem;
        margin: 0 0.3rem
    }

    .freight-tabs .indicator {
        height: 3px;
    }

    .carousel-item .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .service-section .overlay {
        font-size: 12px;
        line-height: 1.25rem;
    }
}

/* Features Of Transportation Section */
.features-menu li {
    border-left: 2px solid var(--muted);
}

.features-menu li h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

.features-menu li h5 span {
    font-size: 1.25rem;
    font-weight: 500;
}

.features-menu li:hover {
    border-left: 2px solid var(--secondary);
}

.features-menu li:hover h5 {
    font-size: 2rem;
    font-weight: 600 !important;
}

.features-menu li:hover h5 span {
    font-size: 2rem;
    font-weight: 600 !important;
    color: var(--secondary);
}

.features-menu li:hover .feature-content {
    display: block !important;
}

/* FAQ Section */
.faq-image {
    height: 13.8rem;
    width: 24.8rem;
}

/* .faq-accordion {
    max-height: 30rem;
} */

.faq-button::after {
    content: "";
    background-image: url("../assets/icons/plus-white.svg");
    background-color: var(--secondary);
    padding: 1.18rem;
    border-radius: 50%;
    background-position: center;
    background-size: 0.9rem;
}

.faq-button:not(.collapsed)::after {
    background-image: url("../assets/icons/minus-white.svg");
}

/* Contact */
.contact-bg-image {
    background-image: url("../assets/image/red-truck.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-section h2 {
    width: 45%;
}

.explore-service::after {
    content: "";
    position: absolute;
    border-top: 1px solid var(--border-muted);
    height: 1px;
    width: -webkit-fill-available;
    bottom: 0.9rem;
    margin-left: 1.25rem;
}

.gradient-border-right {
    border-right: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgba(223, 223, 223, 0), var(--muted), rgba(223, 223, 223, 0));
    border-image-slice: 1;
}

.testimonial-bg {
    background-image: url("../assets/image/testimonials-bg-image.png");
}

.testimonial-carousel-button {
    height: 0.75rem !important;
    width: 0.75rem !important;
    border-radius: 50%;
}

/* Contact Us Section */
.contact-us-section {
    background: linear-gradient(360deg, #EEF1FF 0%, var(--white) 100%);
}

.form-control:focus {
    box-shadow: none;
}

.form-control::placeholder {
    font-size: 0.8rem;
    color: var(--gray);
}

.star-2 {
    transform: rotateY(160deg);
    bottom: 10%;
}

.star-4 {
    left: 75%;
}

.star-5 {
    left: 25%;
}

/* Footer */
.footer-heading-border {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, var(--secondary), var(--text-dark));
    border-image-slice: 1;
}

.subscribe-now input {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    border-radius: 2rem 0 0 2rem;
}

.input-group-text {
    border-radius: 0 2rem 2rem 0;
}

.footer-gradient-border-bottom {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    border-image-slice: 1;
}

.footer-gradient-border-right {
    border-right: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    border-image-slice: 1;
}

footer a:hover {
    color: var(--secondary);
}

.scroll-to-top a {
    writing-mode: vertical-lr;
    right: 1px;
    transform: rotate(180deg);
}

.scroll-to-top::after {
    content: "";
    position: absolute;
    height: -webkit-fill-available;
    width: 1px;
    background: var(--white);
    bottom: 0;
    right: 0.75rem;
    z-index: 0;
}

/* Media Query */
@media (max-width:992px) {

    /* Header */
    .nav-link {
        display: inline-block;
    }

    /* Transportation Managеmеnt CSS */
    .navbar-collapse {
        height: 15rem;
    }

    /* Contact Section */
    .contact-section h2 {
        width: 60%;
    }

    .gradient-border-right-0 {
        border-right: 0 !important;
    }

}

@media (max-width:768px) {

    .lb-border-left-0 {
        border-left: 0;
    }

    .lb-border-right-0 {
        border-right: 0;
    }

    /* Contact Section */
    .contact-section h2 {
        width: 80%;
    }

    /* Footer */
    .footer-gradient-border-right-0 {
        border-right: 0;
    }
}

@media (max-width:576px) {

    h1,
    h2 {
        line-height: 3rem !important;
    }

    /* Contact Section */
    .gradient-border-right {
        border-bottom: 1px solid transparent;
        border-image: linear-gradient(to left, rgba(223, 223, 223, 0), var(--muted), rgba(223, 223, 223, 0));
        border-image-slice: 1;
    }

    /* Carousel */
    .indicator {
        margin: 0 0.2rem;
    }
}