/* ===================================================
   USED CARS CMS
   Modern Dealership Theme
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#0d6efd;
    --secondary:#ffc107;
    --dark:#111827;
    --light:#f8fafc;
    --text:#4b5563;
    --white:#ffffff;
    --radius:16px;
    --shadow:0 15px 35px rgba(0,0,0,.08);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:var(--text);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:.3s;

}

.section{

    padding:90px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    font-weight:700;
    color:#111;

}

.section-title p{

    color:#777;

}

/*============================
TOP BAR
=============================*/

.top-bar{

    background:#111827;
    color:#fff;
    font-size:14px;
    padding:10px 0;

}

.top-bar a{

    color:#fff;

}

/*============================
NAVBAR
=============================*/

.navbar{

    background:#fff!important;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    padding:16px 0;

}

.navbar-brand{

    font-size:30px;
    font-weight:800;

}

.nav-link{

    font-weight:600;
    margin-left:20px;
    color:#333!important;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.btn-primary{

    border-radius:40px;
    padding:12px 30px;
    font-weight:600;

}

/*============================
HERO
=============================*/

.hero{

    position:relative;

    min-height:700px;

    display:flex;

    align-items:center;

    background:

    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),

    url('../images/hero.jpg')

    center center/cover no-repeat;

}

.hero-content{

    color:#fff;

}

.hero h1{

    font-size:64px;
    font-weight:800;
    line-height:1.2;

}

.hero p{

    margin:25px 0;

    font-size:20px;

    max-width:650px;

}

.hero .btn{

    padding:15px 40px;

    border-radius:50px;

    margin-right:10px;

}

/*============================
SEARCH BOX
=============================*/

.search-box{

    margin-top:-60px;

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:var(--shadow);

    position:relative;

    z-index:99;

}

.search-box .form-control,

.search-box .form-select{

    height:55px;

    border-radius:12px;

}