

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    background:#000;
    padding:15px 0;
}

.navbar-brand{
    color:#fff !important;
    font-size:28px;
    font-weight:bold;
}

.nav-link{
    color:#fff !important;
    margin-left:15px;
    transition:0.3s;
}

.nav-link:hover{
    color:gold !important;
}

/* HERO */

.hero{
    position:relative;
    height:95vh;
    overflow:hidden;
}

.hero-slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.hero-slide.active{
    opacity:1;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    color:#fff;
    text-align:center;
    width:90%;
}

.hero-content h1{
    font-size:65px;
    font-weight:bold;
}

.hero-content p{
    font-size:22px;
    margin-top:15px;
}

.hero-btn{
    margin-top:25px;
}

.hero-btn .btn{
    padding:12px 30px;
    border-radius:50px;
    margin:5px;
}

/* SEARCH BOX */

.search-box{
    background:#fff;
    padding:25px;
    border-radius:20px;
    margin-top:40px;
}

/* SECTION */

.section-title{
    font-size:40px;
    font-weight:bold;
    margin-bottom:40px;
}

/* CATEGORY */

.category-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-card i{
    font-size:45px;
    margin-bottom:15px;
    color:#000;
}

/* CAR CARD */

.car-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.car-card:hover{
    transform:translateY(-7px);
}

.car-image{
    width:100%;
    height:240px;
    object-fit:cover;
}

.car-content{
    padding:20px;
}

.car-title{
    font-size:22px;
    font-weight:bold;
}

.car-price{
    font-size:28px;
    color:#198754;
    font-weight:bold;
}

.car-details{
    display:flex;
    justify-content:space-between;
    margin-top:15px;
    color:#777;
    font-size:14px;
}

.btn-dark-custom{
    background:#000;
    color:#fff;
    width:100%;
    border-radius:10px;
    padding:12px;
    border:none;
    margin-top:20px;
}

.btn-dark-custom:hover{
    background:gold;
    color:#000;
}

/* WHY US */

.why-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.why-card i{
    font-size:45px;
    margin-bottom:20px;
}

/* TESTIMONIAL */

.testimonial{
    background:#000;
    color:#fff;
    padding:40px;
    border-radius:20px;
}

/* FOOTER */

footer{
    background:#000;
    color:#fff;
    padding:60px 0;
}

footer a{
    color:#fff;
    text-decoration:none;
}

/* WHATSAPP BUTTON */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    z-index:999;
    text-decoration:none;
}

/* DARK MODE */

.dark-mode{
    background:#121212;
    color:#fff;
}

.dark-mode .category-card,
.dark-mode .car-card,
.dark-mode .why-card,
.dark-mode .search-box{
    background:#1f1f1f;
    color:#fff;
}

.dark-mode .car-details{
    color:#ccc;
}

/* MOBILE */

@media(max-width:768px){

.hero{
    height:80vh;
}

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:17px;
}

.section-title{
    font-size:30px;
}

.car-image{
    height:180px;
}

}



.car-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.car-img{
    width:100%;
    height:220px;
    object-fit:cover;
}
