*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Arial,sans-serif;
background:#fff;

}

a{
text-decoration:none;
}

ul{
list-style:none;
}

.container{

width:95%;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;

}

/*==================
TOP BAR
==================*/
.topbar{
    background:#1b1b1b;
    height:40px;
    display:flex;
    align-items:center;
    padding-left: 220px;
}

.topbar .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 50px;
}

.phone{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    color:#fff;
}

.phone i{
    color:#ff2b2b;
    font-size: 14px;
}

.social{
    display:flex;
    gap:20px;
}

.social a{
    color:#fff;
    font-size:17px;
    transition:.3s;
}

.social a:hover{
    color:#ff2b2b;
}

/*==================
HEADER
==================*/
.main-header{
    display:flex;
    height:70px;
}

/*==================
LOGO
==================*/
.logo-box img{
    width:200px;
    margin-top: -30px;
}

/*==================
RIGHT
==================*/
.nav-area{
    flex:1;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 50px;
    position:relative;
    overflow:hidden;
}

/* White Slant */
.nav-area::before{
    content:"";
    position:absolute;
    left:-45px;
    top:0;
    width:120px;
    height:100%;
    background:#fff;
    transform:skew(-22deg);
}

/* MENU */
nav{
    position:relative;
    z-index:5;
    margin:auto;
}

nav ul{
    display:flex;
    gap:30px;
    list-style: none;
    align-items: center;
}

nav ul li a{
    font-size:16px;
    font-weight:700;
    color:#000;
    transition:.3s;
    text-decoration: none;
}
nav ul li a.active{
    color:#ff0000;
}
nav ul li a:hover{
    color:#ff0000;
}



/* BUTTON */
.header-btn{
    background:#ff1205;
    padding:11px 17px;
    border-radius:10px;
    color:#fff;
    font-size:15px;
    font-weight:600;
    transition:.3s;
    text-decoration: none;
}

.header-btn:hover{
    background:#111;
}

/*==========================
MENU TOGGLE
==========================*/
.menu-toggle{
    display:none;
    width:45px;
    height:45px;
    border:none;
    background:#ff1205;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    border-radius:5px;
}


/*=====================================*
*HEADER RESPONSIVE*
*=====================================*/


/*============== LARGE TABLET ==============*/

@media (max-width:1200px){

    .topbar{

        padding-left:40px;

    }

    .topbar .container{

        width:100%;

        padding:0 30px;

    }

    .main-header{

        height:70px;

    }

    .logo-box img{

        width:190px;

        margin-top:-25px;

    }

    .nav-area{

        padding:0 30px;

    }

    nav ul{

        gap:20px;

    }

    nav ul li a{

        font-size:14px;

    }

    .header-btn{

        padding:10px 14px;

        font-size:14px;

    }

}


/*============== TABLET ==============*/

@media (max-width:992px){

    .topbar{

        height:45px;

        padding-left:0;

    }

    .topbar .container{

        width:100%;

        padding:0 30px;

        display:flex;

        align-items:center;

        justify-content:space-between;

    }

    .phone{

        font-size:14px;

    }

    .social{

        gap:15px;

    }


    /* MAIN HEADER */

    .main-header{

        height:75px;

        padding:0 30px;

        align-items:center;

        justify-content:space-between;

        background:#fff;

        position:relative;

    }


    /* LOGO */

    .logo-box{

        width:auto;

        height:auto;

        display:flex;

        align-items:center;

        justify-content:flex-start;

    }

    .logo-box img{

        width:170px;
        margin-left: -30px;

        margin-top:0;

    }


    /* NAVIGATION */

    .nav-area{

        position:absolute;

        top:75px;

        left:0;

        width:100%;

        height:auto;

        background:#fff;

        display:none;

        flex-direction:column;

        align-items:stretch;

        justify-content:flex-start;

        padding:20px 30px 25px;

        box-shadow:0 8px 20px rgba(0,0,0,.15);

        overflow:visible;

        z-index:9998;

    }


    .nav-area.active{

        display:flex;

    }


    /* REMOVE SLANT */

    .nav-area::before{

        display:none;

    }


    /* NAV */

    nav{

        width:100%;

        margin:0;

    }

    nav ul{

        width:100%;

        display:flex;

        flex-direction:column;

        gap:0;

        margin:0;

        padding:0;

    }

    nav ul li{

        width:100%;

    }

    nav ul li a{

        width:100%;

        display:block;

        padding:15px 5px;

        border-bottom:1px solid #eeeeee;

        font-size:15px;

        color:#ff0000;

    }


    /* ENQUIRY */

    .header-btn{

        width:100%;

        margin-top:20px;

        padding:12px 15px;

        text-align:center;

        border-radius:7px;

    }


    /* TOGGLE */

    .menu-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

        width:45px;

        height:45px;

        border:0;

        border-radius:6px;

        background:#ff1205;

        color:#fff;

        font-size:20px;

        cursor:pointer;

        z-index:10000;

        flex-shrink:0;

    }

}


/*============== MOBILE ==============*/

@media (max-width:768px){

    .topbar{

        height:45px;

    }

    .topbar .container{

        padding:0 20px;

    }

    .phone{

        font-size:13px;

    }

    .social{

        gap:13px;

    }

    .social a{

        font-size:15px;

    }


    /* MAIN HEADER */

    .main-header{

        height:72px;

        padding:0 20px;

    }


    /* LOGO */

    .logo-box img{

        width:155px;

        margin-top:0;

    }


    /* NAV */

    .nav-area{

        top:72px;

        left:10px;

        width:calc(100% - 20px);

        padding:15px 20px 20px;

        border-radius:0 0 8px 8px;

        max-height:calc(100vh - 120px);

        overflow-y:auto;

    }


    nav ul li a{

        padding:14px 5px;

        font-size:15px;

    }


    .header-btn{

        margin-top:18px;

        padding:12px 15px;

        font-size:14px;

    }


    /* TOGGLE */

    .menu-toggle{

        width:43px;

        height:43px;

        font-size:19px;

    }

}


/*============== SMALL MOBILE ==============*/

@media (max-width:576px){

    .topbar{

        height:42px;

    }

    .topbar .container{

        padding:0 15px;

    }


    .phone{

        font-size:12px;

        gap:7px;

    }

    .phone i{

        font-size:12px;

    }


    .social{

        gap:11px;

    }

    .social a{

        font-size:14px;

    }


    /* MAIN HEADER */

    .main-header{

        height:68px;

        padding:0 15px;

    }


    /* LOGO */

    .logo-box img{

        width:145px;

    }


    /* NAV */

    .nav-area{

        top:68px;

        left:7px;

        width:calc(100% - 14px);

        padding:12px 15px 18px;

        border-radius:0 0 8px 8px;

    }


    nav ul li a{

        padding:13px 5px;

        font-size:14px;

    }


    .header-btn{

        margin-top:16px;

        padding:11px 15px;

        font-size:14px;

    }


    /* TOGGLE */

    .menu-toggle{

        width:41px;

        height:41px;

        font-size:18px;

        border-radius:5px;

    }

}


/*============== EXTRA SMALL ==============*/

@media (max-width:375px){

    .topbar{

        height:40px;

    }

    .topbar .container{

        padding:0 12px;

    }


    .phone{

        font-size:11px;

    }

    .phone i{

        font-size:11px;

    }


    .social{

        gap:9px;

    }

    .social a{

        font-size:13px;

    }


    /* MAIN HEADER */

    .main-header{

        height:65px;

        padding:0 12px;

    }


    /* LOGO */

    .logo-box img{

        width:135px;

    }


    /* NAV */

    .nav-area{

        top:65px;

        left:5px;

        width:calc(100% - 10px);

        padding:10px 12px 15px;

    }


    nav ul li a{

        padding:12px 5px;

        font-size:13px;

    }


    .header-btn{

        margin-top:14px;

        padding:10px 12px;

        font-size:13px;

    }


    /* TOGGLE */

    .menu-toggle{

        width:39px;

        height:39px;

        font-size:17px;

    }

}

/*=========================================
HERO SLIDER
=========================================*/

.hero-slider{
    position:relative;
    width:100%;
    height:calc(100vh - 148px);
    min-height:620px;
    overflow:hidden;
    margin-top: 0;
    padding-top: 0;
}


.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{
    width:100%;
    height:100%;
    margin: 0;
}

.heroSwiper .swiper-slide{
    position:relative;
    overflow:hidden;
}

/*==========================
BACKGROUND IMAGE
==========================*/

.slide-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}

.slide-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1);
    transition:transform 7s linear;
}

.swiper-slide-active .slide-bg img{
    transform:scale(1.12);
}

/*==========================
OVERLAY
==========================*/

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:2;
}

/*==========================
CONTAINER
==========================*/

.hero-slider .container{
    width:1200px;
    max-width:92%;
    height:100%;
    margin:auto;
    position:relative;
    z-index:5;
    display:flex;
    align-items:center;
}

/*==========================
CONTENT
==========================*/

.hero-content{
    max-width:900px;
    color:#fff;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: auto;
}


.hero-content h2{
    font-size:55px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
    text-transform:uppercase;
}

.hero-content h2 span{

    color:#ff0000;

}

.hero-content p{

    font-size:18px;

    line-height:28px;

    color:#f5f5f5;

    max-width:900px;

    margin-bottom:40px;

}


/*==========================
ARROWS
==========================*/

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{

    width:50px;

    height:50px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(5px);

    transition:.35s;

    color:#fff;

}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover{

    background:#ff0000;

}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after{

    font-size:20px;

    font-weight:700;

}

/*==========================
PAGINATION
==========================*/

.heroSwiper .swiper-pagination{

    bottom:35px !important;

}

.heroSwiper .swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#fff;

    opacity:1;

    margin:0 8px !important;

}

.heroSwiper .swiper-pagination-bullet-active{

    background:#ff0000;

    transform:scale(1.3);

}

/*==========================
ANIMATION DEFAULT
==========================*/

.hero-content .sub-title,
.hero-content h2,
.hero-content p,
.hero-content .theme-btn{

    opacity:0;

    transform:translateY(60px);

}
/*=====================================
HERO SLIDER RESPONSIVE
=====================================*/

/*============== LARGE LAPTOP ==============*/
@media (max-width:1200px){

.hero-slider{
    height:650px;
    min-height:650px;
}

.hero-content{
    max-width:850px;
}

.hero-content h2{
    font-size:48px;
}

.hero-content p{
    font-size:17px;
    line-height:28px;
    max-width:760px;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{
    width:45px;
    height:45px;
}

}


/*============== TABLET ==============*/
@media (max-width:992px){

.hero-slider{
    height:560px;
    min-height:560px;
}

.hero-content{
    max-width:700px;
    padding:0 25px;
}

.hero-content h2{
    font-size:40px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:16px;
    line-height:27px;
    margin-bottom:30px;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{
    width:42px;
    height:42px;
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after{
    font-size:18px;
}

.heroSwiper .swiper-pagination{
    bottom:25px !important;
}

}


/*============== MOBILE ==============*/
@media (max-width:768px){

.hero-slider{
    height:470px;
    min-height:470px;
}

.hero-content{
    padding:0 20px;
}

.hero-content h2{
    font-size:32px;
    line-height:1.2;
}

.hero-content p{
    font-size:15px;
    line-height:24px;
    margin-bottom:25px;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{
    width:40px;
    height:40px;
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after{
    font-size:16px;
}

.heroSwiper .swiper-pagination{
    bottom:18px !important;
}

.heroSwiper .swiper-pagination-bullet{
    width:9px;
    height:9px;
}

}


/*============== SMALL MOBILE ==============*/
@media (max-width:576px){

.hero-slider{
    height:420px;
    min-height:420px;
}

.hero-content{
    padding:0 18px;
}

.hero-content h2{
    font-size:26px;
    margin-bottom:15px;
}

.hero-content p{
    font-size:16px;
    line-height:22px;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{
    display:none;
}

.heroSwiper .swiper-pagination{
    bottom:15px !important;
}

.heroSwiper .swiper-pagination-bullet{
    width:8px;
    height:8px;
    margin:0 5px !important;
}

}


/*============== EXTRA SMALL ==============*/
@media (max-width:375px){

.hero-slider{
    height:400px;
    min-height:400px;
}

.hero-content{
    padding:0 15px;
}

.hero-content h2{
    font-size:22px;
    line-height:1.3;
}

.hero-content p{
    font-size:16px;
    line-height:21px;
}

}

/*=========================================
ABOUT SECTION
=========================================*/

.about-section{

    padding:50px 0;
    background:#ffffff;

}

.about-section .container{

    width:1320px;
    max-width:92%;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;

}

/*=========================================
LEFT IMAGE
=========================================*/

.about-image{

    width:55%;
    overflow:hidden;
    border-radius:5px;

}

.about-video{

    width:100%;
    height:100%;
    display:block;
    object-fit:cover;

}

.about-image img{

    width:100%;
    display:block;
    object-fit:cover;
    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.04);

}

/*=========================================
RIGHT CONTENT
=========================================*/

.about-content{

    width:45%;

}

/* ABOUT US */

.section-tag{

    display:block;

    font-size:30px;

    font-weight:700;

    color:#000;

    text-transform:uppercase;

    line-height:1;

}

/* RED LINE */

.heading-line{

    width:125px;

    height:2px;

    background:#b61616;

    margin:15px 0;

}

/* MAIN HEADING */

.about-content h1{

    font-size:22px;

    color:#b61616;

    line-height:1.25;

    font-weight:600;

    margin-bottom:10px;

}

.about-content h1 span{

    font-weight:500;

}

/* PARAGRAPH */

.about-content p{

    font-size:16px;

    line-height:1.6;

    color:#232323;

    margin-bottom:28px;

}

.about-content p strong{

    color:#222;
    font-weight:700;

}

/* BUTTON */

.about-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:130px;
    height:40px;

    background:#b61616;

    color:#fff;

    font-size:15px;

    font-weight:600;

    border-radius:5px;

    transition:.35s;

}

.about-btn:hover{

    background:#232323;
    color:#fff;

}

/*=====================================*
ABOUT SECTION RESPONSIVE
*=====================================*/

/*============== LARGE TABLET ==============*/
@media (max-width:1200px){

.about-section{
    padding:60px 0;
}

.about-section .container{
    max-width:95%;
    gap:40px;
}

.about-image{
    width:50%;
}

.about-content{
    width:50%;
}

.section-tag{
    font-size:28px;
}

.about-content h1{
    font-size:20px;
}

.about-content p{
    font-size:15px;
    line-height:1.7;
}

}


/*============== TABLET ==============*/
@media (max-width:992px){

.about-section{
    padding:55px 0;
}

.about-section .container{
    flex-direction:column;
    gap:40px;
}

.about-image,
.about-content{
    width:100%;
}

.about-content{
    text-align:center;
}

.heading-line{
    margin:15px auto 20px;
}

.section-tag{
    font-size:26px;
}

.about-content h1{
    font-size:28px;
}

.about-content p{
    font-size:16px;
}

.about-btn{
    margin:auto;
}

}


/*============== MOBILE ==============*/
@media (max-width:768px){

.about-section{
    padding:45px 0;
}

.about-section .container{
    max-width:92%;
    gap:30px;
}

.section-tag{
    font-size:24px;
}

.heading-line{
    width:90px;
}

.about-content h1{
    font-size:24px;
    line-height:1.4;
}

.about-content p{
    font-size:15px;
    line-height:1.8;
}

.about-btn{
    width:140px;
    height:42px;
}

}


/*============== SMALL MOBILE ==============*/
@media (max-width:576px){

.about-section{
    padding:40px 0;
}

.section-tag{
    font-size:22px;
}

.about-content h1{
    font-size:21px;
}

.about-content p{
    font-size:16px;
    line-height:1.8;
}

.about-btn{
    width:130px;
    height:40px;
    font-size:14px;
}

}


/*============== EXTRA SMALL ==============*/
@media (max-width:375px){

.about-section{
    padding:35px 0;
}

.section-tag{
    font-size:20px;
}

.about-content h1{
    font-size:18px;
}

.about-content p{
    font-size:16px;
    line-height:1.7;
}

.about-btn{
    width:120px;
    height:38px;
    font-size:13px;
}

}
.riders-vision-mission-section {
    padding: 20px 0 50px 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Toggle Switch Bar Container */
.vm-switch-wrapper {
    position: relative;
    display: inline-flex;
    background-color: #e6e6e6;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 30px;

}

/* Sliding Red Box Effect */
.vm-slider-bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50%;
    height: calc(100% - 10px);
    background-color: #cc0000; /* Red slider color matching video */
    border-radius: 3px;
    transition: transform 0.3s ease-in-out;
}

/* Tab Buttons */
.vm-tab-btn {
    position: relative;
    z-index: 2;
    padding: 12px 35px;
    font-size: 20px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vm-tab-btn i {
    font-size: 20px;
}

/* Active Tab Text Color (Turns White when red slider is behind it) */
.vm-tab-btn.active-tab {
    color: #ffffff;
}

/* Content Area */
.vm-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.vm-info-box {
    display: none;
}

.vm-info-box.active-vm-content {
    display: block;
    animation: fadeInVm 0.4s ease-in-out;
}

.vm-info-box p {
    font-size: 18px;
    color: #232323;
    line-height: 1.8;
    text-align: center;
}

@keyframes fadeInVm {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Support for Mobile */
@media (max-width: 600px) {
    .vm-switch-wrapper {
        display: flex;
        width: 100%;
    }
    .vm-tab-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 5px;
        font-size: 13px;
    }
}
/*=========================================
PRODUCT SECTION
=========================================*/

.rl-products-section{
    width:100%;
    padding:50px 0;
    background:#fdeced;
    position:relative;
    overflow:hidden;
}

.rl-container{
    width:1350px;
    max-width:100%;
    width: 100%;
    margin:auto;
}

/*=========================================
HEADING
=========================================*/

.rl-products-heading{
    text-align:center;
    margin-bottom:40px;
}

.rl-products-heading h2{
    font-size:35px;
    font-weight:700;
    color:#111;
    text-transform:uppercase;
    margin:0;
    letter-spacing:1px;
}

.rl-heading-line{
    width:170px;
    height:2px;
    background:#e5e5e5;
    margin:18px auto 0;
    position:relative;
}

.rl-heading-line span{
    position:absolute;
    left:50%;
    top:-2px;
    transform:translateX(-50%);
    width:70px;
    height:6px;
    background:#d70000;
}

/*=========================================
SLIDER
=========================================*/

.rlProductSlider{
    position:relative;
    overflow:hidden;
    padding:10px 8px 70px;
}

.rlProductSlider .swiper-wrapper{
    align-items:stretch;
}

.rlProductSlider .swiper-slide{
    height:auto;
}

/*=========================================
CARD
=========================================*/

.rl-product-card{

    background:#fff;

    overflow:hidden;

    transition:.4s;


}



/*=========================================
IMAGE
=========================================*/



.rl-product-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:contain;

    transition:.7s;

}

.rl-product-card:hover .rl-product-image img{

    transform:scale(1.08);

}


.rl-prev,
.rl-next{

    width:55px;

    height:55px;

    background:#d40000;

    color:#fff;

    position:absolute;

    top:42%;

    transform:translateY(-50%);

    z-index:20;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.35s;

    border-radius:4px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.rl-prev{

    left:-8px;

}

.rl-next{

    right:-8px;

}

.rl-prev i,
.rl-next i{

    font-size:18px;

}

.rl-prev:hover,
.rl-next:hover{

    background:#111;

}
/*=====================================
PRODUCT SECTION RESPONSIVE
=====================================*/

/*============== LARGE LAPTOP ==============*/
@media (max-width:1200px){

.rl-products-section{
    padding:60px 0;
}

.rl-container{
    width:95%;
}

.rl-products-heading h2{
    font-size:32px;
}

.rl-heading-line{
    width:150px;
}

.rl-prev,
.rl-next{
    width:50px;
    height:50px;
}

}


/*============== TABLET ==============*/
@media (max-width:992px){

.rl-products-section{
    padding:50px 0;
}

.rl-container{
    width:95%;
}

.rl-products-heading{
    margin-bottom:30px;
}

.rl-products-heading h2{
    font-size:28px;
}

.rl-heading-line{
    width:130px;
}

.rl-heading-line span{
    width:60px;
}

.rlProductSlider{
    padding:10px 5px 60px;
}

.rl-prev,
.rl-next{
    width:45px;
    height:45px;
}

.rl-prev{
    left:0;
}

.rl-next{
    right:0;
}

.rl-prev i,
.rl-next i{
    font-size:16px;
}

}


/*============== MOBILE ==============*/
@media (max-width:768px){

.rl-products-section{
    padding:40px 0;
}

.rl-container{
    width:92%;
}

.rl-products-heading{
    margin-bottom:25px;
}

.rl-products-heading h2{
    font-size:24px;
}

.rl-heading-line{
    width:110px;
    margin-top:12px;
}

.rl-heading-line span{
    width:50px;
    height:5px;
}

.rlProductSlider{
    padding:5px 0 50px;
}

.rl-product-card{
    border-radius:6px;
}

.rl-product-image img{
    width:100%;
    height:auto;
}

.rl-prev,
.rl-next{
    width:40px;
    height:40px;
    top:40%;
}

.rl-prev{
    left:5px;
}

.rl-next{
    right:5px;
}

.rl-prev i,
.rl-next i{
    font-size:14px;
}

}


/*============== SMALL MOBILE ==============*/
@media (max-width:576px){

.rl-products-section{
    padding:30px 0 20px 0;
}

.rl-container{
    width:94%;
}

.rl-products-heading h2{
    font-size:25px;
}

.rl-heading-line{
    width:90px;
}

.rl-heading-line span{
    width:40px;
}

.rlProductSlider{
    padding-bottom:40px;
}
.vm-info-box p {
    font-size: 16px;
    padding: 10px;
}

.rl-prev,
.rl-next{
    width:36px;
    height:36px;
}

.rl-prev i,
.rl-next i{
    font-size:13px;
}

}


/*============== EXTRA SMALL ==============*/
@media (max-width:375px){

.rl-products-heading h2{
    font-size:22px;
}

.rl-heading-line{
    width:80px;
}

.rl-heading-line span{
    width:35px;
}

.rl-prev,
.rl-next{
    width:32px;
    height:32px;
}
.vm-info-box p {
    font-size: 16px;
    padding: 10px;
}

.rl-prev i,
.rl-next i{
    font-size:12px;
}

}

.category-marquee-section {
    width: 100%;
    background: #fcebec;
    padding: 0 0 40px;
    overflow: hidden;
}

/* Marquee Wrapper */
.category-marquee {
    width: 100%;
    overflow: hidden;
}

/* Moving Track */
.category-marquee-track {
    display: flex;
    width: max-content;
    animation: categoryScroll 25s linear infinite;
}

/* Hover par marquee stop */
.category-marquee:hover .category-marquee-track {
    animation-play-state: paused;
}

/* Each Box */
.category-marquee-item {
    background: #c91c20;
    color: #ffffff;

    font-size: 22px;
    font-weight: 400;
    font-family: Arial, sans-serif;

    padding: 20px 28px;

    white-space: nowrap;

    border-right: 5px solid #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}

/* Continuous Right to Left Animation */
@keyframes categoryScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*=====================================
CATEGORY MARQUEE RESPONSIVE
=====================================*/

/*============== LARGE LAPTOP ==============*/
@media (max-width:1200px){

.category-marquee-section{
    padding:0 0 35px;
}

.category-marquee-item{
    font-size:20px;
    padding:18px 24px;
    border-right:4px solid #fff;
}

.category-marquee-track{
    animation-duration:22s;
}

}


/*============== TABLET ==============*/
@media (max-width:992px){

.category-marquee-section{
    padding:0 0 30px;
}

.category-marquee-item{
    font-size:18px;
    padding:16px 22px;
    border-right:4px solid #fff;
}

.category-marquee-track{
    animation-duration:20s;
}

}


/*============== MOBILE ==============*/
@media (max-width:768px){

.category-marquee-section{
    padding:0 0 25px;
}

.category-marquee-item{
    font-size:16px;
    padding:14px 18px;
    border-right:3px solid #fff;
}

.category-marquee-track{
    animation-duration:18s;
}

}


/*============== SMALL MOBILE ==============*/
@media (max-width:576px){

.category-marquee-section{
    padding:0 0 20px;
}

.category-marquee-item{
    font-size:15px;
    padding:12px 16px;
    border-right:3px solid #fff;
}

.category-marquee-track{
    animation-duration:16s;
}

}


/*============== EXTRA SMALL ==============*/
@media (max-width:375px){

.category-marquee-item{
    font-size:14px;
    padding:10px 14px;
    border-right:2px solid #fff;
}

.category-marquee-track{
    animation-duration:14s;
}

}
/* ========================================
   RIDERS PERFORMANCE SECTION
======================================== */

.riders-performance-section {
    width: 100%;
    min-height: 700px;

    /* APNI BIKE IMAGE KA PATH YA URL YAHAN LAGAYE */
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.30),
            rgba(0, 0, 0, 0.56)
        ),
        url("images/rider-bg.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    padding: 56px 0 48px;

    box-sizing: border-box;

    display: flex;
    align-items: flex-start;

    font-family: Arial, sans-serif;
}


/* MAIN CONTAINER */

.riders-container {
    width: 90%;
    max-width: 1675px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


/* ========================================
   TOP GREY CONTENT BOX
======================================== */

.riders-content-box {
    width: 75%;
    max-width: 1225px;

    margin: 0 auto;

    background: rgba(105, 105, 105, 0.0);

    padding: 50px 40px 34px;

    box-sizing: border-box;

    text-align: center;
    color: #ffffff;
}


/* HEADING */

.riders-content-box h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1;
    font-weight: 700;
}


/* DESCRIPTION */

.riders-content-box p {
    max-width: 1160px;

    margin: 0 auto;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
}


.riders-content-box p strong {
    font-weight: 600;
}


/* ========================================
   STATS GRID
======================================== */

.riders-stats {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    margin-top: 50px;
}


/* ========================================
   STAT CARD
======================================== */

.riders-stat-card {
    min-height: 2px;

    background: rgba(0, 0, 0, 0.46);

    border-radius: 6px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 50px 20px;

    box-sizing: border-box;
}


/* NUMBER */

.stat-number {
    color: #ffffff;

    font-size: 50px;
    line-height: 1;
    font-weight: 700;
}


.stat-number span {
    font-size: inherit;
    font-weight: 600;
}


/* DOTTED LINE */

.stat-line {
    width: 130px;

    border-top: 2px dotted rgba(255, 255, 255, 0.85);

    margin: 31px 0 30px;
}


/* CARD BOTTOM TEXT */

.stat-title {
    color: #ffffff;

    font-size: 23px;
    line-height: 1.25;
    font-weight: 300;
}

/*=====================================
RIDERS PERFORMANCE RESPONSIVE
=====================================*/

/*============== LARGE LAPTOP ==============*/
@media (max-width:1200px){

.riders-performance-section{
    min-height:auto;
    padding:60px 0;
}

.riders-container{
    width:95%;
}

.riders-content-box{
    width:90%;
    padding:40px 30px;
}

.riders-content-box h2{
    font-size:28px;
    line-height:1.3;
}

.riders-content-box p{
    font-size:15px;
    line-height:1.8;
}

.riders-stats{
    gap:25px;
    margin-top:40px;
}

.stat-number{
    font-size:44px;
}

.stat-title{
    font-size:20px;
}

}


/*============== TABLET ==============*/
@media (max-width:992px){

.riders-performance-section{
    padding:50px 0;
}

.riders-content-box{
    width:100%;
    padding:35px 25px;
}

.riders-content-box h2{
    font-size:26px;
}

.riders-content-box p{
    font-size:15px;
}

.riders-stats{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.riders-stat-card{
    padding:40px 20px;
}

.stat-number{
    font-size:42px;
}

.stat-line{
    width:100px;
    margin:22px 0;
}

.stat-title{
    font-size:18px;
}

}


/*============== MOBILE ==============*/
@media (max-width:768px){

.riders-performance-section{
    padding:45px 0;
}

.riders-container{
    width:92%;
    padding:0;
}

.riders-content-box{
    width:100%;
    padding:25px 15px;
}

.riders-content-box h2{
    font-size:22px;
    line-height:1.4;
}

.riders-content-box p{
    font-size:14px;
    line-height:1.8;
}

.riders-stats{
    grid-template-columns:1fr;
    gap:20px;
    margin-top:30px;
}

.riders-stat-card{
    padding:35px 20px;
}

.stat-number{
    font-size:38px;
}

.stat-line{
    width:90px;
    margin:20px 0;
}

.stat-title{
    font-size:18px;
}

}


/*============== SMALL MOBILE ==============*/
@media (max-width:576px){

.riders-performance-section{
    padding:40px 0;
}

.riders-content-box{
    padding:20px 10px;
}

.riders-content-box h2{
    font-size:22px;
}

.riders-content-box p{
    font-size:16px;
}

.riders-stat-card{
    padding:30px 15px;
}

.stat-number{
    font-size:34px;
}

.stat-line{
    width:80px;
}

.stat-title{
    font-size:17px;
}

}


/*============== EXTRA SMALL ==============*/
@media (max-width:375px){

.riders-content-box h2{
    font-size:18px;
    line-height:1.5;
}

.riders-content-box p{
    font-size:13px;
    line-height:1.7;
}

.riders-stat-card{
    padding:25px 12px;
}

.stat-number{
    font-size:30px;
}

.stat-line{
    width:70px;
    margin:18px 0;
}

.stat-title{
    font-size:16px;
}

}
/* ==============================
   RIDERS VIDEO SECTION
============================== */

.riders-video-section {
    width: 100%;
    background: #f7f7f7;
    padding: 72px 0 65px;
    box-sizing: border-box;
    overflow: hidden;
}


/* VIDEO GRID */

.riders-video-grid {
    width: calc(100% - 200px);
    max-width: 1700px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 20px;
}


/* VIDEO CARD */

.riders-video-card {
    width: 100%;
    height: 450px;

    overflow: hidden;

    background: #000;
}


/* VIDEO */

.riders-video-card video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    border: 0;
    outline: 0;
}

/*=====================================
RIDERS VIDEO SECTION RESPONSIVE
=====================================*/

/*============== LARGE LAPTOP ==============*/
@media (max-width:1200px){

.riders-video-section{
    padding:60px 0;
}

.riders-video-grid{
    width:95%;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.riders-video-card{
    height:380px;
}

}


/*============== TABLET ==============*/
@media (max-width:992px){

.riders-video-section{
    padding:50px 0;
}

.riders-video-grid{
    width:94%;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.riders-video-card{
    height:340px;
}

}


/*============== MOBILE ==============*/
@media (max-width:768px){

.riders-video-section{
    padding:40px 0;
}

.riders-video-grid{
    width:92%;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.riders-video-card{
    height:300px;
}

}


/*============== SMALL MOBILE ==============*/
@media (max-width:576px){

.riders-video-section{
    padding:35px 0;
}

.riders-video-grid{
    width:94%;
    grid-template-columns:1fr;
    gap:18px;
}

.riders-video-card{
    height:400px;
}

}


/*============== EXTRA SMALL ==============*/
@media (max-width:375px){

.riders-video-section{
    padding:30px 0;
}

.riders-video-grid{
    width:95%;
}

.riders-video-card{
    height:340px;
}

}
.why-choose-riders-section {
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    background-color: #fbfbfb;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.title-underline {
    width: 100px;
    height: 3px;
    background-color: #cc0000;
    margin: 0 auto;
    border-radius: 2px;
}

.why-choose-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1.2;
}

/* Individual Icon Card Styling */
.choose-card {
    background-color: #fce8e8; /* Light pink background */
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.choose-icon {
    font-size: 50px;
    color: #cc0000; /* Dark red icon */
}

/* Hover & Active State (Turns White) */
.choose-card:hover, 
.choose-card.active-card {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Right Side Content Styling */
.why-choose-content-area {
    flex: 1.3;
    padding: 20px;
}

.choose-info-box {
    display: none;
}

.choose-info-box.active-info {
    display: block;
    animation: fadeInText 0.4s ease-in-out;
}

.choose-info-box h3 {
    font-size: 30px;
    color: #111;
    margin-bottom: 20px;
    font-weight: bold;
}

.choose-info-box p {
    font-size: 18px;
    color: #232323;
    line-height: 1.7;
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/*=====================================
WHY CHOOSE RIDERS RESPONSIVE
=====================================*/

/*============== LARGE LAPTOP ==============*/
@media (max-width:1200px){

.why-choose-riders-section{
    padding:60px 20px;
}

.why-choose-container{
    max-width:95%;
}

.why-choose-wrapper{
    gap:30px;
}

.why-choose-header h2{
    font-size:32px;
}

.choose-card{
    height:135px;
}

.choose-icon{
    font-size:44px;
}

.choose-info-box h3{
    font-size:28px;
}

.choose-info-box p{
    font-size:17px;
    line-height:1.8;
}

}


/*============== TABLET ==============*/
@media (max-width:992px){

.why-choose-riders-section{
    padding:50px 20px;
}

.why-choose-header{
    margin-bottom:35px;
}

.why-choose-header h2{
    font-size:28px;
}

.why-choose-wrapper{
    flex-direction:column;
    gap:35px;
}

.why-choose-grid{
    width:100%;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.choose-card{
    height:120px;
}

.choose-icon{
    font-size:40px;
}

.why-choose-content-area{
    width:100%;
    padding:0;
    text-align:center;
}

.choose-info-box h3{
    font-size:24px;
}

.choose-info-box p{
    font-size:16px;
    line-height:1.8;
}

}


/*============== MOBILE ==============*/
@media (max-width:768px){

.why-choose-riders-section{
    padding:40px 15px;
}

.why-choose-header{
    margin-bottom:30px;
}

.why-choose-header h2{
    font-size:24px;
    line-height:1.4;
}

.title-underline{
    width:80px;
}

.why-choose-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.choose-card{
    height:110px;
    padding:15px;
}

.choose-icon{
    font-size:34px;
}

.choose-info-box h3{
    font-size:22px;
    margin-bottom:15px;
}

.choose-info-box p{
    font-size:15px;
    line-height:1.8;
}

}


/*============== SMALL MOBILE ==============*/
@media (max-width:576px){

.why-choose-riders-section{
    padding:35px 12px;
}

.why-choose-header h2{
    font-size:22px;
}

.title-underline{
    width:70px;
}

.why-choose-grid{
    gap:12px;
}

.choose-card{
    height:95px;
}

.choose-icon{
    font-size:30px;
}

.choose-info-box h3{
    font-size:20px;
}

.choose-info-box p{
    font-size:16px;
    line-height:1.8;
}

}


/*============== EXTRA SMALL ==============*/
@media (max-width:375px){

.why-choose-header h2{
    font-size:20px;
}

.why-choose-grid{
    grid-template-columns:1fr;
    gap:12px;
}

.choose-card{
    height:90px;
}

.choose-icon{
    font-size:28px;
}

.choose-info-box h3{
    font-size:18px;
}

.choose-info-box p{
    font-size:14px;
    line-height:1.7;
}

}
.main-footer{
    width:100%;
    font-family:Arial, sans-serif;
    background-image:url("images/rider-bg.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:#fff;
}


/* DARK OVERLAY */

.footer-overlay{
    width:100%;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.52),
        rgba(0,0,0,.58),
        rgba(0,0,0,.68)
    );

    padding:60px 0 30px;
}


/* CONTAINER */

.footer-container{
    width:100%;
    max-width:1700px;

    padding:0 50px;

    margin:0 auto;
}


/* ===================================
   GRID
=================================== */

.footer-grid{
    display:grid;

    grid-template-columns:
    1.55fr
    1fr
    1fr
    1.55fr;

    align-items:start;
}


/* ===================================
   COLUMN 1
=================================== */

.footer-about{
    padding-right:30px;
}


.footer-logo{
    width:130px;
    max-width:100%;
    height:auto;
    margin-bottom: 20px;
    display:block;
}


.footer-about p{
    max-width:500px;

    margin:0;

    color:#fff;

    font-size:17px;
    line-height:1.75;
    font-weight:400;
}


/* SOCIAL ICONS */

.footer-social{
    display:flex;
    align-items:center;

    gap:7px;

    margin-top:25px;
}


.footer-social a{
    width:35px;
    height:35px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:4px;

    color:#fff;

    text-decoration:none;

    font-size:19px;

    transition:.3s ease;
}


.footer-social .facebook{
    background:#287be0;
}

.footer-social .instagram{
    background:#d51b8c;
}

.footer-social .youtube{
    background:#ff0000;
}


.footer-social a:hover{
    transform:translateY(-4px);
}


/* ===================================
   OTHER COLUMNS
=================================== */

.footer-column{
    min-height:380px;

    padding:0 35px;
}


.footer-border{
    border-left:1px solid rgba(255, 89, 89, 0.75);
}


/* HEADINGS */

.footer-column h3{
    margin:0;

    font-size:25px;
    line-height:1.2;

    font-weight:600;

    color:#fff;
}


/* ===================================
   STAR DIVIDER
=================================== */

.footer-title-line{
    display:flex;
    align-items:center;

    gap:14px;

    margin:15px 0 20px;
}


.footer-title-line span{
    width:37px;
    height:1px;

    background:#ff1111;
}


.footer-title-line i{
    color:#ff1111;

    font-size:18px;
}


/* ===================================
   LINKS
=================================== */

.footer-links{
    margin:0;
    padding:0;

    list-style:none;
}


.footer-links li{
    margin-bottom:15px;
}


.footer-links a{
    display:flex;
    align-items:center;

    gap:15px;

    color:#fff;

    text-decoration:none;

    font-size:17px;

    line-height:1.2;

    transition:.25s ease;
}


.footer-links a i{
    width:20px;

    flex-shrink:0;

    color:#fff;

    font-size:18px;

    transition:.25s ease;
}


.footer-links a:hover{
    color:#ff1111;

    transform:translateX(4px);
}


.footer-links a:hover i{
    color:#ff1111;
}


/* ===================================
   CONTACT
=================================== */

.footer-contact{
    padding-right:20px;
}


.contact-row{
    display:flex;
    align-items:flex-start;

    gap:15px;

    margin-bottom:25px;
}


.contact-row > i{
    width:20px;

    flex-shrink:0;

    margin-top:4px;

    font-size:18px;

    color:#fff;
}


.contact-row p{
    margin:0;

    max-width:480px;

    color:#fff;

    font-size:18px;
    line-height:1.8;
}


.contact-row a{
    color:#fff;

    text-decoration:none;

    font-size:20px;

    line-height:1.5;

    transition:.3s;
}


.contact-row a:hover{
    color:#ff1111;
}


/* ===================================
   COPYRIGHT BAR
=================================== */

.footer-bottom{
    width:100%;

    background:#000;

    text-align:center;

    padding:12px 20px;
}


.footer-bottom p{
    margin:0;

    color:#fff;

    font-size:16px;

    line-height:1.4;
}
.footer-bottom a {
    color: #ff0000;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ff6666;
}
/*=====================================
FOOTER RESPONSIVE
=====================================*/

/*============== LARGE LAPTOP ==============*/
@media (max-width:1200px){

.footer-container{
    max-width:95%;
    padding:0 30px;
}

.footer-grid{
    grid-template-columns:1.3fr 1fr 1fr 1.3fr;
}

.footer-column{
    padding:0 20px;
}

.footer-about{
    padding-right:20px;
}

.footer-logo{
    width:120px;
}

.footer-about p{
    font-size:16px;
}

.footer-column h3{
    font-size:22px;
}

.footer-links a{
    font-size:16px;
}

.contact-row p{
    font-size:16px;
}

.contact-row a{
    font-size:18px;
}

}


/*============== TABLET ==============*/
@media (max-width:992px){

.footer-overlay{
    padding:50px 0 25px;
}

.footer-container{
    padding:0 20px;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.footer-column,
.footer-about{
    padding:0;
}

.footer-border{
    border-left:none;
}

.footer-about{
    text-align:left;
}

.footer-logo{
    margin:0 0 20px 0;
}

.footer-about p{
    max-width:100%;
}

.footer-social{
    justify-content:flex-start;
}

.footer-column{
    min-height:auto;
}

.footer-column h3{
    font-size:22px;
}

.contact-row p{
    font-size:16px;
}

.contact-row a{
    font-size:17px;
}

}


/*============== MOBILE ==============*/
@media (max-width:768px){

.footer-overlay{
    padding:40px 0 20px;
}

.footer-container{
    padding:0 15px;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:35px;
}

.footer-about{
    text-align:left;
}

.footer-logo{
    width:110px;
    margin:0 0 15px 0;
}

.footer-about p{
    font-size:15px;
    line-height:1.7;
}

.footer-social{
    justify-content:flex-start;
}

.footer-column{
    text-align:left;
}

.footer-title-line{
    justify-content:flex-start;
}

.footer-links a{
    justify-content:flex-start;
    font-size:15px;
}

.contact-row{
    justify-content:flex-start;
    text-align:left;
}

.contact-row p{
    font-size:15px;
    line-height:1.7;
}

.contact-row a{
    font-size:16px;
}

.footer-bottom{
    padding:15px;
}

.footer-bottom p{
    font-size:14px;
    line-height:1.7;
}

}


/*============== SMALL MOBILE ==============*/
@media (max-width:576px){

.footer-overlay{
    padding:35px 0 15px;
}

.footer-logo{
    width:95px;
}

.footer-column h3{
    font-size:20px;
}

.footer-title-line{
    margin:12px 0 18px;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    font-size:15px;
}

.footer-links a i{
    font-size:13px;
}

.contact-row{
    gap:5px;
}

.contact-row p{
    font-size:15px;
}

.contact-row a{
    font-size:15px;
}

.footer-social a{
    width:34px;
    height:34px;
    font-size:16px;
}

.footer-bottom p{
    font-size:15px;
}

}


/*============== EXTRA SMALL ==============*/
@media (max-width:375px){

.footer-container{
    padding:0 12px;
}

.footer-logo{
    width:85px;
}

.footer-about p{
    font-size:13px;
}

.footer-column h3{
    font-size:18px;
}

.footer-links a{
    font-size:13px;
}

.footer-links a i{
    font-size:14px;
}

.contact-row p{
    font-size:13px;
}

.contact-row a{
    font-size:14px;
}

.footer-social a{
    width:32px;
    height:32px;
    font-size:15px;
}

.footer-bottom p{
    font-size:12px;
}

}