/*==================================================
 HERO SECTION
 Bareilly Taxi Premium Theme
 Version : 1.0
==================================================*/

.bt-hero{
    position:relative;
    padding:100px 0;
    background:#F8FAFC;
    overflow:hidden;
}

.bt-hero::before{
    content:"";
    position:absolute;
    top:-150px;
    right:-150px;
    width:450px;
    height:450px;
    background:#EAF4FF;
    border-radius:50%;
    z-index:0;
}

.bt-hero .bt-container{
    position:relative;
    z-index:2;
}

.bt-hero-grid{
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    gap:60px;
}

.bt-hero-content{
    width:100%;
}

.bt-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#EAF4FF;
    color:#0B5ED7;
    padding:10px 18px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}

.bt-hero h1{
    font-size:56px;
    line-height:1.15;
    font-weight:700;
    color:#1F2937;
    margin-bottom:20px;
}

.bt-hero p{
    font-size:18px;
    line-height:1.8;
    color:#6B7280;
    margin-bottom:35px;
    max-width:600px;
}

.bt-hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.bt-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 30px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.bt-primary{
    background:#0B5ED7;
    color:#ffffff;
}

.bt-primary:hover{
    background:#0848A5;
    transform:translateY(-3px);
}

.bt-secondary{
    background:#FFC107;
    color:#111827;
}

.bt-secondary:hover{
    background:#E6AC00;
    transform:translateY(-3px);
}

.bt-hero-image{
    position:relative;
}

.bt-hero-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
}

.bt-rating{
    margin-top:35px;
    display:flex;
    align-items:center;
    gap:15px;
}

.bt-stars{
    color:#FFB400;
    font-size:20px;
}

.bt-rating-text{
    font-size:15px;
    color:#6B7280;
}

/*============================
 Tablet
=============================*/

@media(max-width:991px){

.bt-hero{

padding:80px 0;

}

.bt-hero-grid{

grid-template-columns:1fr;

gap:50px;

}

.bt-hero-content{

text-align:center;

}

.bt-hero-buttons{

justify-content:center;

}

.bt-hero p{

margin-left:auto;
margin-right:auto;

}

.bt-hero-image{

max-width:650px;

margin:auto;

}

}

/*============================
 Mobile
=============================*/

@media(max-width:767px){

.bt-hero{

padding:60px 0;

}

.bt-hero h1{

font-size:34px;

}

.bt-hero p{

font-size:16px;

}

.bt-hero-buttons{

flex-direction:column;

}

.bt-btn{

width:100%;

}

.bt-rating{

justify-content:center;

flex-direction:column;

gap:8px;

}

.bt-badge{

font-size:14px;

padding:8px 15px;

}

}