@media (min-width: 801px) {
    .hamburger {
      display: none !important;
    }
  }
.page-footer__menu {
    display: flex;
    flex-direction: column;
}

.page-footer__menu li {
    width: 100%;
}

.d-flex {
    display: flex;
}

.center {
    justify-content: center;
}

.max-200 {
    max-width: 200px;
}

.testimonials__nav .slick-list {
    border-radius: 0;
}

@media (max-width: 992px) {
    .center {
        justify-content: flex-start;
    }
}

@media (max-width: 1140px) {
    .d-none-lg {
        display: none !important;
    }
}

.truck-img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

/* Add your custom styles here */

/* Modern About Section Styles - Compact & Image Effect */
.about-modern-section.compact-section {
    padding: 50px 0;
    background-color: #f0f2f5; /* Light grey background for a clean look */
    overflow: hidden;
    position: relative;
    color: #333 !important; /* Ensure default text color for the section is dark */
}

.about-modern-section .container {
    position: relative;
    z-index: 2;
}

.about-modern-section .section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.about-modern-section .section-heading .pre-title {
    color: #007bff !important; /* Ensure visibility */
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    opacity: 1 !important;
}

.about-modern-section .section-heading .main-title {
    font-size: 3.5em;
    font-weight: 800;
    color: #212529 !important; /* Ensure visibility */
    line-height: 1.2;
    position: relative;
    display: inline-block;
    opacity: 1 !important;
}

.about-modern-section .section-heading .main-title::after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    color: rgba(33, 37, 41, 0.03);
    z-index: -1;
    white-space: nowrap;
}

.about-modern-section .content-block p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333 !important; /* Make it darker and ensure visibility */
    margin-bottom: 15px;
    opacity: 1 !important;
}

.about-modern-section .content-block .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.about-modern-section .content-block .feature-list li {
    font-size: 0.95em;
    line-height: 1.6;
    color: #333 !important; /* Make it darker and ensure visibility */
    margin-bottom: 8px;
    position: relative;
    padding-left: 35px;
    opacity: 1 !important;
}

.about-modern-section .content-block .feature-list li::before {
    content: '✔';
    color: #28a745;
    font-size: 1.3em;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.image-block-with-effect {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-block-with-effect img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-block-with-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-30deg);
    transition: left 0.7s ease;
}

.image-block-with-effect:hover::before {
    left: 100%;
}

.image-block-with-effect:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for compact section */
@media (max-width: 991.98px) {
    .about-modern-section.compact-section {
        padding: 30px 0;
    }
}

@media (max-width: 767.98px) {
    .about-modern-section.compact-section {
        padding: 20px 0;
    }
    .about-modern-section .section-heading .main-title {
        font-size: 2em;
    }
}


.logo-scroller {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%; /* Ensure it takes full width */
}

.logo-scroller:before,
.logo-scroller:after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-scroller:before {
    left: 0;
    background: linear-gradient(to left, rgba(26, 42, 58, 0), #1a2a3a);
}

.logo-scroller:after {
    right: 0;
    background: linear-gradient(to right, rgba(26, 42, 58, 0), #1a2a3a);
}

.logo-scroller-inner {
    display: flex; /* Use flexbox for horizontal layout */
    width: fit-content; /* Allow content to define width */
    animation: scroll-left 30s linear infinite;
}

.logo-item {
    flex-shrink: 0; /* Prevent items from shrinking */
    margin: 0 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.logo-item img {
    height: 60px;
    width: auto;
    max-width: 150px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section background and heading adjustments */
.section.bg--lgray {
    background: #1a2a3a;
    color: #ffffff;
}

.modern-heading.heading--center .heading__title {
    color: #ffffff;
}

.modern-heading.heading--center .heading__pre-title {
    color: rgba(255, 255, 255, 0.7);
}

.modern-heading.heading--center .heading__layout {
    color: rgba(255, 255, 255, 0.05);
}

.modern-heading.heading--center .color--green {
    color: #00a8e6;
}