/* ==========================
   ABOUT HERO
========================== */

.about-hero{
    position: relative;
    height: 550px;
    background: url('../images/2.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

span{
 color:#F4A62A;
}
.about-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.about-hero .container{
    position: relative;
    z-index: 99;
}

.about-hero-content{
    text-align: start;
}

.about-hero-content h1{
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero-content p{
    color: #fff;
    font-size: 20px;
    max-width: 750px;
    /* margin: 0 auto; */
    line-height: 1.8;
}

/* Mobile */

@media(max-width:768px){

    .about-hero{
        height: 400px;
    }

    .about-hero-content h1{
        font-size: 42px;
    }

    .about-hero-content p{
        font-size: 16px;
        padding: 0 15px;
    }
}

/* ==========================
   ABOUT SECTION
========================== */

.about-section{
    padding:100px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

/* Background Shape */
.about-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.05);
    border-radius:50%;
    top:-200px;
    right:-150px;
}

.about-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,123,255,0.04);
    border-radius:50%;
    bottom:-150px;
    left:-150px;
}

/* Image */
/* .about-section img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,0.12);
    transition:0.5s;
    position:relative;
    z-index:2;
} */

.about-section img:hover{
    transform:translateY(-10px);
}

/* Content */
.about-content{
    padding-left:40px;
    position:relative;
    z-index:2;
}

.sub-title{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#0d6efd;
    margin-bottom:15px;
    position:relative;
}

.sub-title::after{
    content:'';
    width:50px;
    height:2px;
    background:#0d6efd;
    position:absolute;
    top:50%;
    margin-left:10px;
}

.about-content h2{
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    color:#1b1b1b;
    margin-bottom:25px;
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:#666;
    margin-bottom:18px;
}

/* Feature Box */
.feature-box{
    background:#fff;
border-left:3px solid #F4A62A;
    padding:16px 20px;
    border-radius:15px;
    font-weight:600;
    color:#222;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.4s;
    border:1px solid rgba(0,0,0,0.04);
}

.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* Button */
.btn-sub{
    display:inline-block;
    padding:15px 35px;
    background:#0d6efd;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
    border:none;
}

.btn-sub:hover{
    background:#000;
    color:#fff;
    transform:translateY(-4px);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .about-content{
        padding-left:0;
        margin-top:50px;
    }

    .about-content h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .about-section{
        padding:70px 0;
    }

    .about-content{
        text-align:center;
    }

    .sub-title::after{
        display:none;
    }

    .about-content h2{
        font-size:30px;
    }

    .feature-box{
        font-size:14px;
        padding:14px;
    }

    .btn-sub{
        padding:13px 30px;
    }
}

/* VISION MISION */
.mission-vision{
    background:#f8f9fa;
}

.mission-vision h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.mission-vision p{
    color:#666;
}

.mv-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.mv-box:hover{
    transform:translateY(-8px);
}

.mv-icon{
    width:70px;
    height:70px;
    background:#F4A62A;
color:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.mv-icon i{
    color:#fff;
    font-size:28px;
}

.mv-box h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.mv-box p{
    line-height:1.8;
}

/* MARQUEE */
/*========================== MARQUEE */
.ride-marquee{
    background:#111;
    color:#F4A62A;
    overflow:hidden;
    padding:15px 0;
    white-space:nowrap;
}

.marquee-track{
    display:flex;
    width:max-content;
    animation:scroll 25s linear infinite;
}

.marquee-track span{
    font-size:14px;
    font-weight:600;
    padding-right:50px;
}
.marquee-track span{
    white-space: nowrap;
}

.marquee-track span i{
    margin-left: 80px; 
}

.marquee-track span i:first-child{
    margin-left: 0;
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* WHY US */
.why-riders{
    background: #F8F7F3;
    padding:100px 0;
}

.section-heading h2{
    font-size:60px;
    font-weight:700;
    color:#4f5f32;
    margin-bottom:20px;
}

.section-heading p{
    max-width:900px;
    margin:auto;
    color:#666;
    font-size:22px;
    line-height:1.8;
}

.why-box{
    text-align:center;
    padding:20px;
}

.icon-box{
    width:110px;
    height:110px;
    margin:0 auto 25px;
    background:#f4c95d;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    font-size:42px;
    color:#4f5f32;
}

.why-box h4{
    font-size:20px;
    font-weight:700;
    color:#9a5b2d;
    line-height:1.5;
    min-height:60px;
}

.line{
    width:120px;
    height:2px;
    background:#d6b44c;
    margin:15px auto;
}

.why-box p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.why-box:hover .icon-box{
    transform:translateY(-8px);
    transition:.4s;
}

@media(max-width:991px){

    .section-heading h2{
        font-size:42px;
    }

    .section-heading p{
        font-size:18px;
    }
}

@media(max-width:576px){

    .section-heading h2{
        font-size:32px;
    }

    .icon-box{
        width:90px;
        height:90px;
    }

    .icon-box i{
        font-size:34px;
    }
}

.btn-sub{
    display:inline-block;
    padding:14px 32px;
    background:linear-gradient(135deg,#F4A62A,#D98B1F);
    color:#111;
    font-weight:600;
    text-decoration:none;
    border:none;
    border-radius:50px;
    transition:all .3s ease;
    box-shadow:0 8px 20px rgba(244,166,42,.25);
}

.btn-sub:hover{
    background:linear-gradient(135deg,#4F5F32,#3E4B27);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(79,95,50,.30);
}