.elementor-189 .elementor-element.elementor-element-13659f1{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-c5c1f1b *//* 1. Variables Definition */
:root {
    --rm-blue: #0A3A6A;
    --rm-black: #111111;
    --rm-red: #da291c;
    --rm-white: #ffffff;
    --rm-grey: #f4f7f9;
    --rm-bg: #E4ECEF;
}

/* 2. Base Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--rm-bg);
    color: #333;
}

/* 3. Hero Section - Text White Fix */
.rm-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://roadmax.marketleadbd.com/wp-content/uploads/2026/05/WhatsApp-Image-2026-05-06-at-5.50.09-PM.jpeg');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 4px solid var(--rm-blue);
}

/* Force text inside hero to be white */
.rm-hero h1, 
.rm-hero h1 span, 
.rm-hero p {
    color: var(--rm-white) !important;
    margin: 0;
}

.rm-hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rm-hero h1 span {
    display: block;
    font-weight: 300;
    font-size: 2rem;
}

/* 4. Intro Box */
.rm-intro-box {
    text-align: center; 
    padding: 80px 20px;
    background: linear-gradient(to right, #f8f9fa, #ffffff, #f8f9fa);
    margin: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.rm-intro-box h2 {
    color: var(--rm-blue); 
    font-size: 2.4rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

.rm-intro-box h2 b {
    color: var(--rm-red);
    font-weight: 800;
}

.rm-red-line {
    width: 80px;
    height: 4px;
    background: var(--rm-red);
    margin: 25px auto 0;
}

/* 5. Stats Grid & Cards */
.rm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.rm-card {
    display: flex;
    height: 220px;
    color: white !important;
    transition: 0.4s ease;
    overflow: hidden;
    text-decoration: none;
}

.rm-card:hover {
    background-color: var(--rm-red) !important;
    transform: translateY(-5px);
}

.rm-card-img {
    flex: 1;
    background: #222;
}

.rm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.rm-card-info {
    flex: 1.2;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-blue { background-color: var(--rm-blue); }
.bg-black { background-color: var(--rm-black); }
.bg-red { background-color: var(--rm-red); }

.rm-card-info h3 {
    font-size: 2.2rem;
    margin: 0;
    color: white !important;
}

.rm-card-info p {
    font-size: 0.9rem;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9) !important;
}

/* 6. Tabs Navigation */
.rm-tabs {
    display: flex;
    flex-wrap: wrap;
    background: var(--rm-black);
    margin-top: 60px;
    border-bottom: 3px solid var(--rm-blue);
}

.rm-tab-item {
    flex: 1;
    text-align: center;
    padding: 20px 10px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-right: 1px solid #333;
    transition: 0.3s;
    cursor: pointer;
    min-width: 150px;
}

.rm-tab-item:hover { background-color: var(--rm-red); }
.rm-tab-item.active { background-color: var(--rm-blue); }

/* 7. Content Area */
.rm-content-section {
    padding: 40px 20px;
    background: var(--rm-grey);
    border: 1px solid #ddd;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-card {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid var(--rm-blue);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-card:nth-child(even) { border-left-color: var(--rm-red); }

.content-text h4 { margin: 0 0 5px 0; color: var(--rm-blue); }
.content-text p { margin: 0; font-size: 0.9rem; color: #666; }

.download-btn {
    background: var(--rm-black);
    color: white !important;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 0.8rem;
    border-radius: 3px;
    transition: 0.3s;
}

.download-btn:hover { background: var(--rm-red); }

/* 8. Mobile Responsiveness */
@media (max-width: 768px) {
    .content-card { flex-direction: column; align-items: flex-start; gap: 15px; }
    .rm-hero h1 { font-size: 2.2rem; }
    .rm-hero { height: 350px; }
    .rm-grid { grid-template-columns: 1fr; }
    .rm-tab-item { border-bottom: 1px solid #333; }
}/* End custom CSS */