*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Poppins',sans-serif;
background:#f5f7fa;

}

a{

text-decoration:none;

}

img{

max-width:100%;

}

:root{

--primary:#062B57;

--secondary:#F58220;

--white:#ffffff;

--text:#222;

--light:#f8f8f8;

}

.main-navbar{

background:rgb(15 14 14);

padding:5px 0;

transition:.4s;

backdrop-filter:blur(8px);

}

.logo-box img{
    width:100%;
}

#menu{
    width:75%;
}

.navbar-brand{
    width:10%;
}

.logo-box{

/*width:20%;*/

height:55px;

/*border:2px dashed #fff;*/

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-weight:700;

font-size:22px;

letter-spacing:2px;

}

.navbar-nav .nav-link{

color:#fff;

font-size:15px;

margin:0 16px;

font-weight:500;

transition:.3s;

position:relative;

}

.navbar-nav .nav-link:hover{

color:#F58220;

}

.navbar-nav .nav-link.active{

color:#ecb94d;

}

.navbar-nav .nav-link::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

height:2px;

width:0;

background:#F58220;

transition:.3s;

}

.navbar-nav .nav-link:hover::after{

width:100%;

}

.header-icons{

display:flex;

gap:18px;

}

.header-icons a{

width:42px;

height:42px;

background:rgba(255,255,255,.15);

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

color:#fff;

transition:.4s;

}

.header-icons a:hover{

background:#F58220;

transform:translateY(-5px);

}

.navbar-toggler{

border:none;

color:#fff;

font-size:28px;

}

.navbar-toggler:focus{

box-shadow:none;

}

.hero-placeholder{

padding-top:120px;

height:700px;

display:flex;

align-items:center;

background:#dfe7ef;

}

.placeholder-box{

height:520px;

border:4px dashed #bbb;

display:flex;

justify-content:center;

align-items:center;

background:#fff;

border-radius:25px;

}

.placeholder-box h2{

font-size:40px;

font-weight:700;

color:#666;

}



/* ===========================
   HERO SECTION
=========================== */

.hero-section{
    position: relative;
}

.hero-section .carousel-item{
    position: relative;
    height: 550px;
    overflow: hidden;
}

.hero-img{
    width:100%;
    height:550px;
    object-fit:cover;
    animation:zoomHero 10s linear infinite;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.75),
        rgba(0,0,0,.45),
        rgba(0,0,0,.25)
    );
}

.hero-section .container{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    z-index:10;
}

.hero-content{
    max-width:650px;
}

.hero-content h1{
    font-size:50px;
    color:#fff;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
    text-transform:uppercase;
    animation:fadeLeft .8s ease;
}

.hero-content p{
    color:#fff;
    font-size:20px;
    line-height:34px;
    margin-bottom:35px;
    animation:fadeLeft 1s ease;
}

.hero-btn{
    display:inline-block;
    padding:18px 45px;
    background:#ecb943;
    color:#000;
    border-radius:4px;
    font-size:17px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
}

.hero-btn:hover{
    background:#fff;
    color:#111;
    transform:translateY(-4px);
}

.carousel-control-prev,
.carousel-control-next{
    width:70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background-color:rgba(255,255,255,.25);
    background-size:45%;
}

.carousel-indicators{
    bottom:35px;
}

.carousel-indicators button{
    width:13px!important;
    height:13px!important;
    border-radius:50%;
    margin:0 7px!important;
}

.carousel-indicators .active{
    background:#ff7a00;
}

@keyframes zoomHero{

0%{
transform:scale(1);
}

100%{
transform:scale(1.08);
}

}

@keyframes fadeLeft{

from{
opacity:0;
transform:translateX(-80px);
}

to{
opacity:1;
transform:translateX(0);
}

}

/* =====================
Responsive
===================== */

@media(max-width:1200px){

.hero-content h1{
font-size:56px;
}

}

@media(max-width:992px){

.hero-section .carousel-item{
height:620px;
}

.hero-img{
height:620px;
}

.hero-content{
text-align:center;
margin:auto;
}

.hero-content h1{
font-size:44px;
}

.hero-content p{
font-size:18px;
line-height:30px;
}

}

@media(max-width:576px){

.hero-section .carousel-item{
height:520px;
}

.hero-img{
height:520px;
}

.hero-content h1{
font-size:30px;
}

.hero-content p{
font-size:15px;
line-height:26px;
}

.hero-btn{
padding:14px 30px;
font-size:15px;
}

.carousel-control-prev,
.carousel-control-next{
display:none;
}

}


/*==========================
TESTIMONIAL
===========================*/

.testimonial-section{

background:#f8f9fb;

}

.section-title h2{

font-size:34px;

font-weight:700;

color:#062b57;

letter-spacing:1px;

}

.testimonial-card{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.stars{

color:#ff9f1a;

font-size:20px;

margin-bottom:20px;

}

.testimonial-card p{

font-size:15px;

line-height:28px;

color:#666;

}

.client{

display:flex;

align-items:center;

margin-top:25px;

}

.client img{

width:65px;

height:65px;

border-radius:50%;

object-fit:cover;

margin-right:15px;

border:4px solid #fff;

box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.client h5{

margin:0;

font-size:18px;

font-weight:600;

}

.client span{

font-size:14px;

color:#888;

}

/*=========================
FOOTER
==========================*/

.footer-area{

background:#000;

padding:80px 0 25px;

color:#fff;

}

.logo-placeholder{

width:180px;

height:60px;

/*border:2px dashed #fff;*/

display:flex;

justify-content:center;

align-items:center;

font-weight:700;

font-size:24px;

margin-bottom:25px;

}

.footer-about{

color:#c6d1dc;

line-height:30px;

}

.footer-area h4{

font-size:22px;

margin-bottom:25px;

font-weight:700;

}

.footer-area ul{

padding:0;

margin:0;

list-style:none;

}

.footer-area ul li{

margin-bottom:14px;

}

.footer-area ul li a{

color:#c6d1dc;

transition:.3s;

text-decoration:none;

}

.footer-area ul li a:hover{

color:#ff7a00;

padding-left:8px;

}

.footer-contact li{

display:flex;

gap:15px;

align-items:flex-start;

color:#c6d1dc;

}

.footer-contact i{

color:#ecb943;

margin-top:5px;

}

.social-links{

display:flex;

gap:15px;

margin-top:30px;

}

.social-links a{

width:45px;

height:45px;

border-radius:50%;

background:#ecb943;

display:flex;

justify-content:center;

align-items:center;

color:#000;

transition:.35s;

}

.social-links a:hover{

background:#ff7a00;

transform:translateY(-6px);

}

.footer-area hr{

margin:45px 0 25px;

border-color:rgba(255,255,255,.1);

}

.copyright{

text-align:center;

color:#c6d1dc;

font-size:15px;

}

#topBtn{

position:fixed;

bottom:30px;

right:30px;

width:50px;

height:50px;

border:none;

background:#ff7a00;

color:#fff;

border-radius:50%;

display:none;

z-index:999;

transition:.3s;

}

#topBtn:hover{

transform:translateY(-5px);

}

/*========================
WHY AREA
=========================*/

.why-area{

padding:70px 0;

background:#fff;

}

.why-area .row{

border:1px solid #e9e9e9;

}

.why-area .col-lg-6{

border-right:1px solid #ececec;

border-bottom:1px solid #ececec;

}

.why-area .col-lg-6:nth-child(2),

.why-area .col-lg-6:nth-child(4){

border-right:0;

}

.why-area .col-lg-6:nth-child(3),

.why-area .col-lg-6:nth-child(4){

border-bottom:0;

}

.why-box{

display:flex;

align-items:flex-start;

padding:45px;

transition:.4s;

background:#fff;

height:100%;

}

.why-box:hover{

background:#fafafa;

}

.why-icon{

width:75px;

margin-right:25px;

flex-shrink:0;

}

.why-icon img{

width:100px;

transition:.4s;

}

.why-box:hover img{

transform:scale(1.1);

}

.why-text h3{

font-size:20px;

font-weight:800;

line-height:32px;

margin-bottom:15px;

color:#111;

text-transform:uppercase;

}

.why-text p{

font-size:15px;

line-height:29px;

color:#555;

margin:0;

}

@media(max-width:991px){

.why-area .col-lg-6{

border-right:0;

}

.why-box{

padding:30px;

}

}

@media(max-width:576px){

.why-box{

flex-direction:column;

text-align:center;

}

.why-icon{

margin:auto auto 20px;

}

}

/*====================================
FEATURED INVENTORY
====================================*/

.inventory-section{

    padding:70px 0;
    background:#f7f9fc;

}

.car-card{

    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e8e8e8;
    transition:.35s;
    position:relative;

}

.car-card:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.car-image{

    position:relative;
    overflow:hidden;

}

.car-image img{

    width:100%;
    height:220px;
    object-fit:cover;
    transition:.5s;

}

.car-card:hover .car-image img{

    transform:scale(1.08);

}

.car-badge{

    position:absolute;
    top:15px;
    left:15px;
    background:#ff7a00;
    color:#fff;
    font-size:13px;
    padding:6px 12px;
    border-radius:30px;
    font-weight:600;

}

.car-content{

    padding:22px;

}

.car-content h4{

    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#08284b;

}

.car-info{

    list-style:none;
    padding:0;
    margin:0 0 20px;

}

.car-info li{

    font-size:14px;
    color:#666;
    margin-bottom:10px;

}

.car-info li i{

    width:20px;
    color:#ff7a00;
    margin-right:8px;

}

.details-btn{

    display:block;
    width:100%;
    background:#08284b;
    color:#fff;
    text-align:center;
    padding:12px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;

}

.details-btn:hover{

    background:#ff7a00;
    color:#fff;

}

@media(max-width:991px){

.car-image img{

height:200px;

}

}

@media(max-width:768px){

.inventory-section{

padding:50px 0;

}

.car-content{

padding:18px;

}

.car-content h4{

font-size:20px;

}

}

@media(max-width:576px){

.car-image img{

height:220px;

}

}

/*=========================
ABOUT
==========================*/

.about-section{

padding:80px 0;

background:#fff;

}

.about-tag{

display:inline-block;

padding:8px 18px;

background:#ff7a00;

color:#fff;

border-radius:30px;

font-size:13px;

font-weight:600;

margin-bottom:20px;

}

.about-content h2{

font-size:40px;

font-weight:800;

color:#08284b;

margin-bottom:25px;

line-height:1.3;

}

.about-content p{

font-size:16px;

line-height:30px;

color:#666;

margin-bottom:20px;

}

.about-btn{

display:inline-block;

padding:14px 35px;

background:#08284b;

color:#fff;

border-radius:6px;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.about-btn:hover{

background:#ff7a00;

color:#fff;

}

.about-image{

overflow:hidden;

border-radius:12px;

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.about-image img{

width:100%;

display:block;

transition:.5s;

}

.about-image:hover img{

transform:scale(1.08);

}

@media(max-width:991px){

.about-content{

text-align:center;

margin-bottom:30px;

}

.about-content h2{

font-size:32px;

}

}