.elementor-301 .elementor-element.elementor-element-41649fc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-d764a68 *//* =========================================
   ROADMAX CLEANER MOBILITY CSS
   (MATCHED WITH ENVIRONMENT DESIGN SYSTEM)
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Roboto:wght@300;400;500&display=swap');

:root {
    --rs-dark-blue: #0A3A6A;
    --rs-red: #DA291C;
    --rs-bg-color: #E6EEF0;
    --rs-text-color: #333333;
    --rs-border-color: #dcdcdc;
    --rs-heading-font: 'Montserrat', sans-serif;
    --rs-body-font: 'Roboto', sans-serif;
}

/* =========================================
   WRAPPER
========================================= */

.roadmax-sustainability-wrapper {
    font-family: var(--rs-body-font);
    color: var(--rs-text-color);
    line-height: 1.8;
    background-color: var(--rs-bg-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.roadmax-sustainability-wrapper * {
    box-sizing: border-box;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeUpFuturistic {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroTextGlow {
    0% {
        text-shadow: 0 0 10px rgba(255,255,255,0.3);
    }
    50% {
        text-shadow: 0 0 25px rgba(255,255,255,0.8);
    }
    100% {
        text-shadow: 0 0 10px rgba(255,255,255,0.3);
    }
}

@keyframes floatSoft {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* =========================================
   HERO SECTION
========================================= */

.rs-hero {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background-image: url('https://roadmax.marketleadbd.com/wp-content/uploads/2026/05/clean-engine.jpg');
    background-size: cover;
    background-position: center;
}

/* DARK OVERLAY */
.rs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 58, 106, 0.92),
        rgba(218, 41, 28, 0.35)
    );
    z-index: 1;
}

/* HERO CONTENT */
.rs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: fadeUpFuturistic 1s ease;
}

.rs-top-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 6px;
    border-bottom: 2px solid #fff;
    margin-bottom: 18px;
    animation: heroTextGlow 3s infinite;
}

.rs-hero-content h1 {
    font-family: var(--rs-heading-font);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.rs-hero-content h1 span {
    display: block;
    font-weight: 300;
}

/* =========================================
   CONTAINER
========================================= */

.rs-container {
    max-width: 1100px;
    margin: auto;
    padding: 80px 40px;
}

/* SECTION LABEL */
.rs-section-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rs-dark-blue);
    border-bottom: 1px solid var(--rs-border-color);
    padding-bottom: 10px;
    margin-bottom: 60px;
}

/* =========================================
   BLOCKS
========================================= */

.rs-block {
    background: #fff;
    padding: 35px;
    margin-bottom: 45px;
    border-radius: 14px;
    border: 1px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: all 0.5s ease;
    animation: fadeUpFuturistic 0.8s ease forwards;
}

.rs-block:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(10,58,106,0.1);
    box-shadow: 0 25px 50px rgba(10,58,106,0.08);
}

/* BLOCK HEADER */
.rs-block-header {
    border-bottom: 1px solid var(--rs-border-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.rs-block h2 {
    font-family: var(--rs-heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--rs-dark-blue);
    transition: all 0.4s ease;
}

.rs-block:hover h2 {
    color: var(--rs-red);
    transform: translateX(8px);
}

.rs-block p {
    font-size: 16px;
    color: #555;
}

/* =========================================
   FEATURE LIST
========================================= */

.rs-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.rs-feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.rs-feature-list li:hover {
    transform: translateX(12px);
    color: var(--rs-dark-blue);
}

.rs-list-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--rs-dark-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.4s ease;
}

.rs-feature-list li:hover .rs-list-icon {
    background: var(--rs-red);
    transform: rotate(360deg);
}

/* =========================================
   BOLD TEXT
========================================= */

.rs-bold-text {
    font-weight: 600;
    color: var(--rs-dark-blue);
    margin-top: 20px;
}

/* =========================================
   FOOTER
========================================= */

.rs-footer {
    position: relative;
    height: 450px;
    background-image: url('https://roadmax.marketleadbd.com/wp-content/uploads/2026/05/clean-road.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.rs-footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(10,58,106,0.95),
        rgba(0,0,0,0.2)
    );
}

.rs-footer-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 50px;
    max-width: 900px;
}

.rs-footer-content blockquote {
    font-size: 24px;
    font-weight: 600;
}

.rs-quote-author {
    margin-top: 12px;
    font-size: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .rs-hero {
        height: 400px;
    }

    .rs-hero-content h1 {
        font-size: 34px;
    }

    .rs-container {
        padding: 50px 20px;
    }

    .rs-block {
        padding: 22px;
    }

    .rs-block h2 {
        font-size: 20px;
    }

    .rs-footer-content {
        padding: 30px;
    }
}/* End custom CSS */