html,
body{
    overflow-x:hidden;
}

body{
    font-family: 'Poppins', sans-serif;

}

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    text-decoration:none;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,0.3);
}
.navbar{
    background: rgba(0,0,0,0.95) !important;
     background-color:#000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    height: 90px;
}

.navbar-brand{
    display: flex;
    align-items: center;
    height: 100%;
}

.logo{
    height: 60px;
    width: auto;
    transform: scale(1.5);
    transform-origin: left center;
}

body{
    padding-top:90px;
}

@media(max-width:768px){
    .logo{
        height:70px;
    }
}

.navbar-toggler{
    border: 2px solid #D4AF37;
    border-radius: 12px;
    padding: 8px 12px;
}

.navbar-toggler:focus{
    box-shadow: none;
}


@media (max-width:991px){

   .navbar-collapse{
        background: rgba(17,17,17,0.98);
        margin-top: 15px;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        text-align: center;
    }

    .navbar-nav .nav-link{
        color: white !important;
        padding: 15px;
        font-size: 20px;
        font-weight: 500;
        border-radius: 12px;
        transition: 0.3s;
    }

    .navbar-nav .nav-link:hover{
        background: #D4AF37;
        color: black !important;
    }
    
}

@keyframes slideMenu{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.nav-link{
    transition:0.3s;
}

.nav-link.active{
    color:#D4AF37 !important;
    font-weight:600;
}

.nav-link:hover{
    color:#D4AF37 !important;
}
.nav-link.active::after{
    content:"";
    display:block;
    width:100%;
    height:2px;
    background:#D4AF37;
    margin-top:5px;
}

.tagline{
    color:#D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size:2px;
    font-weight:500;
}

.hero{
    background: linear-gradient(
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.9)
    );
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero h1{
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p{
    font-size: 18px;
    color: #d1d5db;
    margin: 30px 0;
}

.gold-text{
    color:#D4AF37;
}

.hero-car{
    width: 100%;
    max-width: 700px;
    transition: 0.3s;
}

.hero-car:hover{
    transform: scale(1.10);
}

.hero-car{
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.288));
}

.btn-warning{
    background: #D4AF37;
    border: none;
    color: black;
    font-weight: 600;
}

.btn-warning:hover{
    background:#c59d22;
    transform:translateY(-3px);
}

.btn{
    transition:0.3s;
}
@media(max-width:768px){

    .hero{
        text-align:center;
        padding:60px 0;
    }

    .hero h1{
        font-size:35px;
    }

    .hero-car{
        margin-top:40px;
    }
}


.services-section{
    background:#0d0d0d;
    color:white;
}

.service-card{
    background:#171717;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
    border:1px solid rgba(212,175,55,0.1);
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

.service-icon{
    font-size:50px;
    margin-bottom:25px;
}

.service-card h3{
    font-size:28px;
    margin-bottom:20px;
    font-weight:600;
}

.service-card p{
    color:#bfbfbf;
    line-height:1.8;
}

.fleet-section{
    background:#0d0d0d;
    color:white;
}

.car-card{
    background:#171717;
    border-radius:25px;
    padding:35px;
    text-align:center;
    transition:0.4s;
    border:1px solid rgba(212,175,55,0.1);
    height:100%;
}

.car-card:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
}



.car-image{
    width:100%;
    height:220px;
    object-fit:contain;
    margin-bottom:25px;
    transition:0.4s;
    filter:drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

.car-image-box{
    height:250px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.car-card:hover .car-image{
    transform:scale(1.05);
}


.car-card h3{
    font-size:32px;
    margin-bottom:15px;
}

.car-description{
    color:#bfbfbf;
    margin-bottom:25px;
}

.car-features{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.car-features span{
    background:#111;
    padding:8px 15px;
    border-radius:20px;
}

.fleet-btn{
    background:#D4AF37;
    color:black;
    font-weight:600;
    border-radius:30px;
    padding:12px 30px;
}

.why-us{
    background:#111;
    color:white;
}

.feature-box{
    background:#171717;
    padding:40px 25px;
    text-align:center;
    border-radius:20px;
    transition:0.4s;
    height:100%;
}

.feature-box i{
    font-size:50px;
    color:#D4AF37;
    margin-bottom:20px;
}

.feature-box h4{
    margin-bottom:15px;
}

.feature-box p{
    color:#bfbfbf;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(212,175,55,0.15);
}

.about-section{
    background:#0d0d0d;
    color:white;
    padding:100px 0;
}

.about-tag{
    color:#D4AF37;
    font-weight:600;
    letter-spacing:2px;
}

.about-title{
    font-size:45px;
    font-weight:700;
    margin:20px 0;
}

.about-text{
    color:#bfbfbf;
    line-height:1.9;
    margin-bottom:20px;
}

.about-info{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.info-card{
    background:#171717;
    padding:25px;
    border-radius:20px;
    min-width:220px;
    border:1px solid rgba(212,175,55,0.15);
}

.info-card h5{
    color:#D4AF37;
    margin-bottom:10px;
}

.about-car{
    max-width:550px;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,0.7));
}

.contact-section{
    background:#111;
    color:white;
}

.contact-card{
    background:#171717;
    padding:40px 20px;
    border-radius:20px;
    text-align:center;
    transition:0.4s;
}

.contact-card i{
    font-size:45px;
    color:#D4AF37;
    margin-bottom:20px;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px rgba(212,175,55,0.2);
}
.qr-cards{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top:50px;
}

.qr-card{
    background:#111;
    width:350px;
    height:450px;
    border-radius:25px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.qr-card img{
    width:220px;
    height:220px;
    object-fit:contain;
    margin-bottom:30px;
}

.qr-card h3{
    color:white;
    font-size:32px;
    margin:0;
}

.footer{
    background:black;
    color:#bfbfbf;
    padding:50px 0;
}

.footer-logo{
    width:100px;
    margin-bottom:20px;
}


html{
    scroll-behavior: smooth;
}