:root {
    --primary-color: #000000;
    --secondary-color: #ffc61a;
    --text-color: #1C3044;
    --white-text-color: #fff;
    --gray-color: #d8d8d9;
    --font-family: 'Poppins', sans-serif;
    --animation-speed: 40s;
}
body {
    overflow-x: hidden;
    font-family: var(--font-family);
}
.theme-color{
    color: var(--primary-color) !important;
}
.sidebar {
    min-height: 100vh;
}
.sidebar a {
    color: #000000;
    padding: 17px 20px;
    display: block;
    text-decoration: none;
}
.sidebar a:hover {
    color: var(--primary-color);
}
.main-sidebar svg{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.main-sidebar a:hover svg{
    fill: var(--primary-color);
}
main{
    background: #eaeaea47;
}
.absolute{
    position: absolute;
}
.navbar.navbar-expand-lg{
    background-color: var(--secondary-color) !important;
}
.navbar-auth-section{
    text-align: end;
}
.navbar-auth-section span{
    color: black;
    font-weight: 500;
    line-height: 1.4;
}
.navbar-auth-section .auth-span-1{
    font-size: 15px;
    margin-bottom: -30px;
    display: block;
}
#userDropdown .user-svg{
    width: 35px;
    background: var(--primary-color);
    padding: 7px;
    border-radius: 5px;
    margin: 0 10px;
    fill: white;
}
.navbar-auth-section .auth-span-2{
    font-size: 13px;
    margin-top: -5px;
}
.topnavbar-first{
    border-radius: 15px;
}
.main-sidebar .main-sidebar_ul{
    overflow-y: auto;
    height: 100vh;
}
.theme-btn,.theme-btn:focus{
    background-color: var(--primary-color) !important;
    color: white;
}
.theme-btn:hover{
    background-color: #239ba785 !important;
    color: black;
}
@media only screen and (min-width: 768px) {
  .sidebar {
    width: 22%;
    position: fixed;
  }
  .mian-body {
        width: 78%;
  }
}
.sidebar .main-sidebar_ul .sidebar-li.active a{
    background: var(--primary-color);
    box-shadow: 2px 0px 8px -1px gray;
    border-radius: 5px;
    color: white;
}
.sidebar .main-sidebar_ul .sidebar-li.active svg{
    fill: white;
}
a{
    color: var(--primary-color);
}
footer{
    background: var(--primary-color);
}
.footer-logo{
    width: 230px;
}
.dropdown-menu-navbar{
    min-width: 610px;
}
@media only screen and (max-width: 991px) {
    .dropdown-menu-navbar{
        min-width: auto;
    }
}
.btn-primary,.bg-primary{
    background:#000000 !important;
    color:#fff !important;
    border-color:#000000 !important;
}
.text-primary{
    color:#000000 !important;
}
.text-secondary{
    color:var(--secondary-color) !important;
}
.navbar-login,.navbar-login:focus{
    background: #000000;
    border:1px solid #000000;
    color: white;
    margin-left: 20px;
}
.navbar-login:hover{
    background: white;
    border:1px solid #000000;
    color: #000000;
    margin-left: 20px;
}
.truck-banner {
    background-image: linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),url('../images/white-truck-banner.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px; /* adjust as needed */
}
.search-container {
    background: #0000005c;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    
}

.search-container .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.search-container .input-group {
    display: flex;
    flex-direction: column;
}

.search-container label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.search-container input {
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-container input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-container .search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-container .search-btn:hover {
    background-color: #1d4ed8;
}

@media (max-width: 600px) {
    .search-container .form-grid {
        grid-template-columns: 1fr;
    }
}
.suggestions {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    max-height: 180px;
    overflow-y: auto;
    z-index: 999;
    padding: 0;
    margin: 0;
    list-style: none;
}

.suggestions li {
    padding: 10px;
    cursor: pointer;
}

.suggestions li:hover {
    background: #f2f2f2;
}
.search-container h2{
    font-weight: 600;
}
.how-it-works .icon-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.how-it-works .step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #2c3e50; /* Deep blue from your logo */
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.testimonial-card {
    background: linear-gradient(145deg, #f3f4f6, #ffffff);
    border-radius: 20px;
    box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 4rem;
    color: #6366f1;
    opacity: 0.2;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #6366f1;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #6366f1;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}
.faq-section .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #004a99; /* Your logo blue */
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.faq-section .accordion-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-size: 1.1rem;
    padding: 1.25rem;
}








