.elementor-678 .elementor-element.elementor-element-c67a893{--display:flex;}/* Start custom CSS for html, class: .elementor-element-44a6e44 *//* =========================================
   ROADMAX ULTRA PLUS STYLING
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root{
    --rm-red:#DA291C;
    --rm-blue:#0A3A6A;
    --rm-dark:#081420;
    --rm-light:#f4f8fb;
    --rm-text:#5f6b7a;
}

/* BODY BG */
body{
    background: linear-gradient(135deg,#eef5fb,#ffffff);
}

/* MAIN WRAPPER */
.rm-product-wrapper{
    position: relative;
    overflow: hidden;
    padding: 100px 7%;
    font-family: 'Montserrat', sans-serif;
}

/* Animated Background */
.rm-product-wrapper::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(218,41,28,0.15), transparent 70%);
    top:-150px;
    left:-150px;
    animation: floatGlow 8s ease-in-out infinite;
}

.rm-product-wrapper::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background: radial-gradient(circle, rgba(10,58,106,0.15), transparent 70%);
    bottom:-150px;
    right:-100px;
    animation: floatGlow2 10s ease-in-out infinite;
}

/* CONTAINER */
.rm-product-container{
    position: relative;
    z-index: 2;
    display:flex;
    align-items:center;
    gap:70px;
    margin-bottom:100px;
    flex-wrap:wrap;
}

/* IMAGE SIDE */
.rm-product-image{
    flex:1;
    min-width:320px;
    position:relative;
    animation: slideLeft 1.2s ease;
}

.rm-image-glow{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(135deg, rgba(218,41,28,0.35), rgba(10,58,106,0.35));
    filter:blur(60px);
    transform:scale(0.9);
    z-index:1;
    animation:pulseGlow 4s infinite ease-in-out;
}

.rm-product-image img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:520px;
    display:block;
    margin:auto;
    border-radius:28px;
    transition:0.6s ease;
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

.rm-product-image:hover img{
    transform:translateY(-15px) scale(1.04) rotate(-1deg);
}

/* CONTENT SIDE */
.rm-product-content{
    flex:1;
    min-width:320px;
    animation: slideRight 1.2s ease;
}

.rm-badge{
    display:inline-block;
    background:linear-gradient(135deg,var(--rm-red),#ff5a4f);
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    letter-spacing:1px;
    box-shadow:0 10px 25px rgba(218,41,28,0.3);
}

.rm-product-content h1{
    font-size:58px;
    line-height:1.1;
    color:var(--rm-blue);
    margin-bottom:25px;
    font-weight:800;
}

.rm-short-desc{
    font-size:17px;
    line-height:1.9;
    color:var(--rm-text);
    margin-bottom:35px;
}

/* FEATURE BOX */
.rm-feature-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.rm-feature-item{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(14px);
    padding:25px;
    border-radius:22px;
    transition:0.4s ease;
    border:1px solid rgba(255,255,255,0.5);
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

.rm-feature-item:hover{
    transform:translateY(-10px);
    background:#fff;
}

.rm-feature-item h4{
    color:var(--rm-blue);
    margin-bottom:12px;
    font-size:18px;
    font-weight:700;
}

.rm-feature-item p{
    color:var(--rm-text);
    font-size:14px;
    line-height:1.7;
}

/* FULL DETAILS */
.rm-full-details{
    position:relative;
    z-index:2;
}

.rm-section-title{
    text-align:center;
    margin-bottom:60px;
    animation:fadeUp 1.2s ease;
}

.rm-section-title span{
    color:var(--rm-red);
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.rm-section-title h2{
    font-size:42px;
    color:var(--rm-blue);
    margin-top:15px;
    font-weight:800;
}

/* DETAILS GRID */
.rm-details-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.rm-detail-card{
    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(14px);
    border-radius:28px;
    padding:40px;
    transition:0.5s ease;
    border:1px solid rgba(255,255,255,0.6);
    box-shadow:0 15px 40px rgba(0,0,0,0.07);
    animation:fadeUp 1.3s ease;
}

.rm-detail-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(10,58,106,0.12);
}

.rm-detail-card h3{
    color:var(--rm-blue);
    font-size:26px;
    margin-bottom:20px;
    font-weight:700;
}

.rm-detail-card p,
.rm-detail-card li{
    color:var(--rm-text);
    line-height:1.9;
    font-size:15px;
}

.rm-detail-card ul{
    padding-left:20px;
}

/* ANIMATIONS */
@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pulseGlow{
    0%{
        transform:scale(0.9);
    }
    50%{
        transform:scale(1);
    }
    100%{
        transform:scale(0.9);
    }
}

@keyframes floatGlow{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(30px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes floatGlow2{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-30px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* RESPONSIVE */
@media(max-width:991px){

    .rm-product-container{
        flex-direction:column;
        text-align:center;
    }

    .rm-feature-box{
        grid-template-columns:1fr;
    }

    .rm-details-grid{
        grid-template-columns:1fr;
    }

    .rm-product-content h1{
        font-size:42px;
    }

    .rm-section-title h2{
        font-size:32px;
    }
}

@media(max-width:576px){

    .rm-product-wrapper{
        padding:80px 5%;
    }

    .rm-product-content h1{
        font-size:34px;
    }

    .rm-detail-card{
        padding:28px;
    }
}/* End custom CSS */